From f619c071335533498c304cdad9c31724cbd6ab6e Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 6 Feb 2025 02:29:26 +1300 Subject: [PATCH 01/85] Use same empty values remove function as Contribution class --- CRM/Contribute/Import/Parser/Contribution.php | 12 ------------ CRM/Import/Parser.php | 12 ++++++++++++ CRM/Member/Import/Parser/Membership.php | 11 ++--------- 3 files changed, 14 insertions(+), 21 deletions(-) diff --git a/CRM/Contribute/Import/Parser/Contribution.php b/CRM/Contribute/Import/Parser/Contribution.php index 5e006cf96444..4a54858c4bbe 100644 --- a/CRM/Contribute/Import/Parser/Contribution.php +++ b/CRM/Contribute/Import/Parser/Contribution.php @@ -176,18 +176,6 @@ public function getMappedRow(array $values): array { return $this->removeEmptyValues($params); } - protected function removeEmptyValues($array) { - foreach ($array as $key => $value) { - if (is_array($value)) { - $array[$key] = $this->removeEmptyValues($value); - } - elseif ($value === '') { - unset($array[$key]); - } - } - return $array; - } - /** * Validate the import values. * diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index 35b0e62f76e5..9e435308663c 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -2402,4 +2402,16 @@ public function validateRow(?array $row): bool { } } + protected function removeEmptyValues($array) { + foreach ($array as $key => $value) { + if (is_array($value)) { + $array[$key] = $this->removeEmptyValues($value); + } + elseif ($value === '') { + unset($array[$key]); + } + } + return $array; + } + } diff --git a/CRM/Member/Import/Parser/Membership.php b/CRM/Member/Import/Parser/Membership.php index 27744e667a12..6349403b9e94 100644 --- a/CRM/Member/Import/Parser/Membership.php +++ b/CRM/Member/Import/Parser/Membership.php @@ -121,6 +121,7 @@ public function import($values) { $rowNumber = (int) ($values[array_key_last($values)]); try { $params = $this->getMappedRow($values); + $this->removeEmptyValues($params); if (!empty($params['contact_id'])) { $this->validateContactID($params['contact_id'], $this->getContactType()); } @@ -134,15 +135,7 @@ public function import($values) { // don't add to recent items, CRM-4399 $formatted['skipRecentView'] = TRUE; - $formatValues = []; - foreach ($params as $key => $field) { - // ignore empty values or empty arrays etc - if (CRM_Utils_System::isNull($field)) { - continue; - } - - $formatValues[$key] = $field; - } + $formatValues = $params; if (!$this->isUpdateExisting()) { $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted, From e49219c05b30f0c49fcb04845f1063487900de9e Mon Sep 17 00:00:00 2001 From: eileen Date: Fri, 7 Feb 2025 12:12:17 +1300 Subject: [PATCH 02/85] Deprecate legacy parameters to Address::format() --- CRM/Utils/Address.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CRM/Utils/Address.php b/CRM/Utils/Address.php index 250c9d2c1be3..acd208ed8ae4 100644 --- a/CRM/Utils/Address.php +++ b/CRM/Utils/Address.php @@ -53,6 +53,9 @@ public static function format( CRM_Core_Error::deprecatedFunctionWarning('CRM_Utils_Address::formatVCard (not recommended outside core - figure out a token way)'); self::formatVCard($fields); } + if ($format) { + CRM_Core_Error::deprecatedWarning('passing format is deprecated, use the token processor directly'); + } if (!$format) { $format = Civi::settings()->get('address_format'); } @@ -127,6 +130,7 @@ public static function format( // also sub all token fields if ($tokenFields) { + CRM_Core_Error::deprecatedWarning('passing tokenFields is deprecated, use the token processor directly'); foreach ($tokenFields as $token) { $replacements["{$token}"] = $fields["{$token}"] ?? NULL; } From bb0e4510d492475686e4d64ecccfcf647556c626 Mon Sep 17 00:00:00 2001 From: eileen Date: Tue, 4 Feb 2025 16:42:58 +1300 Subject: [PATCH 03/85] Start to parse out entities in params --- CRM/Import/Parser.php | 27 ++++++++- CRM/Member/Import/Parser/Membership.php | 79 +++++++++++++++++-------- 2 files changed, 81 insertions(+), 25 deletions(-) diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index 9e435308663c..aa5abf32ae05 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -79,6 +79,15 @@ abstract class CRM_Import_Parser implements UserJobInterface { */ protected $siteDefaultCountry = NULL; + /** + * Has this parser been fixed to expect `getMappedRow` to break it up + * by entity yet? This is a transitional property to allow the classes + * to be fixed up individually. + * + * @var bool + */ + protected $isUpdatedForEntityRowParsing = FALSE; + /** * @return int|null */ @@ -1893,7 +1902,23 @@ public function getMappedRow(array $values): array { } if ($mappedField['name']) { $fieldSpec = $this->getFieldMetadata($mappedField['name']); - $params[$fieldSpec['name']] = $this->getTransformedFieldValue($mappedField['name'], $values[$i]); + + $entity = $fieldSpec['entity_instance'] ?? $fieldSpec['entity'] ?? $fieldSpec['extends'] ?? NULL; + if ($this->isUpdatedForEntityRowParsing && $entity) { + // Split values into arrays by entity. + if (!isset($params[$entity])) { + $params[$entity] = []; + if ($entity === 'Contact') { + $params[$entity]['contact_type'] = $this->getContactTypeForEntity($entity) ?: $this->getContactType(); + } + } + // Apiv4 name is currently only set for contact, & only in cases where it would + // be used for the dedupe rule (ie Membership import). + $params[$entity][$fieldSpec['apiv4_name'] ?? $fieldSpec['name']] = $this->getTransformedFieldValue($mappedField['name'], $values[$i]); + } + else { + $params[$fieldSpec['name']] = $this->getTransformedFieldValue($mappedField['name'], $values[$i]); + } } } return $params; diff --git a/CRM/Member/Import/Parser/Membership.php b/CRM/Member/Import/Parser/Membership.php index 6349403b9e94..0ef87e9b3a2d 100644 --- a/CRM/Member/Import/Parser/Membership.php +++ b/CRM/Member/Import/Parser/Membership.php @@ -27,6 +27,15 @@ class CRM_Member_Import_Parser_Membership extends CRM_Import_Parser { */ protected $fieldMetadata = []; + /** + * Has this parser been fixed to expect `getMappedRow` to break it up + * by entity yet? This is a transitional property to allow the classes + * to be fixed up individually. + * + * @var bool + */ + protected $isUpdatedForEntityRowParsing = TRUE; + /** * Array of successfully imported membership id's * @@ -89,18 +98,14 @@ public function validateValues($values): void { foreach ($params as $key => $value) { $errors = array_merge($this->getInvalidValues($value, $key), $errors); } - - if (empty($params['membership_type_id'])) { - $errors[] = ts('Missing required fields'); - return; - } + $this->validateRequiredFields($this->getRequiredFields(), $params['Membership']); //To check whether start date or join date is provided - if (empty($params['start_date']) && empty($params['join_date'])) { + if (empty($params['Membership']['start_date']) && empty($params['Membership']['join_date'])) { $errors[] = 'Membership Start Date is required to create a memberships.'; } //fix for CRM-2219 Update Membership - if ($this->isUpdateExisting() && !empty($params['is_override']) && empty($params['status_id'])) { + if ($this->isUpdateExisting() && !empty($params['Membership']['is_override']) && empty($params['Membership']['status_id'])) { $errors[] = 'Required parameter missing: Status'; } if ($errors) { @@ -108,6 +113,33 @@ public function validateValues($values): void { } } + /** + * Get the required fields. + * + * @return array + */ + public function getRequiredFields(): array { + return [[$this->getRequiredFieldsForMatch(), $this->getRequiredFieldsForCreate()]]; + } + + /** + * Get required fields to create a contribution. + * + * @return array + */ + public function getRequiredFieldsForCreate(): array { + return ['membership_type_id']; + } + + /** + * Get required fields to match a contribution. + * + * @return array + */ + public function getRequiredFieldsForMatch(): array { + return [['id']]; + } + /** * Handle the values in import mode. * @@ -117,26 +149,25 @@ public function validateValues($values): void { * @return int|void|null * the result of this processing - which is ignored */ - public function import($values) { + public function import(array $values) { $rowNumber = (int) ($values[array_key_last($values)]); try { $params = $this->getMappedRow($values); $this->removeEmptyValues($params); - if (!empty($params['contact_id'])) { - $this->validateContactID($params['contact_id'], $this->getContactType()); + $membershipParams = $params['Membership']; + $contactParams = $params['Contact'] ?? []; + if (!empty($membershipParams['contact_id'])) { + $this->validateContactID($membershipParams['contact_id'], $this->getContactType()); } //assign join date equal to start date if join date is not provided - if (empty($params['join_date']) && !empty($params['start_date'])) { - $params['join_date'] = $params['start_date']; + if (empty($membershipParams['join_date']) && !empty($membershipParams['start_date'])) { + $membershipParams['join_date'] = $membershipParams['start_date']; } - $formatted = $params; + $formatted = $formatValues = $membershipParams; // don't add to recent items, CRM-4399 $formatted['skipRecentView'] = TRUE; - - $formatValues = $params; - if (!$this->isUpdateExisting()) { $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted, NULL, @@ -150,7 +181,7 @@ public function import($values) { $joinDate = $formatted['join_date']; if (empty($formatValues['id']) && empty($formatValues['contact_id'])) { - $error = $this->checkContactDuplicate($formatValues); + $error = $this->checkContactDuplicate($params['Contact']); if (CRM_Core_Error::isAPIError($error, CRM_Core_Error::DUPLICATE_CONTACT)) { $matchedIDs = (array) $error['error_message']['params']; @@ -214,23 +245,23 @@ public function import($values) { $disp = ''; foreach ($fieldsArray as $value) { - if (array_key_exists(trim($value), $params)) { - $paramValue = $params[trim($value)]; + if (array_key_exists(trim($value), $contactParams)) { + $paramValue = $contactParams[trim($value)]; if (is_array($paramValue)) { - $disp .= $params[trim($value)][0][trim($value)] . " "; + $disp .= $contactParams[trim($value)][0][trim($value)] . " "; } else { - $disp .= $params[trim($value)] . " "; + $disp .= $contactParams[trim($value)] . " "; } } } - if (!empty($params['external_identifier'])) { + if (!empty($contactParams['external_identifier'])) { if ($disp) { - $disp .= "AND {$params['external_identifier']}"; + $disp .= "AND {$contactParams['external_identifier']}"; } else { - $disp = $params['external_identifier']; + $disp = $contactParams['external_identifier']; } } throw new CRM_Core_Exception('No matching Contact found for (' . $disp . ')', CRM_Import_Parser::ERROR); From f392fbc5b4912505fb1a7d906aa3d34981f04ced Mon Sep 17 00:00:00 2001 From: colemanw Date: Thu, 6 Feb 2025 20:15:26 -0500 Subject: [PATCH 04/85] AdminUI - Fix Manage ACLs mode column Fix dev/core#5722 Use smarty variable which is a boolean instead of the token which is localized --- ext/civicrm_admin_ui/managed/SavedSearch_Manage_ACLs.mgd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/civicrm_admin_ui/managed/SavedSearch_Manage_ACLs.mgd.php b/ext/civicrm_admin_ui/managed/SavedSearch_Manage_ACLs.mgd.php index c3b06fca8ef1..2b9625382556 100644 --- a/ext/civicrm_admin_ui/managed/SavedSearch_Manage_ACLs.mgd.php +++ b/ext/civicrm_admin_ui/managed/SavedSearch_Manage_ACLs.mgd.php @@ -116,7 +116,7 @@ 'dataType' => 'Boolean', 'label' => E::ts('Mode'), 'sortable' => TRUE, - 'rewrite' => '{if "[deny]" eq "1"}' . E::ts('Deny') . '{else}' . E::ts('Allow') . '{/if}', + 'rewrite' => '{if $deny}' . E::ts('Deny') . '{else}' . E::ts('Allow') . '{/if}', ], [ 'type' => 'field', From a33426ab7681d450e3b09a6389bf5b658855587d Mon Sep 17 00:00:00 2001 From: CiviCRM Date: Fri, 7 Feb 2025 03:37:32 -0500 Subject: [PATCH 05/85] Set version to 6.1.alpha1 --- CRM/Upgrade/Incremental/php/SixOne.php | 34 +++++++++++++++++++ .../Incremental/sql/6.1.alpha1.mysql.tpl | 1 + js/version.json | 2 +- sql/civicrm_generated.mysql | 2 +- sql/test_data_second_domain.mysql | 2 +- xml/version.xml | 2 +- 6 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 CRM/Upgrade/Incremental/php/SixOne.php create mode 100644 CRM/Upgrade/Incremental/sql/6.1.alpha1.mysql.tpl diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php new file mode 100644 index 000000000000..2ada821b94ac --- /dev/null +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -0,0 +1,34 @@ +addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); + } + +} diff --git a/CRM/Upgrade/Incremental/sql/6.1.alpha1.mysql.tpl b/CRM/Upgrade/Incremental/sql/6.1.alpha1.mysql.tpl new file mode 100644 index 000000000000..d3a6f18d3497 --- /dev/null +++ b/CRM/Upgrade/Incremental/sql/6.1.alpha1.mysql.tpl @@ -0,0 +1 @@ +{* file to handle db changes in 6.1.alpha1 during upgrade *} diff --git a/js/version.json b/js/version.json index 6b1514b77fd4..82f8b06d9a2d 100644 --- a/js/version.json +++ b/js/version.json @@ -1 +1 @@ -"6.0.beta1" +"6.1.alpha1" diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index 2bbb3e552ec4..fc8000bac36b 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -2949,7 +2949,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_domain` WRITE; /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */; INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES - (1,'Default Domain Name',NULL,'6.0.beta1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); + (1,'Default Domain Name',NULL,'6.1.alpha1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}'); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/test_data_second_domain.mysql b/sql/test_data_second_domain.mysql index f12192a4ce36..5f797bcc452d 100644 --- a/sql/test_data_second_domain.mysql +++ b/sql/test_data_second_domain.mysql @@ -907,4 +907,4 @@ INSERT INTO civicrm_navigation VALUES ( @domainID, CONCAT('civicrm/report/instance/', @instanceID,'&reset=1'), 'Mailing Detail Report', 'Mailing Detail Report', 'administer CiviMail', 'OR', @reportlastID, '1', NULL, @instanceID+2 ); UPDATE civicrm_report_instance SET navigation_id = LAST_INSERT_ID() WHERE id = @instanceID; -UPDATE civicrm_domain SET version = '6.0.beta1'; +UPDATE civicrm_domain SET version = '6.1.alpha1'; diff --git a/xml/version.xml b/xml/version.xml index adfaf2532b2c..167670a0ce59 100644 --- a/xml/version.xml +++ b/xml/version.xml @@ -1,5 +1,5 @@ - 6.0.beta1 + 6.1.alpha1 (unreleased) From 7b68c0340b22a65bd839bc0b678b5d94ea198db4 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 7 Feb 2025 00:46:50 -0800 Subject: [PATCH 06/85] Installer - Use Riverlea's Minetta by default --- setup/plugins/init/DefaultExtensions.civi-setup.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup/plugins/init/DefaultExtensions.civi-setup.php b/setup/plugins/init/DefaultExtensions.civi-setup.php index fe7d6518f8f2..7df45363895c 100644 --- a/setup/plugins/init/DefaultExtensions.civi-setup.php +++ b/setup/plugins/init/DefaultExtensions.civi-setup.php @@ -22,5 +22,8 @@ $e->getModel()->extensions[] = 'authx'; $e->getModel()->extensions[] = 'civiimport'; $e->getModel()->extensions[] = 'message_admin'; + $e->getModel()->extensions[] = 'riverlea'; + $e->getModel()->settings['theme_backend'] = 'minetta'; + $e->getModel()->settings['theme_frontend'] = 'minetta'; }); From afded47ca812bf0275db26ca4c3b4df36654adfb Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 07:23:23 -0500 Subject: [PATCH 07/85] dev/core#5720 - Ensure default site email address is respected A few forms present a dropdown for "From Email Address", and most of them were not correctly setting the default. I investigated and found a couple causes: 1. Some forms just didn't bother to set it 2. Some forms *tried* to set it, but it got mangled by the html purifier For the not-even-trying forms, a pretty simple catch-all solution is to put the default at the top of the list, thus the change to CRM_Core_BAO_Email::domainEmails For the ones that were trying and failing, I added the field to getFieldsToExcludeFromPurification. --- CRM/Contact/Form/Task/EmailTrait.php | 7 +++++++ CRM/Contact/Form/Task/PDFTrait.php | 12 +++++++++--- CRM/Contribute/Form/Task/Invoice.php | 7 +++++++ CRM/Contribute/Form/Task/PDF.php | 7 +++++++ CRM/Core/BAO/Email.php | 1 + 5 files changed, 31 insertions(+), 3 deletions(-) diff --git a/CRM/Contact/Form/Task/EmailTrait.php b/CRM/Contact/Form/Task/EmailTrait.php index adc2383296ed..f8d49a29e2d0 100644 --- a/CRM/Contact/Form/Task/EmailTrait.php +++ b/CRM/Contact/Form/Task/EmailTrait.php @@ -324,6 +324,13 @@ public function setDefaultValues(): array { return $defaults; } + protected function getFieldsToExcludeFromPurification(): array { + return [ + // Because value contains + 'from_email_address', + ]; + } + /** * Process the form after the input has been submitted and validated. * diff --git a/CRM/Contact/Form/Task/PDFTrait.php b/CRM/Contact/Form/Task/PDFTrait.php index 0702caefbf81..ebb163029181 100644 --- a/CRM/Contact/Form/Task/PDFTrait.php +++ b/CRM/Contact/Form/Task/PDFTrait.php @@ -225,7 +225,6 @@ public static function formRulePDF($fields, $files) { * Prepare form. */ public function preProcessPDF(): void { - $form = $this; $defaults = []; $fromEmails = $this->getFromEmails(); if (is_numeric(key($fromEmails))) { @@ -235,8 +234,15 @@ public function preProcessPDF(): void { if (!Civi::settings()->get('allow_mail_from_logged_in_contact')) { $defaults['from_email_address'] = CRM_Core_BAO_Domain::getFromEmail(); } - $form->setDefaults($defaults); - $form->setTitle(ts('Print/Merge Document')); + $this->setDefaults($defaults); + $this->setTitle(ts('Print/Merge Document')); + } + + protected function getFieldsToExcludeFromPurification(): array { + return [ + // Because value contains + 'from_email_address', + ]; } /** diff --git a/CRM/Contribute/Form/Task/Invoice.php b/CRM/Contribute/Form/Task/Invoice.php index 18b3c58e34f9..67e3250e01d0 100644 --- a/CRM/Contribute/Form/Task/Invoice.php +++ b/CRM/Contribute/Form/Task/Invoice.php @@ -131,6 +131,13 @@ public function preProcess() { } } + protected function getFieldsToExcludeFromPurification(): array { + return [ + // Because value contains + 'from_email_address', + ]; + } + /** * Build the form object. */ diff --git a/CRM/Contribute/Form/Task/PDF.php b/CRM/Contribute/Form/Task/PDF.php index 34441edf38cb..ab33ac7d4bdc 100644 --- a/CRM/Contribute/Form/Task/PDF.php +++ b/CRM/Contribute/Form/Task/PDF.php @@ -94,6 +94,13 @@ private function preProcessFromAddress() { $this->setDefaults($defaults); } + protected function getFieldsToExcludeFromPurification(): array { + return [ + // Because value contains + 'from_email_address', + ]; + } + /** * Build the form object. */ diff --git a/CRM/Core/BAO/Email.php b/CRM/Core/BAO/Email.php index 197018e34d02..5183f2c12b57 100644 --- a/CRM/Core/BAO/Email.php +++ b/CRM/Core/BAO/Email.php @@ -292,6 +292,7 @@ public static function domainEmails() { ->addSelect('display_name', 'email') ->addWhere('domain_id', '=', 'current_domain') ->addWhere('is_active', '=', TRUE) + ->addOrderBy('is_default', 'DESC') ->addOrderBy('display_name') ->execute(); foreach ($domainFrom as $address) { From aafbf17b2fa4bcba0af64a5691c0c4ecf629da97 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 11:10:23 -0500 Subject: [PATCH 08/85] OptionGroup - Deprecate isDomainOptionGroup function Now that the last 2 domain-specific option groups have been dealt with: - https://github.com/civicrm/civicrm-core/pull/31909 - https://github.com/civicrm/civicrm-core/pull/31924 ... we can stop using this godawful is_domain column for good. The OptionValue table is complex enough without it! --- CRM/Admin/Form/Options.php | 17 ++--------------- CRM/Campaign/Form/SurveyType.php | 7 ------- CRM/Core/BAO/OptionValue.php | 9 --------- CRM/Core/OptionGroup.php | 15 +++++---------- CRM/Core/OptionValue.php | 19 +------------------ CRM/Utils/Rule.php | 2 +- Civi/Schema/EntityMetadataBase.php | 5 ----- schema/Core/OptionValue.entityType.php | 3 ++- 8 files changed, 11 insertions(+), 66 deletions(-) diff --git a/CRM/Admin/Form/Options.php b/CRM/Admin/Form/Options.php index d2f5961ec68b..b4987b38bd87 100644 --- a/CRM/Admin/Form/Options.php +++ b/CRM/Admin/Form/Options.php @@ -39,12 +39,6 @@ class CRM_Admin_Form_Options extends CRM_Admin_Form { */ protected $_gLabel; - /** - * Is this Option Group Domain Specific - * @var bool - */ - protected $_domainSpecific = FALSE; - /** * @var bool */ @@ -88,7 +82,6 @@ public function preProcess() { 'name' ); $this->_gLabel = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_gid, 'title'); - $this->_domainSpecific = CRM_Core_OptionGroup::isDomainOptionGroup($this->_gName); $url = "civicrm/admin/options/{$this->_gName}"; $params = "reset=1"; @@ -115,12 +108,6 @@ public function preProcess() { $session->pushUserContext(CRM_Utils_System::url($url, $params)); $this->assign('id', $this->_id); $this->setDeleteMessage(); - if ($this->_id && CRM_Core_OptionGroup::isDomainOptionGroup($this->_gName)) { - $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'domain_id', 'id'); - if (CRM_Core_Config::domainID() != $domainID) { - CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.')); - } - } if ($this->isSubmitted()) { // The custom data fields are added to the form by an ajax form. // However, if they are not present in the element index they will @@ -221,7 +208,7 @@ public function buildQuickForm(): void { $this->addRule('value', ts('This Value already exists in the database for this option group. Please select a different Value.'), 'optionExists', - ['CRM_Core_DAO_OptionValue', $this->_id, $this->_gid, 'value', $this->_domainSpecific] + ['CRM_Core_DAO_OptionValue', $this->_id, $this->_gid, 'value'] ); } @@ -239,7 +226,7 @@ public function buildQuickForm(): void { $this->addRule('label', ts('This Label already exists in the database for this option group. Please select a different Label.'), 'optionExists', - ['CRM_Core_DAO_OptionValue', $this->_id, $this->_gid, 'label', $this->_domainSpecific] + ['CRM_Core_DAO_OptionValue', $this->_id, $this->_gid, 'label'] ); } diff --git a/CRM/Campaign/Form/SurveyType.php b/CRM/Campaign/Form/SurveyType.php index 02e8836ef5aa..1739141fac13 100644 --- a/CRM/Campaign/Form/SurveyType.php +++ b/CRM/Campaign/Form/SurveyType.php @@ -57,13 +57,6 @@ public function preProcess() { $session = CRM_Core_Session::singleton(); $url = CRM_Utils_System::url('civicrm/admin/campaign/surveyType', 'reset=1'); $session->pushUserContext($url); - - if ($this->_id && CRM_Core_OptionGroup::isDomainOptionGroup($this->_gName)) { - $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'domain_id', 'id'); - if (CRM_Core_Config::domainID() != $domainID) { - CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.')); - } - } } /** diff --git a/CRM/Core/BAO/OptionValue.php b/CRM/Core/BAO/OptionValue.php index 22c66c56dd44..98c50a10a5bc 100644 --- a/CRM/Core/BAO/OptionValue.php +++ b/CRM/Core/BAO/OptionValue.php @@ -144,12 +144,6 @@ public static function add(&$params) { $optionValue = new CRM_Core_DAO_OptionValue(); $optionValue->copyValues($params); - $isDomainOptionGroup = CRM_Core_OptionGroup::isDomainOptionGroup($groupName); - // When creating a new option for a group that requires a domain, set default domain - if ($isDomainOptionGroup && empty($params['id']) && (empty($params['domain_id']) || CRM_Utils_System::isNull($params['domain_id']))) { - $optionValue->domain_id = CRM_Core_Config::domainID(); - } - $groupsSupportingDuplicateValues = ['languages']; if (!$id && !empty($params['value'])) { $dao = new CRM_Core_DAO_OptionValue(); @@ -160,9 +154,6 @@ public static function add(&$params) { // CRM-21737 languages option group does not use unique values but unique names. $dao->name = $params['name']; } - if (CRM_Core_OptionGroup::isDomainOptionGroup($groupName)) { - $dao->domain_id = $optionValue->domain_id; - } $dao->option_group_id = $params['option_group_id']; if ($dao->find(TRUE)) { throw new CRM_Core_Exception('Value already exists in the database'); diff --git a/CRM/Core/OptionGroup.php b/CRM/Core/OptionGroup.php index 10eb89a985c5..b482fe9d5ec7 100644 --- a/CRM/Core/OptionGroup.php +++ b/CRM/Core/OptionGroup.php @@ -19,15 +19,13 @@ class CRM_Core_OptionGroup { public static $_cache = []; /** - * $_domainIDGroups array maintains the list of option groups for whom - * domainID is to be considered. + * Deprecated flag for domain-specific optionValues. The `is_domain` column is no longer used. + * Any set of options that needs domain specificity should be stored in its own table. * * @var array - * @deprecated - going forward the optionValue table will not support domain-specific options + * @deprecated */ - public static $_domainIDGroups = [ - 'from_email_address', - ]; + public static $_domainIDGroups = []; /** * @deprecated - going forward the optionValue table will not support domain-specific options @@ -35,7 +33,7 @@ class CRM_Core_OptionGroup { * @return bool */ public static function isDomainOptionGroup($groupName) { - return in_array($groupName, self::$_domainIDGroups, TRUE); + return FALSE; } /** @@ -154,9 +152,6 @@ public static function &values( } $query .= " AND ($componentClause) "; } - if (self::isDomainOptionGroup($name)) { - $query .= ' AND v.domain_id = ' . CRM_Core_Config::domainID(); - } if ($condition) { $query .= $condition; diff --git a/CRM/Core/OptionValue.php b/CRM/Core/OptionValue.php index da1e4e20d0c2..ceb1ff19450c 100644 --- a/CRM/Core/OptionValue.php +++ b/CRM/Core/OptionValue.php @@ -82,10 +82,6 @@ public static function getRows($groupParams, $links, $orderBy = 'weight', $skipE if ($optionGroupID) { $dao->option_group_id = $optionGroupID; - if (CRM_Core_OptionGroup::isDomainOptionGroup($groupName)) { - $dao->domain_id = CRM_Core_Config::domainID(); - } - $dao->orderBy($orderBy); $dao->find(); } @@ -242,24 +238,15 @@ public static function addOptionValue(&$params, $optionGroupName, $action, $opti * @param int $optionGroupID * @param string $fieldName * The name of the field in the DAO. - * @param bool $domainSpecific - * Filter this check to the current domain. - * Some optionGroups allow for same labels or same names but - * they must be in different domains, so filter the check to - * the current domain. * * @return bool * true if object exists */ - public static function optionExists($value, $daoName, $daoID, $optionGroupID, $fieldName, $domainSpecific) { + public static function optionExists($value, $daoName, $daoID, $optionGroupID, $fieldName) { $object = new $daoName(); $object->$fieldName = $value; $object->option_group_id = $optionGroupID; - if ($domainSpecific) { - $object->domain_id = CRM_Core_Config::domainID(); - } - if ($object->find(TRUE)) { return $daoID && $object->id == $daoID; } @@ -435,10 +422,6 @@ public static function getValues($groupParams, &$values = [], $orderBy = 'weight $params[2] = [$groupName, 'String']; } - if (CRM_Core_OptionGroup::isDomainOptionGroup($groupName)) { - $where .= " AND option_value.domain_id = " . CRM_Core_Config::domainID(); - } - $query = $select . $from . $where . $order; $dao = CRM_Core_DAO::executeQuery($query, $params); diff --git a/CRM/Utils/Rule.php b/CRM/Utils/Rule.php index ef6255659f1a..c12af809b07b 100644 --- a/CRM/Utils/Rule.php +++ b/CRM/Utils/Rule.php @@ -775,7 +775,7 @@ public static function objectExists($value, $options) { * @return bool */ public static function optionExists($value, $options) { - return CRM_Core_OptionValue::optionExists($value, $options[0], $options[1], $options[2], CRM_Utils_Array::value(3, $options, 'name'), CRM_Utils_Array::value(4, $options, FALSE)); + return CRM_Core_OptionValue::optionExists($value, $options[0], $options[1], $options[2], $options[3] ?? 'name'); } /** diff --git a/Civi/Schema/EntityMetadataBase.php b/Civi/Schema/EntityMetadataBase.php index b516bf45680f..4d8315f66e75 100644 --- a/Civi/Schema/EntityMetadataBase.php +++ b/Civi/Schema/EntityMetadataBase.php @@ -123,11 +123,6 @@ private function addOptionGroupParams(array &$field) { foreach ($optionValueFields as $optionValueField) { $field['pseudoconstant'] += ["{$optionValueField}_column" => $optionValueField]; } - - // Filter for domain-specific groups - if (\CRM_Core_OptionGroup::isDomainOptionGroup($groupName)) { - $field['pseudoconstant']['condition'][] = 'domain_id = ' . \CRM_Core_Config::domainID(); - } } private function formatOptionValues(array $optionValues): array { diff --git a/schema/Core/OptionValue.entityType.php b/schema/Core/OptionValue.entityType.php index 17e9597c3a8c..174ab005a894 100644 --- a/schema/Core/OptionValue.entityType.php +++ b/schema/Core/OptionValue.entityType.php @@ -193,7 +193,8 @@ 'title' => ts('Domain ID'), 'sql_type' => 'int unsigned', 'input_type' => 'EntityRef', - 'description' => ts('Which Domain is this option value for'), + 'deprecated' => TRUE, + 'description' => ts('Unused deprecated column.'), 'add' => '3.1', 'input_attrs' => [ 'label' => ts('Domain'), From 6f55977628a10c5c2dff52c8db4cb054daed7f7c Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 11:16:37 -0500 Subject: [PATCH 09/85] UtilsRule - Cleanup overcomplicated code to not use CRM_Utils_Array::value This does the same thing as before, in one much simpler line. --- CRM/Utils/Rule.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CRM/Utils/Rule.php b/CRM/Utils/Rule.php index ef6255659f1a..ccf60ff14567 100644 --- a/CRM/Utils/Rule.php +++ b/CRM/Utils/Rule.php @@ -760,12 +760,7 @@ public static function utf8File($elementValue) { * true if object exists */ public static function objectExists($value, $options) { - $name = 'name'; - if (isset($options[2])) { - $name = $options[2]; - } - - return CRM_Core_DAO::objectExists($value, CRM_Utils_Array::value(0, $options), CRM_Utils_Array::value(1, $options), CRM_Utils_Array::value(2, $options, $name), CRM_Utils_Array::value(3, $options)); + return CRM_Core_DAO::objectExists($value, $options[0] ?? NULL, $options[1] ?? NULL, $options[2] ?? 'name', $options[3] ?? NULL); } /** From 950207c60dd1f3d142fb787891205ff1398bbdc9 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 11:29:11 -0500 Subject: [PATCH 10/85] UtilsArray - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Activity/BAO/Query.php | 2 +- CRM/Contact/BAO/Query.php | 3 ++- CRM/Contact/Form/Merge.php | 4 ++-- CRM/Contact/Page/AJAX.php | 2 +- CRM/Core/Permission.php | 2 +- CRM/Event/Form/Registration/Register.php | 2 +- CRM/Export/BAO/ExportProcessor.php | 4 ++-- CRM/Utils/REST.php | 2 +- CRM/Utils/VersionCheck.php | 2 +- 9 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CRM/Activity/BAO/Query.php b/CRM/Activity/BAO/Query.php index c40672f8530e..92702de78290 100644 --- a/CRM/Activity/BAO/Query.php +++ b/CRM/Activity/BAO/Query.php @@ -617,7 +617,7 @@ public static function selectorReturnProperties() { public static function whereClauseSingleActivityText(&$values, &$query) { [$name, $op, $value, $grouping, $wildcard] = $values; $activityOptionValues = $query->getWhereValues('activity_option', $grouping); - $activityOption = CRM_Utils_Array::value(2, $activityOptionValues, 6); + $activityOption = $activityOptionValues[2] ?? 6; $query->_useDistinct = TRUE; diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index c2da15bf7ac6..998cd52bade2 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -4812,7 +4812,8 @@ public static function isAlreadyProcessedForQueryFormat($values) { if (!is_array($values)) { return FALSE; } - if (($operator = CRM_Utils_Array::value(1, $values)) == FALSE) { + $operator = $values[1] ?? FALSE; + if (!$operator) { return FALSE; } return in_array($operator, CRM_Core_DAO::acceptedSQLOperators()); diff --git a/CRM/Contact/Form/Merge.php b/CRM/Contact/Form/Merge.php index 9dee169d5f6c..1a63c7a6a2c5 100644 --- a/CRM/Contact/Form/Merge.php +++ b/CRM/Contact/Form/Merge.php @@ -261,7 +261,7 @@ public function preProcess() { // on the form. if (substr($element[1], 0, 13) === 'move_location') { $element[4] = array_merge( - (array) CRM_Utils_Array::value(4, $element, []), + (array) ($element[4] ?? []), [ 'data-location' => substr($element[1], 14), 'data-is_location' => TRUE, @@ -270,7 +270,7 @@ public function preProcess() { if (substr($element[1], 0, 15) === 'location_blocks') { // @todo We could add some data elements here to make jquery manipulation more straight-forward // @todo consider enabling if it is an add & defaulting to true. - $element[4] = array_merge((array) CRM_Utils_Array::value(4, $element, []), ['disabled' => TRUE]); + $element[4] = array_merge((array) ($element[4] ?? []), ['disabled' => TRUE]); } $newCheckBox = $this->addElement($element[0], $element[1], diff --git a/CRM/Contact/Page/AJAX.php b/CRM/Contact/Page/AJAX.php index 0cb54004a2eb..acaa0d3f123e 100644 --- a/CRM/Contact/Page/AJAX.php +++ b/CRM/Contact/Page/AJAX.php @@ -245,7 +245,7 @@ public static function relationship() { // first check if there is any existing relationship present with same parameters. // If yes then update the relationship by setting active and start date to current time $relationship = civicrm_api3('Relationship', 'get', $params)['values']; - $params = array_merge(CRM_Utils_Array::value(0, $relationship, $params), [ + $params = array_merge($relationship[0] ?? $params, [ 'start_date' => 'now', 'is_active' => TRUE, 'end_date' => '', diff --git a/CRM/Core/Permission.php b/CRM/Core/Permission.php index 737931f3e1cd..24d875af939b 100644 --- a/CRM/Core/Permission.php +++ b/CRM/Core/Permission.php @@ -572,7 +572,7 @@ public static function checkMenuItem(&$item) { $item['access_callback'][0] == 'CRM_Core_Permission' && $item['access_callback'][1] == 'checkMenu' ) { - $op = CRM_Utils_Array::value(1, $item['access_arguments'], 'and'); + $op = $item['access_arguments'][1] ?? 'and'; return self::checkMenu($item['access_arguments'][0], $op); } else { diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index b3602fdecac1..abcc728ccb8d 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -617,7 +617,7 @@ public static function formRule($fields, $files, $form) { $primaryParticipantCount = $form->getParticipantCount($ppParams); //get price set fields errors in. - $errors = array_merge($errors, CRM_Utils_Array::value(0, $priceSetErrors, [])); + $errors = array_merge($errors, $priceSetErrors[0] ?? []); $totalParticipants = $primaryParticipantCount; if ($numberAdditionalParticipants) { diff --git a/CRM/Export/BAO/ExportProcessor.php b/CRM/Export/BAO/ExportProcessor.php index 80ec7221fab3..718a6495a62e 100644 --- a/CRM/Export/BAO/ExportProcessor.php +++ b/CRM/Export/BAO/ExportProcessor.php @@ -1683,7 +1683,7 @@ public function getExportStructureArrays() { foreach ($relationValue as $ltype => $val) { foreach (array_keys($val) as $fld) { $type = explode('-', $fld); - $this->addOutputSpecification($type[0], $key, $ltype, CRM_Utils_Array::value(1, $type)); + $this->addOutputSpecification($type[0], $key, $ltype, $type[1] ?? NULL); } } } @@ -1700,7 +1700,7 @@ public function getExportStructureArrays() { if (!empty($type[1])) { $daoFieldName .= "-" . $type[1]; } - $this->addOutputSpecification($actualDBFieldName, NULL, $locationType, CRM_Utils_Array::value(1, $type)); + $this->addOutputSpecification($actualDBFieldName, NULL, $locationType, $type[1] ?? NULL); $outputColumns[$daoFieldName] = TRUE; } } diff --git a/CRM/Utils/REST.php b/CRM/Utils/REST.php index 9e334bab42e1..b1bc3e7757c2 100644 --- a/CRM/Utils/REST.php +++ b/CRM/Utils/REST.php @@ -550,7 +550,7 @@ public static function processMultiple() { $call[0], $call[1], ]; - $output[$key] = self::process($args, CRM_Utils_Array::value(2, $call, [])); + $output[$key] = self::process($args, $call[2] ?? []); } return $output; } diff --git a/CRM/Utils/VersionCheck.php b/CRM/Utils/VersionCheck.php index 80491b7c28cf..f122a28494cc 100644 --- a/CRM/Utils/VersionCheck.php +++ b/CRM/Utils/VersionCheck.php @@ -346,7 +346,7 @@ private function getJob() { 'api_action' => "version_check", 'api_entity' => "job", ]); - $this->cronJob = CRM_Utils_Array::value(0, $jobs['values'], []); + $this->cronJob = $jobs['values'][0] ?? []; } } From 23a3ca9b0ce1cb288d2761a6ea243c023065d232 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 10:36:42 -0500 Subject: [PATCH 11/85] Update existing navigation labels to match new 'Site Email Address' lingo --- CRM/Upgrade/Incremental/sql/6.0.beta1.mysql.tpl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CRM/Upgrade/Incremental/sql/6.0.beta1.mysql.tpl diff --git a/CRM/Upgrade/Incremental/sql/6.0.beta1.mysql.tpl b/CRM/Upgrade/Incremental/sql/6.0.beta1.mysql.tpl new file mode 100644 index 000000000000..1ce0a93ba889 --- /dev/null +++ b/CRM/Upgrade/Incremental/sql/6.0.beta1.mysql.tpl @@ -0,0 +1,6 @@ +{* file to handle db changes in 6.0.beta1 during upgrade *} + +{* Note: The unfortunate status-quo is that Navigation labels store untranslated strings, so no `ts` needed (see https://issues.civicrm.org/jira/browse/CRM-6998 FWIW).*} +UPDATE civicrm_navigation +SET label = 'Site Email Addresses' +WHERE label = 'FROM Email Addresses'; From 3bd574e8e18cea8b82fa4d4001ce37bbd789b287 Mon Sep 17 00:00:00 2001 From: eileen Date: Wed, 14 Aug 2024 19:54:20 +1200 Subject: [PATCH 12/85] Use tokens to render display name --- CRM/Core/BAO/Address.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/CRM/Core/BAO/Address.php b/CRM/Core/BAO/Address.php index 634ac3199d2f..cd3e7d120b0a 100644 --- a/CRM/Core/BAO/Address.php +++ b/CRM/Core/BAO/Address.php @@ -16,6 +16,7 @@ */ use Civi\Api4\Address; +use Civi\Token\TokenProcessor; /** * This is class to handle address related functions. @@ -1046,13 +1047,11 @@ public static function mergeSameAddress(&$rows) { } // CRM-15120 - $formatted = [ - 'first_name' => $rows[$rowID]['first_name'], - 'individual_prefix' => $rows[$rowID]['individual_prefix'], - ]; - $format = Civi::settings()->get('display_name_format'); - $firstNameWithPrefix = CRM_Utils_Address::format($formatted, $format, FALSE, FALSE); - $firstNameWithPrefix = trim($firstNameWithPrefix); + $tokenProcessor = new TokenProcessor(\Civi::dispatcher(), ['schema' => ['contactId'], 'smarty' => FALSE]); + $tokenProcessor->addMessage('name', Civi::settings()->get('display_name_format'), 'text/plain'); + $tokenProcessor->addRow(['contact' => ['id' => $rowID] + $rows[$rowID]]); + $tokenProcessor->evaluate(); + $firstNameWithPrefix = trim($tokenProcessor->getRow(0)->render('name')); // fill uniqueAddress array with last/first name tree if (isset($uniqueAddress[$address])) { From f467c78e84caca0e7921e9e369d581bd16822c63 Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 6 Feb 2025 15:02:09 +1300 Subject: [PATCH 13/85] Fix membership import to update without requiring ID --- CRM/Member/Import/Parser/Membership.php | 40 ++++++++++--------- .../Member/Import/Parser/MembershipTest.php | 23 +++++++++++ 2 files changed, 45 insertions(+), 18 deletions(-) diff --git a/CRM/Member/Import/Parser/Membership.php b/CRM/Member/Import/Parser/Membership.php index 0ef87e9b3a2d..4b2000f5c72c 100644 --- a/CRM/Member/Import/Parser/Membership.php +++ b/CRM/Member/Import/Parser/Membership.php @@ -14,6 +14,7 @@ * @package CRM * @copyright CiviCRM LLC https://civicrm.org/licensing */ +use Civi\Api4\Membership; /** * class to parse membership csv files @@ -92,7 +93,7 @@ public function getImportEntities() : array { * * @throws \CRM_Core_Exception */ - public function validateValues($values): void { + public function validateValues(array $values): void { $params = $this->getMappedRow($values); $errors = []; foreach ($params as $key => $value) { @@ -160,11 +161,12 @@ public function import(array $values) { $this->validateContactID($membershipParams['contact_id'], $this->getContactType()); } - //assign join date equal to start date if join date is not provided - if (empty($membershipParams['join_date']) && !empty($membershipParams['start_date'])) { - $membershipParams['join_date'] = $membershipParams['start_date']; + $existingMembership = []; + if (!empty($membershipParams['id'])) { + $existingMembership = Membership::get() + ->addWhere('id', '=', $membershipParams['id']) + ->execute()->single(); } - $formatted = $formatValues = $membershipParams; // don't add to recent items, CRM-4399 $formatted['skipRecentView'] = TRUE; @@ -175,12 +177,14 @@ public function import(array $values) { ); } - //Format dates - $startDate = $formatted['start_date']; - $endDate = $formatted['end_date'] ?? NULL; - $joinDate = $formatted['join_date']; + $startDate = $membershipParams['start_date'] ?? $existingMembership['start_date'] ?? NULL; + // Assign join date equal to start date if join date is not provided. + $joinDate = $membershipParams['join_date'] ?? $existingMembership['join_date'] ?? $startDate; + $endDate = $membershipParams['end_date'] ?? $existingMembership['end_date'] ?? NULL; + $membershipTypeID = $membershipParams['membership_type_id'] ?? $existingMembership['membership_type_id']; + $isOverride = $membershipParams['is_override'] ?? $existingMembership['is_override'] ?? FALSE; - if (empty($formatValues['id']) && empty($formatValues['contact_id'])) { + if (!$existingMembership && empty($formatValues['contact_id'])) { $error = $this->checkContactDuplicate($params['Contact']); if (CRM_Core_Error::isAPIError($error, CRM_Core_Error::DUPLICATE_CONTACT)) { @@ -193,7 +197,7 @@ public function import(array $values) { $formatted['contact_id'] = $cid; //fix for CRM-1924 - $calcDates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($formatted['membership_type_id'], + $calcDates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membershipTypeID, $joinDate, $startDate, $endDate @@ -203,7 +207,7 @@ public function import(array $values) { //fix for CRM-3570, exclude the statuses those having is_admin = 1 //now user can import is_admin if is override is true. $excludeIsAdmin = FALSE; - if (empty($formatted['is_override'])) { + if (!$isOverride) { $formatted['exclude_is_admin'] = $excludeIsAdmin = TRUE; } $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($startDate, @@ -211,14 +215,14 @@ public function import(array $values) { $joinDate, 'now', $excludeIsAdmin, - $formatted['membership_type_id'], + $membershipTypeID, $formatted ); if (empty($formatted['status_id'])) { $formatted['status_id'] = $calcStatus['id']; } - elseif (empty($formatted['is_override'])) { + elseif (!$isOverride) { if (empty($calcStatus)) { throw new CRM_Core_Exception('Status in import row (' . $formatValues['status_id'] . ') does not match calculated status based on your configured Membership Status Rules. Record was not imported.', CRM_Import_Parser::ERROR); } @@ -278,7 +282,7 @@ public function import(array $values) { } //to calculate dates - $calcDates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($formatted['membership_type_id'], + $calcDates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membershipTypeID, $joinDate, $startDate, $endDate @@ -289,7 +293,7 @@ public function import(array $values) { //fix for CRM-3570, exclude the statuses those having is_admin = 1 //now user can import is_admin if is override is true. $excludeIsAdmin = FALSE; - if (empty($formatted['is_override'])) { + if (!$isOverride) { $formatted['exclude_is_admin'] = $excludeIsAdmin = TRUE; } $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($startDate, @@ -297,13 +301,13 @@ public function import(array $values) { $joinDate, 'now', $excludeIsAdmin, - $formatted['membership_type_id'], + $membershipTypeID, $formatted ); if (empty($formatted['status_id'])) { $formatted['status_id'] = $calcStatus['id'] ?? NULL; } - elseif (empty($formatted['is_override'])) { + elseif (!$isOverride) { if (empty($calcStatus)) { throw new CRM_Core_Exception('Status in import row (' . ($formatValues['status_id'] ?? '') . ') does not match calculated status based on your configured Membership Status Rules. Record was not imported.', CRM_Import_Parser::ERROR); } diff --git a/tests/phpunit/CRM/Member/Import/Parser/MembershipTest.php b/tests/phpunit/CRM/Member/Import/Parser/MembershipTest.php index 1934d46c8484..a9462ba73b62 100644 --- a/tests/phpunit/CRM/Member/Import/Parser/MembershipTest.php +++ b/tests/phpunit/CRM/Member/Import/Parser/MembershipTest.php @@ -423,6 +423,29 @@ public function testImportCSVWithID() :void { $this->assertEquals('2019-03-23', $membership['start_date']); } + /** + * Test the full form-flow import. + */ + public function testImportCSVWithIDMembershipTypeOptional() :void { + $this->createTestEntity('Membership', [ + 'membership_type_id:name' => 'General', + 'contact_id' => $this->individualCreate(), + ]); + $this->importCSV('memberships_with_id.csv', [ + ['name' => 'membership_id'], + ['name' => 'membership_source'], + ['name' => 'do_not_import'], + ['name' => 'membership_start_date'], + ['name' => 'do_not_import'], + ]); + $dataSource = new CRM_Import_DataSource_CSV($this->userJobID); + $row = $dataSource->getRow(); + $this->assertEquals('IMPORTED', $row['_status']); + $membership = Membership::get(FALSE) + ->execute()->single(); + $this->assertEquals('2019-03-23', $membership['start_date']); + } + /** * Test the full form-flow import. */ From d3f7f5afea0a2c85347331d0ead298f3aafa706c Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Fri, 7 Feb 2025 22:09:26 +0000 Subject: [PATCH 14/85] Add guard around CIVICRM_IFRAME constant --- ext/iframe/Civi/Iframe/Cosession.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/iframe/Civi/Iframe/Cosession.php b/ext/iframe/Civi/Iframe/Cosession.php index 3adbf4f5395f..7f18726415c5 100644 --- a/ext/iframe/Civi/Iframe/Cosession.php +++ b/ext/iframe/Civi/Iframe/Cosession.php @@ -47,7 +47,8 @@ public static function getSubscribedEvents(): array { protected ?string $sessionId = NULL; public function findCreateSessionId(): ?string { - if (!defined('CIVICRM_IFRAME')) { + // We only want to execute this code if CIVICRM_IFRAME is both defined and is truthy (ie. true/1) + if (!(defined('CIVICRM_IFRAME') && CIVICRM_IFRAME)) { return NULL; } From 0e17a6cf01afc5adae099fa7ea457645dddafcb6 Mon Sep 17 00:00:00 2001 From: eileen Date: Sat, 8 Feb 2025 09:37:01 +1300 Subject: [PATCH 15/85] Decommission thresholdQuery, only call legacy hook from backward compat extension --- CRM/Dedupe/BAO/DedupeRuleGroup.php | 64 +++++++------------ .../Civi/LegacyFinder/Finder.php | 30 ++++++++- 2 files changed, 53 insertions(+), 41 deletions(-) diff --git a/CRM/Dedupe/BAO/DedupeRuleGroup.php b/CRM/Dedupe/BAO/DedupeRuleGroup.php index c87499c970e1..673b83859661 100644 --- a/CRM/Dedupe/BAO/DedupeRuleGroup.php +++ b/CRM/Dedupe/BAO/DedupeRuleGroup.php @@ -156,7 +156,30 @@ public static function hook_civicrm_findExistingDuplicates(GenericHookEvent $eve if (!$tempTable) { return; } - $dao = \CRM_Core_DAO::executeQuery($ruleGroup->thresholdQuery($event->checkPermissions)); + $aclFrom = $aclWhere = ''; + $dedupeTable = $tempTable; + $contactType = $ruleGroup->contact_type; + $threshold = $ruleGroup->threshold; + + if ($event->checkPermissions) { + [$aclFrom, $aclWhere] = CRM_Contact_BAO_Contact_Permission::cacheClause(['c1', 'c2']); + $aclWhere = $aclWhere ? "AND {$aclWhere}" : ''; + } + $query = "SELECT IF(dedupe.id1 < dedupe.id2, dedupe.id1, dedupe.id2) as id1, + IF(dedupe.id1 < dedupe.id2, dedupe.id2, dedupe.id1) as id2, dedupe.weight + FROM $dedupeTable dedupe JOIN civicrm_contact c1 ON dedupe.id1 = c1.id + JOIN civicrm_contact c2 ON dedupe.id2 = c2.id {$aclFrom} + LEFT JOIN civicrm_dedupe_exception exc + ON dedupe.id1 = exc.contact_id1 AND dedupe.id2 = exc.contact_id2 + WHERE c1.contact_type = %1 AND + c2.contact_type = %1 + AND c1.is_deleted = 0 AND c2.is_deleted = 0 + {$aclWhere} + AND weight >= %2 AND exc.contact_id1 IS NULL"; + $dao = \CRM_Core_DAO::executeQuery($query, [ + 1 => [$contactType, 'String'], + 2 => [$threshold, 'Integer'], + ]); $duplicates = []; while ($dao->fetch()) { $duplicates[] = ['entity_id_1' => $dao->id1, 'entity_id_2' => $dao->id2, 'weight' => $dao->weight]; @@ -422,45 +445,6 @@ private static function isTableBigger(string $a, string $b): int { return CRM_Core_BAO_SchemaHandler::getRowCountForTable($tableA) <=> CRM_Core_BAO_SchemaHandler::getRowCountForTable($tableB); } - /** - * Return the SQL query for getting only the interesting results out of the dedupe table. - * - * @$checkPermission boolean $params a flag to indicate if permission should be considered. - * default is to always check permissioning but public pages for example might not want - * permission to be checked for anonymous users. Refer CRM-6211. We might be beaking - * Multi-Site dedupe for public pages. - * - * @param bool $checkPermission - * - * @return string - */ - public function thresholdQuery($checkPermission = TRUE) { - $aclFrom = ''; - $aclWhere = ''; - $dedupeTable = $this->temporaryTables['dedupe']; - $contactType = $this->contact_type; - $threshold = $this->threshold; - - if ($checkPermission) { - [$aclFrom, $aclWhere] = CRM_Contact_BAO_Contact_Permission::cacheClause(['c1', 'c2']); - $aclWhere = $aclWhere ? "AND {$aclWhere}" : ''; - } - $query = "SELECT IF(dedupe.id1 < dedupe.id2, dedupe.id1, dedupe.id2) as id1, - IF(dedupe.id1 < dedupe.id2, dedupe.id2, dedupe.id1) as id2, dedupe.weight - FROM $dedupeTable dedupe JOIN civicrm_contact c1 ON dedupe.id1 = c1.id - JOIN civicrm_contact c2 ON dedupe.id2 = c2.id {$aclFrom} - LEFT JOIN civicrm_dedupe_exception exc - ON dedupe.id1 = exc.contact_id1 AND dedupe.id2 = exc.contact_id2 - WHERE c1.contact_type = '{$contactType}' AND - c2.contact_type = '{$contactType}' - AND c1.is_deleted = 0 AND c2.is_deleted = 0 - {$aclWhere} - AND weight >= {$threshold} AND exc.contact_id1 IS NULL"; - - CRM_Utils_Hook::dupeQuery($this, 'threshold', $query); - return $query; - } - /** * find fields related to a rule group. * diff --git a/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php b/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php index 3c14380473e2..268139c86988 100644 --- a/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php +++ b/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php @@ -32,7 +32,35 @@ public static function findExistingDuplicates(GenericHookEvent $event): void { if (!$tempTable) { return; } - $dao = \CRM_Core_DAO::executeQuery($ruleGroup->thresholdQuery($event->checkPermissions)); + + $aclWhere = $aclFrom = ''; + $dedupeTable = $tempTable; + $contactType = $ruleGroup->contact_type; + $threshold = $ruleGroup->threshold; + + if ($event->checkPermissions) { + [$aclFrom, $aclWhere] = \CRM_Contact_BAO_Contact_Permission::cacheClause(['c1', 'c2']); + $aclWhere = $aclWhere ? "AND {$aclWhere}" : ''; + } + $query = \CRM_Core_DAO::composeQuery("SELECT IF(dedupe.id1 < dedupe.id2, dedupe.id1, dedupe.id2) as id1, + IF(dedupe.id1 < dedupe.id2, dedupe.id2, dedupe.id1) as id2, dedupe.weight + FROM $dedupeTable dedupe JOIN civicrm_contact c1 ON dedupe.id1 = c1.id + JOIN civicrm_contact c2 ON dedupe.id2 = c2.id {$aclFrom} + LEFT JOIN civicrm_dedupe_exception exc + ON dedupe.id1 = exc.contact_id1 AND dedupe.id2 = exc.contact_id2 + WHERE c1.contact_type = %1 AND + c2.contact_type = %1 + AND c1.is_deleted = 0 AND c2.is_deleted = 0 + {$aclWhere} + AND weight >= %2 AND exc.contact_id1 IS NULL", + [ + 1 => [$contactType, 'String'], + 2 => [$threshold, 'Integer'], + ] + ); + + \CRM_Utils_Hook::dupeQuery($ruleGroup, 'threshold', $query); + $dao = \CRM_Core_DAO::executeQuery($query); $duplicates = []; while ($dao->fetch()) { $duplicates[] = ['entity_id_1' => $dao->id1, 'entity_id_2' => $dao->id2, 'weight' => $dao->weight]; From 4368f6db09abbc3917cecd9d221d5c7f41501fc6 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 15:37:12 -0500 Subject: [PATCH 16/85] [REF] Api3 - Refactor out uses of deprecated CRM_Utils_Array::value. --- api/v3/Contact.php | 2 +- api/v3/Contribution/Transact.php | 2 +- api/v3/Domain.php | 2 +- api/v3/Generic.php | 2 +- api/v3/GroupContact.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/v3/Contact.php b/api/v3/Contact.php index 604571d16cc9..7d348c96e433 100644 --- a/api/v3/Contact.php +++ b/api/v3/Contact.php @@ -35,7 +35,7 @@ * @throws \CRM_Core_Exception */ function civicrm_api3_contact_create($params) { - $contactID = CRM_Utils_Array::value('contact_id', $params, $params['id'] ?? NULL); + $contactID = $params['contact_id'] ?? $params['id'] ?? NULL; if ($contactID && !empty($params['check_permissions']) && !CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) { throw new \Civi\API\Exception\UnauthorizedException('Permission denied to modify contact record'); diff --git a/api/v3/Contribution/Transact.php b/api/v3/Contribution/Transact.php index 5133362b9cb7..13c93997c6a2 100644 --- a/api/v3/Contribution/Transact.php +++ b/api/v3/Contribution/Transact.php @@ -55,7 +55,7 @@ function civicrm_api3_contribution_transact($params) { } // Some payment processors expect a unique invoice_id - generate one if not supplied - $params['invoice_id'] = CRM_Utils_Array::value('invoice_id', $params, md5(uniqid(rand(), TRUE))); + $params['invoice_id'] ??= md5(uniqid(rand(), TRUE)); $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($params['payment_processor'], $params['payment_processor_mode']); $params = $paymentProcessor['object']->doPayment($params); diff --git a/api/v3/Domain.php b/api/v3/Domain.php index 3ceda091966e..717a2ee74ba6 100644 --- a/api/v3/Domain.php +++ b/api/v3/Domain.php @@ -66,7 +66,7 @@ function civicrm_api3_domain_get($params) { if (!empty($values['location']['phone'])) { $domain['domain_phone'] = [ 'phone_type' => CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_Phone', 'phone_type_id', - CRM_Utils_Array::value('phone_type_id', $values['location']['phone'][1])), + $values['location']['phone'][1]['phone_type_id'] ?? NULL), 'phone' => $values['location']['phone'][1]['phone'] ?? NULL, ]; } diff --git a/api/v3/Generic.php b/api/v3/Generic.php index e4e0f1646dee..2ae5a66e765c 100644 --- a/api/v3/Generic.php +++ b/api/v3/Generic.php @@ -477,7 +477,7 @@ function _civicrm_api3_generic_getoptions_spec(&$params, $apiRequest) { $fields = civicrm_api3_generic_getfields(['entity' => $apiRequest['entity'], ['params' => ['action' => 'create']]]); $params['field']['options'] = []; foreach ($fields['values'] as $name => $field) { - if (isset($field['pseudoconstant']) || CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_BOOLEAN) { + if (isset($field['pseudoconstant']) || ($field['type'] ?? NULL) == CRM_Utils_Type::T_BOOLEAN) { $params['field']['options'][$name] = $field['title'] ?? $name; } } diff --git a/api/v3/GroupContact.php b/api/v3/GroupContact.php index 369c3741ec0c..c5f3f154a2dc 100644 --- a/api/v3/GroupContact.php +++ b/api/v3/GroupContact.php @@ -149,7 +149,7 @@ function civicrm_api3_group_contact_delete($params) { if ($groupContact['count'] == 0 && $groupContact2['count'] == 0) { throw new CRM_Core_Exception('Cannot Delete GroupContact'); } - $params['status'] = CRM_Utils_Array::value('status', $params, empty($params['skip_undelete']) ? 'Removed' : 'Deleted'); + $params['status'] ??= (empty($params['skip_undelete']) ? 'Removed' : 'Deleted'); // "Deleted" isn't a real option so skip the api wrapper to avoid pseudoconstant validation return civicrm_api3_group_contact_create($params); } From 256c53e5d6034e4f6caa93a014fdf5da97c34330 Mon Sep 17 00:00:00 2001 From: eileen Date: Sat, 8 Feb 2025 16:32:42 +1300 Subject: [PATCH 17/85] Use local variable instead of protected property --- CRM/Dedupe/BAO/DedupeRuleGroup.php | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/CRM/Dedupe/BAO/DedupeRuleGroup.php b/CRM/Dedupe/BAO/DedupeRuleGroup.php index 673b83859661..3116f6a5f356 100644 --- a/CRM/Dedupe/BAO/DedupeRuleGroup.php +++ b/CRM/Dedupe/BAO/DedupeRuleGroup.php @@ -66,8 +66,6 @@ public function setContactIds($contactIds) { */ public $noRules = FALSE; - protected $temporaryTables = []; - /** * Return a structure holding the supported tables, fields and their titles * @@ -275,26 +273,26 @@ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode } if ($params) { - $this->temporaryTables['dedupe'] = $dedupeTable = CRM_Utils_SQL_TempTable::build() + $dedupeTable = CRM_Utils_SQL_TempTable::build() ->setCategory('dedupe') ->createWithColumns("id1 int, weight int, UNIQUE UI_id1 (id1)")->getName(); $dedupeCopyTemporaryTableObject = CRM_Utils_SQL_TempTable::build() ->setCategory('dedupe'); - $this->temporaryTables['dedupe_copy'] = $dedupeCopyTemporaryTableObject->getName(); - $insertClause = "INSERT INTO {$this->temporaryTables['dedupe']} (id1, weight)"; + $dedupeTableCopy = $dedupeCopyTemporaryTableObject->getName(); + $insertClause = "INSERT INTO $dedupeTable (id1, weight)"; $groupByClause = "GROUP BY id1, weight"; - $dupeCopyJoin = " JOIN {$this->temporaryTables['dedupe_copy']} ON {$this->temporaryTables['dedupe_copy']}.id1 = t1.column WHERE "; + $dupeCopyJoin = " JOIN $dedupeTableCopy dedupe_copy ON dedupe_copy.id1 = t1.column WHERE "; } else { - $this->temporaryTables['dedupe'] = $dedupeTable = CRM_Utils_SQL_TempTable::build() + $dedupeTable = CRM_Utils_SQL_TempTable::build() ->setCategory('dedupe') ->createWithColumns("id1 int, id2 int, weight int, UNIQUE UI_id1_id2 (id1, id2)")->getName(); $dedupeCopyTemporaryTableObject = CRM_Utils_SQL_TempTable::build() ->setCategory('dedupe'); - $this->temporaryTables['dedupe_copy'] = $dedupeCopyTemporaryTableObject->getName(); - $insertClause = "INSERT INTO {$this->temporaryTables['dedupe']} (id1, id2, weight)"; + $dedupeTableCopy = $dedupeCopyTemporaryTableObject->getName(); + $insertClause = "INSERT INTO $dedupeTable (id1, id2, weight)"; $groupByClause = "GROUP BY id1, id2, weight"; - $dupeCopyJoin = " JOIN {$this->temporaryTables['dedupe_copy']} ON {$this->temporaryTables['dedupe_copy']}.id1 = t1.column AND {$this->temporaryTables['dedupe_copy']}.id2 = t2.column WHERE "; + $dupeCopyJoin = " JOIN $dedupeTableCopy dedupe_copy ON dedupe_copy.id1 = t1.column AND dedupe_copy.id2 = t2.column WHERE "; } $patternColumn = '/t1.(\w+)/'; $exclWeightSum = []; @@ -319,22 +317,22 @@ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode // drop dedupe_copy table just in case if its already there. $dedupeCopyTemporaryTableObject->drop(); // get prepared to search within already found dupes if $searchWithinDupes flag is set - $dedupeCopyTemporaryTableObject->createWithQuery("SELECT * FROM {$this->temporaryTables['dedupe']} WHERE weight >= {$weightSum}"); + $dedupeCopyTemporaryTableObject->createWithQuery("SELECT * FROM $dedupeTable WHERE weight >= {$weightSum}"); preg_match($patternColumn, $query, $matches); $query = str_replace(' WHERE ', str_replace('column', $matches[1], $dupeCopyJoin), $query); // CRM-19612: If there's a union, there will be two WHEREs, and you // can't use the temp table twice. - if (preg_match('/' . $this->temporaryTables['dedupe_copy'] . '[\S\s]*(union)[\S\s]*' . $this->temporaryTables['dedupe_copy'] . '/i', $query, $matches, PREG_OFFSET_CAPTURE)) { + if (preg_match('/' . $dedupeTableCopy . '[\S\s]*(union)[\S\s]*' . $dedupeTableCopy . '/i', $query, $matches, PREG_OFFSET_CAPTURE)) { // Make a second temp table: - $this->temporaryTables['dedupe_copy_2'] = CRM_Utils_SQL_TempTable::build() + $dedupeTableCopy2 = CRM_Utils_SQL_TempTable::build() ->setCategory('dedupe') - ->createWithQuery("SELECT * FROM {$this->temporaryTables['dedupe']} WHERE weight >= {$weightSum}") + ->createWithQuery("SELECT * FROM $dedupeTable WHERE weight >= {$weightSum}") ->getName(); // After the union, use that new temp table: $part1 = substr($query, 0, $matches[1][1]); - $query = $part1 . str_replace($this->temporaryTables['dedupe_copy'], $this->temporaryTables['dedupe_copy_2'], substr($query, $matches[1][1])); + $query = $part1 . str_replace($dedupeTableCopy, $dedupeTableCopy2, substr($query, $matches[1][1])); } } $searchWithinDupes = 1; From e27cd7eaf9eb59cc6ed3080a8b370f42c2b73131 Mon Sep 17 00:00:00 2001 From: eileen Date: Sat, 8 Feb 2025 16:35:21 +1300 Subject: [PATCH 18/85] Use named variable rather than this --- CRM/Dedupe/BAO/DedupeRuleGroup.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CRM/Dedupe/BAO/DedupeRuleGroup.php b/CRM/Dedupe/BAO/DedupeRuleGroup.php index 3116f6a5f356..169116be633a 100644 --- a/CRM/Dedupe/BAO/DedupeRuleGroup.php +++ b/CRM/Dedupe/BAO/DedupeRuleGroup.php @@ -247,10 +247,11 @@ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode $this->contactIds = $contactIDs; $this->params = $params; } - $this->id = $id; + $ruleGroup = $this; + $ruleGroup->id = $id; // make sure we've got a fetched dbrecord, not sure if this is enforced $this->find(TRUE); - $optimizer = new CRM_Dedupe_FinderQueryOptimizer($this->id, $contactIDs, $params); + $optimizer = new CRM_Dedupe_FinderQueryOptimizer($id, $contactIDs, $params); // Reserved Rule Groups can optionally get special treatment by // implementing an optimization class and returning a query array. if ($legacyMode && $optimizer->isUseReservedQuery()) { @@ -264,9 +265,9 @@ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode if ($legacyMode) { if (!$tableQueries) { // Just for the hook.... (which is deprecated). - $this->noRules = TRUE; + $ruleGroup->noRules = TRUE; } - CRM_Utils_Hook::dupeQuery($this, 'table', $tableQueries); + CRM_Utils_Hook::dupeQuery($ruleGroup, 'table', $tableQueries); } if (empty($tableQueries)) { return FALSE; @@ -298,7 +299,7 @@ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode $exclWeightSum = []; while (!empty($tableQueries)) { - [$isInclusive, $isDie] = self::isQuerySetInclusive($tableQueries, $this->threshold, $exclWeightSum); + [$isInclusive, $isDie] = self::isQuerySetInclusive($tableQueries, $ruleGroup->threshold, $exclWeightSum); if ($isInclusive) { // order queries by table count From ecf9f4bf6363e2e276848922f31a6f86b997c53c Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 15:37:46 -0500 Subject: [PATCH 19/85] [REF] Bin - Refactor out uses of deprecated CRM_Utils_Array::value. --- bin/ContributionProcessor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ContributionProcessor.php b/bin/ContributionProcessor.php index 6dddb07a9bc3..9732b2a90880 100644 --- a/bin/ContributionProcessor.php +++ b/bin/ContributionProcessor.php @@ -415,7 +415,7 @@ public static function processAPIContribution($params) { } $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params, - CRM_Utils_Array::value('id', $params, NULL), + $params['id'] ?? NULL, 'Contribution' ); // create contribution @@ -505,7 +505,7 @@ public static function _fillCommonParams(&$params, $type = 'paypal') { } if (($type == 'paypal') && (!isset($transaction['net_amount']))) { - $transaction['net_amount'] = $transaction['total_amount'] - CRM_Utils_Array::value('fee_amount', $transaction, 0); + $transaction['net_amount'] = $transaction['total_amount'] - ($transaction['fee_amount'] ?? 0); } if (!isset($transaction['invoice_id'])) { From 9a74d8c063513fe7454450be920ad6dc8c4d72e2 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 16:41:10 -0500 Subject: [PATCH 20/85] [REF] Activity - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Activity/Form/ActivityFilter.php | 2 +- CRM/Activity/Form/ActivityView.php | 2 +- CRM/Activity/Page/AJAX.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Activity/Form/ActivityFilter.php b/CRM/Activity/Form/ActivityFilter.php index 8610c25488ee..9427797bd18e 100644 --- a/CRM/Activity/Form/ActivityFilter.php +++ b/CRM/Activity/Form/ActivityFilter.php @@ -51,7 +51,7 @@ public function setDefaultValues() { $defaults = Civi::contactSettings()->get('activity_tab_filter'); } // set Activity status 'Scheduled' by default only for dashlet - elseif (strstr(CRM_Utils_Array::value('q', $_GET), 'dashlet')) { + elseif (strstr($_GET['q'] ?? '', 'dashlet')) { $defaults['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Scheduled'); } return $defaults; diff --git a/CRM/Activity/Form/ActivityView.php b/CRM/Activity/Form/ActivityView.php index 27d7136176a8..3b00dd8f566f 100644 --- a/CRM/Activity/Form/ActivityView.php +++ b/CRM/Activity/Form/ActivityView.php @@ -103,7 +103,7 @@ public function preProcess() { $engagementLevel = $defaults['engagement_level'] ?? NULL; if ($engagementLevel) { $engagementLevels = CRM_Campaign_PseudoConstant::engagementLevel(); - $values['engagement_level'] = CRM_Utils_Array::value($engagementLevel, $engagementLevels, $engagementLevel); + $values['engagement_level'] = $engagementLevels[$engagementLevel] ?? $engagementLevel; } $values['attachment'] = CRM_Core_BAO_File::attachmentInfo('civicrm_activity', $activityId); diff --git a/CRM/Activity/Page/AJAX.php b/CRM/Activity/Page/AJAX.php index 476b12005392..affb7011292c 100644 --- a/CRM/Activity/Page/AJAX.php +++ b/CRM/Activity/Page/AJAX.php @@ -26,7 +26,7 @@ public static function getCaseActivity() { $caseID = CRM_Utils_Type::validate($_GET['caseID'], 'Integer'); $contactID = CRM_Utils_Type::validate($_GET['cid'], 'Integer'); $userID = CRM_Utils_Type::validate($_GET['userID'], 'Integer'); - $context = CRM_Utils_Type::validate(CRM_Utils_Array::value('context', $_GET), 'String'); + $context = CRM_Utils_Type::validate($_GET['context'] ?? NULL, 'String'); $optionalParameters = [ 'source_contact_id' => 'Integer', From 69bdf37360b5b9a5c40240d5a57a9169360cecf5 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 16:46:40 -0500 Subject: [PATCH 21/85] [REF] Admin - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Admin/Form/Options.php | 4 ++-- CRM/Admin/Form/PaymentProcessor.php | 2 +- CRM/Admin/Form/Setting/Localization.php | 8 +++----- CRM/Admin/Form/Setting/Mail.php | 6 ++---- CRM/Admin/Form/Setting/Smtp.php | 10 +++++----- CRM/Admin/Form/SettingTrait.php | 2 +- CRM/Admin/Page/AJAX.php | 2 +- 7 files changed, 15 insertions(+), 19 deletions(-) diff --git a/CRM/Admin/Form/Options.php b/CRM/Admin/Form/Options.php index b4987b38bd87..cb76eebf5352 100644 --- a/CRM/Admin/Form/Options.php +++ b/CRM/Admin/Form/Options.php @@ -147,7 +147,7 @@ public function setDefaultValues() { 'postal_greeting', 'addressee', ])) { - $defaults['contact_type_id'] = (CRM_Utils_Array::value('filter', $defaults)) ? $defaults['filter'] : NULL; + $defaults['contact_type_id'] = !empty($defaults['filter']) ? $defaults['filter'] : NULL; } // CRM-11516 if ($this->_gName == 'payment_instrument' && $this->_id) { @@ -486,7 +486,7 @@ public function postProcess() { if (CRM_Core_BAO_OptionValue::deleteRecord(['id' => $this->_id])) { if ($this->_gName == 'phone_type') { - CRM_Core_BAO_Phone::setOptionToNull(CRM_Utils_Array::value('value', $this->_defaultValues)); + CRM_Core_BAO_Phone::setOptionToNull($this->_defaultValues['value'] ?? NULL); } CRM_Core_Session::setStatus(ts('Selected %1 type has been deleted.', [1 => $this->_gLabel]), ts('Record Deleted'), 'success'); diff --git a/CRM/Admin/Form/PaymentProcessor.php b/CRM/Admin/Form/PaymentProcessor.php index cace0b825436..c8db9908adf5 100644 --- a/CRM/Admin/Form/PaymentProcessor.php +++ b/CRM/Admin/Form/PaymentProcessor.php @@ -416,7 +416,7 @@ public function postProcess() { public function updatePaymentProcessor($values, $domainID, $test) { if ($test) { foreach (['user_name', 'password', 'signature', 'url_site', 'url_recur', 'url_api', 'url_button', 'subject'] as $field) { - $values[$field] = empty($values["test_{$field}"]) ? CRM_Utils_Array::value($field, $values) : $values["test_{$field}"]; + $values[$field] = empty($values["test_{$field}"]) ? ($values[$field] ?? NULL) : $values["test_{$field}"]; } } if (!empty($values['accept_credit_cards'])) { diff --git a/CRM/Admin/Form/Setting/Localization.php b/CRM/Admin/Form/Setting/Localization.php index a25d9e996332..928a5b4a27b0 100644 --- a/CRM/Admin/Form/Setting/Localization.php +++ b/CRM/Admin/Form/Setting/Localization.php @@ -110,9 +110,7 @@ public function buildQuickForm() { */ public static function formRule($fields) { $errors = []; - if (($fields['monetaryThousandSeparator'] ?? NULL) == - CRM_Utils_Array::value('monetaryDecimalPoint', $fields) - ) { + if (($fields['monetaryThousandSeparator'] ?? NULL) == ($fields['monetaryDecimalPoint'] ?? NULL)) { $errors['monetaryThousandSeparator'] = ts('Thousands Separator and Decimal Delimiter can not be the same.'); } @@ -200,7 +198,7 @@ public function postProcess() { } // if we manipulated the language list, return to the localization admin screen - $return = (bool) (CRM_Utils_Array::value('makeMultilingual', $values) or CRM_Utils_Array::value('addLanguage', $values)); + $return = (!empty($values['makeMultilingual']) || !empty($values['addLanguage'])); // Update enabled currencies // we do this only to initialize monetary decimal point and thousand separator @@ -221,7 +219,7 @@ public function postProcess() { unset($filteredValues['addLanguage']); unset($filteredValues['languageLimit']); - Civi::settings()->set('languageLimit', CRM_Utils_Array::value('languageLimit', $values)); + Civi::settings()->set('languageLimit', $values['languageLimit'] ?? NULL); // save all the settings parent::commonProcess($filteredValues); diff --git a/CRM/Admin/Form/Setting/Mail.php b/CRM/Admin/Form/Setting/Mail.php index 25b0372e35a4..7cdf4f32b64f 100644 --- a/CRM/Admin/Form/Setting/Mail.php +++ b/CRM/Admin/Form/Setting/Mail.php @@ -40,14 +40,12 @@ public static function formRule($fields) { if ($fields['mailerJobSize'] < 1000) { $errors['mailerJobSize'] = ts('The job size must be at least 1000 or set to 0 (unlimited).'); } - elseif ($fields['mailerJobSize'] < - CRM_Utils_Array::value('mailerBatchLimit', $fields) - ) { + elseif ($fields['mailerJobSize'] < ($fields['mailerBatchLimit'] ?? 0)) { $errors['mailerJobSize'] = ts('A job size smaller than the batch limit will negate the effect of the batch limit.'); } } // dev/core#1768 Check the civimail_sync_interval setting. - if (CRM_Utils_Array::value('civimail_sync_interval', $fields) < 1) { + if (($fields['civimail_sync_interval'] ?? 0) < 1) { $errors['civimail_sync_interval'] = ts('Error - the synchronization interval must be at least 1'); } return empty($errors) ? TRUE : $errors; diff --git a/CRM/Admin/Form/Setting/Smtp.php b/CRM/Admin/Form/Setting/Smtp.php index 156bfc1a7765..38c1095442ef 100644 --- a/CRM/Admin/Form/Setting/Smtp.php +++ b/CRM/Admin/Form/Setting/Smtp.php @@ -60,11 +60,11 @@ public function buildQuickForm() { $this->setTitle(ts('Settings - Outbound Mail')); $this->add('text', 'sendmail_path', ts('Sendmail Path')); $this->add('text', 'sendmail_args', ts('Sendmail Argument')); - $this->add('text', 'smtpServer', ts('SMTP Server'), CRM_Utils_Array::value('smtpServer', $props)); - $this->add('text', 'smtpPort', ts('SMTP Port'), CRM_Utils_Array::value('smtpPort', $props)); - $this->addYesNo('smtpAuth', ts('Authentication?'), CRM_Utils_Array::value('smtpAuth', $props)); - $this->addElement('text', 'smtpUsername', ts('SMTP Username'), CRM_Utils_Array::value('smtpUsername', $props)); - $this->addElement('password', 'smtpPassword', ts('SMTP Password'), CRM_Utils_Array::value('smtpPassword', $props)); + $this->add('text', 'smtpServer', ts('SMTP Server'), $props['smtpServer'] ?? NULL); + $this->add('text', 'smtpPort', ts('SMTP Port'), $props['smtpPort'] ?? NULL); + $this->addYesNo('smtpAuth', ts('Authentication?'), $props['smtpAuth'] ?? NULL); + $this->addElement('text', 'smtpUsername', ts('SMTP Username'), $props['smtpUsername'] ?? NULL); + $this->addElement('password', 'smtpPassword', ts('SMTP Password'), $props['smtpPassword'] ?? NULL); $this->_testButtonName = $this->getButtonName('refresh', 'test'); diff --git a/CRM/Admin/Form/SettingTrait.php b/CRM/Admin/Form/SettingTrait.php index efca751e28c2..5f6f01017d1d 100644 --- a/CRM/Admin/Form/SettingTrait.php +++ b/CRM/Admin/Form/SettingTrait.php @@ -130,7 +130,7 @@ protected function getSettingMetadata($setting) { * @return mixed */ protected function getSettingMetadataItem($setting, $item) { - return CRM_Utils_Array::value($item, $this->getSettingsMetaData()[$setting]); + return $this->getSettingsMetaData()[$setting][$item] ?? NULL; } /** diff --git a/CRM/Admin/Page/AJAX.php b/CRM/Admin/Page/AJAX.php index a97f20380665..312035d9fa64 100644 --- a/CRM/Admin/Page/AJAX.php +++ b/CRM/Admin/Page/AJAX.php @@ -303,7 +303,7 @@ public static function getStatusMsg() { public static function getTagTree() { CRM_Core_Page_AJAX::validateAjaxRequestMethod(); $parent = CRM_Utils_Type::escape(($_GET['parent_id'] ?? 0), 'Integer'); - $substring = CRM_Utils_Type::escape(CRM_Utils_Array::value('str', $_GET), 'String'); + $substring = CRM_Utils_Type::escape($_GET['str'] ?? NULL, 'String'); $result = []; $whereClauses = ['is_tagset <> 1']; From a07b2d31b62c77d706c2493f409bed0a475f606c Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 16:57:07 -0500 Subject: [PATCH 22/85] [REF] Badge - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Badge/BAO/Badge.php | 14 +++++++------- CRM/Badge/Form/Layout.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CRM/Badge/BAO/Badge.php b/CRM/Badge/BAO/Badge.php index d1896836600c..3a0e82c3fa93 100644 --- a/CRM/Badge/BAO/Badge.php +++ b/CRM/Badge/BAO/Badge.php @@ -181,17 +181,17 @@ public function labelCreator($formattedRow, $cellspacing = 0) { $startOffset = 0; if (!empty($formattedRow['image_1'])) { - $this->printImage($formattedRow['image_1'], NULL, NULL, CRM_Utils_Array::value('width_image_1', $formattedRow), - CRM_Utils_Array::value('height_image_1', $formattedRow)); + $this->printImage($formattedRow['image_1'], NULL, NULL, $formattedRow['width_image_1'] ?? NULL, + $formattedRow['height_image_1'] ?? NULL); } if (!empty($formattedRow['image_2'])) { - $this->printImage($formattedRow['image_2'], $x + 68, NULL, CRM_Utils_Array::value('width_image_2', $formattedRow), - CRM_Utils_Array::value('height_image_2', $formattedRow)); + $this->printImage($formattedRow['image_2'], $x + 68, NULL, $formattedRow['width_image_2'] ?? NULL, + $formattedRow['height_image_2'] ?? NULL); } - if ((CRM_Utils_Array::value('height_image_1', $formattedRow) > - CRM_Utils_Array::value('height_image_2', $formattedRow)) && !empty($formattedRow['height_image_1']) + if ((($formattedRow['height_image_1'] ?? 0) > + ($formattedRow['height_image_2'] ?? 0)) && !empty($formattedRow['height_image_1']) ) { $startOffset = $formattedRow['height_image_1'] ?? NULL; } @@ -213,7 +213,7 @@ public function labelCreator($formattedRow, $cellspacing = 0) { default: break; } - $this->pdf->Image($formattedRow['participant_image'], $x + $imageAlign, $y + $startOffset, CRM_Utils_Array::value('width_participant_image', $formattedRow), CRM_Utils_Array::value('height_participant_image', $formattedRow)); + $this->pdf->Image($formattedRow['participant_image'], $x + $imageAlign, $y + $startOffset, $formattedRow['width_participant_image'] ?? NULL, $formattedRow['height_participant_image'] ?? NULL); if ($startOffset == NULL && !empty($formattedRow['height_participant_image'])) { $startOffset = $formattedRow['height_participant_image']; } diff --git a/CRM/Badge/Form/Layout.php b/CRM/Badge/Form/Layout.php index 6f5b9a41892a..fb705397ed84 100644 --- a/CRM/Badge/Form/Layout.php +++ b/CRM/Badge/Form/Layout.php @@ -148,7 +148,7 @@ public function setDefaultValues() { } // its ok if there is no element called is_active - $defaults['is_active'] = ($this->_id) ? CRM_Utils_Array::value('is_active', $defaults) : 1; + $defaults['is_active'] = ($this->_id) ? ($defaults['is_active'] ?? NULL) : 1; return $defaults; } From ad3a067aed4654a90a16726ce87f43497b5829dd Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 16:58:36 -0500 Subject: [PATCH 23/85] [REF] Batch - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Batch/Form/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 8b835efcb9d4..9193a4d7ade7 100644 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -413,7 +413,7 @@ public static function formRule($params, $files, $self) { if (!empty($params['soft_credit_contact_id'][$key]) && empty($params['soft_credit_amount'][$key])) { $errors["soft_credit_amount[$key]"] = ts('Please enter the soft credit amount.'); } - if (!empty($params['soft_credit_amount']) && !empty($params['soft_credit_amount'][$key]) && CRM_Utils_Rule::cleanMoney(CRM_Utils_Array::value($key, $params['soft_credit_amount'])) > CRM_Utils_Rule::cleanMoney($value['total_amount'])) { + if (!empty($params['soft_credit_amount'][$key]) && CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]) > CRM_Utils_Rule::cleanMoney($value['total_amount'])) { $errors["soft_credit_amount[$key]"] = ts('Soft credit amount should not be greater than the total amount'); } From fd06d5b0fdf5a7d06b64bab52e4e7ad2d83fe4be Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:01:09 -0500 Subject: [PATCH 24/85] [REF] Campaign - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Campaign/Form/Task/Interview.php | 4 ++-- CRM/Campaign/Form/Task/Release.php | 4 ++-- CRM/Campaign/Page/Petition/ThankYou.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CRM/Campaign/Form/Task/Interview.php b/CRM/Campaign/Form/Task/Interview.php index 653f67c0cb16..314b04932de1 100644 --- a/CRM/Campaign/Form/Task/Interview.php +++ b/CRM/Campaign/Form/Task/Interview.php @@ -70,8 +70,8 @@ public function preProcess() { else { parent::preProcess(); //get the survey id from user submitted values. - $this->_surveyId = CRM_Utils_Array::value('campaign_survey_id', $this->get('formValues')); - $this->_interviewerId = CRM_Utils_Array::value('survey_interviewer_id', $this->get('formValues')); + $this->_surveyId = $this->get('formValues')['campaign_survey_id'] ?? NULL; + $this->_interviewerId = $this->get('formValues')['survey_interviewer_id'] ?? NULL; } if ($this->_surveyId) { diff --git a/CRM/Campaign/Form/Task/Release.php b/CRM/Campaign/Form/Task/Release.php index 6f9b94468a74..1a2e2828f876 100644 --- a/CRM/Campaign/Form/Task/Release.php +++ b/CRM/Campaign/Form/Task/Release.php @@ -61,8 +61,8 @@ public function preProcess() { else { parent::preProcess(); //get the survey id from user submitted values. - $this->_surveyId = CRM_Utils_Array::value('campaign_survey_id', $this->get('formValues')); - $this->_interviewerId = CRM_Utils_Array::value('survey_interviewer_id', $this->get('formValues')); + $this->_surveyId = $this->get('formValues')['campaign_survey_id'] ?? NULL; + $this->_interviewerId = $this->get('formValues')['survey_interviewer_id'] ?? NULL; } if (!$this->_surveyId) { diff --git a/CRM/Campaign/Page/Petition/ThankYou.php b/CRM/Campaign/Page/Petition/ThankYou.php index 6c0ede29d153..e5d233b35e1e 100644 --- a/CRM/Campaign/Page/Petition/ThankYou.php +++ b/CRM/Campaign/Page/Petition/ThankYou.php @@ -33,7 +33,7 @@ public function run() { $this->assign('survey_id', $petition_id); $this->assign('status_id', $id); $this->assign('is_share', $petition['is_share'] ?? NULL); - CRM_Utils_System::setTitle(CRM_Utils_Array::value('thankyou_title', $petition)); + CRM_Utils_System::setTitle($petition['thankyou_title'] ?? NULL); // send thank you or email verification emails /* From 1e40fc2306e19b8103f84cf995dafa1b730e3985 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sat, 8 Feb 2025 22:01:49 -0500 Subject: [PATCH 25/85] [REF] Relationship - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Contact/BAO/Relationship.php | 16 ++++++++-------- CRM/Contact/Form/Relationship.php | 2 +- CRM/Contact/Page/View/Relationship.php | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CRM/Contact/BAO/Relationship.php b/CRM/Contact/BAO/Relationship.php index 8ca5dd4875c6..4ecf494620d9 100644 --- a/CRM/Contact/BAO/Relationship.php +++ b/CRM/Contact/BAO/Relationship.php @@ -54,7 +54,7 @@ public static function create(&$params) { $extendedParams = self::loadExistingRelationshipDetails($params); // When id is specified we always want to update, so we don't need to check for duplicate relations. - if (!isset($params['id']) && self::checkDuplicateRelationship($extendedParams, (int) $extendedParams['contact_id_a'], (int) $extendedParams['contact_id_b'], CRM_Utils_Array::value('id', $extendedParams, 0))) { + if (!isset($params['id']) && self::checkDuplicateRelationship($extendedParams, (int) $extendedParams['contact_id_a'], (int) $extendedParams['contact_id_b'], $extendedParams['id'] ?? 0)) { throw new CRM_Core_Exception('Duplicate Relationship'); } $params = $extendedParams; @@ -219,7 +219,7 @@ public static function add($params, $ids = []) { foreach (self::getdefaults() as $defaultField => $defaultValue) { if (isset($params[$defaultField])) { if (in_array($defaultField, $dateFields)) { - $relationship->$defaultField = CRM_Utils_Date::format(CRM_Utils_Array::value($defaultField, $params)); + $relationship->$defaultField = CRM_Utils_Date::format($params[$defaultField] ?? NULL); if (!$relationship->$defaultField) { $relationship->$defaultField = 'NULL'; } @@ -271,7 +271,7 @@ public static function addRecent($params, $relationship) { if (($session->get('userID') == $relationship->contact_id_a) || CRM_Contact_BAO_Contact_Permission::allow($relationship->contact_id_a, CRM_Core_Permission::EDIT) ) { - $rType = substr(CRM_Utils_Array::value('relationship_type_id', $params), -3); + $rType = substr($params['relationship_type_id'], -3); $recentOther = [ 'editUrl' => CRM_Utils_System::url('civicrm/contact/view/rel', "action=update&reset=1&id={$relationship->id}&cid={$relationship->contact_id_a}&rtype={$rType}&context=home" @@ -875,7 +875,7 @@ public static function setIsActive($id, $is_active) { ]); if (is_array($result) && !empty($result['is_error']) && $result['error_message'] != 'Duplicate Relationship') { - throw new CRM_Core_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result); + throw new CRM_Core_Exception($result['error_message'], $result['error_code'] ?? 'undefined', $result); } return TRUE; @@ -1427,7 +1427,7 @@ public static function relatedMemberships($contactId, $params, $ids, $action = C $relTypeValues = []; CRM_Contact_BAO_RelationshipType::retrieve($relTypeParams, $relTypeValues); - if (($relTypeValues['name_a_b'] ?? NULL) == CRM_Utils_Array::value('name_b_a', $relTypeValues)) { + if (($relTypeValues['name_a_b'] ?? NULL) == ($relTypeValues['name_b_a'] ?? NULL)) { $values[$cid]['relationshipTypeDirection'] = '_a_b'; } else { @@ -1440,7 +1440,7 @@ public static function relatedMemberships($contactId, $params, $ids, $action = C $relationshipProcessor = new CRM_Member_Utils_RelationshipProcessor(array_keys($values), $active); foreach ($values as $cid => $details) { - $relatedContacts = array_keys(CRM_Utils_Array::value('relatedContacts', $details, [])); + $relatedContacts = array_keys($details['relatedContacts'] ?? []); $mainRelatedContactId = reset($relatedContacts); foreach ($relationshipProcessor->getRelationshipMembershipsForContact((int) $cid) as $membershipId => $membershipValues) { @@ -1879,7 +1879,7 @@ public static function getContactRelationshipSelector(&$params) { 'civicrm/contact/view', "reset=1&cid={$values['cid']}"); - $relationship['relation'] = CRM_Utils_Array::value('case', $values, '') . CRM_Utils_System::href( + $relationship['relation'] = ($values['case'] ?? '') . CRM_Utils_System::href( $values['relation'], 'civicrm/contact/view/rel', "action=view&reset=1&cid={$values['cid']}&id={$values['id']}&rtype={$values['rtype']}"); @@ -2184,7 +2184,7 @@ protected static function addInheritedMembership($membershipValues) { AND owner_membership_id = {$membershipValues['owner_membership_id']} AND is_current_member = 1"; $result = CRM_Core_DAO::singleValueQuery($query); - if ($result < CRM_Utils_Array::value('max_related', $membershipValues, PHP_INT_MAX)) { + if ($result < ($membershipValues['max_related'] ?? PHP_INT_MAX)) { // Convert custom_xx_id fields to custom_xx // See https://lab.civicrm.org/dev/membership/-/issues/37 // This makes sure the value is copied and not the looked up value. diff --git a/CRM/Contact/Form/Relationship.php b/CRM/Contact/Form/Relationship.php index 4d9c422e83ec..ebe4c7e08447 100644 --- a/CRM/Contact/Form/Relationship.php +++ b/CRM/Contact/Form/Relationship.php @@ -517,7 +517,7 @@ public static function getRelationshipTypeMetadata($relationshipList) { $jsData[$id] = array_filter(array_intersect_key($allRelationshipNames[$id], $whatWeWant)); // Add user-friendly placeholder foreach (['a', 'b'] as $x) { - $type = !empty($jsData[$id]["contact_sub_type_$x"]) ? $jsData[$id]["contact_sub_type_$x"] : (CRM_Utils_Array::value("contact_type_$x", $jsData[$id])); + $type = !empty($jsData[$id]["contact_sub_type_$x"]) ? $jsData[$id]["contact_sub_type_$x"] : ($jsData[$id]["contact_type_$x"] ?? NULL); $jsData[$id]["placeholder_$x"] = $type ? ts('- select %1 -', [strtolower($contactTypes[$type]['label'])]) : ts('- select contact -'); } } diff --git a/CRM/Contact/Page/View/Relationship.php b/CRM/Contact/Page/View/Relationship.php index ec6ad2f88de7..70ce2555bad4 100644 --- a/CRM/Contact/Page/View/Relationship.php +++ b/CRM/Contact/Page/View/Relationship.php @@ -100,7 +100,7 @@ public function view() { NULL, TRUE, NULL, FALSE, CRM_Core_Permission::VIEW); CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, FALSE, NULL, NULL, NULL, $this->getEntityId()); - $rType = CRM_Utils_Array::value('rtype', $viewRelationship[$this->getEntityId()]); + $rType = $viewRelationship[$this->getEntityId()]['rtype']; // add viewed contribution to recent items list $url = CRM_Utils_System::url('civicrm/contact/view/rel', "action=view&reset=1&id={$viewRelationship[$this->getEntityId()]['id']}&cid={$this->getContactId()}&context=home" From 422f49e1339a1e1f7f11b7ae628a84cc6bd1528d Mon Sep 17 00:00:00 2001 From: colemanw Date: Sat, 8 Feb 2025 22:07:50 -0500 Subject: [PATCH 26/85] [REF] Contact - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Contact/BAO/Query.php | 6 +++--- CRM/Contact/Form/Contact.php | 2 +- CRM/Contact/Form/DedupeRules.php | 8 ++++---- CRM/Contact/Form/Search.php | 8 ++++---- CRM/Contact/Form/Search/Builder.php | 2 +- CRM/Contact/Form/Search/Criteria.php | 2 +- CRM/Contact/Form/Task/EmailTrait.php | 2 +- CRM/Contact/Form/Task/PDFTrait.php | 4 ++-- CRM/Contact/Import/Form/MapField.php | 2 +- CRM/Contact/Page/AJAX.php | 12 ++++++------ CRM/Contact/Selector.php | 2 +- 11 files changed, 25 insertions(+), 25 deletions(-) diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index 998cd52bade2..7c793a415458 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -5387,7 +5387,7 @@ public function dateQueryBuilder( $this->_where[$grouping][] = self::buildClause("{$tableName}.{$dbFieldName}", $op); } - $op = CRM_Utils_Array::value($op, CRM_Core_SelectValues::getSearchBuilderOperators(), $op); + $op = CRM_Core_SelectValues::getSearchBuilderOperators()[$op] ?? $op; $this->_qill[$grouping][] = "$fieldTitle $op $format"; } @@ -6182,7 +6182,7 @@ public static function buildQillForFieldValue( // if Operator chosen is NULL/EMPTY then if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) { - return [CRM_Utils_Array::value($op, $qillOperators, $op), '']; + return [$qillOperators[$op] ?? $op, '']; } // @todo - if the right BAO is passed in special handling for the below @@ -6244,7 +6244,7 @@ public static function buildQillForFieldValue( $fieldValue = CRM_Utils_Date::customFormat($fieldValue); } - return [CRM_Utils_Array::value($op, $qillOperators, $op), $fieldValue]; + return [$qillOperators[$op] ?? $op, $fieldValue]; } /** diff --git a/CRM/Contact/Form/Contact.php b/CRM/Contact/Form/Contact.php index f227ccd82f0b..4a434b2bf9c2 100644 --- a/CRM/Contact/Form/Contact.php +++ b/CRM/Contact/Form/Contact.php @@ -1000,7 +1000,7 @@ public function postProcess() { //CRM-5143 //if subtype is set, send subtype as extend to validate subtype customfield - $customFieldExtends = (CRM_Utils_Array::value('contact_sub_type', $params)) ? $params['contact_sub_type'] : $params['contact_type']; + $customFieldExtends = !empty($params['contact_sub_type']) ? $params['contact_sub_type'] : $params['contact_type']; $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params, $this->_contactId, diff --git a/CRM/Contact/Form/DedupeRules.php b/CRM/Contact/Form/DedupeRules.php index 9b85814dc227..8b1927151417 100644 --- a/CRM/Contact/Form/DedupeRules.php +++ b/CRM/Contact/Form/DedupeRules.php @@ -157,8 +157,8 @@ public static function formRule($fields, $files, $self) { } if (empty($fields['threshold'])) { // CRM-20607 - Don't validate the threshold of hard-coded rules - if (!(CRM_Utils_Array::value('is_reserved', $fields) && - CRM_Utils_File::isIncludable("CRM/Dedupe/BAO/QueryBuilder/{$self->_defaultValues['name']}.php"))) { + if (empty($fields['is_reserved']) || + !CRM_Utils_File::isIncludable("CRM/Dedupe/BAO/QueryBuilder/{$self->_defaultValues['name']}.php")) { $errors['threshold'] = ts('Threshold weight cannot be empty or zero.'); } } @@ -241,8 +241,8 @@ public function postProcess(): void { if (empty($values["where_$count"])) { continue; } - [$table, $field] = explode('.', CRM_Utils_Array::value("where_$count", $values)); - $length = !empty($values["length_$count"]) ? CRM_Utils_Array::value("length_$count", $values) : NULL; + [$table, $field] = explode('.', $values["where_$count"]); + $length = !empty($values["length_$count"]) ? $values["length_$count"] : NULL; $weight = $values["weight_$count"]; if ($table && $field) { $ruleDao = new CRM_Dedupe_DAO_DedupeRule(); diff --git a/CRM/Contact/Form/Search.php b/CRM/Contact/Form/Search.php index 182d9bc1f8f7..38807f37f63d 100644 --- a/CRM/Contact/Form/Search.php +++ b/CRM/Contact/Form/Search.php @@ -189,7 +189,7 @@ public static function &validContext() { * @return bool */ public static function isSearchContext($context) { - $searchContext = CRM_Utils_Array::value($context, self::validContext()); + $searchContext = self::validContext()[$context] ?? FALSE; return (bool) $searchContext; } @@ -584,10 +584,10 @@ public function preProcess() { $this->set('uf_group_id', $ufGroupID); // also get the object mode directly from the post value - $this->_componentMode = CRM_Utils_Array::value('component_mode', $_POST, $this->_componentMode); + $this->_componentMode = $_POST['component_mode'] ?? $this->_componentMode; // also get the operator from the post value if set - $this->_operator = CRM_Utils_Array::value('operator', $_POST, $this->_operator); + $this->_operator = $_POST['operator'] ?? $this->_operator; $this->_formValues['operator'] = $this->_operator; $this->set('operator', $this->_operator); } @@ -668,7 +668,7 @@ public function preProcess() { } } $this->assign('id', $ufGroupID); - $operator = CRM_Utils_Array::value('operator', $this->_formValues, CRM_Contact_BAO_Query::SEARCH_OPERATOR_AND); + $operator = $this->_formValues['operator'] ?? CRM_Contact_BAO_Query::SEARCH_OPERATOR_AND; $this->set('queryOperator', $operator); if ($operator == CRM_Contact_BAO_Query::SEARCH_OPERATOR_OR) { $this->assign('operator', ts('OR')); diff --git a/CRM/Contact/Form/Search/Builder.php b/CRM/Contact/Form/Search/Builder.php index 1500d3bb6c28..5eea800cf577 100644 --- a/CRM/Contact/Form/Search/Builder.php +++ b/CRM/Contact/Form/Search/Builder.php @@ -84,7 +84,7 @@ public function buildQuickForm() { $fieldNameTypes = []; foreach ($fields as $name => $field) { // Assign date type to respective field name, which will be later used to modify operator list - $fieldNameTypes[$name] = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $field)); + $fieldNameTypes[$name] = CRM_Utils_Type::typeToString($field['type'] ?? NULL); // it's necessary to know which of the fields are searchable by label if (isset($field['searchByLabel']) && $field['searchByLabel']) { $searchByLabelFields[] = $name; diff --git a/CRM/Contact/Form/Search/Criteria.php b/CRM/Contact/Form/Search/Criteria.php index 7625bfd55fc0..f662c6d14227 100644 --- a/CRM/Contact/Form/Search/Criteria.php +++ b/CRM/Contact/Form/Search/Criteria.php @@ -278,7 +278,7 @@ public static function getSearchFieldMetadata() { $metadata = civicrm_api3('Relationship', 'getfields', [])['values']; $metadata = array_merge($metadata, civicrm_api3('Contact', 'getfields', [])['values']); foreach ($fields as $fieldName => $field) { - $fields[$fieldName] = array_merge(CRM_Utils_Array::value($fieldName, $metadata, []), $field); + $fields[$fieldName] = array_merge($metadata[$fieldName] ?? [], $field); } return $fields; } diff --git a/CRM/Contact/Form/Task/EmailTrait.php b/CRM/Contact/Form/Task/EmailTrait.php index adc2383296ed..e66ee7d3a719 100644 --- a/CRM/Contact/Form/Task/EmailTrait.php +++ b/CRM/Contact/Form/Task/EmailTrait.php @@ -291,7 +291,7 @@ public function buildQuickForm() { $this->addEntityRef($field, $values['label'], $attribute, $required); } else { - $this->add($values['type'], $field, $values['label'], $attribute, $required, CRM_Utils_Array::value('extra', $values)); + $this->add($values['type'], $field, $values['label'], $attribute, $required, $values['extra'] ?? NULL); } } } diff --git a/CRM/Contact/Form/Task/PDFTrait.php b/CRM/Contact/Form/Task/PDFTrait.php index 0702caefbf81..5335b3cf6460 100644 --- a/CRM/Contact/Form/Task/PDFTrait.php +++ b/CRM/Contact/Form/Task/PDFTrait.php @@ -294,7 +294,7 @@ public function postProcess(): void { // CRM-16725 Skip creation of activities if user is previewing their PDF letter(s) if ($this->isLiveMode()) { - $activityIds = $this->createActivities($html_message, $this->_contactIds, $formValues['subject'], CRM_Utils_Array::value('campaign_id', $formValues)); + $activityIds = $this->createActivities($html_message, $this->_contactIds, $formValues['subject'], $formValues['campaign_id'] ?? NULL); } if (!empty($formValues['document_file_path'])) { @@ -494,7 +494,7 @@ public function processTemplate(&$formValues) { CRM_Core_BAO_MessageTemplate::add($messageTemplate); } } - elseif (CRM_Utils_Array::value('template', $formValues) > 0) { + elseif (($formValues['template'] ?? 0) > 0) { if (!empty($formValues['bind_format']) && $formValues['format_id']) { $query = "UPDATE civicrm_msg_template SET pdf_format_id = {$formValues['format_id']} WHERE id = {$formValues['template']}"; } diff --git a/CRM/Contact/Import/Form/MapField.php b/CRM/Contact/Import/Form/MapField.php index 0c21ac7fb9b7..69566eead2a8 100644 --- a/CRM/Contact/Import/Form/MapField.php +++ b/CRM/Contact/Import/Form/MapField.php @@ -330,7 +330,7 @@ public function formatCustomFieldName(array $fields): array { */ public function submit(array $params): void { // store mapping Id to display it in the preview page - $this->set('loadMappingId', CRM_Utils_Array::value('mappingId', $params)); + $this->set('loadMappingId', $params['mappingId'] ?? NULL); //Updating Mapping Records if (!empty($params['updateMapping'])) { diff --git a/CRM/Contact/Page/AJAX.php b/CRM/Contact/Page/AJAX.php index acaa0d3f123e..7b60ae75ef09 100644 --- a/CRM/Contact/Page/AJAX.php +++ b/CRM/Contact/Page/AJAX.php @@ -385,7 +385,7 @@ public static function getContactEmail() { //working here $result[] = [ 'text' => '"' . $dao->name . '" <' . $dao->email . '>', - 'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>', + 'id' => !empty($_GET['id']) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>', ]; } CRM_Utils_JSON::output($result); @@ -634,7 +634,7 @@ public static function getDedupes() { $searchRows[$count]['dst_email'] = $pairInfo['dst_email'] ?? NULL; $searchRows[$count]['dst_street'] = $pairInfo['dst_street'] ?? NULL; $searchRows[$count]['dst_postcode'] = $pairInfo['dst_postcode'] ?? NULL; - $searchRows[$count]['conflicts'] = str_replace("',", "',
", CRM_Utils_Array::value('conflicts', $pair)); + $searchRows[$count]['conflicts'] = str_replace("',", "',
", $pair['conflicts'] ?? ''); $searchRows[$count]['weight'] = $pair['weight'] ?? NULL; if (!empty($pairInfo['data']['canMerge'])) { @@ -826,10 +826,10 @@ public static function selectUnselectContacts() { CRM_Core_Page_AJAX::validateAjaxRequestMethod(); $name = $_REQUEST['name'] ?? NULL; $cacheKey = $_REQUEST['qfKey'] ?? NULL; - $state = CRM_Utils_Array::value('state', $_REQUEST, 'checked'); - $variableType = CRM_Utils_Array::value('variableType', $_REQUEST, 'single'); + $state = $_REQUEST['state'] ?? 'checked'; + $variableType = $_REQUEST['variableType'] ?? 'single'; - $actionToPerform = CRM_Utils_Array::value('action', $_REQUEST, 'select'); + $actionToPerform = $_REQUEST['action'] ?? 'select'; if ($variableType == 'multiple') { // action post value only works with multiple type variable @@ -931,7 +931,7 @@ public static function getContactRelationships() { CRM_Core_Page_AJAX::validateAjaxRequestMethod(); $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer'); $context = CRM_Utils_Request::retrieve('context', 'Alphanumeric'); - $relationship_type_id = CRM_Utils_Type::escape(CRM_Utils_Array::value('relationship_type_id', $_GET), 'Integer', FALSE); + $relationship_type_id = CRM_Utils_Type::escape($_GET['relationship_type_id'] ?? NULL, 'Integer', FALSE); if (!CRM_Contact_BAO_Contact_Permission::allow($contactID)) { return CRM_Utils_System::permissionDenied(); diff --git a/CRM/Contact/Selector.php b/CRM/Contact/Selector.php index 045ddc3b8af6..346fa3f4842e 100644 --- a/CRM/Contact/Selector.php +++ b/CRM/Contact/Selector.php @@ -212,7 +212,7 @@ public function __construct( } $displayRelationshipType = $this->_formValues['display_relationship_type'] ?? NULL; - $operator = CRM_Utils_Array::value('operator', $this->_formValues, 'AND'); + $operator = $this->_formValues['operator'] ?? 'AND'; // rectify params to what proximity search expects if there is a value for prox_distance // CRM-7021 From c0ca54983075a20649745bc6e1cd6cf2f8e0431b Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:26:39 -0500 Subject: [PATCH 27/85] [REF] CRM/Contribute - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Contribute/BAO/Contribution.php | 12 ++++++------ CRM/Contribute/BAO/Contribution/Utils.php | 2 +- CRM/Contribute/BAO/FinancialProcessor.php | 12 ++++++------ CRM/Contribute/BAO/Query.php | 6 +++--- CRM/Contribute/Form/AbstractEditPayment.php | 2 +- CRM/Contribute/Form/Contribution.php | 2 +- CRM/Contribute/Form/Contribution/ThankYou.php | 4 ++-- CRM/Contribute/Form/ContributionBase.php | 8 ++++---- CRM/Contribute/Form/ContributionPage.php | 3 ++- CRM/Contribute/Form/ContributionPage/Amount.php | 2 +- CRM/Contribute/Form/ContributionView.php | 2 +- CRM/Contribute/Form/Task/PDFLetter.php | 2 +- CRM/Contribute/Page/ContributionPage.php | 2 +- 13 files changed, 30 insertions(+), 29 deletions(-) diff --git a/CRM/Contribute/BAO/Contribution.php b/CRM/Contribute/BAO/Contribution.php index 9db359ad11aa..475c5e111d0a 100644 --- a/CRM/Contribute/BAO/Contribution.php +++ b/CRM/Contribute/BAO/Contribution.php @@ -384,8 +384,8 @@ public static function calculateMissingAmountParams(&$params, $contributionID) { ->addWhere('id', '=', $contributionID) ->execute() ->first(); - $totalAmount = (isset($params['total_amount']) ? (float) $params['total_amount'] : (float) CRM_Utils_Array::value('total_amount', $contribution)); - $feeAmount = (isset($params['fee_amount']) ? (float) $params['fee_amount'] : (float) CRM_Utils_Array::value('fee_amount', $contribution)); + $totalAmount = (isset($params['total_amount']) ? (float) $params['total_amount'] : (float) ($contribution['total_amount'] ?? 0)); + $feeAmount = (isset($params['fee_amount']) ? (float) $params['fee_amount'] : (float) ($contribution['fee_amount'] ?? 0)); $params['net_amount'] = $totalAmount - $feeAmount; } } @@ -2296,7 +2296,7 @@ public function composeMessageArray($input, $ids, $values = [], $returnMessageTe FROM civicrm_membership_payment WHERE contribution_id = %1 "; $params = [1 => [$this->id, 'Integer']]; - $ids['membership'] = (array) CRM_Utils_Array::value('membership', $ids, []); + $ids['membership'] = (array) ($ids['membership'] ?? []); $dao = CRM_Core_DAO::executeQuery($query, $params); while ($dao->fetch()) { @@ -2688,7 +2688,7 @@ public function _assignMessageVariablesToTemplate(&$values, $input, $returnMessa $template->assign('selectPremium', FALSE); } $template->assign('title', $values['title'] ?? NULL); - $values['amount'] = CRM_Utils_Array::value('total_amount', $input, (CRM_Utils_Array::value('amount', $input)), NULL); + $values['amount'] = $input['total_amount'] ?? $input['amount'] ?? NULL; if (!$values['amount'] && isset($this->total_amount)) { $values['amount'] = $this->total_amount; } @@ -3760,7 +3760,7 @@ public static function generateFromEmailAndName($input, $contribution) { // Use input value if supplied. if (!empty($input['receipt_from_email'])) { return [ - CRM_Utils_Array::value('receipt_from_name', $input, ''), + $input['receipt_from_name'] ?? '', $input['receipt_from_email'], ]; } @@ -3807,7 +3807,7 @@ public function loadRelatedMembershipObjects($ids = []) { FROM civicrm_membership_payment WHERE contribution_id = %1 "; $params = [1 => [$this->id, 'Integer']]; - $ids['membership'] = (array) CRM_Utils_Array::value('membership', $ids, []); + $ids['membership'] = (array) ($ids['membership'] ?? []); $dao = CRM_Core_DAO::executeQuery($query, $params); while ($dao->fetch()) { diff --git a/CRM/Contribute/BAO/Contribution/Utils.php b/CRM/Contribute/BAO/Contribution/Utils.php index e1cdcacecbfc..75615170281a 100644 --- a/CRM/Contribute/BAO/Contribution/Utils.php +++ b/CRM/Contribute/BAO/Contribution/Utils.php @@ -340,7 +340,7 @@ public static function getPendingCompleteFailedAndCancelledStatuses(): array { */ public static function overrideDefaultCurrency($params) { $config = CRM_Core_Config::singleton(); - $config->defaultCurrency = CRM_Utils_Array::value('currency', $params, $config->defaultCurrency); + $config->defaultCurrency = $params['currency'] ?? $config->defaultCurrency; } /** diff --git a/CRM/Contribute/BAO/FinancialProcessor.php b/CRM/Contribute/BAO/FinancialProcessor.php index 9097a1164d50..514865e75049 100644 --- a/CRM/Contribute/BAO/FinancialProcessor.php +++ b/CRM/Contribute/BAO/FinancialProcessor.php @@ -75,13 +75,13 @@ private static function createFinancialItemsForLine($params, $context, $fields, $receiveDate = CRM_Utils_Date::isoToMysql($params['contribution']->receive_date); } - $financialAccount = CRM_Contribute_BAO_FinancialProcessor::getFinancialAccountForStatusChangeTrxn($params, CRM_Utils_Array::value('financial_account_id', $prevFinancialItem)); + $financialAccount = CRM_Contribute_BAO_FinancialProcessor::getFinancialAccountForStatusChangeTrxn($params, $prevFinancialItem['financial_account_id']); $currency = $params['prevContribution']->currency; if ($params['contribution']->currency) { $currency = $params['contribution']->currency; } - $previousLineItemTotal = CRM_Utils_Array::value('line_total', $previousLineItems[$fieldValueId] ?? NULL, 0); + $previousLineItemTotal = $previousLineItems[$fieldValueId]['line_total'] ?? 0; $itemParams = [ 'transaction_date' => $receiveDate, 'contact_id' => $params['prevContribution']->contact_id, @@ -101,10 +101,10 @@ private static function createFinancialItemsForLine($params, $context, $fields, $taxAmount = (float) $lineItemDetails['tax_amount']; if ($context === 'changeFinancialType' && $lineItemDetails['tax_amount'] === 'null') { // reverse the Sale Tax amount if there is no tax rate associated with new Financial Type - $taxAmount = CRM_Utils_Array::value('tax_amount', $previousLineItems[$fieldValueId] ?? NULL, 0); + $taxAmount = $previousLineItems[$fieldValueId]['tax_amount'] ?? 0; } elseif ($previousLineItemTotal != $lineItemDetails['line_total']) { - $taxAmount -= CRM_Utils_Array::value('tax_amount', $previousLineItems[$fieldValueId] ?? NULL, 0); + $taxAmount -= $previousLineItems[$fieldValueId]['tax_amount'] ?? 0; } if ($taxAmount != 0) { $itemParams['amount'] = CRM_Contribute_BAO_FinancialProcessor::getMultiplier($params['contribution']->contribution_status_id, $context) * $taxAmount; @@ -180,7 +180,7 @@ protected static function getFinancialItemAmountFromParams($params, $context, $l elseif ($context == 'changedStatus') { $cancelledTaxAmount = 0; if ($isARefund) { - $cancelledTaxAmount = CRM_Utils_Array::value('tax_amount', $lineItemDetails, '0.00'); + $cancelledTaxAmount = $lineItemDetails['tax_amount'] ?? '0.00'; } return CRM_Contribute_BAO_FinancialProcessor::getMultiplier($params['contribution']->contribution_status_id, $context) * ((float) $lineItemDetails['line_total'] + (float) $cancelledTaxAmount); } @@ -309,7 +309,7 @@ public static function updateFinancialAccountsOnContributionStatusChange(&$param } // @todo we should stop passing $params by reference - splitting this out would be a step towards that. // This is an update so original currency if none passed in. - $params['trxnParams']['currency'] = CRM_Utils_Array::value('currency', $params, $params['prevContribution']->currency); + $params['trxnParams']['currency'] = $params['currency'] ?? $params['prevContribution']->currency; $transactionIDs[] = CRM_Contribute_BAO_FinancialProcessor::recordAlwaysAccountsReceivable($params['trxnParams'], $params); $trxn = CRM_Core_BAO_FinancialTrxn::create($params['trxnParams']); diff --git a/CRM/Contribute/BAO/Query.php b/CRM/Contribute/BAO/Query.php index a39542ca5f74..83a7b1d05546 100644 --- a/CRM/Contribute/BAO/Query.php +++ b/CRM/Contribute/BAO/Query.php @@ -141,9 +141,9 @@ public static function whereClauseSingle(&$values, &$query) { $qillName = array_search($name, $fieldAliases); } $pseudoExtraParam = []; - $fieldSpec = CRM_Utils_Array::value($fieldName, $fields, []); - $tableName = CRM_Utils_Array::value('table_name', $fieldSpec, 'civicrm_contribution'); - $dataType = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $fieldSpec)); + $fieldSpec = $fields[$fieldName] ?? []; + $tableName = $fieldSpec['table_name'] ?? 'civicrm_contribution'; + $dataType = CRM_Utils_Type::typeToString($fieldSpec['type'] ?? NULL); if ($dataType === 'Timestamp' || $dataType === 'Date') { $title = empty($fieldSpec['unique_title']) ? $fieldSpec['title'] : $fieldSpec['unique_title']; $query->_tables['civicrm_contribution'] = $query->_whereTables['civicrm_contribution'] = 1; diff --git a/CRM/Contribute/Form/AbstractEditPayment.php b/CRM/Contribute/Form/AbstractEditPayment.php index 045483de212f..c8010e0f5fbf 100644 --- a/CRM/Contribute/Form/AbstractEditPayment.php +++ b/CRM/Contribute/Form/AbstractEditPayment.php @@ -524,7 +524,7 @@ public static function formatCreditCardDetails(&$params) { $tplParams['credit_card_exp_date'] = isset($params['credit_card_exp_date']) ? CRM_Utils_Date::mysqlToIso(CRM_Utils_Date::format($params['credit_card_exp_date'])) : NULL; $tplParams['credit_card_type'] = $params['credit_card_type'] ?? NULL; - $tplParams['credit_card_number'] = CRM_Utils_System::mungeCreditCard(CRM_Utils_Array::value('credit_card_number', $params)); + $tplParams['credit_card_number'] = CRM_Utils_System::mungeCreditCard($params['credit_card_number'] ?? NULL); return $tplParams; } diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index 6add81b56cfe..5ae6ef0a74cf 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -866,7 +866,7 @@ public function buildQuickForm() { ); } - $this->add('text', 'source', ts('Contribution Source'), CRM_Utils_Array::value('source', $attributes)); + $this->add('text', 'source', ts('Contribution Source'), $attributes['source'] ?? NULL); // CRM-7362 --add campaigns. CRM_Campaign_BAO_Campaign::addCampaign($this, $this->_values['campaign_id'] ?? NULL); diff --git a/CRM/Contribute/Form/Contribution/ThankYou.php b/CRM/Contribute/Form/Contribution/ThankYou.php index df8cf4555e46..052210bd81da 100644 --- a/CRM/Contribute/Form/Contribution/ThankYou.php +++ b/CRM/Contribute/Form/Contribution/ThankYou.php @@ -59,7 +59,7 @@ public function preProcess(): void { } $this->assign('linkTextUrl', $linkTextUrl ?? NULL); $this->assign('linkText', $linkText); - $this->setTitle(CRM_Utils_Array::value('thankyou_title', $this->_values)); + $this->setTitle($this->_values['thankyou_title'] ?? NULL); // Make the contributionPageID available to the template $this->assign('contributionPageID', $this->_id); $this->assign('isShare', $this->_values['is_share']); @@ -211,7 +211,7 @@ public function buildQuickForm() { $this->assign('trxn_id', $this->_trxnId); $this->assign('receive_date', - CRM_Utils_Date::mysqlToIso(CRM_Utils_Array::value('receive_date', $this->_params)) + CRM_Utils_Date::mysqlToIso($this->_params['receive_date'] ?? NULL) ); $defaults = []; diff --git a/CRM/Contribute/Form/ContributionBase.php b/CRM/Contribute/Form/ContributionBase.php index b2097a534834..d7cc2abafd26 100644 --- a/CRM/Contribute/Form/ContributionBase.php +++ b/CRM/Contribute/Form/ContributionBase.php @@ -398,13 +398,13 @@ public function preProcess() { throw new CRM_Contribute_Exception_InactiveContributionPageException(ts('The page you requested is currently unavailable.'), $this->_id); } - $endDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('end_date', $this->_values)); + $endDate = CRM_Utils_Date::processDate($this->_values['end_date'] ?? NULL); $now = date('YmdHis'); if ($endDate && $endDate < $now) { throw new CRM_Contribute_Exception_PastContributionPageException(ts('The page you requested has past its end date on %1', [1 => CRM_Utils_Date::customFormat($endDate)]), $this->_id); } - $startDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('start_date', $this->_values)); + $startDate = CRM_Utils_Date::processDate($this->_values['start_date'] ?? NULL); if ($startDate && $startDate > $now) { throw new CRM_Contribute_Exception_FutureContributionPageException(ts('The page you requested will be active from %1', [1 => CRM_Utils_Date::customFormat($startDate)]), $this->_id); } @@ -995,13 +995,13 @@ public function assignPaymentFields() { continue; } if ($paymentField === 'credit_card_exp_date') { - $date = CRM_Utils_Date::format(CRM_Utils_Array::value('credit_card_exp_date', $this->_params)); + $date = CRM_Utils_Date::format($this->_params['credit_card_exp_date'] ?? NULL); $date = CRM_Utils_Date::mysqlToIso($date); $this->assign('credit_card_exp_date', $date); } elseif ($paymentField === 'credit_card_number') { $this->assign('credit_card_number', - CRM_Utils_System::mungeCreditCard(CRM_Utils_Array::value('credit_card_number', $this->_params)) + CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number'] ?? NULL) ); } elseif ($paymentField === 'credit_card_type') { diff --git a/CRM/Contribute/Form/ContributionPage.php b/CRM/Contribute/Form/ContributionPage.php index 735719f45fab..e0e447c8bdc3 100644 --- a/CRM/Contribute/Form/ContributionPage.php +++ b/CRM/Contribute/Form/ContributionPage.php @@ -210,7 +210,8 @@ public function setDefaultValues() { ]; $pledgeBlockDefaults = []; CRM_Pledge_BAO_PledgeBlock::retrieve($pledgeBlockParams, $pledgeBlockDefaults); - if ($this->_pledgeBlockID = CRM_Utils_Array::value('id', $pledgeBlockDefaults)) { + $this->_pledgeBlockID = $pledgeBlockDefaults['id'] ?? NULL; + if ($this->_pledgeBlockID) { $defaults['is_pledge_active'] = TRUE; } $pledgeBlock = [ diff --git a/CRM/Contribute/Form/ContributionPage/Amount.php b/CRM/Contribute/Form/ContributionPage/Amount.php index 22073fa3d108..67fd5bca4241 100644 --- a/CRM/Contribute/Form/ContributionPage/Amount.php +++ b/CRM/Contribute/Form/ContributionPage/Amount.php @@ -478,7 +478,7 @@ public function postProcess() { } foreach ($fields as $field => $defaultVal) { - $val = CRM_Utils_Array::value($field, $params, $defaultVal); + $val = $params[$field] ?? $defaultVal; if (in_array($field, $resetFields)) { $val = $defaultVal; } diff --git a/CRM/Contribute/Form/ContributionView.php b/CRM/Contribute/Form/ContributionView.php index 2cd5dac92538..6b36404d7a54 100644 --- a/CRM/Contribute/Form/ContributionView.php +++ b/CRM/Contribute/Form/ContributionView.php @@ -174,7 +174,7 @@ public function preProcess() { } // Get Note - $noteValue = CRM_Core_BAO_Note::getNote(CRM_Utils_Array::value('id', $values), 'civicrm_contribution'); + $noteValue = CRM_Core_BAO_Note::getNote($values['id'], 'civicrm_contribution'); $values['note'] = array_values($noteValue); // show billing address location details, if exists diff --git a/CRM/Contribute/Form/Task/PDFLetter.php b/CRM/Contribute/Form/Task/PDFLetter.php index 9a9f2b063f42..b33830dbd744 100644 --- a/CRM/Contribute/Form/Task/PDFLetter.php +++ b/CRM/Contribute/Form/Task/PDFLetter.php @@ -241,7 +241,7 @@ public function postProcess() { $contactIds = array_keys($contacts); // CRM-16725 Skip creation of activities if user is previewing their PDF letter(s) if ($this->isLiveMode()) { - $this->createActivities($html_message, $contactIds, CRM_Utils_Array::value('subject', $formValues, ts('Thank you letter')), $formValues['campaign_id'] ?? NULL, $contactHtml); + $this->createActivities($html_message, $contactIds, $formValues['subject'] ?? ts('Thank you letter'), $formValues['campaign_id'] ?? NULL, $contactHtml); } $html = array_diff_key($html, $emailedHtml); diff --git a/CRM/Contribute/Page/ContributionPage.php b/CRM/Contribute/Page/ContributionPage.php index 4bc8208f5cad..6fc7934654a1 100644 --- a/CRM/Contribute/Page/ContributionPage.php +++ b/CRM/Contribute/Page/ContributionPage.php @@ -495,7 +495,7 @@ public function browse($action = NULL) { } //build the configure links. - $sectionsInfo = CRM_Utils_Array::value($dao->id, $contriPageSectionInfo, []); + $sectionsInfo = $contriPageSectionInfo[$dao->id] ?? []; $contributions[$dao->id]['configureActionLinks'] = CRM_Core_Action::formLink(self::formatConfigureLinks($sectionsInfo), $action, ['id' => $dao->id], From 03b8d30cd84b4b000de9bb7c3fc2ffcd24241d3c Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:31:57 -0500 Subject: [PATCH 28/85] [REF] CRM/Core - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Core/BAO/Mapping.php | 4 ++-- CRM/Core/BAO/Navigation.php | 2 +- CRM/Core/BAO/PdfFormat.php | 2 +- CRM/Core/BAO/RecurringEntity.php | 6 +++--- CRM/Core/BAO/UFMatch.php | 4 ++-- CRM/Core/Config/Runtime.php | 6 +++--- CRM/Core/Error.php | 4 ++-- CRM/Core/Form.php | 8 ++++---- CRM/Core/Form/RecurringEntity.php | 2 +- CRM/Core/Form/ShortCode.php | 2 +- CRM/Core/Form/Task/Batch.php | 2 +- CRM/Core/Form/Task/PDFLetterCommon.php | 2 +- CRM/Core/JobManager.php | 4 ++-- CRM/Core/OptionValue.php | 4 ++-- CRM/Core/Page/AJAX.php | 4 ++-- CRM/Core/Page/Redirect.php | 2 +- CRM/Core/Payment/AuthorizeNet.php | 2 +- CRM/Core/Payment/FirstData.php | 2 +- CRM/Core/Payment/PayPalIPN.php | 2 +- CRM/Core/Payment/PayPalProIPN.php | 2 +- CRM/Core/Payment/Realex.php | 2 +- CRM/Core/Smarty/plugins/block.crmRegion.php | 2 +- CRM/Core/Smarty/plugins/function.crmAPI.php | 4 ++-- CRM/Core/Task.php | 6 +++--- 24 files changed, 40 insertions(+), 40 deletions(-) diff --git a/CRM/Core/BAO/Mapping.php b/CRM/Core/BAO/Mapping.php index ab2e822b97e0..c501a0f4ab16 100644 --- a/CRM/Core/BAO/Mapping.php +++ b/CRM/Core/BAO/Mapping.php @@ -472,8 +472,8 @@ public static function getMappingParams($defaults, $v) { } // Handle mapping for 'related contact' fields - if (count(explode('_', CRM_Utils_Array::value('1', $v))) > 2) { - [$id, $first, $second] = explode('_', CRM_Utils_Array::value('1', $v)); + if (count(explode('_', $v['1'] ?? '')) > 2) { + [$id, $first, $second] = explode('_', $v['1']); if (($first == 'a' && $second == 'b') || ($first == 'b' && $second == 'a')) { if (!empty($v['2'])) { diff --git a/CRM/Core/BAO/Navigation.php b/CRM/Core/BAO/Navigation.php index 7f9459533fe2..736b57ea80e8 100644 --- a/CRM/Core/BAO/Navigation.php +++ b/CRM/Core/BAO/Navigation.php @@ -94,7 +94,7 @@ public static function add(&$params) { $params['name'] = $navLabel; } - $params['weight'] = self::calculateWeight(CRM_Utils_Array::value('parent_id', $params)); + $params['weight'] = self::calculateWeight($params['parent_id'] ?? NULL); } return self::writeRecord($params); diff --git a/CRM/Core/BAO/PdfFormat.php b/CRM/Core/BAO/PdfFormat.php index 8a01f9b86d7e..e94d6a26fcbb 100644 --- a/CRM/Core/BAO/PdfFormat.php +++ b/CRM/Core/BAO/PdfFormat.php @@ -338,7 +338,7 @@ public function savePdfFormat($values, $id = NULL) { // serialize PDF Page Format fields into a single string to store in the 'value' column of the Option Value table $v = json_decode($this->value, TRUE); foreach (self::$optionValueFields as $name => $field) { - $v[$name] = self::getValue($name, $values, CRM_Utils_Array::value($name, $v)); + $v[$name] = self::getValue($name, $values, $v[$name] ?? NULL); } $this->value = json_encode($v); diff --git a/CRM/Core/BAO/RecurringEntity.php b/CRM/Core/BAO/RecurringEntity.php index 636d75506b30..12f7cb517f20 100644 --- a/CRM/Core/BAO/RecurringEntity.php +++ b/CRM/Core/BAO/RecurringEntity.php @@ -264,7 +264,7 @@ public function generateEntities() { $linkedObj = CRM_Core_BAO_RecurringEntity::copyCreateEntity($linkedInfo['table'], $linkedInfo['findCriteria'], $newCriteria, - CRM_Utils_Array::value('isRecurringEntityRecord', $linkedInfo, TRUE) + $linkedInfo['isRecurringEntityRecord'] ?? TRUE ); if (is_a($linkedObj, 'CRM_Core_DAO') && $linkedObj->id) { @@ -322,8 +322,8 @@ public function generateRecursiveDates() { $recursionDates[$count][$col] = $newDate->format('YmdHis'); } if ($exRangeStart) { - $exRangeStartDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value($exRangeStart, $recursionDates[$count]), NULL, FALSE, 'Ymd'); - $exRangeEndDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value($exRangeEnd, $recursionDates[$count]), NULL, FALSE, 'Ymd'); + $exRangeStartDate = CRM_Utils_Date::processDate($recursionDates[$count][$exRangeStart] ?? NULL, NULL, FALSE, 'Ymd'); + $exRangeEndDate = CRM_Utils_Date::processDate($recursionDates[$count][$exRangeEnd] ?? NULL, NULL, FALSE, 'Ymd'); } foreach ($this->excludeDates as $exDate) { diff --git a/CRM/Core/BAO/UFMatch.php b/CRM/Core/BAO/UFMatch.php index a35183318a0b..8d8918965eaa 100644 --- a/CRM/Core/BAO/UFMatch.php +++ b/CRM/Core/BAO/UFMatch.php @@ -90,8 +90,8 @@ public static function synchronize(&$user, $update, $uf, $ctype, $isLogin = FALS // Get logged in user ids, and set to session. if ($isUserLoggedIn) { $userIds = self::getUFValues(); - $session->set('ufID', CRM_Utils_Array::value('uf_id', $userIds, '')); - $session->set('userID', CRM_Utils_Array::value('contact_id', $userIds, '')); + $session->set('ufID', $userIds['uf_id'] ?? ''); + $session->set('userID', $userIds['contact_id'] ?? ''); } } diff --git a/CRM/Core/Config/Runtime.php b/CRM/Core/Config/Runtime.php index c642d699db6e..c4af85b8ebc2 100644 --- a/CRM/Core/Config/Runtime.php +++ b/CRM/Core/Config/Runtime.php @@ -155,11 +155,11 @@ public static function getId() { \CRM_Utils_System::version(), // e.g. CMS vs extern vs installer - \CRM_Utils_Array::value('SCRIPT_FILENAME', $_SERVER, ''), + $_SERVER['SCRIPT_FILENAME'] ?? '', // e.g. name-based vhosts - \CRM_Utils_Array::value('HTTP_HOST', $_SERVER, ''), + $_SERVER['HTTP_HOST'] ?? '', // e.g. port-based vhosts - \CRM_Utils_Array::value('SERVER_PORT', $_SERVER, ''), + $_SERVER['SERVER_PORT'] ?? '', // e.g. unit testing defined('CIVICRM_TEST') ? 1 : 0, // Depending on deployment arch, these signals *could* be redundant, but who cares? diff --git a/CRM/Core/Error.php b/CRM/Core/Error.php index ce4c49ffaf7e..4274e7db7de8 100644 --- a/CRM/Core/Error.php +++ b/CRM/Core/Error.php @@ -838,8 +838,8 @@ public static function parseBacktrace($backTrace, $showArgs = TRUE, $maxArgLen = $ret[] = sprintf( "%s(%s): %s%s(%s)", - CRM_Utils_Array::value('file', $trace, '[internal function]'), - CRM_Utils_Array::value('line', $trace, ''), + $trace['file'] ?? '[internal function]', + $trace['line'] ?? '', $className, $fnName, implode(", ", $args) diff --git a/CRM/Core/Form.php b/CRM/Core/Form.php index 2016c8d1a009..b6d313a6af4f 100644 --- a/CRM/Core/Form.php +++ b/CRM/Core/Form.php @@ -916,7 +916,7 @@ public function addButtons($params) { } // hack - addGroup uses an array to express variable spacing, read from the last element - $spacing[] = CRM_Utils_Array::value('spacing', $button, self::ATTR_SPACING); + $spacing[] = $button['spacing'] ?? self::ATTR_SPACING; } $this->addGroup($prevnext, 'buttons', '', $spacing, FALSE); } @@ -1172,7 +1172,7 @@ protected function handlePreApproval(&$params) { } } catch (\Civi\Payment\Exception\PaymentProcessorException $e) { - CRM_Core_Error::statusBounce(ts('Payment approval failed with message :') . $e->getMessage(), $payment->getCancelUrl($params['qfKey'], CRM_Utils_Array::value('participant_id', $params))); + CRM_Core_Error::statusBounce(ts('Payment approval failed with message :') . $e->getMessage(), $payment->getCancelUrl($params['qfKey'], $params['participant_id'] ?? NULL)); } $this->set('pre_approval_parameters', $result['pre_approval_parameters']); @@ -1897,7 +1897,7 @@ public function addField($name, $props = [], $required = FALSE, $legacyDate = TR // Handle custom fields if (strpos($name, 'custom_') === 0 && is_numeric($name[7])) { $fieldId = (int) substr($name, 7); - return CRM_Core_BAO_CustomField::addQuickFormElement($this, $name, $fieldId, $required, $context == 'search', CRM_Utils_Array::value('label', $props)); + return CRM_Core_BAO_CustomField::addQuickFormElement($this, $name, $fieldId, $required, $context == 'search', $props['label'] ?? NULL); } // Core field - get metadata. @@ -2015,7 +2015,7 @@ public function addField($name, $props = [], $required = FALSE, $legacyDate = TR case 'Select': case 'Select2': - $props['class'] = CRM_Utils_Array::value('class', $props, 'big') . ' crm-select2'; + $props['class'] = ($props['class'] ?? 'big') . ' crm-select2'; // TODO: Add and/or option for fields that store multiple values return $this->add(strtolower($widget), $name, $label, $options, $required, $props); diff --git a/CRM/Core/Form/RecurringEntity.php b/CRM/Core/Form/RecurringEntity.php index 0414b5c5c65d..c78e3bb28173 100644 --- a/CRM/Core/Form/RecurringEntity.php +++ b/CRM/Core/Form/RecurringEntity.php @@ -395,7 +395,7 @@ public static function postProcess($params, $type, $linkedEntities = []) { 'value' => CRM_Utils_Date::processDate($val), 'name' => $opGroup->name, 'description' => 'Used for recurring ' . $type, - 'weight' => CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_OptionValue', $oldWeight, CRM_Utils_Array::value('weight', $params), $fieldValues), + 'weight' => CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_OptionValue', $oldWeight, $params['weight'] ?? NULL, $fieldValues), 'is_active' => 1, ]; $excludeDateList[] = $optionGroupValue['value']; diff --git a/CRM/Core/Form/ShortCode.php b/CRM/Core/Form/ShortCode.php index ca526ee06eba..39e65e723e9a 100644 --- a/CRM/Core/Form/ShortCode.php +++ b/CRM/Core/Form/ShortCode.php @@ -185,7 +185,7 @@ public function buildQuickForm() { $options = $defaults = []; foreach ($this->options as $num => $field) { - $this->addRadio("option_$num", CRM_Utils_Array::value('label', $field), $field['options'], ['allowClear' => FALSE, 'data-key' => $field['key']]); + $this->addRadio("option_$num", $field['label'] ?? NULL, $field['options'], ['allowClear' => FALSE, 'data-key' => $field['key']]); if ($field['components'] === TRUE) { $field['components'] = array_keys($this->components); } diff --git a/CRM/Core/Form/Task/Batch.php b/CRM/Core/Form/Task/Batch.php index f5a0cb5d677f..a6927b5006a8 100644 --- a/CRM/Core/Form/Task/Batch.php +++ b/CRM/Core/Form/Task/Batch.php @@ -141,7 +141,7 @@ public function buildQuickForm() { $customValue['extends_entity_column_value'] ); } - if ((CRM_Utils_Array::value($typeId, $entityColumnValue)) || + if (!empty($entityColumnValue[$typeId]) || CRM_Utils_System::isNull($entityColumnValue[$typeId]) ) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $entityId); diff --git a/CRM/Core/Form/Task/PDFLetterCommon.php b/CRM/Core/Form/Task/PDFLetterCommon.php index ae3f58eb0935..c2744af89ab8 100644 --- a/CRM/Core/Form/Task/PDFLetterCommon.php +++ b/CRM/Core/Form/Task/PDFLetterCommon.php @@ -295,7 +295,7 @@ public static function processTemplate(&$formValues) { CRM_Core_BAO_MessageTemplate::add($messageTemplate); } } - elseif (CRM_Utils_Array::value('template', $formValues) > 0) { + elseif (($formValues['template'] ?? 0) > 0) { if (!empty($formValues['bind_format']) && $formValues['format_id']) { $query = "UPDATE civicrm_msg_template SET pdf_format_id = {$formValues['format_id']} WHERE id = {$formValues['template']}"; } diff --git a/CRM/Core/JobManager.php b/CRM/Core/JobManager.php index 96ff3fada789..4b80eee57a37 100644 --- a/CRM/Core/JobManager.php +++ b/CRM/Core/JobManager.php @@ -264,8 +264,8 @@ public function logEntry($message) { */ private function apiResultToMessage($apiResult) { $status = ($apiResult['is_error'] ?? FALSE) ? ts('Failure') : ts('Success'); - $msg = CRM_Utils_Array::value('error_message', $apiResult, 'empty error_message!'); - $vals = CRM_Utils_Array::value('values', $apiResult, 'empty values!'); + $msg = $apiResult['error_message'] ?? 'empty error_message!'; + $vals = $apiResult['values'] ?? 'empty values!'; if (is_array($msg)) { $msg = serialize($msg); } diff --git a/CRM/Core/OptionValue.php b/CRM/Core/OptionValue.php index ceb1ff19450c..27377480bbf9 100644 --- a/CRM/Core/OptionValue.php +++ b/CRM/Core/OptionValue.php @@ -133,7 +133,7 @@ public static function getRows($groupParams, $links, $orderBy = 'weight', $skipE $optionValue[$dao->id]['label'] = htmlspecialchars($optionValue[$dao->id]['label']); $optionValue[$dao->id]['order'] = $optionValue[$dao->id]['weight']; - $optionValue[$dao->id]['icon'] = CRM_Utils_Array::value('icon', $optionValue[$dao->id], ''); + $optionValue[$dao->id]['icon'] = $optionValue[$dao->id]['icon'] ?? ''; $optionValue[$dao->id]['action'] = CRM_Core_Action::formLink($links, $action, [ 'id' => $dao->id, @@ -195,7 +195,7 @@ public static function addOptionValue(&$params, $optionGroupName, $action, $opti $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $optionValueID, 'weight', 'id'); } $fieldValues = ['option_group_id' => $optionGroupID]; - $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_OptionValue', $oldWeight, CRM_Utils_Array::value('weight', $params), $fieldValues); + $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Core_DAO_OptionValue', $oldWeight, $params['weight'] ?? NULL, $fieldValues); } $params['option_group_id'] = $optionGroupID; diff --git a/CRM/Core/Page/AJAX.php b/CRM/Core/Page/AJAX.php index 6ccfe0e88711..0399b6d6b606 100644 --- a/CRM/Core/Page/AJAX.php +++ b/CRM/Core/Page/AJAX.php @@ -261,13 +261,13 @@ public static function validateParams($requiredParams = [], $optionalParams = [] $params = []; foreach ($requiredParams as $param => $type) { - $params[$param] = CRM_Utils_Type::validate(CRM_Utils_Array::value($param, $_GET), $type); + $params[$param] = CRM_Utils_Type::validate($_GET[$param] ?? NULL, $type); } foreach ($optionalParams as $param => $type) { if (!empty($_GET[$param])) { if (!is_array($_GET[$param])) { - $params[$param] = CRM_Utils_Type::validate(CRM_Utils_Array::value($param, $_GET), $type); + $params[$param] = CRM_Utils_Type::validate($_GET[$param], $type); } else { foreach ($_GET[$param] as $index => $value) { diff --git a/CRM/Core/Page/Redirect.php b/CRM/Core/Page/Redirect.php index 3977e5ad3389..d6328d45e7ca 100644 --- a/CRM/Core/Page/Redirect.php +++ b/CRM/Core/Page/Redirect.php @@ -57,7 +57,7 @@ public static function createUrl($requestPath, $requestArgs, $pageArgs, $absolut $urlParts['path'], $urlParts['query'] ?? NULL, $absolute, - CRM_Utils_Array::value('fragment', $urlParts, NULL) + $urlParts['fragment'] ?? NULL ); return $url; diff --git a/CRM/Core/Payment/AuthorizeNet.php b/CRM/Core/Payment/AuthorizeNet.php index 2b280339053a..9998a5ce76a7 100644 --- a/CRM/Core/Payment/AuthorizeNet.php +++ b/CRM/Core/Payment/AuthorizeNet.php @@ -478,7 +478,7 @@ public function _substring_between(&$haystack, $start, $end) { * not set */ public function _getParam($field, $xmlSafe = FALSE) { - $value = CRM_Utils_Array::value($field, $this->_params, ''); + $value = $this->_params[$field] ?? ''; if ($xmlSafe) { $value = str_replace(['&', '"', "'", '<', '>'], '', $value); } diff --git a/CRM/Core/Payment/FirstData.php b/CRM/Core/Payment/FirstData.php index 6623c43658d8..f68e4997d224 100644 --- a/CRM/Core/Payment/FirstData.php +++ b/CRM/Core/Payment/FirstData.php @@ -194,7 +194,7 @@ public function doPayment(&$params, $component = 'contribute') { //---------------------------------------------------------------------------------------------------- // Check to see if we have a duplicate before we send //---------------------------------------------------------------------------------------------------- - if ($this->checkDupe($params['invoiceID'], CRM_Utils_Array::value('contributionID', $params))) { + if ($this->checkDupe($params['invoiceID'], $params['contributionID'] ?? NULL)) { throw new PaymentProcessorException('It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. Check your email for a receipt from eWAY. If you do not receive a receipt within 2 hours you can try your transaction again. If you continue to have problems please contact the site administrator.', 9003); } //---------------------------------------------------------------------------------------------------- diff --git a/CRM/Core/Payment/PayPalIPN.php b/CRM/Core/Payment/PayPalIPN.php index 5413815c7fa6..f54dc560739f 100644 --- a/CRM/Core/Payment/PayPalIPN.php +++ b/CRM/Core/Payment/PayPalIPN.php @@ -61,7 +61,7 @@ public function __construct($inputData) { * @throws \CRM_Core_Exception */ public function retrieve($name, $type, $abort = TRUE) { - $value = CRM_Utils_Type::validate(CRM_Utils_Array::value($name, $this->_inputParameters), $type, FALSE); + $value = CRM_Utils_Type::validate($this->_inputParameters[$name] ?? NULL, $type, FALSE); if ($abort && $value === NULL) { throw new CRM_Core_Exception("PayPalIPN: Could not find an entry for $name"); } diff --git a/CRM/Core/Payment/PayPalProIPN.php b/CRM/Core/Payment/PayPalProIPN.php index d41066285eca..e52aa78173da 100644 --- a/CRM/Core/Payment/PayPalProIPN.php +++ b/CRM/Core/Payment/PayPalProIPN.php @@ -207,7 +207,7 @@ public function setInvoiceData() { */ public function retrieve($name, $type, $abort = TRUE) { $value = CRM_Utils_Type::validate( - CRM_Utils_Array::value($name, $this->_inputParameters), + $this->_inputParameters[$name] ?? NULL, $type, FALSE ); diff --git a/CRM/Core/Payment/Realex.php b/CRM/Core/Payment/Realex.php index 4757f7fee734..a5387460cd25 100644 --- a/CRM/Core/Payment/Realex.php +++ b/CRM/Core/Payment/Realex.php @@ -85,7 +85,7 @@ public function doPayment(&$params, $component = 'contribute') { /********************************************************** * Check to see if we have a duplicate before we send **********************************************************/ - if ($this->checkDupe($params['invoiceID'], CRM_Utils_Array::value('contributionID', $params))) { + if ($this->checkDupe($params['invoiceID'], $params['contributionID'] ?? NULL)) { throw new PaymentProcessorException(ts('It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. Check your email for a receipt from Authorize.net. If you do not receive a receipt within 2 hours you can try your transaction again. If you continue to have problems please contact the site administrator.'), 9004); } diff --git a/CRM/Core/Smarty/plugins/block.crmRegion.php b/CRM/Core/Smarty/plugins/block.crmRegion.php index fb016e10b71b..868dfd37044c 100644 --- a/CRM/Core/Smarty/plugins/block.crmRegion.php +++ b/CRM/Core/Smarty/plugins/block.crmRegion.php @@ -23,7 +23,7 @@ function smarty_block_crmRegion($params, $content, &$smarty, &$repeat) { require_once 'CRM/Core/Region.php'; $region = CRM_Core_Region::instance($params['name'], FALSE); if ($region) { - $result = $region->render($content, CRM_Utils_Array::value('allowCmsOverride', $params, TRUE)); + $result = $region->render($content, $params['allowCmsOverride'] ?? TRUE); return $result; } else { diff --git a/CRM/Core/Smarty/plugins/function.crmAPI.php b/CRM/Core/Smarty/plugins/function.crmAPI.php index ed7dd697ccb3..820fcc4c1a26 100644 --- a/CRM/Core/Smarty/plugins/function.crmAPI.php +++ b/CRM/Core/Smarty/plugins/function.crmAPI.php @@ -29,8 +29,8 @@ function smarty_function_crmAPI($params, &$smarty) { return "crmAPI: missing 'entity' parameter"; } $entity = $params['entity']; - $action = CRM_Utils_Array::value('action', $params, 'get'); - $params['sequential'] = CRM_Utils_Array::value('sequential', $params, 1); + $action = $params['action'] ?? 'get'; + $params['sequential'] = $params['sequential'] ?? 1; $var = $params['var'] ?? NULL; CRM_Utils_Array::remove($params, 'entity', 'action', 'var'); try { diff --git a/CRM/Core/Task.php b/CRM/Core/Task.php index 3ef3690a722e..4882653c3c17 100644 --- a/CRM/Core/Task.php +++ b/CRM/Core/Task.php @@ -160,8 +160,8 @@ public static function getTask($value) { $value = key(self::$_tasks); } return [ - CRM_Utils_Array::value('class', self::$_tasks[$value]), - CRM_Utils_Array::value('result', self::$_tasks[$value]), + self::$_tasks[$value]['class'] ?? NULL, + self::$_tasks[$value]['result'] ?? NULL, ]; } @@ -224,7 +224,7 @@ public static function getTaskAndTitleByClass($className) { if ((!empty($value['url']) || $task == self::TASK_EXPORT) && ((is_array($value['class']) && in_array($className, $value['class'])) || ($value['class'] == $className))) { - return [$task, CRM_Utils_Array::value('title', $value)]; + return [$task, $value['title'] ?? NULL]; } } return []; From eafa3ac0de1213a11baabfdb99cf1526726c6b95 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:32:37 -0500 Subject: [PATCH 29/85] [REF] CRM/Custom - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Custom/Form/Option.php | 2 +- CRM/Custom/Form/Preview.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Custom/Form/Option.php b/CRM/Custom/Form/Option.php index b1c04717eff7..d4c75a0ac3ab 100644 --- a/CRM/Custom/Form/Option.php +++ b/CRM/Custom/Form/Option.php @@ -109,7 +109,7 @@ public function setDefaultValues() { } } else { - if (($fieldDefaults['default_value'] ?? NULL) == CRM_Utils_Array::value('value', $defaults)) { + if (($fieldDefaults['default_value'] ?? NULL) == ($defaults['value'] ?? NULL)) { $defaults['default_value'] = 1; } } diff --git a/CRM/Custom/Form/Preview.php b/CRM/Custom/Form/Preview.php index e21d735c9f38..8da55ee641fd 100644 --- a/CRM/Custom/Form/Preview.php +++ b/CRM/Custom/Form/Preview.php @@ -104,9 +104,9 @@ public function setDefaultValues() { */ public function buildQuickForm() { if (is_array($this->_groupTree) && !empty($this->_groupTree[$this->_groupId])) { - foreach ($this->_groupTree[$this->_groupId]['fields'] as & $field) { + foreach ($this->_groupTree[$this->_groupId]['fields'] as $field) { //add the form elements - CRM_Core_BAO_CustomField::addQuickFormElement($this, $field['element_name'], $field['id'], CRM_Utils_Array::value('is_required', $field)); + CRM_Core_BAO_CustomField::addQuickFormElement($this, $field['element_name'], $field['id'], !empty($field['is_required'])); } $this->assign('groupTree', $this->_groupTree); From dff25504013a085a8fb84c4d7d442e3eaf14086f Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:35:35 -0500 Subject: [PATCH 30/85] [REF] CRM/Event - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Event/BAO/Event.php | 8 ++++---- CRM/Event/Form/ManageEvent/Fee.php | 4 ++-- CRM/Event/Form/ManageEvent/Registration.php | 16 +++++++-------- CRM/Event/Form/Participant.php | 2 +- CRM/Event/Form/ParticipantFeeSelection.php | 2 +- CRM/Event/Form/ParticipantView.php | 2 +- CRM/Event/Form/Registration.php | 2 +- .../Registration/AdditionalParticipant.php | 20 +++++++++---------- CRM/Event/Form/Registration/Register.php | 4 ++-- CRM/Event/Form/Registration/ThankYou.php | 2 +- CRM/Event/Page/EventInfo.php | 2 +- 11 files changed, 32 insertions(+), 32 deletions(-) diff --git a/CRM/Event/BAO/Event.php b/CRM/Event/BAO/Event.php index 74af33790c5f..44ddcff7e544 100644 --- a/CRM/Event/BAO/Event.php +++ b/CRM/Event/BAO/Event.php @@ -957,7 +957,7 @@ public static function copy($id, $params = []) { $copyEvent = CRM_Core_DAO::copyGeneric('CRM_Event_DAO_Event', ['id' => $id], // since the location is sharable, lets use the same loc_block_id. - ['loc_block_id' => CRM_Utils_Array::value('loc_block_id', $eventValues)] + $params, + ['loc_block_id' => $eventValues['loc_block_id'] ?? NULL] + $params, $fieldsFix, NULL, $blockCopyOfCustomValue @@ -1119,8 +1119,8 @@ public static function sendMail($contactID, $values, $participantId, $isTest = F 'email' => $notifyEmail, 'confirm_email_text' => $values['event']['confirm_email_text'] ?? NULL, 'isShowLocation' => $values['event']['is_show_location'] ?? NULL, - 'credit_card_number' => CRM_Utils_System::mungeCreditCard(CRM_Utils_Array::value('credit_card_number', $participantParams)), - 'credit_card_exp_date' => CRM_Utils_Date::mysqlToIso(CRM_Utils_Date::format(CRM_Utils_Array::value('credit_card_exp_date', $participantParams))), + 'credit_card_number' => CRM_Utils_System::mungeCreditCard($participantParams['credit_card_number'] ?? NULL), + 'credit_card_exp_date' => CRM_Utils_Date::mysqlToIso(CRM_Utils_Date::format($participantParams['credit_card_exp_date'] ?? NULL)), 'selfcancelxfer_time' => abs($values['event']['selfcancelxfer_time']), 'selfservice_preposition' => $values['event']['selfcancelxfer_time'] < 0 ? ts('after') : ts('before'), 'currency' => $values['event']['currency'] ?? CRM_Core_Config::singleton()->defaultCurrency, @@ -1621,7 +1621,7 @@ public static function buildCustomProfile( //get the params submitted by participant. $participantParams = NULL; if (isset($values['params'])) { - $participantParams = CRM_Utils_Array::value($pId, $values['params'], []); + $participantParams = $values['params'][$pId] ?? []; } [$profilePre, $groupTitles] = self::buildCustomDisplay($preProfileID, diff --git a/CRM/Event/Form/ManageEvent/Fee.php b/CRM/Event/Form/ManageEvent/Fee.php index 39cf44000bee..71f05ebdff57 100644 --- a/CRM/Event/Form/ManageEvent/Fee.php +++ b/CRM/Event/Form/ManageEvent/Fee.php @@ -177,7 +177,7 @@ public function setDefaultValues() { $maxKey = count($totalLables) - 1; if (isset($maxKey) && !empty($totalLables[$maxKey]['value'])) { foreach ($totalLables[$maxKey]['value'] as $i => $v) { - if ($totalLables[$maxKey]['amount_id'][$i] == CRM_Utils_Array::value('default_discount_fee_id', $defaults)) { + if ($totalLables[$maxKey]['amount_id'][$i] == ($defaults['default_discount_fee_id'] ?? NULL)) { $defaults['discounted_default'] = $i; break; } @@ -632,7 +632,7 @@ public function postProcess() { $fieldParams['option_id'] = $params['price_field_value']; $priceSet = new CRM_Price_BAO_PriceSet(); - $priceSet->id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', CRM_Utils_Array::value('price_field_id', $params), 'price_set_id'); + $priceSet->id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['price_field_id'] ?? NULL, 'price_set_id'); if ($this->_defaultValues['financial_type_id'] != $params['financial_type_id']) { CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $priceSet->id, 'financial_type_id', $params['financial_type_id']); diff --git a/CRM/Event/Form/ManageEvent/Registration.php b/CRM/Event/Form/ManageEvent/Registration.php index 6b0ec5791153..8fafdae62e6c 100644 --- a/CRM/Event/Form/ManageEvent/Registration.php +++ b/CRM/Event/Form/ManageEvent/Registration.php @@ -475,12 +475,12 @@ public static function formRule($values, $files, $form) { //check that the selected profiles have either firstname+lastname or email required $profileIds = [ - CRM_Utils_Array::value('custom_pre_id', $values), - CRM_Utils_Array::value('custom_post_id', $values), + $values['custom_pre_id'] ?? NULL, + $values['custom_post_id'] ?? NULL, ]; $additionalProfileIds = [ - CRM_Utils_Array::value('additional_custom_pre_id', $values), - CRM_Utils_Array::value('additional_custom_post_id', $values), + $values['additional_custom_pre_id'] ?? NULL, + $values['additional_custom_post_id'] ?? NULL, ]; //additional profile fields default to main if not set if (!is_numeric($additionalProfileIds[0])) { @@ -905,12 +905,12 @@ public function postProcess() { // get the profiles to evaluate what they collect $profileIds = [ - CRM_Utils_Array::value('custom_pre_id', $params), - CRM_Utils_Array::value('custom_post_id', $params), + $params['custom_pre_id'] ?? NULL, + $params['custom_post_id'] ?? NULL, ]; $additionalProfileIds = [ - CRM_Utils_Array::value('additional_custom_pre_id', $params), - CRM_Utils_Array::value('additional_custom_post_id', $params), + $params['additional_custom_pre_id'] ?? NULL, + $params['additional_custom_post_id'] ?? NULL, ]; // additional profile fields default to main if not set if (!is_numeric($additionalProfileIds[0])) { diff --git a/CRM/Event/Form/Participant.php b/CRM/Event/Form/Participant.php index b80f6de2e2b4..f1a08ec6c413 100644 --- a/CRM/Event/Form/Participant.php +++ b/CRM/Event/Form/Participant.php @@ -1779,7 +1779,7 @@ protected function assignUrlPath() { protected function sendReceipts($params, array $participants): array { $sent = []; $notSent = []; - $this->assignEventDetailsToTpl($params['event_id'], CRM_Utils_Array::value('role_id', $params), CRM_Utils_Array::value('receipt_text', $params)); + $this->assignEventDetailsToTpl($params['event_id'], $params['role_id'] ?? NULL, $params['receipt_text'] ?? NULL); if ($this->_mode) { $valuesForForm = CRM_Contribute_Form_AbstractEditPayment::formatCreditCardDetails($params); diff --git a/CRM/Event/Form/ParticipantFeeSelection.php b/CRM/Event/Form/ParticipantFeeSelection.php index da56fb73f3d5..84c97d63f7ab 100644 --- a/CRM/Event/Form/ParticipantFeeSelection.php +++ b/CRM/Event/Form/ParticipantFeeSelection.php @@ -423,7 +423,7 @@ protected function buildAmount($discountId, $priceSetID) { continue; } - $optionFullIds = CRM_Utils_Array::value('option_full_ids', $field, []); + $optionFullIds = $field['option_full_ids'] ?? []; //soft suppress required rule when option is full. if (!empty($optionFullIds) && (count($options) == count($optionFullIds))) { diff --git a/CRM/Event/Form/ParticipantView.php b/CRM/Event/Form/ParticipantView.php index 79e483bc298b..080b9c0292e9 100644 --- a/CRM/Event/Form/ParticipantView.php +++ b/CRM/Event/Form/ParticipantView.php @@ -167,7 +167,7 @@ public function preProcess() { $participantCount = []; $totalTaxAmount = $totalAmount = 0; foreach ($lineItem as $k => $v) { - if (CRM_Utils_Array::value('participant_count', $lineItem[$k]) > 0) { + if (($lineItem[$k]['participant_count'] ?? 0) > 0) { $participantCount[] = $lineItem[$k]['participant_count']; } $totalTaxAmount = $v['tax_amount'] + $totalTaxAmount; diff --git a/CRM/Event/Form/Registration.php b/CRM/Event/Form/Registration.php index ded84ec07e18..f443fab66207 100644 --- a/CRM/Event/Form/Registration.php +++ b/CRM/Event/Form/Registration.php @@ -2059,7 +2059,7 @@ protected function buildAmount() { $adminVisibilityID = CRM_Price_BAO_PriceField::getVisibilityOptionID('admin'); foreach ($options as $key => $currentOption) { - $optionVisibility = CRM_Utils_Array::value('visibility_id', $currentOption, $publicVisibilityID); + $optionVisibility = $currentOption['visibility_id'] ?? $publicVisibilityID; if ($optionVisibility == $adminVisibilityID) { unset($options[$key]); } diff --git a/CRM/Event/Form/Registration/AdditionalParticipant.php b/CRM/Event/Form/Registration/AdditionalParticipant.php index 8b9eb4611887..35a9e99588e4 100644 --- a/CRM/Event/Form/Registration/AdditionalParticipant.php +++ b/CRM/Event/Form/Registration/AdditionalParticipant.php @@ -278,7 +278,7 @@ public function buildQuickForm() { //truly spaces are less than required. if (is_numeric($spaces) && $spaces <= ($processedCnt + $currentPageMaxCount)) { - if (CRM_Utils_Array::value('amount', $this->_params[0], 0) == 0 || $this->_requireApproval) { + if (($this->_params[0]['amount'] ?? 0) == 0 || $this->_requireApproval) { $this->_allowWaitlist = FALSE; $this->set('allowWaitlist', $this->_allowWaitlist); if ($this->_requireApproval) { @@ -304,7 +304,7 @@ public function buildQuickForm() { CRM_Core_Session::setStatus($statusMessage, ts('Registration Error'), 'error'); } elseif ($processedCnt == $spaces) { - if (CRM_Utils_Array::value('amount', $this->_params[0], 0) == 0 + if (($this->_params[0]['amount'] ?? 0) == 0 || $realPayLater || $this->_requireApproval ) { $this->_resetAllowWaitlist = TRUE; @@ -356,7 +356,7 @@ public function buildQuickForm() { !$this->_allowWaitlist && !$realPayLater && !$this->_requireApproval && - !(CRM_Utils_Array::value('amount', $this->_params[0], 0) == 0) + !(($this->_params[0]['amount'] ?? 0) == 0) ) { $paymentBypassed = ts('Please go back to the main registration page, to complete payment information.'); } @@ -481,8 +481,8 @@ public static function formRule($fields, $files, $self) { } else { // check with first_name and last_name for additional participants - if (!empty($value['first_name']) && ($value['first_name'] == CRM_Utils_Array::value('first_name', $fields)) && - (($value['last_name'] ?? NULL) == CRM_Utils_Array::value('last_name', $fields)) + if (!empty($value['first_name']) && ($value['first_name'] == ($fields['first_name'] ?? NULL)) && + (($value['last_name'] ?? NULL) == ($fields['last_name'] ?? NULL)) ) { $errors['first_name'] = ts('The first name and last name must be unique for each participant.'); break; @@ -502,7 +502,7 @@ public static function formRule($fields, $files, $self) { //validate price field params. $priceSetErrors = $self->validatePriceSet($allParticipantParams, $self->get('priceSetId'), $self->get('priceSet')); - $errors = array_merge($errors, CRM_Utils_Array::value($addParticipantNum, $priceSetErrors, [])); + $errors = array_merge($errors, $priceSetErrors[$addParticipantNum] ?? []); if (!$self->_allowConfirmation && is_numeric($self->_availableRegistrations) @@ -511,7 +511,7 @@ public static function formRule($fields, $files, $self) { !$self->_allowWaitlist && !$realPayLater && !$self->_requireApproval && - !(CRM_Utils_Array::value('amount', $self->_params[0], 0) == 0) && + !(($self->_params[0]['amount'] ?? 0) == 0) && $totalParticipants < $self->_availableRegistrations ) { $errors['_qf_default'] = ts("Your event registration will be confirmed. Please go back to the main registration page, to complete payment information."); @@ -539,7 +539,7 @@ public static function formRule($fields, $files, $self) { !$self->_allowWaitlist && !$realPayLater && !$self->_requireApproval && - !(CRM_Utils_Array::value('amount', $self->_params[0], 0) == 0) + !(($self->_params[0]['amount'] ?? 0) == 0) ) { $errors['_qf_default'] = ts("You are going to skip the last participant, your event registration will be confirmed. Please go back to the main registration page, to complete payment information."); } @@ -571,7 +571,7 @@ public function validatePaymentValues($self, $fields) { if (!empty($self->_params[0]['bypass_payment']) || $self->_allowWaitlist || empty($self->_fields) || - CRM_Utils_Array::value('amount', $self->_params[0]) > 0 + ($self->_params[0]['amount'] ?? 0) > 0 ) { return TRUE; } @@ -586,7 +586,7 @@ public function validatePaymentValues($self, $fields) { } } elseif (!empty($fields['amount']) && - (CRM_Utils_Array::value('value', $self->_values['fee'][$fields['amount']]) > 0) + (($self->_values['fee'][$fields['amount']]['value'] ?? 0) > 0) ) { $validatePayement = TRUE; } diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index abcc728ccb8d..46abcb09d435 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -163,7 +163,7 @@ public function preProcess() { //here we can't use parent $this->_allowWaitlist as user might //walk back and we might set this value in this postProcess. //(we set when spaces < group count and want to allow become part of waiting ) - $eventFull = CRM_Event_BAO_Participant::eventFull($this->_eventId, FALSE, CRM_Utils_Array::value('has_waitlist', $this->_values['event'])); + $eventFull = CRM_Event_BAO_Participant::eventFull($this->_eventId, FALSE, $this->_values['event']['has_waitlist'] ?? NULL); // Get payment processors if appropriate for this event $this->_noFees = $suppressPayment = $this->isSuppressPayment(); @@ -600,7 +600,7 @@ public static function formRule($fields, $files, $form) { /// see https://lab.civicrm.org/dev/core/-/issues/5168 if ($form->getPriceSetID() && !empty($fields['bypass_payment']) && $form->_allowConfirmation) { if ($spacesAvailable === 0 || - (empty($fields['priceSetId']) && CRM_Utils_Array::value('additional_participants', $fields) < $spacesAvailable) + (empty($fields['priceSetId']) && ($fields['additional_participants'] ?? 0) < $spacesAvailable) ) { $errors['bypass_payment'] = ts("You have not been added to the waiting list because there are spaces available for this event. We recommend registering yourself for an available space instead."); } diff --git a/CRM/Event/Form/Registration/ThankYou.php b/CRM/Event/Form/Registration/ThankYou.php index 3d1a8b16591b..8b52ff1acb9a 100644 --- a/CRM/Event/Form/Registration/ThankYou.php +++ b/CRM/Event/Form/Registration/ThankYou.php @@ -43,7 +43,7 @@ public function preProcess(): void { CRM_Event_Form_Registration_Confirm::assignProfiles($this); - $this->setTitle(CRM_Utils_Array::value('thankyou_title', $this->_values['event'])); + $this->setTitle($this->_values['event']['thankyou_title'] ?? NULL); } /** diff --git a/CRM/Event/Page/EventInfo.php b/CRM/Event/Page/EventInfo.php index 9ac2c5b876a0..987c911a6e9d 100644 --- a/CRM/Event/Page/EventInfo.php +++ b/CRM/Event/Page/EventInfo.php @@ -73,7 +73,7 @@ public function run() { $this->assign('isShowLocation', $values['event']['is_show_location'] ?? NULL); - $eventCurrency = CRM_Utils_Array::value('currency', $values['event'], $config->defaultCurrency); + $eventCurrency = $values['event']['currency'] ?? $config->defaultCurrency; $this->assign('eventCurrency', $eventCurrency); // show event fees. From ba4869b937fff7ac28780407ddf1de31a96dcefe Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:36:53 -0500 Subject: [PATCH 31/85] [REF] CRM/Misc - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Dedupe/Merger.php | 2 +- CRM/Export/BAO/ExportProcessor.php | 15 +++++++-------- CRM/Import/Parser.php | 2 +- CRM/Logging/Schema.php | 2 +- CRM/Upgrade/Page/Upgrade.php | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/CRM/Dedupe/Merger.php b/CRM/Dedupe/Merger.php index a02de39002bd..804cc42ae045 100644 --- a/CRM/Dedupe/Merger.php +++ b/CRM/Dedupe/Merger.php @@ -2697,7 +2697,7 @@ protected static function addLocationFieldInfo($mainId, $otherId, $blockInfo, $b // Put this field's location type at the top of the list $tmpIdList = $typeOptions['values']; - $defaultTypeId = [$thisTypeId => CRM_Utils_Array::value($thisTypeId, $tmpIdList)]; + $defaultTypeId = [$thisTypeId => $tmpIdList[$thisTypeId] ?? NULL]; unset($tmpIdList[$thisTypeId]); // Add the element diff --git a/CRM/Export/BAO/ExportProcessor.php b/CRM/Export/BAO/ExportProcessor.php index 718a6495a62e..45fe8e5d9a94 100644 --- a/CRM/Export/BAO/ExportProcessor.php +++ b/CRM/Export/BAO/ExportProcessor.php @@ -768,7 +768,7 @@ public function getHeaderForRow($field) { return $this->getQueryFields()[$field]['title']; } elseif ($this->isExportPaymentFields() && array_key_exists($field, $this->getcomponentPaymentFields())) { - return CRM_Utils_Array::value($field, $this->getcomponentPaymentFields())['title']; + return $this->getcomponentPaymentFields()[$field]['title']; } else { return $field; @@ -1182,7 +1182,7 @@ public function getTransformedFieldValue($field, $iterationDAO, $fieldValue, $pa 'componentPaymentField_transaction_id' => 'trxn_id', 'componentPaymentField_received_date' => 'receive_date', ]; - return CRM_Utils_Array::value($payFieldMapper[$field], $paymentData, ''); + return $paymentData[$payFieldMapper[$field]] ?? ''; } else { // if field is empty or null @@ -1360,11 +1360,10 @@ public function getDefaultReturnProperties() { */ public function setRelationshipReturnProperties($value, $relationshipKey) { $relationField = $value['name']; - $relIMProviderId = NULL; $relLocTypeId = $value['location_type_id'] ?? NULL; $locationName = CRM_Core_PseudoConstant::getName('CRM_Core_BAO_Address', 'location_type_id', $relLocTypeId); - $relPhoneTypeId = CRM_Utils_Array::value('phone_type_id', $value, ($locationName ? 'Primary' : NULL)); - $relIMProviderId = CRM_Utils_Array::value('im_provider_id', $value, ($locationName ? 'Primary' : NULL)); + $relPhoneTypeId = $value['phone_type_id'] ?? ($locationName ? 'Primary' : NULL); + $relIMProviderId = $value['im_provider_id'] ?? ($locationName ? 'Primary' : NULL); if (in_array($relationField, $this->getValidLocationFields()) && $locationName) { if ($relationField === 'phone') { $this->relationshipReturnProperties[$relationshipKey]['location'][$locationName]['phone-' . $relPhoneTypeId] = 1; @@ -1449,7 +1448,7 @@ public function getSqlColumnDefinition($fieldName, $columnName) { switch ($type) { case CRM_Utils_Type::T_INT: case CRM_Utils_Type::T_BOOLEAN: - if (in_array(CRM_Utils_Array::value('data_type', $fieldSpec), ['Country', 'StateProvince', 'ContactReference'])) { + if (in_array($fieldSpec['data_type'] ?? NULL, ['Country', 'StateProvince', 'ContactReference'])) { return "`$fieldName` text"; } // some of those will be exported as a (localisable) string @@ -1465,7 +1464,7 @@ public function getSqlColumnDefinition($fieldName, $columnName) { switch ($dataType) { case 'String': // May be option labels, which could be up to 512 characters - $length = max(512, CRM_Utils_Array::value('text_length', $fieldSpec)); + $length = max(512, $fieldSpec['text_length'] ?? 0); return "`$fieldName` varchar($length)"; case 'Memo': @@ -1822,7 +1821,7 @@ public function getGroupBy($query) { $exportMode = $this->getExportMode(); $queryMode = $this->getQueryMode(); if (!empty($returnProperties['tags']) || !empty($returnProperties['groups']) || - CRM_Utils_Array::value('notes', $returnProperties) || + !empty($returnProperties['notes']) || // CRM-9552 ($queryMode & CRM_Contact_BAO_Query::MODE_CONTACTS && $query->_useGroupBy) ) { diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index aa5abf32ae05..c4f983566f15 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -1030,7 +1030,7 @@ private function _civicrm_api3_deprecated_add_formatted_param(&$values, &$params $addressCnt = 1; foreach ($params['address'] as $cnt => $addressBlock) { if (($values['location_type_id'] ?? NULL) == - CRM_Utils_Array::value('location_type_id', $addressBlock) + ($addressBlock['location_type_id'] ?? NULL) ) { $addressCnt = $cnt; break; diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php index 29f262638aa5..a920ff6ddc84 100644 --- a/CRM/Logging/Schema.php +++ b/CRM/Logging/Schema.php @@ -730,7 +730,7 @@ public function columnsWithDiffSpecs($civiTable, $logTable) { // ignore 'id' column for any spec changes, to avoid any auto-increment mysql errors if ($civiTableSpecs[$col]['DATA_TYPE'] != ($logTableSpecs[$col]['DATA_TYPE'] ?? NULL) // We won't alter the log if the length is decreased in case some of the existing data won't fit. - || CRM_Utils_Array::value('LENGTH', $civiTableSpecs[$col]) > CRM_Utils_Array::value('LENGTH', $logTableSpecs[$col]) + || ($civiTableSpecs[$col]['LENGTH'] ?? 0) > ($logTableSpecs[$col]['LENGTH'] ?? 0) ) { // if data-type is different, surely consider the column $diff['MODIFY'][] = $col; diff --git a/CRM/Upgrade/Page/Upgrade.php b/CRM/Upgrade/Page/Upgrade.php index d1b5e2610b27..5959ad4da1ce 100644 --- a/CRM/Upgrade/Page/Upgrade.php +++ b/CRM/Upgrade/Page/Upgrade.php @@ -41,7 +41,7 @@ public function run() { CRM_Utils_System::url('civicrm/dashboard', 'reset=1') ); - $action = CRM_Utils_Array::value('action', $_REQUEST, 'intro'); + $action = $_REQUEST['action'] ?? 'intro'; switch ($action) { case 'intro': $this->runIntro(); From 7cdc22620bbc46e18256b7b7241b202caa5c8846 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:38:16 -0500 Subject: [PATCH 32/85] [REF] CRM/Member - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Member/BAO/Query.php | 7 +++---- CRM/Member/Form.php | 2 +- CRM/Member/Form/Membership.php | 2 +- CRM/Member/Form/MembershipBlock.php | 17 ++++++++--------- CRM/Member/Form/MembershipStatus.php | 8 ++++---- CRM/Member/Form/MembershipType.php | 5 +---- CRM/Member/Form/Task/Batch.php | 4 ++-- CRM/Member/Form/Task/PDFLetter.php | 2 +- 8 files changed, 21 insertions(+), 26 deletions(-) diff --git a/CRM/Member/BAO/Query.php b/CRM/Member/BAO/Query.php index 107a2c367194..85a01dce5209 100644 --- a/CRM/Member/BAO/Query.php +++ b/CRM/Member/BAO/Query.php @@ -166,10 +166,9 @@ public static function whereClauseSingle(&$values, &$query) { if (in_array($name, $fieldAliases)) { $qillName = array_search($name, $fieldAliases); } - $pseudoExtraParam = []; - $fieldSpec = CRM_Utils_Array::value($fieldName, $fields, []); - $tableName = CRM_Utils_Array::value('table_name', $fieldSpec, 'civicrm_membership'); - $dataType = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $fieldSpec)); + $fieldSpec = $fields[$fieldName] ?? []; + $tableName = $fieldSpec['table_name'] ?? 'civicrm_membership'; + $dataType = CRM_Utils_Type::typeToString($fieldSpec['type'] ?? NULL); if ($dataType === 'Timestamp' || $dataType === 'Date') { $title = empty($fieldSpec['unique_title']) ? $fieldSpec['title'] : $fieldSpec['unique_title']; $query->_tables['civicrm_membership'] = $query->_whereTables['civicrm_membership'] = 1; diff --git a/CRM/Member/Form.php b/CRM/Member/Form.php index c7e3f921a5f9..07c72517c18c 100644 --- a/CRM/Member/Form.php +++ b/CRM/Member/Form.php @@ -527,7 +527,7 @@ protected function ensurePriceParamsAreSet(array &$formValues): void { $priceFields = CRM_Member_BAO_Membership::setQuickConfigMembershipParameters( $formValues['membership_type_id'][0], $formValues['membership_type_id'][1], - CRM_Utils_Array::value('total_amount', $formValues), + $formValues['total_amount'] ?? NULL, $this->_priceSetId ); $formValues = array_merge($formValues, $priceFields['price_fields']); diff --git a/CRM/Member/Form/Membership.php b/CRM/Member/Form/Membership.php index e05e662caf50..044adac4db8b 100644 --- a/CRM/Member/Form/Membership.php +++ b/CRM/Member/Form/Membership.php @@ -912,7 +912,7 @@ private function prepareStatusOverrideValues() { * the selected override option is not 'until date'. */ private function setOverrideDateValue() { - if (!CRM_Member_StatusOverrideTypes::isUntilDate(CRM_Utils_Array::value('is_override', $this->_params))) { + if (!CRM_Member_StatusOverrideTypes::isUntilDate($this->_params['is_override'] ?? NULL)) { $this->_params['status_override_end_date'] = ''; } } diff --git a/CRM/Member/Form/MembershipBlock.php b/CRM/Member/Form/MembershipBlock.php index 6026d0a8cc1e..e3b09667ee5c 100644 --- a/CRM/Member/Form/MembershipBlock.php +++ b/CRM/Member/Form/MembershipBlock.php @@ -376,7 +376,7 @@ public function postProcess() { } else { $fieldParams['id'] = $params['mem_price_field_id'] ?? NULL; - $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', CRM_Utils_Array::value('mem_price_field_id', $params), 'price_set_id'); + $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['mem_price_field_id'] ?? NULL, 'price_set_id'); } $editedFieldParams = [ 'price_set_id' => $priceSetID, @@ -413,7 +413,7 @@ public function postProcess() { } $membetype = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($memType); $fieldParams['option_label'][$rowCount] = $membetype['name'] ?? NULL; - $fieldParams['option_amount'][$rowCount] = CRM_Utils_Array::value('minimum_fee', $membetype, 0); + $fieldParams['option_amount'][$rowCount] = $membetype['minimum_fee'] ?? 0; $fieldParams['option_weight'][$rowCount] = $membetype['weight'] ?? NULL; $fieldParams['option_description'][$rowCount] = $membetype['description'] ?? NULL; $fieldParams['default_option'] = $params['membership_type_default'] ?? NULL; @@ -432,15 +432,14 @@ public function postProcess() { $deletePriceSet = 1; } - $params['is_required'] = CRM_Utils_Array::value('is_required', $params, FALSE); - $params['is_active'] = CRM_Utils_Array::value('member_is_active', $params, FALSE); + $params['is_required'] = $params['is_required'] ?? FALSE; + $params['is_active'] = $params['member_is_active'] ?? FALSE; if ($priceSetID) { - $params['membership_types'] = 'null'; - $params['membership_type_default'] = CRM_Utils_Array::value('membership_type_default', $params, 'null'); + $params['membership_type_default'] = $params['membership_type_default'] ?? 'null'; $params['membership_types'] = serialize($membershipTypes); - $params['display_min_fee'] = CRM_Utils_Array::value('display_min_fee', $params, FALSE); - $params['is_separate_payment'] = CRM_Utils_Array::value('is_separate_payment', $params, FALSE); + $params['display_min_fee'] = $params['display_min_fee'] ?? FALSE; + $params['is_separate_payment'] = $params['is_separate_payment'] ?? FALSE; } $params['entity_table'] = 'civicrm_contribution_page'; $params['entity_id'] = $this->_id; @@ -453,7 +452,7 @@ public function postProcess() { CRM_Price_BAO_PriceSet::addTo('civicrm_contribution_page', $this->_id, $priceSetID); } - if ($deletePriceSet || !CRM_Utils_Array::value('member_is_active', $params, FALSE)) { + if ($deletePriceSet || empty($params['member_is_active'])) { if ($this->_memPriceSetId) { $pFIDs = []; diff --git a/CRM/Member/Form/MembershipStatus.php b/CRM/Member/Form/MembershipStatus.php index af276795fc41..a6dc057fb4c1 100644 --- a/CRM/Member/Form/MembershipStatus.php +++ b/CRM/Member/Form/MembershipStatus.php @@ -144,10 +144,10 @@ public function postProcess() { else { // store the submitted values in an array $params = $this->exportValues(); - $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE); - $params['is_current_member'] = CRM_Utils_Array::value('is_current_member', $params, FALSE); - $params['is_admin'] = CRM_Utils_Array::value('is_admin', $params, FALSE); - $params['is_default'] = CRM_Utils_Array::value('is_default', $params, FALSE); + $params['is_active'] = $params['is_active'] ?? FALSE; + $params['is_current_member'] = $params['is_current_member'] ?? FALSE; + $params['is_admin'] = $params['is_admin'] ?? FALSE; + $params['is_default'] = $params['is_default'] ?? FALSE; if ($this->_action & CRM_Core_Action::UPDATE) { $params['id'] = $this->getEntityId(); diff --git a/CRM/Member/Form/MembershipType.php b/CRM/Member/Form/MembershipType.php index 68415bace968..884c2a5713e9 100644 --- a/CRM/Member/Form/MembershipType.php +++ b/CRM/Member/Form/MembershipType.php @@ -297,10 +297,7 @@ public static function formRule($params) { $errors['duration_interval'] = ts('Please enter a duration interval.'); } - if (in_array(CRM_Utils_Array::value('auto_renew', $params), [ - 1, - 2, - ])) { + if (in_array($params['auto_renew'] ?? 0, [1, 2])) { if (($params['duration_interval'] > 1 && $params['duration_unit'] === 'year') || ($params['duration_interval'] > 12 && $params['duration_unit'] === 'month') ) { diff --git a/CRM/Member/Form/Task/Batch.php b/CRM/Member/Form/Task/Batch.php index 365ac3d22708..82f04634ad98 100644 --- a/CRM/Member/Form/Task/Batch.php +++ b/CRM/Member/Form/Task/Batch.php @@ -141,7 +141,7 @@ public function buildQuickForm() { $customValue['extends_entity_column_value'] ); } - if ((CRM_Utils_Array::value($typeId, $entityColumnValue)) || + if (!empty($entityColumnValue[$typeId]) || CRM_Utils_System::isNull($entityColumnValue[$typeId] ?? NULL) ) { CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $memberId); @@ -228,7 +228,7 @@ protected function submit(array $params) { unset($value['membership_type']); //Get the membership status - $value['status_id'] = (CRM_Utils_Array::value('membership_status', $value)) ? $value['membership_status'] : CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $key, 'status_id'); + $value['status_id'] = !empty($value['membership_status']) ? $value['membership_status'] : CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $key, 'status_id'); unset($value['membership_status']); foreach ($dates as $val) { if (isset($value[$val])) { diff --git a/CRM/Member/Form/Task/PDFLetter.php b/CRM/Member/Form/Task/PDFLetter.php index 29f42b8c1cc3..14043e5ba2b6 100644 --- a/CRM/Member/Form/Task/PDFLetter.php +++ b/CRM/Member/Form/Task/PDFLetter.php @@ -88,7 +88,7 @@ public function postProcessMembers($membershipIDs, $contactIDs) { $formValues = $form->controller->exportValues($form->getName()); [$formValues, $html_message] = $this->processMessageTemplate($formValues); $html = $this->generateHTML($membershipIDs, $html_message); - $form->createActivities($html_message, $contactIDs, $formValues['subject'], CRM_Utils_Array::value('campaign_id', $formValues)); + $form->createActivities($html_message, $contactIDs, $formValues['subject'], $formValues['campaign_id'] ?? NULL); CRM_Utils_PDF_Utils::html2pdf($html, $this->getFileName() . '.pdf', FALSE, $formValues); $form->postProcessHook(); From 4e651c0acba6e8237f8f3a999c4e43cf6a34c100 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:40:24 -0500 Subject: [PATCH 33/85] [REF] CRM/Utils - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Queue/Queue/SqlTrait.php | 2 +- CRM/Queue/Runner.php | 6 +++--- CRM/Utils/API/MatchOption.php | 2 +- CRM/Utils/Cache.php | 4 ++-- CRM/Utils/Cache/SqlGroup.php | 2 +- CRM/Utils/Chart.php | 10 +++++----- CRM/Utils/File.php | 6 +----- CRM/Utils/Mail.php | 10 +--------- CRM/Utils/Sort.php | 2 +- 9 files changed, 16 insertions(+), 28 deletions(-) diff --git a/CRM/Queue/Queue/SqlTrait.php b/CRM/Queue/Queue/SqlTrait.php index 6b315b83ee27..e274b595a10b 100644 --- a/CRM/Queue/Queue/SqlTrait.php +++ b/CRM/Queue/Queue/SqlTrait.php @@ -101,7 +101,7 @@ public function createItem($data, $options = []) { \CRM_Core_DAO::executeQuery("INSERT INTO civicrm_queue_item (queue_name, submit_time, data, weight, release_time) VALUES (%1, now(), %2, %3, {$releaseTime})", [ 1 => [$this->getName(), 'String'], 2 => [serialize($data), 'String'], - 3 => [CRM_Utils_Array::value('weight', $options, 0), 'Integer'], + 3 => [$options['weight'] ?? 0, 'Integer'], ], TRUE, NULL, FALSE, FALSE); } diff --git a/CRM/Queue/Runner.php b/CRM/Queue/Runner.php index 2be2ceed648f..61421e1f02f2 100644 --- a/CRM/Queue/Runner.php +++ b/CRM/Queue/Runner.php @@ -116,13 +116,13 @@ public static function instance($qrid) { * default: 'civicrm/queue'. */ public function __construct($runnerSpec) { - $this->title = CRM_Utils_Array::value('title', $runnerSpec, ts('Queue Runner')); + $this->title = $runnerSpec['title'] ?? ts('Queue Runner'); $this->queue = $runnerSpec['queue']; - $this->errorMode = CRM_Utils_Array::value('errorMode', $runnerSpec, $this->pickErrorMode($this->queue)); + $this->errorMode = $runnerSpec['errorMode'] ?? $this->pickErrorMode($this->queue); $this->isMinimal = $runnerSpec['isMinimal'] ?? FALSE; $this->onEnd = $runnerSpec['onEnd'] ?? NULL; $this->onEndUrl = $runnerSpec['onEndUrl'] ?? NULL; - $this->pathPrefix = CRM_Utils_Array::value('pathPrefix', $runnerSpec, 'civicrm/queue'); + $this->pathPrefix = $runnerSpec['pathPrefix'] ?? 'civicrm/queue'; $this->buttons = CRM_Utils_Array::value('buttons', $runnerSpec, ['retry' => TRUE, 'skip' => TRUE]); // perhaps this value should be randomized? $this->qrid = $this->queue->getName(); diff --git a/CRM/Utils/API/MatchOption.php b/CRM/Utils/API/MatchOption.php index 97301161b90a..e6620c7f73f3 100644 --- a/CRM/Utils/API/MatchOption.php +++ b/CRM/Utils/API/MatchOption.php @@ -171,7 +171,7 @@ public function toApiOutput($apiRequest, $result) { public function createGetParams($origParams, $keys) { $params = ['version' => 3]; foreach ($keys as $key) { - $params[$key] = CRM_Utils_Array::value($key, $origParams, ''); + $params[$key] = $origParams[$key] ?? ''; } return $params; } diff --git a/CRM/Utils/Cache.php b/CRM/Utils/Cache.php index 10f5fc9ed855..d05542027d77 100644 --- a/CRM/Utils/Cache.php +++ b/CRM/Utils/Cache.php @@ -56,7 +56,7 @@ public static function &singleton() { // a generic method for utilizing any of the available db caches. $dbCacheClass = 'CRM_Utils_Cache_' . $className; $settings = self::getCacheSettings($className); - $settings['prefix'] = CRM_Utils_Array::value('prefix', $settings, '') . self::DELIMITER . 'default' . self::DELIMITER; + $settings['prefix'] = ($settings['prefix'] ?? '') . self::DELIMITER . 'default' . self::DELIMITER; self::$_singleton = new $dbCacheClass($settings); } return self::$_singleton; @@ -196,7 +196,7 @@ public static function create($params = []) { $shortName = self::cleanKey($params['name'], 64); $dbCacheClass = 'CRM_Utils_Cache_' . CIVICRM_DB_CACHE_CLASS; $settings = self::getCacheSettings(CIVICRM_DB_CACHE_CLASS); - $settings['prefix'] = CRM_Utils_Array::value('prefix', $settings, '') . self::DELIMITER . $shortName . $scopeId; + $settings['prefix'] = ($settings['prefix'] ?? '') . self::DELIMITER . $shortName . $scopeId; $cache = new $dbCacheClass($settings); if (!empty($params['withArray'])) { $cache = $params['withArray'] === 'fast' ? new CRM_Utils_Cache_FastArrayDecorator($cache) : new CRM_Utils_Cache_ArrayDecorator($cache); diff --git a/CRM/Utils/Cache/SqlGroup.php b/CRM/Utils/Cache/SqlGroup.php index fde3795af61f..107030f18d18 100644 --- a/CRM/Utils/Cache/SqlGroup.php +++ b/CRM/Utils/Cache/SqlGroup.php @@ -90,7 +90,7 @@ public function __construct($config) { $this->componentID = NULL; } $this->valueCache = []; - if (CRM_Utils_Array::value('prefetch', $config, TRUE)) { + if ($config['prefetch'] ?? TRUE) { $this->prefetch(); } } diff --git a/CRM/Utils/Chart.php b/CRM/Utils/Chart.php index 516f1d9211d7..cb45e0e1f7fc 100644 --- a/CRM/Utils/Chart.php +++ b/CRM/Utils/Chart.php @@ -178,7 +178,7 @@ public static function chart($rows, $chart, $interval) { $graph[$key] = array_combine($dateKeys, $rows['multiValue'][$key]); } $chartData = [ - 'legend' => "$legend " . CRM_Utils_Array::value('legend', $rows, ts('Contribution')) . ' ' . ts('Summary'), + 'legend' => "$legend " . ($rows['legend'] ?? ts('Contribution')) . ' ' . ts('Summary'), 'values' => $graph[0], 'multiValues' => $graph, 'barKeys' => $rows['barKeys'] ?? [], @@ -226,7 +226,7 @@ public static function reportChart($rows, $chart, $interval, &$chartInfo) { ]; // rotate the x labels. - $chartData['xLabelAngle'] = CRM_Utils_Array::value('xLabelAngle', $chartInfo, 20); + $chartData['xLabelAngle'] = $chartInfo['xLabelAngle'] ?? 20; if (!empty($chartInfo['tip'])) { $chartData['tip'] = $chartInfo['tip']; } @@ -255,10 +255,10 @@ public static function buildChart(&$params, $chart) { if ($chartObj) { // calculate chart size. - $xSize = CRM_Utils_Array::value('xSize', $params, 400); - $ySize = CRM_Utils_Array::value('ySize', $params, 300); + $xSize = $params['xSize'] ?? 400; + $ySize = $params['ySize'] ?? 300; if ($chart == 'barChart') { - $ySize = CRM_Utils_Array::value('ySize', $params, 250); + $ySize = $params['ySize'] ?? 250; $xSize = 60 * count($params['values']); // hack to show tooltip. if ($xSize < 200) { diff --git a/CRM/Utils/File.php b/CRM/Utils/File.php index c33026441390..172854d0ec78 100644 --- a/CRM/Utils/File.php +++ b/CRM/Utils/File.php @@ -987,11 +987,7 @@ public static function getImageURL($imageURL) { 'jpg' => 'jpeg', 'svg' => 'svg+xml', ]; - $mimeType = 'image/' . CRM_Utils_Array::value( - $fileExtension, - $translateMimeTypes, - $fileExtension - ); + $mimeType = 'image/' . ($translateMimeTypes[$fileExtension] ?? $fileExtension); return self::getFileURL($path, $mimeType, $url); } diff --git a/CRM/Utils/Mail.php b/CRM/Utils/Mail.php index 94858b01b0ae..a22f4249c9b9 100644 --- a/CRM/Utils/Mail.php +++ b/CRM/Utils/Mail.php @@ -60,15 +60,7 @@ public static function createMailer() { * Use the host name of the web server, falling back to the base URL * (eg when using the PHP CLI), and then falling back to localhost. */ - $params['localhost'] = CRM_Utils_Array::value( - 'SERVER_NAME', - $_SERVER, - CRM_Utils_Array::value( - 'host', - parse_url(CIVICRM_UF_BASEURL), - 'localhost' - ) - ); + $params['localhost'] = $_SERVER['SERVER_NAME'] ?? parse_url(CIVICRM_UF_BASEURL)['host'] ?? 'localhost'; // also set the timeout value, lets set it to 30 seconds // CRM-7510 diff --git a/CRM/Utils/Sort.php b/CRM/Utils/Sort.php index 617e4c33e16c..f479b6d48ac7 100644 --- a/CRM/Utils/Sort.php +++ b/CRM/Utils/Sort.php @@ -166,7 +166,7 @@ public static function sortIDValue($index, $dir) { * The sort order to use by default. */ public function initSortID($defaultSortOrder) { - $url = CRM_Utils_Array::value(self::SORT_ID, $_GET, $defaultSortOrder); + $url = $_GET[self::SORT_ID] ?? $defaultSortOrder; if (empty($url)) { return; From 857b9b6b7407e75eb3ed16626e25d43ffcf3af62 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 09:18:06 -0500 Subject: [PATCH 34/85] [REF] CRM/Report - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Report/Form.php | 12 ++++++------ CRM/Report/Utils/Get.php | 4 ++-- CRM/Report/Utils/Report.php | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 69dedfd0617e..380bc2034f94 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -1025,7 +1025,7 @@ public function setDefaultValues($freeze = TRUE) { } } else { - if ((CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_INT) && is_array($field['default'])) { + if ((($field['type'] ?? NULL) & CRM_Utils_Type::T_INT) && is_array($field['default'])) { $this->_defaults["{$fieldName}_min"] = $field['default']['min'] ?? NULL; $this->_defaults["{$fieldName}_max"] = $field['default']['max'] ?? NULL; } @@ -1065,7 +1065,7 @@ public function setDefaultValues($freeze = TRUE) { } foreach ($table['order_bys'] as $fieldName => $field) { if (!empty($field['default']) || !empty($field['default_order']) || - CRM_Utils_Array::value('default_is_section', $field) || + !empty($field['default_is_section']) || !empty($field['default_weight']) ) { $order_by = [ @@ -2050,7 +2050,7 @@ public function getSQLOperator($operator = "like") { */ public function whereClause(&$field, $op, $value, $min, $max) { - $type = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $field)); + $type = CRM_Utils_Type::typeToString($field['type'] ?? NULL); // CRM-18010: Ensure type of each report filters if (!$type) { @@ -3153,7 +3153,7 @@ public function storeOrderByArray() { } elseif (array_key_exists('extends', $table)) { // For custom fields referenced in $this->_customGroupExtends - $fields = CRM_Utils_Array::value('fields', $table, []); + $fields = $table['fields'] ?? []; } else { continue; @@ -3515,7 +3515,7 @@ public function filterStat(&$statistics) { $value = $pair[$op]; } elseif (is_array($val) && (!empty($val))) { - $options = CRM_Utils_Array::value('options', $field, []); + $options = $field['options'] ?? []; foreach ($val as $key => $valIds) { if (isset($options[$valIds])) { $val[$key] = $options[$valIds]; @@ -4117,7 +4117,7 @@ public function addCustomDataToColumns($addFields = TRUE) { } if (!array_key_exists('type', $curFields[$fieldName])) { - $curFields[$fieldName]['type'] = CRM_Utils_Array::value('type', $curFilters[$fieldName], []); + $curFields[$fieldName]['type'] = $curFilters[$fieldName]['type'] ?? []; } if ($addFields) { diff --git a/CRM/Report/Utils/Get.php b/CRM/Report/Utils/Get.php index 34f29f2d385a..928fab44f67c 100644 --- a/CRM/Report/Utils/Get.php +++ b/CRM/Report/Utils/Get.php @@ -88,7 +88,7 @@ public static function dateParam($fieldName, &$field, &$defaults) { * @param array $defaults */ public static function stringParam($fieldName, &$field, &$defaults) { - $fieldOP = CRM_Utils_Array::value("{$fieldName}_op", $_GET, 'like'); + $fieldOP = $_GET["{$fieldName}_op"] ?? 'like'; switch ($fieldOP) { case 'has': @@ -128,7 +128,7 @@ public static function stringParam($fieldName, &$field, &$defaults) { * @param array $defaults */ public static function intParam($fieldName, &$field, &$defaults) { - $fieldOP = CRM_Utils_Array::value("{$fieldName}_op", $_GET, 'eq'); + $fieldOP = $_GET["{$fieldName}_op"] ?? 'eq'; switch ($fieldOP) { case 'lte': diff --git a/CRM/Report/Utils/Report.php b/CRM/Report/Utils/Report.php index 7a86860d207b..8aa51c7c2868 100644 --- a/CRM/Report/Utils/Report.php +++ b/CRM/Report/Utils/Report.php @@ -388,11 +388,11 @@ public static function processReport($params) { // hack for now, CRM-8358 $_REQUEST['instanceId'] = $instanceId; - $_REQUEST['sendmail'] = CRM_Utils_Array::value('sendmail', $params, 1); + $_REQUEST['sendmail'] = $params['sendmail'] ?? 1; // if cron is run from terminal --output is reserved, and therefore we would provide another name 'format' $_REQUEST['output'] = $params['format'] ?? $params['output'] ?? 'pdf'; - $_REQUEST['reset'] = CRM_Utils_Array::value('reset', $params, 1); + $_REQUEST['reset'] = $params['reset'] ?? 1; $optionVal = self::getValueFromUrl($instanceId); $messages = ['Report Mail Triggered...']; From 9b0430d337d2f705e665fd9a1bcf0ff1a52c396e Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:05:27 -0500 Subject: [PATCH 35/85] [REF] CRM/Report/Form/* - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Report/Form/Campaign/SurveyDetails.php | 6 +++--- CRM/Report/Form/Contact/Relationship.php | 2 +- CRM/Report/Form/Contribute/Lybunt.php | 2 +- CRM/Report/Form/Event/Income.php | 2 +- CRM/Report/Form/Mailing/Summary.php | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CRM/Report/Form/Campaign/SurveyDetails.php b/CRM/Report/Form/Campaign/SurveyDetails.php index 39044107fa1a..738f7dcf5de3 100644 --- a/CRM/Report/Form/Campaign/SurveyDetails.php +++ b/CRM/Report/Form/Campaign/SurveyDetails.php @@ -386,7 +386,7 @@ private function _surveyCoverSheet() { if (!empty($field['isSurveyResponseField'])) { $fldId = substr($name, 7); $fieldIds[$fldId] = $fldId; - $title = CRM_Utils_Array::value('label', $field, $field['title']); + $title = $field['label'] ?? $field['title']; $surveyResponseFields[$name] = [ 'id' => $fldId, 'title' => $title, @@ -530,7 +530,7 @@ private function _formatSurveyResult(&$rows) { if (!empty($row['civicrm_activity_survey_id'])) { $surveyId = $row['civicrm_activity_survey_id']; } - $result = CRM_Utils_Array::value($surveyId, $resultSet, []); + $result = $resultSet[$surveyId] ?? []; $resultLabel = $row['civicrm_activity_result'] ?? NULL; if ($respondentStatus == 'Reserved') { $row['civicrm_activity_result'] = implode(' | ', array_keys($result)); @@ -652,7 +652,7 @@ private function _formatSurveyResponseData(&$rows) { in_array($this->_outputMode, ['print', 'pdf']) ) { $optGrpId = $responseFields[$name]['option_group_id'] ?? NULL; - $options = CRM_Utils_Array::value($optGrpId, $fieldValueMap, []); + $options = $fieldValueMap[$optGrpId] ?? []; $value = implode(' | ', array_keys($options)); } else { diff --git a/CRM/Report/Form/Contact/Relationship.php b/CRM/Report/Form/Contact/Relationship.php index 11057d6bc1f5..e6f508d9b652 100644 --- a/CRM/Report/Form/Contact/Relationship.php +++ b/CRM/Report/Form/Contact/Relationship.php @@ -509,7 +509,7 @@ public function where() { } else { if ($fieldName == 'is_valid') { - $clause = $this->buildValidityQuery(CRM_Utils_Array::value("{$fieldName}_value", $this->_params)); + $clause = $this->buildValidityQuery($this->_params["{$fieldName}_value"] ?? NULL); } else { $clause = $this->whereClause($field, diff --git a/CRM/Report/Form/Contribute/Lybunt.php b/CRM/Report/Form/Contribute/Lybunt.php index 81049c544879..79fde3423c13 100644 --- a/CRM/Report/Form/Contribute/Lybunt.php +++ b/CRM/Report/Form/Contribute/Lybunt.php @@ -447,7 +447,7 @@ public function getFirstDateOfCurrentRange() { * @return string */ public function getYearFilterType() { - return CRM_Utils_Array::value('yid_op', $this->_params, 'calendar'); + return $this->_params['yid_op'] ?? 'calendar'; } /** diff --git a/CRM/Report/Form/Event/Income.php b/CRM/Report/Form/Event/Income.php index 89f254fe04bb..3aae45ed9360 100644 --- a/CRM/Report/Form/Event/Income.php +++ b/CRM/Report/Form/Event/Income.php @@ -297,7 +297,7 @@ public function postProcess() { $count = 0; $numRows = $this->_limit; - if (CRM_Utils_Array::value('id_op', $this->_params, 'in') == 'in' || $noSelection) { + if (($this->_params['id_op'] ?? 'in') == 'in' || $noSelection) { $rowCount = $this->getRowCount(); while ($count < $rowCount) { if (!isset($this->_params['id_value'][$numRows])) { diff --git a/CRM/Report/Form/Mailing/Summary.php b/CRM/Report/Form/Mailing/Summary.php index a82fe252c669..3afd61b2b8a1 100644 --- a/CRM/Report/Form/Mailing/Summary.php +++ b/CRM/Report/Form/Mailing/Summary.php @@ -476,7 +476,7 @@ public function postProcess() { $this->beginPostProcess(); // get the acl clauses built before we assemble the query - $this->buildACLClause(CRM_Utils_Array::value('civicrm_contact', $this->_aliases)); + $this->buildACLClause($this->_aliases['civicrm_contact'] ?? NULL); $sql = $this->buildQuery(TRUE); From 05fe8e50d5813c483cf9e05c69af27f5e757df0b Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:41:21 -0500 Subject: [PATCH 36/85] [REF] CRM/Tag - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/Tag/Page/Tag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Tag/Page/Tag.php b/CRM/Tag/Page/Tag.php index 90f42d2f3005..c5a73efd4345 100644 --- a/CRM/Tag/Page/Tag.php +++ b/CRM/Tag/Page/Tag.php @@ -45,7 +45,7 @@ public function run() { 'options' => ['limit' => 0], ]); foreach ($result['values'] as $id => $tagset) { - $used = explode(',', CRM_Utils_Array::value('used_for', $tagset, '')); + $used = explode(',', $tagset['used_for'] ?? ''); $tagset['used_for_label'] = array_values(array_intersect_key($usedFor, array_flip($used))); $tagset['used_for_label_str'] = implode(', ', $tagset['used_for_label']); if (isset($tagset['created_id.display_name'])) { From 9f28ea23fa92f0a4932ef64f806f7d37b86386ee Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:42:25 -0500 Subject: [PATCH 37/85] [REF] CRM/SMS - Refactor out uses of deprecated CRM_Utils_Array::value. --- CRM/SMS/BAO/SmsProvider.php | 6 +++--- CRM/SMS/Form/Upload.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/SMS/BAO/SmsProvider.php b/CRM/SMS/BAO/SmsProvider.php index eee358716583..74e03aeb7e17 100644 --- a/CRM/SMS/BAO/SmsProvider.php +++ b/CRM/SMS/BAO/SmsProvider.php @@ -85,10 +85,10 @@ public static function create(&$params) { $provider->find(TRUE); } if ($id) { - $provider->domain_id = CRM_Utils_Array::value('domain_id', $params, $provider->domain_id); + $provider->domain_id = $params['domain_id'] ?? $provider->domain_id; } else { - $provider->domain_id = CRM_Utils_Array::value('domain_id', $params, CRM_Core_Config::domainID()); + $provider->domain_id = $params['domain_id'] ?? CRM_Core_Config::domainID(); } $provider->copyValues($params); $result = $provider->save(); @@ -171,7 +171,7 @@ public static function getProviderInfo($providerID, $returnParam = NULL, $return } if ($returnParam) { - return CRM_Utils_Array::value($returnParam, $providerInfo[$providerID], $returnDefaultString); + return $providerInfo[$providerID][$returnParam] ?? $returnDefaultString; } return $providerInfo[$providerID]; } diff --git a/CRM/SMS/Form/Upload.php b/CRM/SMS/Form/Upload.php index ae52483822f2..105087350456 100644 --- a/CRM/SMS/Form/Upload.php +++ b/CRM/SMS/Form/Upload.php @@ -367,7 +367,7 @@ public static function formRule($params, $files, $self) { } $templateName = CRM_Core_BAO_MessageTemplate::getMessageTemplates(); - if (!empty($params['SMSsaveTemplate']) && in_array(CRM_Utils_Array::value('SMSsaveTemplateName', $params), $templateName) + if (!empty($params['SMSsaveTemplate']) && in_array($params['SMSsaveTemplateName'] ?? NULL, $templateName) ) { $errors['SMSsaveTemplate'] = ts('Duplicate Template Name.'); } From cc4e5015665c4a150d72d98e1350213945b6008a Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:47:57 -0500 Subject: [PATCH 38/85] [REF] ext/civigrant - Refactor out uses of deprecated CRM_Utils_Array::value --- ext/civigrant/CRM/Report/Form/Grant/Statistics.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ext/civigrant/CRM/Report/Form/Grant/Statistics.php b/ext/civigrant/CRM/Report/Form/Grant/Statistics.php index 1acd40f0f965..124fbe549197 100644 --- a/ext/civigrant/CRM/Report/Form/Grant/Statistics.php +++ b/ext/civigrant/CRM/Report/Form/Grant/Statistics.php @@ -238,7 +238,7 @@ public function where() { foreach ($table['filters'] as $fieldName => $field) { $clause = NULL; - if (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE) { + if (($field['type'] ?? NULL) & CRM_Utils_Type::T_DATE) { $relative = $this->_params["{$fieldName}_relative"] ?? NULL; $from = $this->_params["{$fieldName}_from"] ?? NULL; $to = $this->_params["{$fieldName}_to"] ?? NULL; @@ -250,8 +250,7 @@ public function where() { else { $op = $this->_params["{$fieldName}_op"] ?? NULL; if (($fieldName == 'grant_report_received') && - (CRM_Utils_Array::value("{$fieldName}_value", $this->_params) === - 0) + (($this->_params["{$fieldName}_value"] ?? NULL) === 0) ) { $op = 'nll'; $this->_params["{$fieldName}_value"] = NULL; @@ -259,9 +258,9 @@ public function where() { if ($op) { $clause = $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", $this->_params), - CRM_Utils_Array::value("{$fieldName}_min", $this->_params), - CRM_Utils_Array::value("{$fieldName}_max", $this->_params) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); } } From 5dd3952ae818d9ce0b171d649549a1b81b905bf6 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:49:45 -0500 Subject: [PATCH 39/85] [REF] ext/ckeditor4 - Refactor out uses of deprecated CRM_Utils_Array::value --- ext/ckeditor4/CRM/Ckeditor4/Form/CKEditorConfig.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/ckeditor4/CRM/Ckeditor4/Form/CKEditorConfig.php b/ext/ckeditor4/CRM/Ckeditor4/Form/CKEditorConfig.php index 7e30ba1e6a73..43ca1709c8b2 100644 --- a/ext/ckeditor4/CRM/Ckeditor4/Form/CKEditorConfig.php +++ b/ext/ckeditor4/CRM/Ckeditor4/Form/CKEditorConfig.php @@ -95,8 +95,8 @@ public function addResources() { $this->assign('preset', $this->get('preset')); $this->assign('presets', CRM_Core_OptionGroup::values('wysiwyg_presets', FALSE, FALSE, FALSE, NULL, 'label', TRUE, FALSE, 'name')); $this->assign('skins', $this->getCKSkins()); - $this->assign('skin', CRM_Utils_Array::value('skin', $settings)); - $this->assign('extraPlugins', CRM_Utils_Array::value('extraPlugins', $settings)); + $this->assign('skin', $settings['skin'] ?? NULL); + $this->assign('extraPlugins', $settings['extraPlugins'] ?? NULL); $this->assign('configUrl', $configUrl); } @@ -272,7 +272,7 @@ public static function getConfigUrl($preset = NULL) { $items[$name] = Civi::paths()->getUrl(self::CONFIG_FILEPATH . $name . '.js', 'absolute'); } } - return $preset ? CRM_Utils_Array::value($preset, $items) : $items; + return $preset ? ($items[$preset] ?? NULL) : $items; } /** From dc206d4e5b0baf4682bb39c1b3611146f25ae869 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:52:45 -0500 Subject: [PATCH 40/85] [REF] ext/eventcart - Refactor out uses of deprecated CRM_Utils_Array::value --- ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php b/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php index 768992cb895a..190c984550ad 100644 --- a/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php +++ b/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php @@ -65,7 +65,7 @@ public function registerParticipant($params, &$participant, $event) { $this->assign('isOnWaitlist', $participant->must_wait); $participantParams['is_test'] = 0; - if ($this->_action & CRM_Core_Action::PREVIEW || CRM_Utils_Array::value('mode', $params) == 'test') { + if ($this->_action & CRM_Core_Action::PREVIEW || ($params['mode'] ?? NULL) == 'test') { $participantParams['is_test'] = 1; } @@ -88,7 +88,7 @@ public function registerParticipant($params, &$participant, $event) { CRM_Core_DAO::storeValues($event, $event_values); $location = []; - if (CRM_Utils_Array::value('is_show_location', $event_values) == 1) { + if (($event_values['is_show_location'] ?? NULL) == 1) { $locationParams = [ 'entity_id' => $participant->event_id, 'entity_table' => 'civicrm_event', @@ -408,7 +408,7 @@ public static function formRule($fields, $files, $form) { */ public function preProcess() { $params = $this->_submitValues; - $this->is_pay_later = CRM_Utils_Array::value('is_pay_later', $params, FALSE) && !CRM_Utils_Array::value('payment_completed', $params); + $this->is_pay_later = !empty($params['is_pay_later']) && empty($params['payment_completed']); parent::preProcess(); } @@ -457,7 +457,7 @@ public function postProcess() { "email-{$billingID}" => 1, ]; - $params["address_name-{$billingID}"] = CRM_Utils_Array::value('billing_first_name', $params) . ' ' . CRM_Utils_Array::value('billing_middle_name', $params) . ' ' . CRM_Utils_Array::value('billing_last_name', $params); + $params["address_name-{$billingID}"] = ($params['billing_first_name'] ?? '') . ' ' . ($params['billing_middle_name'] ?? '') . ' ' . ($params['billing_last_name'] ?? ''); $params["email-{$billingID}"] = $params['billing_contact_email']; CRM_Contact_BAO_Contact::createProfileContact( From e7803c0053c9162d6588750bbee664d32c79a55b Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:51:13 -0500 Subject: [PATCH 41/85] [REF] ext/payments - Refactor out uses of deprecated CRM_Utils_Array::value --- ext/elavon/CRM/Core/Payment/Elavon.php | 2 +- ext/ewaysingle/CRM/Core/Payment/eWAY.php | 4 ++-- ext/payflowpro/CRM/Core/Payment/PayflowPro.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/elavon/CRM/Core/Payment/Elavon.php b/ext/elavon/CRM/Core/Payment/Elavon.php index 897900025638..0b959fd909c9 100644 --- a/ext/elavon/CRM/Core/Payment/Elavon.php +++ b/ext/elavon/CRM/Core/Payment/Elavon.php @@ -158,7 +158,7 @@ public function doPayment(&$params, $component = 'contribute') { CRM_Utils_Hook::alterPaymentProcessorParams($this, $params, $requestFields); // Check to see if we have a duplicate before we send - if ($this->checkDupe($params['invoiceID'], CRM_Utils_Array::value('contributionID', $params))) { + if ($this->checkDupe($params['invoiceID'], $params['contributionID'] ?? NULL)) { throw new PaymentProcessorException('It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. Check your email for a receipt. If you do not receive a receipt within 2 hours you can try your transaction again. If you continue to have problems please contact the site administrator.', 9003); } diff --git a/ext/ewaysingle/CRM/Core/Payment/eWAY.php b/ext/ewaysingle/CRM/Core/Payment/eWAY.php index 9a8669181781..81876c6a69ea 100644 --- a/ext/ewaysingle/CRM/Core/Payment/eWAY.php +++ b/ext/ewaysingle/CRM/Core/Payment/eWAY.php @@ -157,7 +157,7 @@ public function doPayment(&$params, $component = 'contribute') { return $result; } - if (CRM_Utils_Array::value('is_recur', $params) == TRUE) { + if (!empty($params['is_recur'])) { throw new CRM_Core_Exception(ts('eWAY - recurring payments not implemented')); } @@ -279,7 +279,7 @@ public function doPayment(&$params, $component = 'contribute') { //---------------------------------------------------------------------------------------------------- // Check to see if we have a duplicate before we send //---------------------------------------------------------------------------------------------------- - if ($this->checkDupe($params['invoiceID'], CRM_Utils_Array::value('contributionID', $params))) { + if ($this->checkDupe($params['invoiceID'], $params['contributionID'] ?? NULL)) { throw new PaymentProcessorException('It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. Check your email for a receipt from eWAY. If you do not receive a receipt within 2 hours you can try your transaction again. If you continue to have problems please contact the site administrator.', 9003); } diff --git a/ext/payflowpro/CRM/Core/Payment/PayflowPro.php b/ext/payflowpro/CRM/Core/Payment/PayflowPro.php index 0fad94fce8a8..f228404d69bb 100644 --- a/ext/payflowpro/CRM/Core/Payment/PayflowPro.php +++ b/ext/payflowpro/CRM/Core/Payment/PayflowPro.php @@ -289,7 +289,7 @@ public function doPayment(&$params, $component = 'contribute') { /* * Check to see if we have a duplicate before we send */ - if ($this->checkDupe($params['invoiceID'], CRM_Utils_Array::value('contributionID', $params))) { + if ($this->checkDupe($params['invoiceID'], $params['contributionID'] ?? NULL)) { throw new PaymentProcessorException('It appears that this transaction is a duplicate. Have you already submitted the form once? If so there may have been a connection problem. Check your email for a receipt. If you do not receive a receipt within 2 hours you can try your transaction again. If you continue to have problems please contact the site administrator.', 9003); } From 02793c7d31f9fd49fb306bf0770826b25c6821aa Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:57:43 -0500 Subject: [PATCH 42/85] [REF] ext/misc - Refactor out uses of deprecated CRM_Utils_Array::value --- ext/flexmailer/src/API/MailingPreview.php | 5 ++--- .../Dedupe/BAO/QueryBuilder/IndividualSupervised.php | 10 +++++----- .../Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php | 4 ++-- ext/tellafriend/CRM/Friend/Form.php | 2 +- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/ext/flexmailer/src/API/MailingPreview.php b/ext/flexmailer/src/API/MailingPreview.php index 4d7fafbef188..e02d20793b99 100644 --- a/ext/flexmailer/src/API/MailingPreview.php +++ b/ext/flexmailer/src/API/MailingPreview.php @@ -32,8 +32,7 @@ public static function preview($apiRequest) { $mailing->copyValues($params); } - $contactID = \CRM_Utils_Array::value('contact_id', $params, - \CRM_Core_Session::singleton()->get('userID')); + $contactID = $params['contact_id'] ?? \CRM_Core_Session::getLoggedInContactID(); $job = new class extends \CRM_Mailing_BAO_MailingJob { @@ -71,7 +70,7 @@ public function save($hook = TRUE) { $flexMailer->fireComposeBatch([$task]); return civicrm_api3_create_success([ - 'id' => isset($params['id']) ? $params['id'] : NULL, + 'id' => $params['id'] ?? NULL, 'contact_id' => $contactID, 'subject' => $task->getMailParam('Subject'), 'body_html' => $task->getMailParam('html'), diff --git a/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php b/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php index 4928fa0a3758..e168e9adcd1a 100644 --- a/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php +++ b/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php @@ -15,20 +15,20 @@ class CRM_Dedupe_BAO_QueryBuilder_IndividualSupervised extends CRM_Dedupe_BAO_Qu */ public static function record($rg) { - $civicrm_contact = CRM_Utils_Array::value('civicrm_contact', $rg->params, []); - $civicrm_email = CRM_Utils_Array::value('civicrm_email', $rg->params, []); + $civicrm_contact = $rg->params['civicrm_contact'] ?? []; + $civicrm_email = $rg->params['civicrm_email'] ?? []; $params = [ 1 => [ - CRM_Utils_Array::value('first_name', $civicrm_contact, ''), + $civicrm_contact['first_name'] ?? '', 'String', ], 2 => [ - CRM_Utils_Array::value('last_name', $civicrm_contact, ''), + $civicrm_contact['last_name'] ?? '', 'String', ], 3 => [ - CRM_Utils_Array::value('email', $civicrm_email, ''), + $civicrm_email['email'] ?? '', 'String', ], ]; diff --git a/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php b/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php index 76c69f0dceb5..41202e33a77e 100644 --- a/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php +++ b/ext/legacydedupefinder/CRM/Dedupe/BAO/QueryBuilder/IndividualUnsupervised.php @@ -20,10 +20,10 @@ class CRM_Dedupe_BAO_QueryBuilder_IndividualUnsupervised extends CRM_Dedupe_BAO_ * @return array */ public static function record($rg) { - $civicrm_email = CRM_Utils_Array::value('civicrm_email', $rg->params, []); + $civicrm_email = $rg->params['civicrm_email'] ?? []; $params = [ - 1 => [CRM_Utils_Array::value('email', $civicrm_email, ''), 'String'], + 1 => [$civicrm_email['email'] ?? '', 'String'], ]; return [ diff --git a/ext/tellafriend/CRM/Friend/Form.php b/ext/tellafriend/CRM/Friend/Form.php index 3e37d08667da..cf1f0d0fd076 100644 --- a/ext/tellafriend/CRM/Friend/Form.php +++ b/ext/tellafriend/CRM/Friend/Form.php @@ -137,7 +137,7 @@ public function setDefaultValues() { $defaults['entity_table'] = $this->_entityTable; CRM_Friend_BAO_Friend::getValues($defaults); - $this->setTitle(CRM_Utils_Array::value('title', $defaults)); + $this->setTitle($defaults['title'] ?? NULL); $this->assign('title', $defaults['title'] ?? NULL); $this->assign('intro', $defaults['intro'] ?? NULL); From a47276deabe8b00626bbbee7e15ce4dd58dce5bc Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 9 Feb 2025 11:58:57 -0500 Subject: [PATCH 43/85] [REF] ext/legacycustomsearches - Refactor out uses of deprecated CRM_Utils_Array::value --- .../CRM/Contact/BAO/SearchCustom.php | 4 +--- .../Contact/Form/Search/Custom/ContribSYBNT.php | 2 +- .../Form/Search/Custom/ContributionAggregate.php | 7 ++----- .../CRM/Contact/Form/Search/Custom/DateAdded.php | 8 ++++---- .../Form/Search/Custom/EventAggregate.php | 16 ++++------------ .../Custom/FullText/AbstractPartialQuery.php | 2 +- .../CRM/Contact/Form/Search/Custom/Group.php | 8 ++++---- .../Form/Search/Custom/MultipleValues.php | 8 ++------ .../Contact/Form/Search/Custom/PostalMailing.php | 4 +--- .../CRM/Contact/Form/Search/Custom/PriceSet.php | 4 +--- .../CRM/Contact/Form/Search/Custom/Sample.php | 8 ++------ .../Contact/Form/Search/Custom/ZipCodeRange.php | 8 ++------ 12 files changed, 25 insertions(+), 54 deletions(-) diff --git a/ext/legacycustomsearches/CRM/Contact/BAO/SearchCustom.php b/ext/legacycustomsearches/CRM/Contact/BAO/SearchCustom.php index f945abb91a63..66241e3aac45 100644 --- a/ext/legacycustomsearches/CRM/Contact/BAO/SearchCustom.php +++ b/ext/legacycustomsearches/CRM/Contact/BAO/SearchCustom.php @@ -44,9 +44,7 @@ public static function details($csID, $ssID = NULL, $gID = NULL) { } $formValues = CRM_Contact_BAO_SavedSearch::getFormValues($ssID); - $customSearchID = CRM_Utils_Array::value('customSearchID', - $formValues - ); + $customSearchID = $formValues['customSearchID'] ?? NULL; } if (!$customSearchID) { diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContribSYBNT.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContribSYBNT.php index 90b4c4b1417c..6b2a1c0a6cf4 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContribSYBNT.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContribSYBNT.php @@ -62,7 +62,7 @@ public function __construct(&$formValues) { } foreach ($this->_checkboxes as $name => $title) { - $this->{$name} = CRM_Utils_Array::value($name, $this->_formValues, FALSE); + $this->{$name} = $this->_formValues[$name] ?? FALSE; } foreach ($this->_dates as $name => $title) { diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContributionAggregate.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContributionAggregate.php index 487eb1cf70a4..a98cbd7969f5 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContributionAggregate.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ContributionAggregate.php @@ -181,7 +181,7 @@ public static function getSearchFieldMetadata() { ]; $metadata = civicrm_api3('Contribution', 'getfields', [])['values']; foreach ($fields as $fieldName => $field) { - $fields[$fieldName] = array_merge(CRM_Utils_Array::value($fieldName, $metadata, []), $field); + $fields[$fieldName] = array_merge($metadata[$fieldName] ?? [], $field); } return $fields; } @@ -207,10 +207,7 @@ public function where($includeContactIDs = FALSE) { 'receive_date_low', 'receive_date_high', ] as $dateFieldName) { - $dateParams[$dateFieldName] = CRM_Utils_Array::value( - $dateFieldName, - $this->_formValues - ); + $dateParams[$dateFieldName] = $this->_formValues[$dateFieldName] ?? NULL; } if ($dateParams['receive_date_relative']) { diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/DateAdded.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/DateAdded.php index f6a047296f3e..827932755e94 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/DateAdded.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/DateAdded.php @@ -31,8 +31,8 @@ class CRM_Contact_Form_Search_Custom_DateAdded extends CRM_Contact_Form_Search_C public function __construct(&$formValues) { $this->_formValues = self::formatSavedSearchFields($formValues); - $this->_includeGroups = CRM_Utils_Array::value('includeGroups', $formValues, []); - $this->_excludeGroups = CRM_Utils_Array::value('excludeGroups', $formValues, []); + $this->_includeGroups = $formValues['includeGroups'] ?? []; + $this->_excludeGroups = $formValues['excludeGroups'] ?? []; $this->_columns = [ ts('Contact ID') => 'contact_id', @@ -123,9 +123,9 @@ public function all( $includeContactIDs = FALSE, $justIDs = FALSE ) { - $this->_includeGroups = CRM_Utils_Array::value('includeGroups', $this->_formValues, []); + $this->_includeGroups = $this->_formValues['includeGroups'] ?? []; - $this->_excludeGroups = CRM_Utils_Array::value('excludeGroups', $this->_formValues, []); + $this->_excludeGroups = $this->_formValues['excludeGroups'] ?? []; $this->_allSearch = FALSE; $this->_groups = FALSE; diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/EventAggregate.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/EventAggregate.php index 283ae72f0752..56567a690c79 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/EventAggregate.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/EventAggregate.php @@ -121,18 +121,14 @@ public function all( $from = $this->from(); - $onLine = CRM_Utils_Array::value('paid_online', - $this->_formValues - ); + $onLine = $this->_formValues['paid_online'] ?? NULL; if ($onLine) { $from .= " inner join civicrm_entity_financial_trxn on (civicrm_entity_financial_trxn.entity_id = civicrm_participant_payment.contribution_id and civicrm_entity_financial_trxn.entity_table='civicrm_contribution')"; } - $showPayees = CRM_Utils_Array::value('show_payees', - $this->_formValues - ); + $showPayees = $this->_formValues['show_payees'] ?? NULL; if ($showPayees) { $select .= ", GROUP_CONCAT(DISTINCT(civicrm_contact.display_name)) as participant "; $from .= " inner join civicrm_contact @@ -215,9 +211,7 @@ public function where($includeContactIDs = FALSE) { $clauses[] = "civicrm_participant.status_id in ( 1 )"; $clauses[] = "civicrm_contribution.is_test = 0"; $clauses[] = "civicrm_contribution.is_template = 0"; - $onLine = CRM_Utils_Array::value('paid_online', - $this->_formValues - ); + $onLine = $this->_formValues['paid_online'] ?? NULL; if ($onLine) { $clauses[] = "civicrm_contribution.payment_instrument_id <> 0"; } @@ -274,9 +268,7 @@ public function summary() { $from = $this->from(); - $onLine = CRM_Utils_Array::value('paid_online', - $this->_formValues - ); + $onLine = $this->_formValues['paid_online'] ?? NULL; if ($onLine) { $from .= " inner join civicrm_entity_financial_trxn diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText/AbstractPartialQuery.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText/AbstractPartialQuery.php index 7a9aeb4d0fa5..bb7385514e67 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText/AbstractPartialQuery.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/FullText/AbstractPartialQuery.php @@ -203,7 +203,7 @@ public function runQueries($queryText, &$tables, $entityIDTableName, $limit) { //resolve conflict between entity tables. if ($tableName == 'civicrm_note' && - $entityTable = CRM_Utils_Array::value('entity_table', $tableValues) + $entityTable = ($tableValues['entity_table'] ?? NULL) ) { $whereClause .= " AND entity_table = '{$entityTable}'"; } diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php index abeba95a9619..6dc203a95359 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Group.php @@ -136,10 +136,10 @@ public function __construct(&$formValues) { ts('Tag Name') => 'tname', ]; - $this->_includeGroups = CRM_Utils_Array::value('includeGroups', $this->_formValues, []); - $this->_excludeGroups = CRM_Utils_Array::value('excludeGroups', $this->_formValues, []); - $this->_includeTags = CRM_Utils_Array::value('includeTags', $this->_formValues, []); - $this->_excludeTags = CRM_Utils_Array::value('excludeTags', $this->_formValues, []); + $this->_includeGroups = $this->_formValues['includeGroups'] ?? []; + $this->_excludeGroups = $this->_formValues['excludeGroups'] ?? []; + $this->_includeTags = $this->_formValues['includeTags'] ?? []; + $this->_excludeTags = $this->_formValues['excludeTags'] ?? []; //define variables $this->_allSearch = FALSE; diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/MultipleValues.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/MultipleValues.php index 06511591f7fd..f546d9a85a4b 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/MultipleValues.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/MultipleValues.php @@ -221,9 +221,7 @@ public function where($includeContactIDs = FALSE) { $count = 1; $clause = []; $params = []; - $name = CRM_Utils_Array::value('sort_name', - $this->_formValues - ); + $name = $this->_formValues['sort_name'] ?? NULL; if ($name != NULL) { if (strpos($name, '%') === FALSE) { $name = "%{$name}%"; @@ -233,9 +231,7 @@ public function where($includeContactIDs = FALSE) { $count++; } - $contact_type = CRM_Utils_Array::value('contact_type', - $this->_formValues - ); + $contact_type = $this->_formValues['contact_type'] ?? NULL; if ($contact_type != NULL) { $contactType = explode('__', $contact_type, 2); if (count($contactType) > 1) { diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PostalMailing.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PostalMailing.php index fdc6feeec513..17a4c94d9d18 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PostalMailing.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PostalMailing.php @@ -137,9 +137,7 @@ public function where($includeContactIDs = FALSE) { $count = 1; $clause = []; - $groupID = CRM_Utils_Array::value('group_id', - $this->_formValues - ); + $groupID = $this->_formValues['group_id'] ?? NULL; if ($groupID) { $params[$count] = [$groupID, 'Integer']; $clause[] = "cgc.group_id = %{$count}"; diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PriceSet.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PriceSet.php index 589efdc3b9a7..ff17aa2ebf5c 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PriceSet.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/PriceSet.php @@ -43,9 +43,7 @@ class CRM_Contact_Form_Search_Custom_PriceSet extends CRM_Contact_Form_Search_Cu public function __construct(&$formValues) { parent::__construct($formValues); - $this->eventID = (int) CRM_Utils_Array::value('event_id', - $this->_formValues - ); + $this->eventID = (int) ($this->_formValues['event_id'] ?? 0); $this->setColumns(); diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Sample.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Sample.php index e5dfac33f7ba..32835306e1df 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Sample.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/Sample.php @@ -147,9 +147,7 @@ public function where($includeContactIDs = FALSE) { $count = 1; $clause = []; - $name = CRM_Utils_Array::value('household_name', - $this->_formValues - ); + $name = $this->_formValues['household_name'] ?? NULL; if ($name != NULL) { if (strpos($name, '%') === FALSE) { $name = "%{$name}%"; @@ -159,9 +157,7 @@ public function where($includeContactIDs = FALSE) { $count++; } - $state = CRM_Utils_Array::value('state_province_id', - $this->_formValues - ); + $state = $this->_formValues['state_province_id'] ?? NULL; if (!$state && $this->_stateID ) { diff --git a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ZipCodeRange.php b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ZipCodeRange.php index 6e03d716fd91..643593a7e51f 100644 --- a/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ZipCodeRange.php +++ b/ext/legacycustomsearches/CRM/Contact/Form/Search/Custom/ZipCodeRange.php @@ -143,12 +143,8 @@ public function from() { * @return string */ public function where($includeContactIDs = FALSE) { - $low = CRM_Utils_Array::value('postal_code_low', - $this->_formValues - ); - $high = CRM_Utils_Array::value('postal_code_high', - $this->_formValues - ); + $low = $this->_formValues['postal_code_low'] ?? NULL; + $high = $this->_formValues['postal_code_high'] ?? NULL; $errorMessage = NULL; if ($low == NULL || $high == NULL) { $errorMessage = ts('Please provide start and end postal codes.'); From acbb611f869fee38b82303f525fdd1ec7c603ea3 Mon Sep 17 00:00:00 2001 From: eileen Date: Mon, 1 Jul 2024 12:32:20 +1200 Subject: [PATCH 44/85] Ref clean up contact lookup handling in Participant import --- CRM/Contact/Import/Parser/Contact.php | 17 +++ CRM/Event/Import/Parser/Participant.php | 136 +++++++++--------- CRM/Import/Parser.php | 23 +-- .../Event/Import/Parser/ParticipantTest.php | 48 ++++++- .../data/participant_with_dedupe_match.csv | 2 + 5 files changed, 136 insertions(+), 90 deletions(-) create mode 100644 tests/phpunit/CRM/Event/Import/Parser/data/participant_with_dedupe_match.csv diff --git a/CRM/Contact/Import/Parser/Contact.php b/CRM/Contact/Import/Parser/Contact.php index 47167bc42b20..f91eb657a065 100644 --- a/CRM/Contact/Import/Parser/Contact.php +++ b/CRM/Contact/Import/Parser/Contact.php @@ -1823,4 +1823,21 @@ private function tryToResolveCounty(string $countyID, $stateProvinceID, $country return \Civi::$statics[$cacheString]; } + /** + * Get the metadata field for which importable fields does not key the actual field name. + * + * @return string[] + */ + protected function getOddlyMappedMetadataFields(): array { + return [ + 'country_id' => 'country', + 'state_province_id' => 'state_province', + 'county_id' => 'county', + 'email_greeting_id' => 'email_greeting', + 'postal_greeting_id' => 'postal_greeting', + 'addressee_id' => 'addressee', + 'source' => 'contact_source', + ]; + } + } diff --git a/CRM/Event/Import/Parser/Participant.php b/CRM/Event/Import/Parser/Participant.php index 0687fe3036fb..9e7dd30ddb5a 100644 --- a/CRM/Event/Import/Parser/Participant.php +++ b/CRM/Event/Import/Parser/Participant.php @@ -20,6 +20,15 @@ */ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser { + /** + * Has this parser been fixed to expect `getMappedRow` to break it up + * by entity yet? This is a transitional property to allow the classes + * to be fixed up individually. + * + * @var bool + */ + protected $isUpdatedForEntityRowParsing = TRUE; + /** * Get information about the provided job. * @@ -59,85 +68,34 @@ public function import(array $values): void { $rowNumber = (int) ($values[array_key_last($values)]); try { $params = $this->getMappedRow($values); - if (!empty($params['external_identifier'])) { - $params['contact_id'] = $this->lookupExternalIdentifier($params['external_identifier'], $this->getContactType(), $params['contact_id'] ?? NULL); + $this->removeEmptyValues($params); + $participantParams = $params['Participant']; + $contactParams = $params['Contact'] ?? []; + if (!empty($participantParams['id'])) { + $existingParticipant = $this->checkEntityExists('Participant', $participantParams['id']); + if (!$this->isUpdateExisting()) { + throw new CRM_Core_Exception(ts('% record found and update not selected', [1 => 'Participant'])); + } + $participantParams['contact_id'] = !empty($participantParams['contact_id']) ? (int) $participantParams['contact_id'] : $existingParticipant['contact_id']; } - $formatted = $params; + $participantParams['contact_id'] = $this->getContactID($contactParams, $participantParams['contact_id'] ?? NULL, 'Contact', $this->getDedupeRulesForEntity('Contact')); // don't add to recent items, CRM-4399 - $formatted['skipRecentView'] = TRUE; - - $formatValues = []; - foreach ($params as $key => $field) { - if ($field == NULL || $field === '') { - continue; - } - - $formatValues[$key] = $field; - } + $participantParams['skipRecentView'] = TRUE; - if (!empty($params['contact_id'])) { - $this->validateContactID($params['contact_id'], $this->getContactType()); - } - if (!empty($params['id'])) { - $this->checkEntityExists('Participant', $params['id']); + if (!empty($participantParams['id'])) { + $this->checkEntityExists('Participant', $participantParams['id']); if (!$this->isUpdateExisting()) { throw new CRM_Core_Exception(ts('% record found and update not selected', [1 => 'Participant'])); } - $newParticipant = civicrm_api3('Participant', 'create', $formatted); + $newParticipant = civicrm_api3('Participant', 'create', $participantParams); $this->setImportStatus($rowNumber, 'IMPORTED', '', $newParticipant['id']); return; } - if (empty($params['contact_id'])) { - $error = $this->checkContactDuplicate($formatValues); - - if (CRM_Core_Error::isAPIError($error, CRM_Core_Error::DUPLICATE_CONTACT)) { - $matchedIDs = (array) $error['error_message']['params']; - if (count($matchedIDs) === 1) { - foreach ($matchedIDs as $contactId) { - $formatted['contact_id'] = $contactId; - } - } - elseif ($matchedIDs > 1) { - throw new CRM_Core_Exception(ts('Record duplicates multiple contacts: ') . implode(',', $matchedIDs)); - } - } - else { - // Using new Dedupe rule. - $ruleParams = [ - 'contact_type' => $this->_contactType, - 'used' => 'Unsupervised', - ]; - $fieldsArray = CRM_Dedupe_BAO_DedupeRule::dedupeRuleFields($ruleParams); - - $disp = ''; - foreach ($fieldsArray as $value) { - if (array_key_exists(trim($value), $params)) { - $paramValue = $params[trim($value)]; - if (is_array($paramValue)) { - $disp .= $params[trim($value)][0][trim($value)] . " "; - } - else { - $disp .= $params[trim($value)] . " "; - } - } - } - - if (!empty($params['external_identifier'])) { - if ($disp) { - $disp .= "AND {$params['external_identifier']}"; - } - else { - $disp = $params['external_identifier']; - } - } - throw new CRM_Core_Exception('No matching Contact found for (' . $disp . ')'); - } - } if ($this->isIgnoreDuplicates()) { CRM_Core_Error::reset(); - if (CRM_Event_BAO_Participant::checkDuplicate($formatted, $result)) { + if (CRM_Event_BAO_Participant::checkDuplicate($participantParams, $result)) { $participantID = array_pop($result); $error = CRM_Core_Error::createError("Found matching participant record.", @@ -147,14 +105,14 @@ public function import(array $values): void { $newParticipant = civicrm_api3_create_error($error->pop(), [ - 'contactID' => $formatted['contact_id'], + 'contactID' => $participantParams['contact_id'], 'participantID' => $participantID, ] ); } } else { - $newParticipant = civicrm_api3('Participant', 'create', $formatted); + $newParticipant = civicrm_api3('Participant', 'create', $participantParams); } if (is_array($newParticipant) && civicrm_error($newParticipant)) { @@ -216,10 +174,48 @@ protected function setFieldMetadata(): void { } /** + * @param array $params + * + * @throws \CRM_Core_Exception + */ + protected function validateParams(array $params): void { + if (empty($params['Participant']['id'])) { + $this->validateRequiredFields($this->getRequiredFields(), $params['Participant']); + } + $errors = []; + foreach ($params as $key => $value) { + $errors = array_merge($this->getInvalidValues($value, $key), $errors); + } + if ($errors) { + throw new CRM_Core_Exception('Invalid value for field(s) : ' . implode(',', $errors)); + } + } + + /** + * Get the required fields. + * + * @return array + */ + public function getRequiredFields(): array { + return [[$this->getRequiredFieldsForMatch(), $this->getRequiredFieldsForCreate()]]; + } + + /** + * Get required fields to create a contribution. + * + * @return array + */ + public function getRequiredFieldsForCreate(): array { + return ['event_id', 'status_id']; + } + + /** + * Get required fields to match a contribution. + * * @return array */ - protected function getRequiredFields(): array { - return [['event_id', 'status_id']]; + public function getRequiredFieldsForMatch(): array { + return [['id']]; } } diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index aa5abf32ae05..096ffd85d9b1 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -1777,15 +1777,7 @@ protected function getAvailableCountries() { * @return string[] */ protected function getOddlyMappedMetadataFields(): array { - return [ - 'country_id' => 'country', - 'state_province_id' => 'state_province', - 'county_id' => 'county', - 'email_greeting_id' => 'email_greeting', - 'postal_greeting_id' => 'postal_greeting', - 'addressee_id' => 'addressee', - 'source' => 'contact_source', - ]; + return []; } /** @@ -1902,16 +1894,9 @@ public function getMappedRow(array $values): array { } if ($mappedField['name']) { $fieldSpec = $this->getFieldMetadata($mappedField['name']); - $entity = $fieldSpec['entity_instance'] ?? $fieldSpec['entity'] ?? $fieldSpec['extends'] ?? NULL; if ($this->isUpdatedForEntityRowParsing && $entity) { // Split values into arrays by entity. - if (!isset($params[$entity])) { - $params[$entity] = []; - if ($entity === 'Contact') { - $params[$entity]['contact_type'] = $this->getContactTypeForEntity($entity) ?: $this->getContactType(); - } - } // Apiv4 name is currently only set for contact, & only in cases where it would // be used for the dedupe rule (ie Membership import). $params[$entity][$fieldSpec['apiv4_name'] ?? $fieldSpec['name']] = $this->getTransformedFieldValue($mappedField['name'], $values[$i]); @@ -2144,10 +2129,12 @@ protected function getPossibleMatchesByDedupeRule(array $params, $dedupeRuleID = /** * @throws \CRM_Core_Exception + * + * @return array */ - protected function checkEntityExists(string $entity, int $id) { + protected function checkEntityExists(string $entity, int $id): array { try { - civicrm_api4($entity, 'get', ['where' => [['id', '=', $id]], 'select' => ['id']])->single(); + return civicrm_api4($entity, 'get', ['where' => [['id', '=', $id]]])->single(); } catch (CRM_Core_Exception $e) { throw new CRM_Core_Exception(ts('%1 record not found for id %2', [ diff --git a/tests/phpunit/CRM/Event/Import/Parser/ParticipantTest.php b/tests/phpunit/CRM/Event/Import/Parser/ParticipantTest.php index 262ca778ba27..f7713edb42b2 100644 --- a/tests/phpunit/CRM/Event/Import/Parser/ParticipantTest.php +++ b/tests/phpunit/CRM/Event/Import/Parser/ParticipantTest.php @@ -3,7 +3,8 @@ /** * File for the Participant import class */ - +use Civi\Api4\DedupeRule; +use Civi\Api4\DedupeRuleGroup; use Civi\Api4\Participant; use Civi\Api4\UserJob; @@ -15,6 +16,7 @@ class CRM_Event_Import_Parser_ParticipantTest extends CiviUnitTestCase { use CRMTraits_Custom_CustomDataTrait; + use CRMTraits_Import_ParserTrait; protected $entity = 'Participant'; @@ -40,6 +42,13 @@ public function tearDown(): void { 'civicrm_uf_field', 'civicrm_uf_group', ], TRUE); + DedupeRule::delete() + ->addWhere('rule_table', '!=', 'civicrm_email') + ->addWhere('dedupe_rule_group_id.name', '=', 'IndividualUnsupervised')->execute(); + DedupeRuleGroup::update(FALSE) + ->addWhere('name', '=', 'IndividualUnsupervised') + ->setValues(['is_reserved' => TRUE]) + ->execute(); parent::tearDown(); } @@ -204,7 +213,7 @@ public function testImportToTemplateEvent() :void { $dataSource = new CRM_Import_DataSource_CSV($this->userJobID); $row = $dataSource->getRow(); $this->assertEquals('ERROR', $row['_status']); - $this->assertEquals('Missing required fields: Event ID', $row['_status_message']); + $this->assertEquals('Missing required fields: Participant ID OR Event ID', $row['_status_message']); } /** @@ -248,6 +257,41 @@ public function testImportParticipant() :void { $this->assertEquals(['P', 'M'], array_keys($result[$this->getCustomFieldName('checkbox')])); } + /** + * Test import parser match a contact using the dedupe rule with a custom field. + * + * It should match the created contact based on first name & custom field. + */ + public function testImportWithCustomDedupeRule(): void { + $this->eventCreateUnpaid(['title' => 'Rain-forest Cup Youth Soccer Tournament']); + $this->addToDedupeRule(); + // Setting this rule to not reserved is a bit artificial, although it does happen + // in the wild. The goal is to demonstrate that when we expose arbitrary dedupe + // rules it works, plus to ensure the code tidy up does not go backwards. + // We are already testing what was previously tested - ie contact_id, + // external_identifier or email, (email is the limit of the reserved + // un-supervised rule). + DedupeRuleGroup::update(FALSE) + ->addWhere('id', '=', $this->ids['DedupeRule']['unsupervised']) + ->setValues(['is_reserved' => FALSE]) + ->execute(); + + $this->individualCreate([$this->getCustomFieldName() => 'secret code', 'first_name' => 'Bob', 'last_name' => 'Smith'], 'bob'); + $this->importCSV('participant_with_dedupe_match.csv', [ + ['name' => 'event_id'], + ['name' => 'first_name'], + ['name' => 'last_name'], + ['name' => $this->getCustomFieldName()], + ['name' => 'role_id'], + ['name' => 'status_id'], + ['name' => 'register_date'], + ]); + $participant = Participant::get(FALSE) + ->addWhere('contact_id', '=', $this->ids['Contact']['bob']) + ->execute()->first(); + $this->assertEquals($this->ids['Event']['event'], $participant['event_id']); + } + /** * @param array $submittedValues * diff --git a/tests/phpunit/CRM/Event/Import/Parser/data/participant_with_dedupe_match.csv b/tests/phpunit/CRM/Event/Import/Parser/data/participant_with_dedupe_match.csv new file mode 100644 index 000000000000..bc9f9b3f1650 --- /dev/null +++ b/tests/phpunit/CRM/Event/Import/Parser/data/participant_with_dedupe_match.csv @@ -0,0 +1,2 @@ +Event Title,First Name,Last Name,CustomField,Participant Role,Status,Register date +Rain-forest Cup Youth Soccer Tournament,Bob,Wood,secret code,Attendee,Registered,2022-12-07 From d0c1a8c15b5f149fc663b8550e1ef27d22af0bb5 Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 7 Feb 2025 17:39:32 -0500 Subject: [PATCH 45/85] [REF] CRM/Price - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/PCP/Form/Contribute.php | 2 +- CRM/PCP/Form/Event.php | 4 ++-- CRM/Pledge/BAO/Pledge.php | 2 +- CRM/Price/BAO/LineItem.php | 2 +- CRM/Price/BAO/PriceField.php | 6 +++--- CRM/Price/BAO/PriceFieldValue.php | 2 +- CRM/Price/Form/Field.php | 4 ++-- CRM/Price/Form/Set.php | 5 ++--- CRM/Price/Page/Set.php | 4 +--- 9 files changed, 14 insertions(+), 17 deletions(-) diff --git a/CRM/PCP/Form/Contribute.php b/CRM/PCP/Form/Contribute.php index 23ff4e6d3b18..b4f002c83d9a 100644 --- a/CRM/PCP/Form/Contribute.php +++ b/CRM/PCP/Form/Contribute.php @@ -95,7 +95,7 @@ public static function formRule($params, $files, $self) { if (!empty($params['pcp_active'])) { if (!empty($params['is_tellfriend_enabled']) && - (CRM_Utils_Array::value('tellfriend_limit', $params) <= 0) + (($params['tellfriend_limit'] ?? 0) <= 0) ) { $errors['tellfriend_limit'] = ts('if Tell Friend is enabled, Maximum recipients limit should be greater than zero.'); } diff --git a/CRM/PCP/Form/Event.php b/CRM/PCP/Form/Event.php index 17f7b4fc8b42..e38a4a1c2637 100644 --- a/CRM/PCP/Form/Event.php +++ b/CRM/PCP/Form/Event.php @@ -171,12 +171,12 @@ public function postProcess() { $params['entity_id'] = $this->_id; // Target - $params['target_entity_type'] = CRM_Utils_Array::value('target_entity_type', $params, 'event'); + $params['target_entity_type'] = $params['target_entity_type'] ?? 'event'; if ($params['target_entity_type'] == 'event') { $params['target_entity_id'] = $this->_id; } else { - $params['target_entity_id'] = CRM_Utils_Array::value('target_entity_id', $params, $this->_id); + $params['target_entity_id'] = $params['target_entity_id'] ?? $this->_id; } $dao = new CRM_PCP_DAO_PCPBlock(); diff --git a/CRM/Pledge/BAO/Pledge.php b/CRM/Pledge/BAO/Pledge.php index 331d6139e636..75662b17f38e 100644 --- a/CRM/Pledge/BAO/Pledge.php +++ b/CRM/Pledge/BAO/Pledge.php @@ -605,7 +605,7 @@ public static function sendAcknowledgment($form, $params) { ); // FIXME: Translate - $details = 'Total Amount ' . CRM_Utils_Money::format($params['total_pledge_amount'], CRM_Utils_Array::value('currency', $params)) . ' To be paid in ' . $params['installments'] . ' installments of ' . CRM_Utils_Money::format($params['scheduled_amount'], CRM_Utils_Array::value('currency', $params)) . ' every ' . $params['frequency_interval'] . ' ' . $params['frequency_unit'] . '(s)'; + $details = 'Total Amount ' . CRM_Utils_Money::format($params['total_pledge_amount'], $params['currency'] ?? NULL) . ' To be paid in ' . $params['installments'] . ' installments of ' . CRM_Utils_Money::format($params['scheduled_amount'], $params['currency'] ?? NULL) . ' every ' . $params['frequency_interval'] . ' ' . $params['frequency_unit'] . '(s)'; if (!$activity->find()) { $activityParams = [ diff --git a/CRM/Price/BAO/LineItem.php b/CRM/Price/BAO/LineItem.php index 0eeb68bf7076..04435b967424 100644 --- a/CRM/Price/BAO/LineItem.php +++ b/CRM/Price/BAO/LineItem.php @@ -618,7 +618,7 @@ public static function changeFeeSelections( $count = count(CRM_Event_BAO_Participant::getParticipantIds($contributionId)); } else { - $count = CRM_Utils_Array::value('count', civicrm_api3('MembershipPayment', 'getcount', ['contribution_id' => $contributionId])); + $count = civicrm_api3('MembershipPayment', 'getcount', ['contribution_id' => $contributionId]); } if ($count > 1) { $updatedAmount = CRM_Price_BAO_LineItem::getLineTotal($contributionId); diff --git a/CRM/Price/BAO/PriceField.php b/CRM/Price/BAO/PriceField.php index 6e131f06be61..480bd607fc53 100644 --- a/CRM/Price/BAO/PriceField.php +++ b/CRM/Price/BAO/PriceField.php @@ -155,7 +155,7 @@ public static function create(&$params) { elseif (!empty($optionsIds) && !empty($optionsIds['id'])) { $optionsLoad = civicrm_api3('price_field_value', 'get', ['id' => $optionsIds['id']]); $options = $optionsLoad['values'][$optionsIds['id']]; - $options['is_active'] = CRM_Utils_Array::value('is_active', $params, 1); + $options['is_active'] = $params['is_active'] ?? 1; try { CRM_Price_BAO_PriceFieldValue::create($options, $optionsIds); } @@ -298,8 +298,8 @@ public static function addQuickFormElement( switch ($field->html_type) { case 'Text': $optionKey = key($customOption); - $count = CRM_Utils_Array::value('count', $customOption[$optionKey], ''); - $max_value = CRM_Utils_Array::value('max_value', $customOption[$optionKey], ''); + $count = $customOption[$optionKey]['count'] ?? ''; + $max_value = $customOption[$optionKey]['max_value'] ?? ''; $taxAmount = $customOption[$optionKey]['tax_amount'] ?? NULL; if (isset($taxAmount) && $taxAmount && $displayOpt && $invoicing) { $qf->assign('displayOpt', $displayOpt); diff --git a/CRM/Price/BAO/PriceFieldValue.php b/CRM/Price/BAO/PriceFieldValue.php index b683619a5f28..449fb50d1e04 100644 --- a/CRM/Price/BAO/PriceFieldValue.php +++ b/CRM/Price/BAO/PriceFieldValue.php @@ -39,7 +39,7 @@ public static function add($params) { } // Reset the cached values in this function. - CRM_Price_BAO_PriceField::getOptions(CRM_Utils_Array::value('price_field_id', $params), FALSE, TRUE); + CRM_Price_BAO_PriceField::getOptions(0, FALSE, TRUE); return $fieldValueBAO; } diff --git a/CRM/Price/Form/Field.php b/CRM/Price/Form/Field.php index 541a8f240070..8dd372d19a36 100644 --- a/CRM/Price/Form/Field.php +++ b/CRM/Price/Form/Field.php @@ -282,7 +282,7 @@ public function buildQuickForm() { $this->add('select', 'membership_type_id[' . $i . ']', ts('Membership Type'), ['' => ' '] + $membershipTypes, FALSE, $js ); - $this->add('text', 'membership_num_terms[' . $i . ']', ts('Number of Terms'), CRM_Utils_Array::value('membership_num_terms', $attributes)); + $this->add('text', 'membership_num_terms[' . $i . ']', ts('Number of Terms'), $attributes['membership_num_terms'] ?? NULL); } // weight @@ -679,7 +679,7 @@ public function submit($params) { $params['option_visibility_id'] = [1 => $params['visibility_id'] ?? NULL]; } - $params['membership_num_terms'] = (!empty($params['membership_type_id'])) ? CRM_Utils_Array::value('membership_num_terms', $params, 1) : NULL; + $params['membership_num_terms'] = (!empty($params['membership_type_id'])) ? $params['membership_num_terms'] ?? 1 : NULL; return CRM_Price_BAO_PriceField::create($params); } diff --git a/CRM/Price/Form/Set.php b/CRM/Price/Form/Set.php index 83bf3f9a87df..e3969db2beb7 100644 --- a/CRM/Price/Form/Set.php +++ b/CRM/Price/Form/Set.php @@ -113,7 +113,7 @@ public function preProcess() { */ public static function formRule($fields, $files, $options) { $errors = []; - $count = count(CRM_Utils_Array::value('extends', $fields, [])); + $count = count($fields['extends'] ?? []); //price sets configured for membership if ($count > 1 && array_key_exists(CRM_Core_Component::getComponentID('CiviMember'), $fields['extends'])) { $errors['extends'] = ts('If you plan on using this price set for membership signup and renewal, you can not also use it for Events or Contributions. However, a membership price set may include additional fields for non-membership options that require an additional fee (e.g. magazine subscription).'); @@ -261,8 +261,7 @@ public function postProcess() { $params['id'] = $this->getEntityId(); } else { - $params['name'] = CRM_Utils_String::titleToVar($params['title'], - CRM_Utils_Array::value('maxlength', $nameLength)); + $params['name'] = CRM_Utils_String::titleToVar($params['title'], $nameLength['maxlength'] ?? NULL); } $set = CRM_Price_BAO_PriceSet::create($params); diff --git a/CRM/Price/Page/Set.php b/CRM/Price/Page/Set.php index 4046b95b5037..3d18cbfd0336 100644 --- a/CRM/Price/Page/Set.php +++ b/CRM/Price/Page/Set.php @@ -264,9 +264,7 @@ public function browse($action = NULL) { $priceSet[$dao->id] = []; CRM_Core_DAO::storeValues($dao, $priceSet[$dao->id]); - $compIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, - CRM_Utils_Array::value('extends', $priceSet[$dao->id]) - ); + $compIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $priceSet[$dao->id]['extends'] ?? ''); $extends = []; //CRM-10225 foreach ($compIds as $compId) { From 1867e58576204e6ba40d1b1d3cf2cc67538bb75b Mon Sep 17 00:00:00 2001 From: eileen Date: Mon, 10 Feb 2025 18:22:58 +1300 Subject: [PATCH 46/85] Do legacy param setting in the legacy callers --- CRM/Dedupe/BAO/DedupeRuleGroup.php | 6 +----- ext/legacydedupefinder/Civi/LegacyFinder/Finder.php | 2 ++ 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CRM/Dedupe/BAO/DedupeRuleGroup.php b/CRM/Dedupe/BAO/DedupeRuleGroup.php index 169116be633a..f105ea9541a9 100644 --- a/CRM/Dedupe/BAO/DedupeRuleGroup.php +++ b/CRM/Dedupe/BAO/DedupeRuleGroup.php @@ -243,14 +243,10 @@ public static function hook_civicrm_findDuplicates(GenericHookEvent $event): voi * @throws \Civi\Core\Exception\DBQueryException */ public function fillTable(int $id, array $contactIDs, array $params, $legacyMode = TRUE) { - if ($legacyMode) { - $this->contactIds = $contactIDs; - $this->params = $params; - } $ruleGroup = $this; $ruleGroup->id = $id; // make sure we've got a fetched dbrecord, not sure if this is enforced - $this->find(TRUE); + $ruleGroup->find(TRUE); $optimizer = new CRM_Dedupe_FinderQueryOptimizer($id, $contactIDs, $params); // Reserved Rule Groups can optionally get special treatment by // implementing an optimization class and returning a query array. diff --git a/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php b/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php index 268139c86988..3135dac774fe 100644 --- a/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php +++ b/ext/legacydedupefinder/Civi/LegacyFinder/Finder.php @@ -28,6 +28,7 @@ public static function findExistingDuplicates(GenericHookEvent $event): void { if ($event->tableName) { $contactIDs = explode(',', \CRM_Core_DAO::singleValueQuery('SELECT GROUP_CONCAT(id) FROM ' . $event->tableName)); } + $ruleGroup->contactIds = $contactIDs; $tempTable = $ruleGroup->fillTable($ruleGroup->id, $contactIDs, []); if (!$tempTable) { return; @@ -77,6 +78,7 @@ public static function findDuplicates(GenericHookEvent $event): void { return; } $rgBao = new \CRM_Dedupe_BAO_DedupeRuleGroup(); + $rgBao->params = $event->dedupeParams['match_params']; $dedupeTable = $rgBao->fillTable($event->dedupeParams['rule_group_id'], [], $event->dedupeParams['match_params'], TRUE); if (!$dedupeTable) { $event->dedupeResults['ids'] = []; From 56b26957a9fec8164bf64c942a37dc1b6a27b670 Mon Sep 17 00:00:00 2001 From: benjamin Date: Mon, 10 Feb 2025 12:35:30 +0000 Subject: [PATCH 47/85] SixZero - dont ts upgrader strings --- CRM/Upgrade/Incremental/php/SixZero.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Upgrade/Incremental/php/SixZero.php b/CRM/Upgrade/Incremental/php/SixZero.php index d5436d763254..ba88247be73a 100644 --- a/CRM/Upgrade/Incremental/php/SixZero.php +++ b/CRM/Upgrade/Incremental/php/SixZero.php @@ -43,7 +43,7 @@ public function upgrade_6_0_alpha1($rev): void { FALSE ); $this->addTask('Set a default activity priority', 'addActivityPriorityDefault'); - $this->addSimpleExtensionTask(ts('enable dedupe backward compatibility'), ['legacydedupefinder']); + $this->addSimpleExtensionTask('Enable dedupe backward compatibility', ['legacydedupefinder']); } public static function migrateFromEmailAddressValues($rev): bool { From 4e4b4e6f971264b65218c6d6201ce2645438143f Mon Sep 17 00:00:00 2001 From: Luke Stewart Date: Tue, 11 Feb 2025 11:09:03 +1300 Subject: [PATCH 48/85] Avoid fatal error when loading CiviMail emails when current user does not have an email. --- CRM/Mailing/Info.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CRM/Mailing/Info.php b/CRM/Mailing/Info.php index b30fc5011017..c7fd857c09d2 100644 --- a/CRM/Mailing/Info.php +++ b/CRM/Mailing/Info.php @@ -83,7 +83,12 @@ public static function createAngularSettings():array { $enabledLanguages = CRM_Core_I18n::languages(TRUE); $isMultiLingual = (count($enabledLanguages) > 1); $requiredTokens = Civi\Core\Resolver::singleton()->call('call://civi_flexmailer_required_tokens/getRequiredTokens', []); - + $default_email = \Civi\Api4\Email::get(TRUE) + ->addWhere('contact_id', '=', 'user_contact_id') + ->addWhere('is_primary', '=', '') + ->setLimit(25) + ->execute() + ->first()['email'] ?? ''; $crmMailingSettings = [ 'templateTypes' => CRM_Mailing_BAO_Mailing::getTemplateTypes(), 'civiMails' => [], @@ -99,10 +104,7 @@ public static function createAngularSettings():array { 'disableMandatoryTokensCheck' => (int) Civi::settings() ->get('disable_mandatory_tokens_check'), 'fromAddress' => $fromAddress['values'], - 'defaultTestEmail' => civicrm_api3('Contact', 'getvalue', [ - 'id' => 'user_contact_id', - 'return' => 'email', - ]), + 'defaultTestEmail' => $default_email, 'visibility' => CRM_Utils_Array::makeNonAssociative(CRM_Core_SelectValues::groupVisibility()), 'workflowEnabled' => CRM_Mailing_Info::workflowEnabled(), 'reportIds' => $reportIds, From 9535552eb440bf04589321fc883b27b995bf3fbd Mon Sep 17 00:00:00 2001 From: Luke Stewart Date: Tue, 11 Feb 2025 12:30:56 +1300 Subject: [PATCH 49/85] Fix is primary criteria --- CRM/Mailing/Info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/Info.php b/CRM/Mailing/Info.php index c7fd857c09d2..e88cb9ce16d7 100644 --- a/CRM/Mailing/Info.php +++ b/CRM/Mailing/Info.php @@ -85,7 +85,7 @@ public static function createAngularSettings():array { $requiredTokens = Civi\Core\Resolver::singleton()->call('call://civi_flexmailer_required_tokens/getRequiredTokens', []); $default_email = \Civi\Api4\Email::get(TRUE) ->addWhere('contact_id', '=', 'user_contact_id') - ->addWhere('is_primary', '=', '') + ->addWhere('is_primary', '=', TRUE) ->setLimit(25) ->execute() ->first()['email'] ?? ''; From 1b77e4502c6697f8e34d68d356d01a7d7c841e7f Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 19:56:37 -0500 Subject: [PATCH 50/85] Standalone - Fix syntax error typo in conditional --- CRM/Utils/System/Standalone.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/Standalone.php b/CRM/Utils/System/Standalone.php index ef8847090174..d4fffe1be58d 100644 --- a/CRM/Utils/System/Standalone.php +++ b/CRM/Utils/System/Standalone.php @@ -392,7 +392,7 @@ public function loadBootStrap($params = [], $loadUser = TRUE, $throwError = TRUE _authx_uf()->loginStateless($params['uid']); return TRUE; } - elseif (!empty($params['name'] && !empty($params['pass']))) { + elseif (!empty($params['name']) && !empty($params['pass'])) { // It seems from looking at the Drupal implementation, that // if given username we expect a correct password. From 10a94d2a5b6db820643494ef517e315a4bd40508 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 20:03:22 -0500 Subject: [PATCH 51/85] Api4 - Fix typo in code --- Civi/Api4/Utils/FormattingUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/Api4/Utils/FormattingUtil.php b/Civi/Api4/Utils/FormattingUtil.php index c663408b0669..b5ed129196e6 100644 --- a/Civi/Api4/Utils/FormattingUtil.php +++ b/Civi/Api4/Utils/FormattingUtil.php @@ -44,7 +44,7 @@ public static function formatWriteParams(&$params, $fields) { } self::formatInputValue($value, $name, $field); // Ensure we have an array for serialized fields - if (!empty($field['serialize'] && !is_array($value))) { + if (!empty($field['serialize']) && !is_array($value)) { $value = (array) $value; } } From 7fec6f5c0e40a7c1fae861feaad2fd3b455e1d02 Mon Sep 17 00:00:00 2001 From: eileen Date: Tue, 11 Feb 2025 12:29:21 +1300 Subject: [PATCH 52/85] Fix notice by switching to apiv4 --- CRM/Dedupe/Merger.php | 53 ++++++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/CRM/Dedupe/Merger.php b/CRM/Dedupe/Merger.php index 804cc42ae045..634a17f60f72 100644 --- a/CRM/Dedupe/Merger.php +++ b/CRM/Dedupe/Merger.php @@ -1311,18 +1311,21 @@ public static function locationHasData($location) { } /** - * Get the location data from a location array, filtering out metadata. + * Get the location data from a location array, filtering out metadata and empty fields. + * + * The function is intended to allow us to find out if address/email etc records have any + * 'real' data like address information or an email address. If not they are not merge candidates. * * This returns data like street_address but not metadata like is_primary, on_hold etc. * * @param array $location * - * @return mixed + * @return array */ - public static function getLocationDataFields($location) { + public static function getLocationDataFields(array $location): array { $keysToIgnore = array_merge(self::ignoredFields(), ['display', 'location_type_id']); foreach ($location as $field => $value) { - if (in_array($field, $keysToIgnore, TRUE)) { + if (!$value || in_array($field, $keysToIgnore, TRUE)) { unset($location[$field]); } } @@ -1340,37 +1343,42 @@ public static function getLocationBlockInfo() { 'address' => [ 'label' => 'Address', 'displayField' => 'display', - 'sortString' => 'location_type_id', + 'order_by' => ['location_type_id' => 'ASC'], 'hasLocation' => TRUE, 'hasType' => FALSE, + 'entity' => 'Address', ], 'email' => [ 'label' => 'Email', 'displayField' => 'display', - 'sortString' => 'location_type_id', + 'order_by' => ['location_type_id' => 'ASC'], 'hasLocation' => TRUE, 'hasType' => FALSE, + 'entity' => 'Email', ], 'im' => [ 'label' => 'IM', 'displayField' => 'name', - 'sortString' => 'location_type_id,provider_id', + 'order_by' => ['location_type_id' => 'ASC', 'provider_id' => 'ASC'], 'hasLocation' => TRUE, 'hasType' => 'provider_id', + 'entity' => 'IM', ], 'phone' => [ 'label' => 'Phone', 'displayField' => 'phone', - 'sortString' => 'location_type_id,phone_type_id', + 'order_by' => ['location_type_id' => 'ASC', 'phone_type_id' => 'ASC'], 'hasLocation' => TRUE, 'hasType' => 'phone_type_id', + 'entity' => 'Phone', ], 'website' => [ 'label' => 'Website', 'displayField' => 'url', - 'sortString' => 'website_type_id', + 'order_by' => ['website_type_id' => 'ASC'], 'hasLocation' => FALSE, 'hasType' => 'website_type_id', + 'entity' => 'Website', ], ]; } @@ -2184,7 +2192,7 @@ public static function getConflicts(array &$migrationInfo, int $mainId, int $oth continue; } elseif ((in_array(substr($key, 5), CRM_Dedupe_Merger::getContactFields()) || - strpos($key, 'move_custom_') === 0 + str_starts_with($key, 'move_custom_') ) and $val !== NULL ) { // Rule: If both main-contact, and other-contact have a field with a @@ -2465,28 +2473,27 @@ private static function getFieldValueAndLabel(string $field, array $contact, boo * * @param int $cid * @param array $blockInfo - * @param string $blockName * * @return array * * @throws \CRM_Core_Exception */ - private static function buildLocationBlockForContact($cid, $blockInfo, $blockName): array { + private static function buildLocationBlockForContact(int $cid, array $blockInfo): array { $searchParams = [ - 'contact_id' => $cid, + 'where' => [['contact_id', '=', $cid]], // CRM-17556 Order by field-specific criteria - 'options' => [ - 'sort' => $blockInfo['sortString'], - ], + 'orderBy' => $blockInfo['order_by'], + 'checkPermissions' => FALSE, + 'select' => ['*', 'custom.*'], ]; $locationBlock = []; - $values = civicrm_api3($blockName, 'get', $searchParams); - if ($values['count']) { + $values = civicrm_api4($blockInfo['entity'], 'get', $searchParams); + if (count($values)) { $cnt = 0; - foreach ($values['values'] as $value) { + foreach ($values as $value) { $locationBlock[$cnt] = $value; // Fix address display - if ($blockName == 'address') { + if ($blockInfo['entity'] == 'Address') { // For performance avoid geocoding while merging https://issues.civicrm.org/jira/browse/CRM-21786 // we can expect existing geocode values to be retained. $value['skip_geocode'] = TRUE; @@ -2495,7 +2502,7 @@ private static function buildLocationBlockForContact($cid, $blockInfo, $blockNam $locationBlock[$cnt]['display'] = CRM_Utils_Address::format($value); } // Fix email display - elseif ($blockName == 'email') { + elseif ($blockInfo['entity'] == 'Email') { $locationBlock[$cnt]['display'] = CRM_Utils_Mail::format($value); } @@ -2573,8 +2580,8 @@ protected static function releaseLocks(array $locks) { protected static function addLocationFieldInfo($mainId, $otherId, $blockInfo, $blockName, array $locations, array $rows, array $elements, array $migrationInfo): array { // Collect existing fields from both 'main' and 'other' contacts first // This allows us to match up location/types when building the table rows - $locations['main'][$blockName] = self::buildLocationBlockForContact($mainId, $blockInfo, $blockName); - $locations['other'][$blockName] = self::buildLocationBlockForContact($otherId, $blockInfo, $blockName); + $locations['main'][$blockName] = self::buildLocationBlockForContact($mainId, $blockInfo); + $locations['other'][$blockName] = self::buildLocationBlockForContact($otherId, $blockInfo); // Now, build the table rows appropriately, based off the information on // the 'other' contact From 0dee43e0ba9b573ad9c0b42dd8cd1bb5ea2e0561 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 20:40:53 -0500 Subject: [PATCH 53/85] [REF] Refactor redundant `isset()`s to use null coalescing operator (??). Replaced lengthy `isset` conditions with the more concise null coalescing operator. --- CRM/Core/BAO/CMSUser.php | 4 ++-- CRM/Event/Form/ManageEvent.php | 3 +-- CRM/Event/Form/ManageEvent/TabHeader.php | 3 +-- CRM/Utils/Mail.php | 2 +- CRM/Utils/SameSite.php | 2 +- CRM/Utils/System/WordPress.php | 2 +- Civi/Core/CiviEventDispatcher.php | 8 ++++---- Civi/Pipe/PublicMethods.php | 2 +- .../mock/tests/phpunit/api/v4/Afform/AfformTest.php | 2 +- ext/flexmailer/src/FlexMailerTask.php | 2 +- ext/flexmailer/src/Listener/DefaultComposer.php | 4 ++-- 11 files changed, 16 insertions(+), 18 deletions(-) diff --git a/CRM/Core/BAO/CMSUser.php b/CRM/Core/BAO/CMSUser.php index c5f01e496a56..2a83e86d946a 100644 --- a/CRM/Core/BAO/CMSUser.php +++ b/CRM/Core/BAO/CMSUser.php @@ -154,8 +154,8 @@ public static function formRule($fields, $files, $form) { $params = [ 'name' => $fields['cms_name'], - 'mail' => isset($fields[$emailName]) ? $fields[$emailName] : '', - 'pass' => isset($fields['cms_pass']) ? $fields['cms_pass'] : '', + 'mail' => $fields[$emailName] ?? '', + 'pass' => $fields['cms_pass'] ?? '', ]; // Verify the password. diff --git a/CRM/Event/Form/ManageEvent.php b/CRM/Event/Form/ManageEvent.php index bee5082d7a13..157d7eb5d944 100644 --- a/CRM/Event/Form/ManageEvent.php +++ b/CRM/Event/Form/ManageEvent.php @@ -546,8 +546,7 @@ private function processTab() { $link = "civicrm/event/manage/{$key}"; $query = "{$reset}action={$action}&id={$eventID}&component=event{$tabs[$key]['qfKey']}"; - $tabs[$key]['link'] = (isset($value['link']) ? $value['link'] : - CRM_Utils_System::url($link, $query)); + $tabs[$key]['link'] = $value['link'] ?? CRM_Utils_System::url($link, $query); } } diff --git a/CRM/Event/Form/ManageEvent/TabHeader.php b/CRM/Event/Form/ManageEvent/TabHeader.php index 73683903323a..51a33213659b 100644 --- a/CRM/Event/Form/ManageEvent/TabHeader.php +++ b/CRM/Event/Form/ManageEvent/TabHeader.php @@ -192,8 +192,7 @@ public static function process(&$form) { $link = "civicrm/event/manage/{$key}"; $query = "{$reset}action={$action}&id={$eventID}&component=event{$tabs[$key]['qfKey']}"; - $tabs[$key]['link'] = (isset($value['link']) ? $value['link'] : - CRM_Utils_System::url($link, $query)); + $tabs[$key]['link'] = $value['link'] ?? CRM_Utils_System::url($link, $query); } } diff --git a/CRM/Utils/Mail.php b/CRM/Utils/Mail.php index a22f4249c9b9..e6ef56979f85 100644 --- a/CRM/Utils/Mail.php +++ b/CRM/Utils/Mail.php @@ -387,7 +387,7 @@ public static function setEmailHeaders($params): array { TRUE, 'base64', 'attachment', - (isset($attach['charset']) ? $attach['charset'] : ''), + ($attach['charset'] ?? ''), '', '', NULL, diff --git a/CRM/Utils/SameSite.php b/CRM/Utils/SameSite.php index 6ed014225682..19108cb4f819 100644 --- a/CRM/Utils/SameSite.php +++ b/CRM/Utils/SameSite.php @@ -18,7 +18,7 @@ * Sample code: * * // Get User Agent string. - * $rawUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; + * $rawUserAgent = $_SERVER['HTTP_USER_AGENT'] ?? ''; * $userAgent = mb_convert_encoding($rawUserAgent, 'UTF-8'); * * // Get boolean representing User Agent compatibility. diff --git a/CRM/Utils/System/WordPress.php b/CRM/Utils/System/WordPress.php index 1e09f2e0b68d..175777b9f2f4 100644 --- a/CRM/Utils/System/WordPress.php +++ b/CRM/Utils/System/WordPress.php @@ -1350,7 +1350,7 @@ public function getRoleNames() { */ public function prePostRedirect() { // Get User Agent string. - $rawUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; + $rawUserAgent = $_SERVER['HTTP_USER_AGENT'] ?? ''; $userAgent = mb_convert_encoding($rawUserAgent, 'UTF-8'); // Bail early if User Agent does not support `SameSite=None`. diff --git a/Civi/Core/CiviEventDispatcher.php b/Civi/Core/CiviEventDispatcher.php index 90457c56f3fb..a99484b70fcc 100644 --- a/Civi/Core/CiviEventDispatcher.php +++ b/Civi/Core/CiviEventDispatcher.php @@ -99,11 +99,11 @@ public function addSubscriberServiceMap(string $subscriber, array $events) { $this->addListenerService($eventName, [$subscriber, $params]); } elseif (\is_string($params[0])) { - $this->addListenerService($eventName, [$subscriber, $params[0]], isset($params[1]) ? $params[1] : 0); + $this->addListenerService($eventName, [$subscriber, $params[0]], $params[1] ?? 0); } else { foreach ($params as $listener) { - $this->addListenerService($eventName, [$subscriber, $listener[0]], isset($listener[1]) ? $listener[1] : 0); + $this->addListenerService($eventName, [$subscriber, $listener[0]], $listener[1] ?? 0); } } } @@ -166,11 +166,11 @@ public function addListenerMap($target, array $events) { $this->addListener($eventName, [$target, $params]); } elseif (\is_string($params[0])) { - $this->addListener($eventName, [$target, $params[0]], isset($params[1]) ? $params[1] : 0); + $this->addListener($eventName, [$target, $params[0]], $params[1] ?? 0); } else { foreach ($params as $listener) { - $this->addListener($eventName, [$target, $listener[0]], isset($listener[1]) ? $listener[1] : 0); + $this->addListener($eventName, [$target, $listener[0]], $listener[1] ?? 0); } } } diff --git a/Civi/Pipe/PublicMethods.php b/Civi/Pipe/PublicMethods.php index 06b17406b694..cb52839ba816 100644 --- a/Civi/Pipe/PublicMethods.php +++ b/Civi/Pipe/PublicMethods.php @@ -187,7 +187,7 @@ public function options(PipeSession $session, array $request) { } private function isCheckPermissions(array $params, string $field) { - return isset($params[$field]) ? $params[$field] : $this->apiCheckPermissions; + return $params[$field] ?? $this->apiCheckPermissions; } } diff --git a/ext/afform/mock/tests/phpunit/api/v4/Afform/AfformTest.php b/ext/afform/mock/tests/phpunit/api/v4/Afform/AfformTest.php index 3059699ecc1d..06c07fcaaac5 100644 --- a/ext/afform/mock/tests/phpunit/api/v4/Afform/AfformTest.php +++ b/ext/afform/mock/tests/phpunit/api/v4/Afform/AfformTest.php @@ -52,7 +52,7 @@ public function getBasicDirectives() { */ public function testGetUpdateRevert($formName, $originalMetadata): void { $get = function($arr, $key) { - return isset($arr[$key]) ? $arr[$key] : NULL; + return $arr[$key] ?? NULL; }; $checkDashlet = function($afform) use ($formName) { diff --git a/ext/flexmailer/src/FlexMailerTask.php b/ext/flexmailer/src/FlexMailerTask.php index 738fff80d7a0..5b4255fd9524 100644 --- a/ext/flexmailer/src/FlexMailerTask.php +++ b/ext/flexmailer/src/FlexMailerTask.php @@ -161,7 +161,7 @@ public function setMailParam($key, $value) { * @see CRM_Utils_Hook::alterMailParams */ public function getMailParam($key) { - return isset($this->mailParams[$key]) ? $this->mailParams[$key] : NULL; + return $this->mailParams[$key] ?? NULL; } } diff --git a/ext/flexmailer/src/Listener/DefaultComposer.php b/ext/flexmailer/src/Listener/DefaultComposer.php index 0a7f1254af36..02ed56f1a2aa 100644 --- a/ext/flexmailer/src/Listener/DefaultComposer.php +++ b/ext/flexmailer/src/Listener/DefaultComposer.php @@ -63,9 +63,9 @@ public function onCompose(ComposeBatchEvent $e) { $tpls = $this->createMessageTemplates($e); $tp->addMessage('subject', $tpls['subject'] ?? '', 'text/plain'); - $tp->addMessage('body_text', isset($tpls['text']) ? $tpls['text'] : '', + $tp->addMessage('body_text', $tpls['text'] ?? '', 'text/plain'); - $tp->addMessage('body_html', isset($tpls['html']) ? $tpls['html'] : '', + $tp->addMessage('body_html', $tpls['html'] ?? '', 'text/html'); $hasContent = FALSE; From 0adc3755710ae64b060f1588152858395228a0de Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 20:56:16 -0500 Subject: [PATCH 54/85] [REF] Remove unused variables --- CRM/Contact/Form/RelatedContact.php | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/CRM/Contact/Form/RelatedContact.php b/CRM/Contact/Form/RelatedContact.php index 21a22eddcf22..95837b0ca3c5 100644 --- a/CRM/Contact/Form/RelatedContact.php +++ b/CRM/Contact/Form/RelatedContact.php @@ -97,18 +97,8 @@ public function setDefaultValues() { public function buildQuickForm() { $params = []; $params['id'] = $params['contact_id'] = $this->_contactId; - $contact = CRM_Contact_BAO_Contact::retrieve($params, $this->_defaults); - - $countryID = ''; - $stateID = ''; - if (!empty($this->_defaults['address'][1])) { - $countryID = CRM_Utils_Array::value('country_id', - $this->_defaults['address'][1] - ); - $stateID = CRM_Utils_Array::value('state_province_id', - $this->_defaults['address'][1] - ); - } + CRM_Contact_BAO_Contact::retrieve($params, $this->_defaults); + $this->buildOnBehalfForm(); $this->assign('contact_type', $this->_contactType); From afd2830a21d8a5fb12516ab7b5520b4a8adcc6ea Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:20:51 -0500 Subject: [PATCH 55/85] [REF] api/v3 - Refactor out uses of deprecated CRM_Utils_Array::value --- api/v3/Domain.php | 4 +--- api/v3/utils.php | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/api/v3/Domain.php b/api/v3/Domain.php index 717a2ee74ba6..b198611b4ae1 100644 --- a/api/v3/Domain.php +++ b/api/v3/Domain.php @@ -73,9 +73,7 @@ function civicrm_api3_domain_get($params) { if (!empty($values['location']['address'])) { foreach ($address_array as $value) { - $domain['domain_address'][$value] = CRM_Utils_Array::value($value, - $values['location']['address'][1] - ); + $domain['domain_address'][$value] = $values['location']['address'][1][$value] ?? NULL; } } diff --git a/api/v3/utils.php b/api/v3/utils.php index 0a38bbffd8c5..c3751f1e4374 100644 --- a/api/v3/utils.php +++ b/api/v3/utils.php @@ -1985,7 +1985,7 @@ function _civicrm_api_get_custom_fields($entity, &$params) { if ($value['data_type'] == 'Date' && ($value['time_format'] ?? 0) > 0) { $value['data_type'] = 'DateTime'; } - $value['type'] = CRM_Utils_Array::value($value['data_type'], CRM_Core_BAO_CustomField::dataToType()); + $value['type'] = CRM_Core_BAO_CustomField::dataToType()[$value['data_type']] ?? NULL; $ret['custom_' . $key] = $value; } return $ret; From f9ebd6614e0faa91172c6166a869385345ff749d Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:23:37 -0500 Subject: [PATCH 56/85] [REF] CRM/Report - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Report/Form.php | 8 ++++---- CRM/Report/Form/Activity.php | 8 ++++---- CRM/Report/Form/ActivitySummary.php | 12 ++++++------ CRM/Report/Form/Case/Detail.php | 2 +- CRM/Report/Form/Pledge/Detail.php | 12 +++--------- CRM/Report/Form/Pledge/Summary.php | 12 +++--------- CRM/Report/Page/Report.php | 2 +- CRM/Report/Utils/Get.php | 2 +- CRM/Report/Utils/Report.php | 4 ++-- 9 files changed, 25 insertions(+), 37 deletions(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 380bc2034f94..26245bce1515 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -5145,7 +5145,7 @@ protected function setOutputMode() { 'String', CRM_Core_DAO::$_nullObject, FALSE, - CRM_Utils_Array::value('task', $this->_params) + $this->_params['task'] ?? NULL ) ?? '')); // if contacts are added to group if (!empty($this->_params['groups']) && empty($this->_outputMode)) { @@ -6052,9 +6052,9 @@ protected function generateFilterClause($field, $fieldName) { if ($op) { return $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", $this->_params), - CRM_Utils_Array::value("{$fieldName}_min", $this->_params), - CRM_Utils_Array::value("{$fieldName}_max", $this->_params) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); } } diff --git a/CRM/Report/Form/Activity.php b/CRM/Report/Form/Activity.php index fba5f58c6515..02e495d0fe12 100644 --- a/CRM/Report/Form/Activity.php +++ b/CRM/Report/Form/Activity.php @@ -617,9 +617,9 @@ public function where($recordType = NULL) { if ($op && !($fieldName === "contact_{$recordType}" && ($op === 'nnll' || $op === 'nll'))) { $clause = $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", $this->_params), - CRM_Utils_Array::value("{$fieldName}_min", $this->_params), - CRM_Utils_Array::value("{$fieldName}_max", $this->_params) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); if ($field['name'] == 'include_case_activities') { $clause = NULL; @@ -964,7 +964,7 @@ public function alterDisplay(&$rows) { if (empty($this->_params['include_case_activities_value']) || empty($rows[$rowNum]['civicrm_case_activity_case_id'])) { // Generate a "view activity" link $actActionLinks = CRM_Activity_Selector_Activity::actionLinks($row['civicrm_activity_activity_type_id'], - CRM_Utils_Array::value('civicrm_activity_source_record_id', $rows[$rowNum]), + $rows[$rowNum]['civicrm_activity_source_record_id'] ?? NULL, FALSE, $rows[$rowNum]['civicrm_activity_id'] ); diff --git a/CRM/Report/Form/ActivitySummary.php b/CRM/Report/Form/ActivitySummary.php index b162e9b4c99a..da92bcbac541 100644 --- a/CRM/Report/Form/ActivitySummary.php +++ b/CRM/Report/Form/ActivitySummary.php @@ -375,9 +375,9 @@ public function where($durationMode = FALSE) { if ($op) { $clause = $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", $this->_params), - CRM_Utils_Array::value("{$fieldName}_min", $this->_params), - CRM_Utils_Array::value("{$fieldName}_max", $this->_params) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); } } @@ -686,9 +686,9 @@ public function alterDisplay(&$rows) { if (!empty($this->_params['activity_date_time_' . $suffix])) { list($from, $to) = $this->getFromTo( - CRM_Utils_Array::value("activity_date_time_relative", $this->_params), - CRM_Utils_Array::value("activity_date_time_from", $this->_params), - CRM_Utils_Array::value("activity_date_time_to", $this->_params) + $this->_params["activity_date_time_relative"] ?? NULL, + $this->_params["activity_date_time_from"] ?? NULL, + $this->_params["activity_date_time_to"] ?? NULL ); $url[] = "activity_date_time_from={$from}&activity_date_time_to={$to}"; break; diff --git a/CRM/Report/Form/Case/Detail.php b/CRM/Report/Form/Case/Detail.php index fc1d7de6c079..52af70def17b 100644 --- a/CRM/Report/Form/Case/Detail.php +++ b/CRM/Report/Form/Case/Detail.php @@ -471,7 +471,7 @@ public function where() { $op, $this->_params["{$fieldName}_value"] ?? NULL, $this->_params["{$fieldName}_min"] ?? NULL, - CRM_Utils_Array::value("{$fieldName}_max", $this->_params) + $this->_params["{$fieldName}_max"] ?? NULL ); } } diff --git a/CRM/Report/Form/Pledge/Detail.php b/CRM/Report/Form/Pledge/Detail.php index 73ce3b67011d..6c141cc9936e 100644 --- a/CRM/Report/Form/Pledge/Detail.php +++ b/CRM/Report/Form/Pledge/Detail.php @@ -344,15 +344,9 @@ public function where() { if ($op) { $clause = $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", - $this->_params - ), - CRM_Utils_Array::value("{$fieldName}_min", - $this->_params - ), - CRM_Utils_Array::value("{$fieldName}_max", - $this->_params - ) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); } } diff --git a/CRM/Report/Form/Pledge/Summary.php b/CRM/Report/Form/Pledge/Summary.php index e22300560f00..d1ecdcd963a7 100644 --- a/CRM/Report/Form/Pledge/Summary.php +++ b/CRM/Report/Form/Pledge/Summary.php @@ -319,15 +319,9 @@ public function where() { if ($op) { $clause = $this->whereClause($field, $op, - CRM_Utils_Array::value("{$fieldName}_value", - $this->_params - ), - CRM_Utils_Array::value("{$fieldName}_min", - $this->_params - ), - CRM_Utils_Array::value("{$fieldName}_max", - $this->_params - ) + $this->_params["{$fieldName}_value"] ?? NULL, + $this->_params["{$fieldName}_min"] ?? NULL, + $this->_params["{$fieldName}_max"] ?? NULL ); } } diff --git a/CRM/Report/Page/Report.php b/CRM/Report/Page/Report.php index e0924d22838b..f1e77f219fe8 100644 --- a/CRM/Report/Page/Report.php +++ b/CRM/Report/Page/Report.php @@ -34,7 +34,7 @@ public function run() { 'String', FALSE, TRUE ); - $extKey = strpos(CRM_Utils_Array::value('name', $templateInfo), '.'); + $extKey = strpos($templateInfo['name'] ?? '', '.'); $reportClass = NULL; diff --git a/CRM/Report/Utils/Get.php b/CRM/Report/Utils/Get.php index 928fab44f67c..a2eb4ecb4f20 100644 --- a/CRM/Report/Utils/Get.php +++ b/CRM/Report/Utils/Get.php @@ -98,7 +98,7 @@ public static function stringParam($fieldName, &$field, &$defaults) { case 'like': case 'eq': case 'neq': - $value = self::getTypedValue("{$fieldName}_value", CRM_Utils_Array::value('type', $field)); + $value = self::getTypedValue("{$fieldName}_value", $field['type'] ?? NULL); if ($value !== NULL) { $defaults["{$fieldName}_value"] = $value; $defaults["{$fieldName}_op"] = $fieldOP; diff --git a/CRM/Report/Utils/Report.php b/CRM/Report/Utils/Report.php index 8aa51c7c2868..79dd25170f18 100644 --- a/CRM/Report/Utils/Report.php +++ b/CRM/Report/Utils/Report.php @@ -52,7 +52,7 @@ public static function getValueIDFromUrl($instanceID = NULL) { if ($optionVal) { $templateInfo = CRM_Core_OptionGroup::getRowValues('report_template', "{$optionVal}", 'value'); - return [CRM_Utils_Array::value('id', $templateInfo), $optionVal]; + return [$templateInfo['id'] ?? NULL, $optionVal]; } return FALSE; @@ -191,7 +191,7 @@ public static function mailReport($fileContent, $instanceID = NULL, $outputMode if (empty($instanceInfo['attachments'])) { $instanceInfo['attachments'] = []; } - $params['attachments'] = array_merge(CRM_Utils_Array::value('attachments', $instanceInfo), $attachments); + $params['attachments'] = array_merge($instanceInfo['attachments'] ?? [], $attachments); $params['text'] = ''; $params['html'] = $fileContent; From 6d667657eddc5a41514e2748aa519f44c6c4f023 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:27:44 -0500 Subject: [PATCH 57/85] [REF] CRM/Event - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Event/BAO/Event.php | 12 +++--------- CRM/Event/Form/ParticipantFeeSelection.php | 6 +----- CRM/Event/Form/Registration/Register.php | 4 +--- CRM/Event/Page/EventInfo.php | 2 +- 4 files changed, 6 insertions(+), 18 deletions(-) diff --git a/CRM/Event/BAO/Event.php b/CRM/Event/BAO/Event.php index 44ddcff7e544..09018fb7bd3b 100644 --- a/CRM/Event/BAO/Event.php +++ b/CRM/Event/BAO/Event.php @@ -1195,12 +1195,8 @@ public static function sendMail($contactID, $values, $participantId, $isTest = F $sendTemplateParams['toName'] = $displayName; $sendTemplateParams['toEmail'] = $notifyEmail; $sendTemplateParams['autoSubmitted'] = TRUE; - $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc_confirm', - $values['event'] - ); - $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc_confirm', - $values['event'] - ); + $sendTemplateParams['cc'] = $values['event']['cc_confirm'] ?? NULL; + $sendTemplateParams['bcc'] = $values['event']['bcc_confirm'] ?? NULL; if (Civi::settings()->get('invoice_is_email_pdf') && !empty($values['contributionId'])) { $sendTemplateParams['isEmailPdf'] = TRUE; @@ -2301,9 +2297,7 @@ public static function getProfileDisplay(array $profileIds, int $cid, int $parti 'campaign_id' ); $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId); - $values[$fields['participant_campaign_id']['title']] = CRM_Utils_Array::value($campaignId, - $campaigns - ); + $values[$fields['participant_campaign_id']['title']] = $campaigns[$campaignId] ?? NULL; } unset($fields['participant_campaign_id']); } diff --git a/CRM/Event/Form/ParticipantFeeSelection.php b/CRM/Event/Form/ParticipantFeeSelection.php index 84c97d63f7ab..7309ff7572ba 100644 --- a/CRM/Event/Form/ParticipantFeeSelection.php +++ b/CRM/Event/Form/ParticipantFeeSelection.php @@ -639,11 +639,7 @@ private function emailReceipt(array $params): void { $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument(); if (!$this->_mode) { if (isset($params['payment_instrument_id'])) { - $this->assign('paidBy', - CRM_Utils_Array::value($params['payment_instrument_id'], - $paymentInstrument - ) - ); + $this->assign('paidBy', $paymentInstrument[$params['payment_instrument_id']] ?? NULL); } } diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index 46abcb09d435..9464b3d8d399 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -250,9 +250,7 @@ public function setDefaultValues() { if (!empty($this->_fields)) { //load default campaign from page. if (array_key_exists('participant_campaign_id', $this->_fields)) { - $this->_defaults['participant_campaign_id'] = CRM_Utils_Array::value('campaign_id', - $this->_values['event'] - ); + $this->_defaults['participant_campaign_id'] = $this->_values['event']['campaign_id'] ?? NULL; } foreach ($this->_fields as $name => $field) { diff --git a/CRM/Event/Page/EventInfo.php b/CRM/Event/Page/EventInfo.php index 987c911a6e9d..0b8f98148d4c 100644 --- a/CRM/Event/Page/EventInfo.php +++ b/CRM/Event/Page/EventInfo.php @@ -69,7 +69,7 @@ public function run() { } // Add Event Type to $values in case folks want to display it - $values['event']['event_type'] = CRM_Utils_Array::value($values['event']['event_type_id'], CRM_Event_PseudoConstant::eventType()); + $values['event']['event_type'] = CRM_Event_PseudoConstant::eventType($values['event']['event_type_id']); $this->assign('isShowLocation', $values['event']['is_show_location'] ?? NULL); From 7fe628761b0b944bec4429378f83b80ac0a73665 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:29:55 -0500 Subject: [PATCH 58/85] [REF] CRM/Activity - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Activity/BAO/Query.php | 2 +- CRM/Activity/Selector/Activity.php | 2 +- CRM/Activity/Selector/Search.php | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CRM/Activity/BAO/Query.php b/CRM/Activity/BAO/Query.php index 92702de78290..7a09bf3a953f 100644 --- a/CRM/Activity/BAO/Query.php +++ b/CRM/Activity/BAO/Query.php @@ -621,7 +621,7 @@ public static function whereClauseSingleActivityText(&$values, &$query) { $query->_useDistinct = TRUE; - $label = ts('Activity Text (%1)', [1 => CRM_Utils_Array::value($activityOption, CRM_Core_SelectValues::activityTextOptions())]); + $label = ts('Activity Text (%1)', [1 => CRM_Core_SelectValues::activityTextOptions()[$activityOption] ?? '']); $clauses = []; if ($activityOption % 2 == 0) { $clauses[] = $query->buildClause('civicrm_activity.details', $op, $value, 'String'); diff --git a/CRM/Activity/Selector/Activity.php b/CRM/Activity/Selector/Activity.php index 918fea436f7d..b9978edda7dc 100644 --- a/CRM/Activity/Selector/Activity.php +++ b/CRM/Activity/Selector/Activity.php @@ -420,7 +420,7 @@ public function &getRows($action, $offset, $rowCount, $sort, $output = NULL, $ca $engagementLevel = $row['engagement_level'] ?? NULL; if ($engagementLevel) { - $row['engagement_level'] = CRM_Utils_Array::value($engagementLevel, $engagementLevels, $engagementLevel); + $row['engagement_level'] = $engagementLevels[$engagementLevel] ?? $engagementLevel; } $actionLinks = $this->actionLinks($row['activity_type_id'], diff --git a/CRM/Activity/Selector/Search.php b/CRM/Activity/Selector/Search.php index 34700a3637a9..6076e405a190 100644 --- a/CRM/Activity/Selector/Search.php +++ b/CRM/Activity/Selector/Search.php @@ -321,9 +321,7 @@ public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) { $engagementLevel = $row['activity_engagement_level'] ?? NULL; if ($engagementLevel) { - $row['activity_engagement_level'] = CRM_Utils_Array::value($engagementLevel, - $engagementLevels, $engagementLevel - ); + $row['activity_engagement_level'] = $engagementLevels[$engagementLevel] ?? $engagementLevel; } // Check if recurring activity. From c7aca0161faa3a4a5e199dbc74ab72c66ac5fab8 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:32:43 -0500 Subject: [PATCH 59/85] [REF] CiviContribute - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Batch/Form/Entry.php | 5 +---- CRM/Contribute/Form/Contribution.php | 5 +---- CRM/Contribute/Form/ContributionPage/Amount.php | 8 ++------ CRM/Financial/Page/AJAX.php | 2 +- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 9193a4d7ade7..d4452063e1d8 100644 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -671,10 +671,7 @@ private function processContribution(array &$params): bool { [$products, $options] = CRM_Contribute_BAO_Premium::getPremiumProductInfo(); $value['hidden_Premium'] = 1; - $value['product_option'] = CRM_Utils_Array::value( - $value['product_name'][1], - $options[$value['product_name'][0]] - ); + $value['product_option'] = $options[$value['product_name'][0]][$value['product_name'][1]] ?? NULL; $premiumParams = [ 'product_id' => $value['product_name'][0], diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index 5ae6ef0a74cf..4ebc1f4e9295 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -1224,10 +1224,7 @@ protected function processCreditCard($submittedValues, $lineItem, $contactID) { // @todo - stop setting amount level in this function - use $this->order->getAmountLevel() $this->_params['amount_level'] = 0; $this->_params['description'] = ts("Contribution submitted by a staff person using contributor's credit card"); - $this->_params['currencyID'] = CRM_Utils_Array::value('currency', - $this->_params, - CRM_Core_Config::singleton()->defaultCurrency - ); + $this->_params['currencyID'] = $this->_params['currency'] ?? CRM_Core_Config::singleton()->defaultCurrency; $this->_params['pcp_display_in_roll'] = $params['pcp_display_in_roll'] ?? NULL; $this->_params['pcp_roll_nickname'] = $params['pcp_roll_nickname'] ?? NULL; diff --git a/CRM/Contribute/Form/ContributionPage/Amount.php b/CRM/Contribute/Form/ContributionPage/Amount.php index 67fd5bca4241..a49217c9badc 100644 --- a/CRM/Contribute/Form/ContributionPage/Amount.php +++ b/CRM/Contribute/Form/ContributionPage/Amount.php @@ -771,12 +771,8 @@ public function postProcess() { foreach ($pledgeBlock as $key) { $pledgeBlockParams[$key] = $params[$key] ?? NULL; } - $pledgeBlockParams['is_pledge_interval'] = CRM_Utils_Array::value('is_pledge_interval', - $params, FALSE - ); - $pledgeBlockParams['pledge_start_date'] = CRM_Utils_Array::value('pledge_start_date', - $params, FALSE - ); + $pledgeBlockParams['is_pledge_interval'] = $params['is_pledge_interval'] ?? FALSE; + $pledgeBlockParams['pledge_start_date'] = $params['pledge_start_date'] ?? FALSE; // create pledge block. CRM_Pledge_BAO_PledgeBlock::create($pledgeBlockParams); } diff --git a/CRM/Financial/Page/AJAX.php b/CRM/Financial/Page/AJAX.php index 183c2f5c7b99..7755fe41419c 100644 --- a/CRM/Financial/Page/AJAX.php +++ b/CRM/Financial/Page/AJAX.php @@ -433,7 +433,7 @@ public static function getFinancialTransactionsList() { ); } if ($financialItem->contact_id) { - $row[$financialItem->id]['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage(!empty($row[$financialItem->id]['contact_sub_type']) ? $row[$financialItem->id]['contact_sub_type'] : CRM_Utils_Array::value('contact_type', $row[$financialItem->id]), FALSE, $financialItem->contact_id); + $row[$financialItem->id]['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage(!empty($row[$financialItem->id]['contact_sub_type']) ? $row[$financialItem->id]['contact_sub_type'] : ($row[$financialItem->id]['contact_type'] ?? NULL), FALSE, $financialItem->contact_id); } // @todo: Is this right? Shouldn't it be adding to the array as we loop? $financialitems = $row; From 64b4fafc3003f925f289e95d1e4e1068d09c1b09 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:35:53 -0500 Subject: [PATCH 60/85] [REF] CRM/Case - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Case/BAO/Case.php | 12 +++--------- CRM/Case/XMLProcessor/Report.php | 10 +++++----- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/CRM/Case/BAO/Case.php b/CRM/Case/BAO/Case.php index b077c4b13250..ce8d12d189a0 100644 --- a/CRM/Case/BAO/Case.php +++ b/CRM/Case/BAO/Case.php @@ -2175,17 +2175,11 @@ public static function mergeCases( $mainActivity->copyValues($mainActVals); $mainActivity->id = NULL; $mainActivity->activity_date_time = $otherActivity->activity_date_time; - $mainActivity->source_record_id = CRM_Utils_Array::value($mainActivity->source_record_id, - $activityMappingIds - ); + $mainActivity->source_record_id = $activityMappingIds[$mainActivity->source_record_id] ?? NULL; - $mainActivity->original_id = CRM_Utils_Array::value($mainActivity->original_id, - $activityMappingIds - ); + $mainActivity->original_id = $activityMappingIds[$mainActivity->original_id] ?? NULL; - $mainActivity->parent_id = CRM_Utils_Array::value($mainActivity->parent_id, - $activityMappingIds - ); + $mainActivity->parent_id = $activityMappingIds[$mainActivity->parent_id] ?? NULL; $mainActivity->save(); $mainActivityId = $mainActivity->id; if (!$mainActivityId) { diff --git a/CRM/Case/XMLProcessor/Report.php b/CRM/Case/XMLProcessor/Report.php index 12f108ac91aa..b9e7e9b92c08 100644 --- a/CRM/Case/XMLProcessor/Report.php +++ b/CRM/Case/XMLProcessor/Report.php @@ -854,16 +854,16 @@ public static function printCaseReport() { $caseRoles['client'] = CRM_Case_BAO_Case::getContactNames($caseID); if ($isRedact) { foreach ($caseRoles['client'] as &$client) { - if (!array_key_exists(CRM_Utils_Array::value('sort_name', $client), $report->_redactionStringRules)) { + if (!array_key_exists($client['sort_name'] ?? NULL, $report->_redactionStringRules)) { $report->_redactionStringRules = CRM_Utils_Array::crmArrayMerge($report->_redactionStringRules, [($client['sort_name'] ?? NULL) => 'name_' . rand(10000, 100000)] ); } - if (!array_key_exists(CRM_Utils_Array::value('display_name', $client), $report->_redactionStringRules)) { + if (!array_key_exists($client['display_name'] ?? NULL, $report->_redactionStringRules)) { $report->_redactionStringRules[$client['display_name'] ?? NULL] = $report->_redactionStringRules[$client['sort_name'] ?? NULL]; } - $client['sort_name'] = $report->redact(CRM_Utils_Array::value('sort_name', $client), TRUE, $report->_redactionStringRules); + $client['sort_name'] = $report->redact($client['sort_name'] ?? NULL, TRUE, $report->_redactionStringRules); if (!empty($client['email']) && !array_key_exists($client['email'], $report->_redactionStringRules) ) { @@ -871,7 +871,7 @@ public static function printCaseReport() { [$client['email'] => 'email_' . rand(10000, 100000)] ); } - $client['email'] = $report->redact(CRM_Utils_Array::value('email', $client), TRUE, $report->_redactionStringRules); + $client['email'] = $report->redact($client['email'] ?? NULL, TRUE, $report->_redactionStringRules); if (!empty($client['phone']) && !array_key_exists($client['phone'], $report->_redactionStringRules) @@ -880,7 +880,7 @@ public static function printCaseReport() { [$client['phone'] => 'phone_' . rand(10000, 100000)] ); } - $client['phone'] = $report->redact(CRM_Utils_Array::value('phone', $client), TRUE, $report->_redactionStringRules); + $client['phone'] = $report->redact($client['phone'] ?? NULL, TRUE, $report->_redactionStringRules); } } // Retrieve ALL client relationships From 9acf629cf7667d782cc9d9c7f7e446572b095b5e Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:40:54 -0500 Subject: [PATCH 61/85] [REF] CRM/Misc - Refactor out uses of deprecated CRM_Utils_Array::value --- CRM/Contact/Selector.php | 5 +---- CRM/Core/BAO/WordReplacement.php | 4 ++-- CRM/Core/Invoke.php | 6 +----- CRM/Core/Page/AJAX/Location.php | 3 +-- CRM/Import/Parser.php | 2 +- CRM/UF/Form/Field.php | 6 +++--- CRM/Utils/Migrate/ImportJSON.php | 5 +---- 7 files changed, 10 insertions(+), 21 deletions(-) diff --git a/CRM/Contact/Selector.php b/CRM/Contact/Selector.php index 346fa3f4842e..2951e8b151f0 100644 --- a/CRM/Contact/Selector.php +++ b/CRM/Contact/Selector.php @@ -705,10 +705,7 @@ public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) { $row[$property] = $result->$greeting; } elseif (isset($pseudoconstants[$property])) { - $row[$property] = CRM_Utils_Array::value( - $result->{$pseudoconstants[$property]['dbName']}, - $pseudoconstants[$property]['values'] - ); + $row[$property] = $pseudoconstants[$property]['values'][$result->{$pseudoconstants[$property]['dbName']}] ?? NULL; } elseif (strpos($property, '-url') !== FALSE) { $websiteUrl = ''; diff --git a/CRM/Core/BAO/WordReplacement.php b/CRM/Core/BAO/WordReplacement.php index 8549ea741a27..268e8e71cfbe 100644 --- a/CRM/Core/BAO/WordReplacement.php +++ b/CRM/Core/BAO/WordReplacement.php @@ -45,7 +45,7 @@ public static function edit(&$params, &$id) { $wordReplacement->id = $id; $wordReplacement->copyValues($params); $wordReplacement->save(); - if (!isset($params['options']) || CRM_Utils_Array::value('wp-rebuild', $params['options'], TRUE)) { + if (!isset($params['options']) || ($params['options']['wp-rebuild'] ?? TRUE)) { self::rebuild(); } return $wordReplacement; @@ -66,7 +66,7 @@ public static function create($params) { $wordReplacement = new CRM_Core_DAO_WordReplacement(); $wordReplacement->copyValues($params); $wordReplacement->save(); - if (!isset($params['options']) || CRM_Utils_Array::value('wp-rebuild', $params['options'], TRUE)) { + if (!isset($params['options']) || ($params['options']['wp-rebuild'] ?? TRUE)) { self::rebuild(); } return $wordReplacement; diff --git a/CRM/Core/Invoke.php b/CRM/Core/Invoke.php index 2805f682fc90..a02ecf68b006 100644 --- a/CRM/Core/Invoke.php +++ b/CRM/Core/Invoke.php @@ -262,11 +262,7 @@ public static function runItem($item) { if (isset($item['return_url'])) { $session = CRM_Core_Session::singleton(); - $args = CRM_Utils_Array::value( - 'return_url_args', - $item, - 'reset=1' - ); + $args = $item['return_url_args'] ?? 'reset=1'; $session->pushUserContext(CRM_Utils_System::url($item['return_url'], $args)); } diff --git a/CRM/Core/Page/AJAX/Location.php b/CRM/Core/Page/AJAX/Location.php index 3965db8490b3..b55c1711ed68 100644 --- a/CRM/Core/Page/AJAX/Location.php +++ b/CRM/Core/Page/AJAX/Location.php @@ -131,8 +131,7 @@ public static function getPermissionedLocation() { } $elements["onbehalf_{$field}-{$locTypeId}"] = [ 'type' => $type, - 'value' => isset($location['address'][1]) ? CRM_Utils_Array::value($addField, - $location['address'][1]) : NULL, + 'value' => $location['address'][1][$addField] ?? NULL, ]; unset($profileFields["{$field}-{$locTypeId}"]); } diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index 96121ac87133..166d058d96e4 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -1140,7 +1140,7 @@ private function _civicrm_api3_deprecated_add_formatted_param(&$values, &$params // Check for custom field values if (empty($fields['custom'])) { - $fields['custom'] = &CRM_Core_BAO_CustomField::getFields(CRM_Utils_Array::value('contact_type', $values), + $fields['custom'] = &CRM_Core_BAO_CustomField::getFields($values['contact_type'] ?? NULL, FALSE, FALSE, NULL, NULL, FALSE, FALSE, FALSE ); } diff --git a/CRM/UF/Form/Field.php b/CRM/UF/Form/Field.php index 2fbd36a8b6db..167e43725e06 100644 --- a/CRM/UF/Form/Field.php +++ b/CRM/UF/Form/Field.php @@ -207,7 +207,7 @@ public function buildQuickForm() { $defaults['field_type'], ($defaults['field_type'] == "Formatting" ? "" : $defaults['field_name']), ($defaults['field_name'] == "url") ? $defaults['website_type_id'] : $defaults['location_type_id'], - CRM_Utils_Array::value('phone_type_id', $defaults), + $defaults['phone_type_id'] ?? NULL, ]; $this->_gid = $defaults['uf_group_id']; } @@ -548,7 +548,7 @@ public function postProcess() { CRM_Core_BAO_UFField::resetInSelectorANDSearchable($this->_gid); } - $this->setMessageIfCountryNotAboveState($fieldName, CRM_Utils_Array::value('location_type_id', $apiFormattedParams), $apiFormattedParams['weight'], $apiFormattedParams['uf_group_id']); + $this->setMessageIfCountryNotAboveState($fieldName, $apiFormattedParams['location_type_id'] ?? NULL, $apiFormattedParams['weight'], $apiFormattedParams['uf_group_id']); } $buttonName = $this->controller->getButtonName(); @@ -804,7 +804,7 @@ public static function formRule($fields, $files, $self) { $fieldType = $fields['field_name'][0]; //get the group type. - $groupType = CRM_Core_BAO_UFGroup::calculateGroupType($self->_gid, FALSE, CRM_Utils_Array::value('field_id', $fields)); + $groupType = CRM_Core_BAO_UFGroup::calculateGroupType($self->_gid, FALSE, $fields['field_id'] ?? NULL); switch ($fieldType) { case 'Contact': diff --git a/CRM/Utils/Migrate/ImportJSON.php b/CRM/Utils/Migrate/ImportJSON.php index bceb75c1480c..6cb06a29c915 100644 --- a/CRM/Utils/Migrate/ImportJSON.php +++ b/CRM/Utils/Migrate/ImportJSON.php @@ -215,10 +215,7 @@ public function restore(&$chunk, $daoName, $lookUpMapping = NULL, $dateFields = foreach ($columns as $k => $column) { if ($column == 'id') { $childID = $value[$k]; - $masterID = CRM_Utils_Array::value($value[$k], - $this->_lookupCache[$tableName], - NULL - ); + $masterID = $this->_lookupCache[$tableName][$value[$k]] ?? NULL; if ($masterID) { $object->id = $masterID; } From 65aa35fd21de9796909f81d3e2ce0223620ac338 Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 11 Feb 2025 10:27:15 -0500 Subject: [PATCH 62/85] CiviCase - Fix links and breadcrumbs when viewing case without cid in url Fixes dev/core#5721 --- CRM/Case/Form/CaseView.php | 27 ++++++++++++++++++++------- CRM/Case/Page/Tab.php | 2 -- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CRM/Case/Form/CaseView.php b/CRM/Case/Form/CaseView.php index ccbe73000909..38548961a483 100644 --- a/CRM/Case/Form/CaseView.php +++ b/CRM/Case/Form/CaseView.php @@ -44,6 +44,8 @@ class CRM_Case_Form_CaseView extends CRM_Core_Form { /** * ID of contact being viewed * + * This only makes a difference if the case has > 1 client + * * @var int * @internal */ @@ -79,6 +81,7 @@ class CRM_Case_Form_CaseView extends CRM_Core_Form { * Set variables up before form is built. */ public function preProcess() { + $this->_caseID = $caseId = (int) CRM_Utils_Request::retrieve('id', 'Positive', $this); $this->_showRelatedCases = (bool) ($_GET['relatedCases'] ?? FALSE); $xmlProcessorProcess = new CRM_Case_XMLProcessor_Process(); @@ -90,7 +93,6 @@ public function preProcess() { if ($this->_showRelatedCases) { $relatedCases = $this->get('relatedCases'); if (!isset($relatedCases)) { - $caseId = CRM_Utils_Request::retrieve('id', 'Integer'); $relatedCases = CRM_Case_BAO_Case::getRelatedCases($caseId); } $this->assign('relatedCases', $relatedCases); @@ -102,20 +104,24 @@ public function preProcess() { $this->_hasAccessToAllCases = CRM_Core_Permission::check('access all cases and activities'); $this->assign('hasAccessToAllCases', $this->_hasAccessToAllCases); - $this->assign('caseID', $this->_caseID = (int) $this->get('id')); - $this->_caseClients = CRM_Case_BAO_Case::getContactNames($this->_caseID); - $cid = $this->get('cid'); + $cid = (int) $this->get('cid'); // If no cid supplied, use first case client if (!$cid) { - $cid = array_keys($this->_caseClients)[0]; + $cid = (int) array_keys($this->_caseClients)[0]; + $this->set('cid', $cid); } - elseif (!isset($this->_caseClients[$cid])) { + if (!isset($this->_caseClients[$cid])) { CRM_Core_Error::statusBounce("Contact $cid not a client of case " . $this->_caseID); } - $this->assign('contactID', $this->_contactID = (int) $cid); + // Fixme: How many different legacy ways can we set these variables? + $this->_contactID = $cid; + $this->assign('contactID', $cid); + $this->assign('contactId', $cid); + $this->assign('caseID', $caseId); + $this->assign('caseId', $caseId); // Access check. if (!CRM_Case_BAO_Case::accessCase($this->_caseID, FALSE)) { @@ -218,6 +224,13 @@ public function preProcess() { CRM_Core_Permission::VIEW ); CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, FALSE, NULL, NULL, NULL, $this->_caseID); + + // Since cid is not necessarily in the url, fix breadcrumb (otherwise the link will look like `civicrm/contact/view?reset=1&cid=%%cid%%`) + CRM_Utils_System::resetBreadCrumb(); + CRM_Utils_System::appendBreadCrumb([ + ['title' => ts('CiviCRM'), 'url' => (string) Civi::url('current://civicrm', 'h')], + ['title' => ts('Contact Summary'), 'url' => (string) Civi::url("current://civicrm/contact/view?reset=1&cid=$cid", 'h')], + ]); } /** diff --git a/CRM/Case/Page/Tab.php b/CRM/Case/Page/Tab.php index 0c31b5baa2c9..b96adcc355bf 100644 --- a/CRM/Case/Page/Tab.php +++ b/CRM/Case/Page/Tab.php @@ -195,10 +195,8 @@ public function run() { * (reference) of action links */ public static function &links() { - $config = CRM_Core_Config::singleton(); if (!(self::$_links)) { - $deleteExtra = ts('Are you sure you want to delete this case?'); self::$_links = [ CRM_Core_Action::VIEW => [ 'name' => ts('Manage'), From 2f6224e6b7f9c2c19dc2c1266fdd0ed5d5438467 Mon Sep 17 00:00:00 2001 From: Shane Date: Fri, 6 Dec 2024 11:25:57 -0500 Subject: [PATCH 63/85] dev/core#5578 Adding Recurring tokens to Contribution/Membership tokens available --- CRM/Contribute/Tokens.php | 2 +- CRM/Member/Tokens.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contribute/Tokens.php b/CRM/Contribute/Tokens.php index 625496528f87..66f6323646a1 100644 --- a/CRM/Contribute/Tokens.php +++ b/CRM/Contribute/Tokens.php @@ -79,7 +79,7 @@ protected function getRelatedTokens(): array { $contributionPageTokens = ['frontend_title', 'pay_later_text', 'pay_later_receipt', 'is_share', 'receipt_text']; $tokens += $this->getRelatedTokensForEntity('ContributionPage', 'contribution_page_id', $contributionPageTokens, ['is_share']); - $hiddenTokens = ['modified_date', 'create_date', 'trxn_id', 'invoice_id', 'is_test', 'payment_token_id', 'payment_processor_id', 'payment_instrument_id', 'cycle_day', 'installments', 'processor_id', 'next_sched_contribution_date', 'failure_count', 'failure_retry_date', 'auto_renew', 'is_email_receipt', 'contribution_status_id']; + $hiddenTokens = ['modified_date', 'create_date', 'trxn_id', 'invoice_id', 'is_test', 'payment_token_id', 'payment_processor_id', 'payment_instrument_id', 'cycle_day', 'installments', 'processor_id', 'auto_renew', 'is_email_receipt', 'contribution_status_id']; $tokens += $this->getRelatedTokensForEntity('ContributionRecur', 'contribution_recur_id', ['*'], $hiddenTokens); return $tokens; } diff --git a/CRM/Member/Tokens.php b/CRM/Member/Tokens.php index f6967644214f..badd17f8c0dd 100644 --- a/CRM/Member/Tokens.php +++ b/CRM/Member/Tokens.php @@ -144,7 +144,7 @@ protected function getBespokeTokens(): array { */ protected function getRelatedTokens(): array { $tokens = []; - $hiddenTokens = ['modified_date', 'create_date', 'trxn_id', 'invoice_id', 'is_test', 'payment_token_id', 'payment_processor_id', 'payment_instrument_id', 'cycle_day', 'installments', 'processor_id', 'next_sched_contribution_date', 'failure_count', 'failure_retry_date', 'auto_renew', 'is_email_receipt', 'contribution_status_id']; + $hiddenTokens = ['modified_date', 'create_date', 'trxn_id', 'invoice_id', 'is_test', 'payment_token_id', 'payment_processor_id', 'payment_instrument_id', 'cycle_day', 'installments', 'processor_id', 'auto_renew', 'is_email_receipt', 'contribution_status_id']; $tokens += $this->getRelatedTokensForEntity('ContributionRecur', 'contribution_recur_id', ['*'], $hiddenTokens); $tokens += $this->getRelatedTokensForEntity('MembershipType', 'membership_type_id', ['minimum_fee']); $tokens += $this->getRelatedTokensForEntity('MembershipStatus', 'status_id', ['is_new']); From ec46f8b55edcc72fc6f2ad822529e5c8113cdeda Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 11 Feb 2025 11:01:31 -0500 Subject: [PATCH 64/85] Standalone - Fix crash when viewing afform If an afform is in the menu, and the parent of that menu item has a url, the afform gets a special breadcrumb. This was crashing on standalone because Civi::url returns a stringable object, not a string, which cannot be directly used as an array key. --- CRM/Utils/System/Standalone.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CRM/Utils/System/Standalone.php b/CRM/Utils/System/Standalone.php index ef8847090174..6ac8424e356d 100644 --- a/CRM/Utils/System/Standalone.php +++ b/CRM/Utils/System/Standalone.php @@ -145,10 +145,9 @@ public function appendBreadCrumb($breadcrumbs) { \Civi::log()->warning('Non-array passed to appendBreadCrumb'); return; } - $crumbs = \Civi::$statics[__CLASS__]['breadcrumb'] ?? []; - $crumbs += array_column($breadcrumbs, NULL, 'url'); - \Civi::$statics[__CLASS__]['breadcrumb'] = $crumbs; - CRM_Core_Smarty::singleton()->assign('breadcrumb', array_values($crumbs)); + $allCrumbs = array_merge(\Civi::$statics[__CLASS__]['breadcrumb'] ?? [], $breadcrumbs); + \Civi::$statics[__CLASS__]['breadcrumb'] = $allCrumbs; + CRM_Core_Smarty::singleton()->assign('breadcrumb', array_values($allCrumbs)); } /** From 7921523bc29e7f26cef74d816ff55054218ea653 Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 11 Feb 2025 11:03:07 -0500 Subject: [PATCH 65/85] Afform - Breadcrumb format fixes If an afform is in the menu, and the parent of that menu item has a url, the afform gets a special breadcrumb. This fixes a couple formatting issues with it: 1. The 'h' flag wasn't being passed for html escaping of the breadcrumb url. 2. The menu label wasn't being translated. --- ext/afform/core/CRM/Afform/Page/AfformBase.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ext/afform/core/CRM/Afform/Page/AfformBase.php b/ext/afform/core/CRM/Afform/Page/AfformBase.php index 9692e174b8a8..dc11e6cbcc84 100644 --- a/ext/afform/core/CRM/Afform/Page/AfformBase.php +++ b/ext/afform/core/CRM/Afform/Page/AfformBase.php @@ -33,8 +33,10 @@ public function run() { ->execute()->first(); if (!empty($navParent['url'])) { CRM_Utils_System::resetBreadCrumb(); - CRM_Utils_System::appendBreadCrumb([['title' => E::ts('CiviCRM'), 'url' => Civi::url('current://civicrm')]]); - CRM_Utils_System::appendBreadCrumb([['title' => $navParent['label'], 'url' => Civi::url('current://' . $navParent['url'])]]); + CRM_Utils_System::appendBreadCrumb([ + ['title' => E::ts('CiviCRM'), 'url' => Civi::url('current://civicrm', 'h')], + ['title' => ts($navParent['label']), 'url' => Civi::url('current://' . $navParent['url'], 'h')], + ]); } } } From 1d2951953d460a3e82824053c388ffde36ca4625 Mon Sep 17 00:00:00 2001 From: William Mortada Date: Tue, 11 Feb 2025 09:39:16 +0000 Subject: [PATCH 66/85] Fix typo in release notes Fixes an issue in the Extension File Overrides extension that parses the release notes: https://github.com/konadave/com.klangsoft.overrides/issues/11 --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index e211f3d1a80e..e2b23ab9f7c8 100644 --- a/release-notes.md +++ b/release-notes.md @@ -28,7 +28,7 @@ Released February 5, 2025 ## CiviCRM 5.81.0 -eleased January 8, 2025 +Released January 8, 2025 - **[Synopsis](release-notes/5.81.0.md#synopsis)** - **[Features](release-notes/5.81.0.md#features)** From 122b94ad4b96fb460aaad09ed6a75aad2e63af19 Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Tue, 11 Feb 2025 14:56:53 -0500 Subject: [PATCH 67/85] don't send email when changing payment method --- CRM/Financial/Form/PaymentEdit.php | 1 + tests/phpunit/CRM/Financial/Form/PaymentEditTest.php | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CRM/Financial/Form/PaymentEdit.php b/CRM/Financial/Form/PaymentEdit.php index 682b5ea2f909..1c900a1f91ed 100644 --- a/CRM/Financial/Form/PaymentEdit.php +++ b/CRM/Financial/Form/PaymentEdit.php @@ -226,6 +226,7 @@ protected function submit($submittedValues) { $newFinancialTrxn['total_amount'] = $this->_values['total_amount']; $newFinancialTrxn['currency'] = $this->_values['currency']; $newFinancialTrxn['contribution_id'] = $this->getContributionID(); + $newFinancialTrxn['is_send_contribution_notification'] = FALSE; $newFinancialTrxn += $this->getSubmittedCustomFields(); civicrm_api3('Payment', 'create', $newFinancialTrxn); } diff --git a/tests/phpunit/CRM/Financial/Form/PaymentEditTest.php b/tests/phpunit/CRM/Financial/Form/PaymentEditTest.php index 65e27635c532..5515d5bb6bbb 100644 --- a/tests/phpunit/CRM/Financial/Form/PaymentEditTest.php +++ b/tests/phpunit/CRM/Financial/Form/PaymentEditTest.php @@ -66,10 +66,11 @@ public function testSubmitOnPaymentInstrumentChange(): void { 'trxn_id' => 'txn_12', 'trxn_date' => date('Y-m-d H:i:s'), ]; - $this->getTestForm('CRM_Financial_Form_PaymentEdit', $params, [ + $email = $this->getTestForm('CRM_Financial_Form_PaymentEdit', $params, [ 'contribution_id' => $contribution['id'], 'id' => $financialTrxnInfo['id'], - ])->processForm(); + ])->processForm()->getFirstMail(); + $this->assertEmpty($email, 'Changing payment method should not send an email'); $payments = CRM_Contribute_BAO_Contribution::getPaymentInfo($contribution['id'], 'contribute', TRUE); $expectedPaymentParams = [ From 38aad63a73554f72e91e295b769c4d46ca45fb7b Mon Sep 17 00:00:00 2001 From: Shane Date: Tue, 11 Feb 2025 14:01:12 -0500 Subject: [PATCH 68/85] Adding appropriate unit testing for new tokens --- tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php | 3 +++ tests/phpunit/CRM/Utils/TokenConsistencyTest.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php b/tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php index 12e3a3a85f78..d39ab3b72ec0 100644 --- a/tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php +++ b/tests/phpunit/CRM/Contribute/ActionMapping/ByTypeTest.php @@ -465,6 +465,9 @@ public function testTokenRendering(): void { 'contribution_recur_id.cancel_date' => 'Cancel Date', 'contribution_recur_id.cancel_reason' => 'Cancellation Reason', 'contribution_recur_id.end_date' => 'Recurring Contribution End Date', + 'contribution_recur_id.next_sched_contribution_date' => 'Next Scheduled Contribution Date', + 'contribution_recur_id.failure_count' => 'Number of Failures', + 'contribution_recur_id.failure_retry_date' => 'Retry Failed Attempt Date', 'contribution_recur_id.financial_type_id' => 'Financial Type ID', 'contribution_recur_id.campaign_id' => 'Campaign ID', 'contribution_page_id.frontend_title' => 'Public Title', diff --git a/tests/phpunit/CRM/Utils/TokenConsistencyTest.php b/tests/phpunit/CRM/Utils/TokenConsistencyTest.php index 37eb9e9d34b4..2425b174b735 100644 --- a/tests/phpunit/CRM/Utils/TokenConsistencyTest.php +++ b/tests/phpunit/CRM/Utils/TokenConsistencyTest.php @@ -1085,6 +1085,9 @@ protected function getRecurEntityTokens(string $entity): array { '{' . $entity . '.contribution_recur_id.cancel_date}' => 'Cancel Date', '{' . $entity . '.contribution_recur_id.cancel_reason}' => 'Cancellation Reason', '{' . $entity . '.contribution_recur_id.end_date}' => 'Recurring Contribution End Date', + '{' . $entity . '.contribution_recur_id.next_sched_contribution_date}' => 'Next Scheduled Contribution Date', + '{' . $entity . '.contribution_recur_id.failure_count}' => 'Number of Failures', + '{' . $entity . '.contribution_recur_id.failure_retry_date}' => 'Retry Failed Attempt Date', '{' . $entity . '.contribution_recur_id.financial_type_id}' => 'Financial Type ID', ]; } From 4040cc6f9f2ff514356854e5903edcf0c6507435 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 10 Feb 2025 22:59:13 -0500 Subject: [PATCH 69/85] ScheduledCommunications - Increase length of fields used by SearchKit for communications Fixes dev/core#5725 --- CRM/Upgrade/Incremental/php/SixZero.php | 30 +++++++++++++++++++++++ schema/Core/ActionSchedule.entityType.php | 4 +-- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CRM/Upgrade/Incremental/php/SixZero.php b/CRM/Upgrade/Incremental/php/SixZero.php index ba88247be73a..76f61bf2873c 100644 --- a/CRM/Upgrade/Incremental/php/SixZero.php +++ b/CRM/Upgrade/Incremental/php/SixZero.php @@ -44,6 +44,36 @@ public function upgrade_6_0_alpha1($rev): void { ); $this->addTask('Set a default activity priority', 'addActivityPriorityDefault'); $this->addSimpleExtensionTask('Enable dedupe backward compatibility', ['legacydedupefinder']); + $this->addTask('Increase field length of civicrm_action_schedule.entity_status', 'alterSchemaField', 'ActionSchedule', 'entity_status', [ + 'title' => ts('Entity Status'), + 'sql_type' => 'varchar(255)', + 'input_type' => 'Select', + 'description' => ts('Entity status'), + 'add' => '3.4', + 'serialize' => CRM_Core_DAO::SERIALIZE_SEPARATOR_TRIMMED, + 'input_attrs' => [ + 'label' => ts('Entity Status'), + 'multiple' => '1', + 'control_field' => 'entity_value', + ], + 'pseudoconstant' => [ + 'callback' => ['CRM_Core_BAO_ActionSchedule', 'getEntityStatusOptions'], + ], + ]); + $this->addTask('Increase field length of civicrm_action_schedule.start_action_date', 'alterSchemaField', 'ActionSchedule', 'start_action_date', [ + 'title' => ts('Start Action Date'), + 'sql_type' => 'varchar(2048)', + 'input_type' => 'Select', + 'description' => ts('Entity date'), + 'add' => '3.4', + 'input_attrs' => [ + 'label' => ts('Start Date'), + 'control_field' => 'entity_value', + ], + 'pseudoconstant' => [ + 'callback' => ['CRM_Core_BAO_ActionSchedule', 'getActionDateOptions'], + ], + ]); } public static function migrateFromEmailAddressValues($rev): bool { diff --git a/schema/Core/ActionSchedule.entityType.php b/schema/Core/ActionSchedule.entityType.php index 0aef871e5474..4c78cd19741b 100644 --- a/schema/Core/ActionSchedule.entityType.php +++ b/schema/Core/ActionSchedule.entityType.php @@ -97,7 +97,7 @@ ], 'entity_status' => [ 'title' => ts('Entity Status'), - 'sql_type' => 'varchar(64)', + 'sql_type' => 'varchar(255)', 'input_type' => 'Select', 'description' => ts('Entity status'), 'add' => '3.4', @@ -152,7 +152,7 @@ ], 'start_action_date' => [ 'title' => ts('Start Action Date'), - 'sql_type' => 'varchar(64)', + 'sql_type' => 'varchar(2048)', 'input_type' => 'Select', 'description' => ts('Entity date'), 'add' => '3.4', From 99c98c1adc728c368e87d19c5870dac6115abc70 Mon Sep 17 00:00:00 2001 From: eileen Date: Wed, 12 Feb 2025 10:17:04 +1300 Subject: [PATCH 70/85] Run regen --- sql/civicrm_generated.mysql | 21923 +++++++++++++++++----------------- 1 file changed, 10977 insertions(+), 10946 deletions(-) diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index 2bbb3e552ec4..24c98dbd86f4 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,16 +1,15 @@ --- MySQL dump 10.13 Distrib 5.7.37, for Linux (x86_64) +-- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for debian-linux-gnu (x86_64) -- --- Host: 127.0.0.1 Database: dmastercivi_ssc8b +-- Host: database Database: dmastercivicrm -- ------------------------------------------------------ --- Server version 5.7.37 +-- Server version 10.4.32-MariaDB-1:10.4.32+maria~ubu2004 /*!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 */; +/*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; @@ -23,7 +22,7 @@ LOCK TABLES `civicrm_acl` WRITE; /*!40000 ALTER TABLE `civicrm_acl` DISABLE KEYS */; INSERT INTO `civicrm_acl` (`id`, `name`, `deny`, `entity_table`, `entity_id`, `operation`, `object_table`, `object_id`, `acl_table`, `acl_id`, `is_active`, `priority`) VALUES (1,'Edit All Contacts',0,'civicrm_acl_role',1,'Edit','civicrm_group',0,NULL,NULL,1,1), - (2,'Advisory board access to volunteers',0,'civicrm_acl_role',2,'Edit','civicrm_group',3,NULL,NULL,1,2); +(2,'Advisory board access to volunteers',0,'civicrm_acl_role',2,'Edit','civicrm_group',3,NULL,NULL,1,2); /*!40000 ALTER TABLE `civicrm_acl` ENABLE KEYS */; UNLOCK TABLES; @@ -53,7 +52,7 @@ LOCK TABLES `civicrm_acl_entity_role` WRITE; /*!40000 ALTER TABLE `civicrm_acl_entity_role` DISABLE KEYS */; INSERT INTO `civicrm_acl_entity_role` (`id`, `acl_role_id`, `entity_table`, `entity_id`, `is_active`) VALUES (1,1,'civicrm_group',1,1), - (2,3,'civicrm_group',4,1); +(2,3,'civicrm_group',4,1); /*!40000 ALTER TABLE `civicrm_acl_entity_role` ENABLE KEYS */; UNLOCK TABLES; @@ -82,647 +81,647 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES - (1,NULL,22,'Subject for Print/Merge Document','2024-03-13 07:31:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (2,NULL,9,'Subject for Tell a Friend','2024-04-10 19:27:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (3,NULL,9,'Subject for Tell a Friend','2024-10-16 23:16:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (4,NULL,1,'Subject for Meeting','2024-10-09 23:06:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (5,NULL,1,'Subject for Meeting','2024-12-17 18:26:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (6,NULL,56,'Subject for Interview','2024-08-28 12:31:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (7,NULL,22,'Subject for Print/Merge Document','2024-06-16 11:02:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (8,NULL,1,'Subject for Meeting','2024-07-15 06:36:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (9,NULL,1,'Subject for Meeting','2024-11-23 10:30:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (10,NULL,1,'Subject for Meeting','2024-06-04 07:55:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (11,NULL,56,'Subject for Interview','2024-10-04 17:48:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (12,NULL,2,'Subject for Phone Call','2024-07-14 11:50:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (13,NULL,22,'Subject for Print/Merge Document','2024-11-24 16:10:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (14,NULL,2,'Subject for Phone Call','2024-03-13 16:46:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (15,NULL,2,'Subject for Phone Call','2024-09-09 10:27:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (16,NULL,2,'Subject for Phone Call','2024-04-19 01:37:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (17,NULL,1,'Subject for Meeting','2024-10-01 01:32:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (18,NULL,56,'Subject for Interview','2024-04-04 00:02:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (19,NULL,1,'Subject for Meeting','2024-11-29 08:02:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (20,NULL,56,'Subject for Interview','2024-07-29 14:39:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (21,NULL,22,'Subject for Print/Merge Document','2024-08-17 02:00:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (22,NULL,1,'Subject for Meeting','2024-07-03 15:57:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (23,NULL,9,'Subject for Tell a Friend','2024-12-14 08:06:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (24,NULL,2,'Subject for Phone Call','2024-03-14 22:43:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (25,NULL,22,'Subject for Print/Merge Document','2024-07-05 04:18:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (26,NULL,56,'Subject for Interview','2024-03-01 01:33:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (27,NULL,56,'Subject for Interview','2024-09-02 15:50:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (28,NULL,9,'Subject for Tell a Friend','2024-05-27 07:56:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (29,NULL,22,'Subject for Print/Merge Document','2024-07-26 14:18:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (30,NULL,22,'Subject for Print/Merge Document','2024-05-06 07:43:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (31,NULL,9,'Subject for Tell a Friend','2024-03-06 00:17:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (32,NULL,56,'Subject for Interview','2024-12-28 09:01:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (33,NULL,1,'Subject for Meeting','2024-02-21 12:35:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (34,NULL,9,'Subject for Tell a Friend','2024-08-16 10:16:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (35,NULL,2,'Subject for Phone Call','2024-05-19 16:19:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (36,NULL,9,'Subject for Tell a Friend','2024-05-23 14:04:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (37,NULL,56,'Subject for Interview','2024-04-14 14:01:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (38,NULL,1,'Subject for Meeting','2024-07-29 10:30:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (39,NULL,22,'Subject for Print/Merge Document','2024-04-14 04:02:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (40,NULL,56,'Subject for Interview','2024-11-11 15:01:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (41,NULL,22,'Subject for Print/Merge Document','2024-06-29 19:03:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (42,NULL,56,'Subject for Interview','2024-03-03 13:55:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (43,NULL,2,'Subject for Phone Call','2024-06-02 15:02:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (44,NULL,1,'Subject for Meeting','2024-11-26 06:06:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (45,NULL,1,'Subject for Meeting','2024-10-27 19:54:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (46,NULL,9,'Subject for Tell a Friend','2024-06-08 08:53:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (47,NULL,1,'Subject for Meeting','2024-11-12 12:08:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (48,NULL,9,'Subject for Tell a Friend','2024-07-08 17:47:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (49,NULL,2,'Subject for Phone Call','2024-02-21 17:44:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (50,NULL,22,'Subject for Print/Merge Document','2024-09-23 15:49:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (51,NULL,22,'Subject for Print/Merge Document','2024-09-15 13:40:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (52,NULL,22,'Subject for Print/Merge Document','2024-09-04 03:34:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (53,NULL,9,'Subject for Tell a Friend','2024-04-30 05:54:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (54,NULL,2,'Subject for Phone Call','2024-08-27 09:58:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (55,NULL,2,'Subject for Phone Call','2024-05-30 10:43:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (56,NULL,56,'Subject for Interview','2024-12-27 04:54:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (57,NULL,56,'Subject for Interview','2024-12-09 20:40:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (58,NULL,22,'Subject for Print/Merge Document','2024-08-11 01:56:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (59,NULL,9,'Subject for Tell a Friend','2024-11-02 12:32:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (60,NULL,1,'Subject for Meeting','2024-12-31 17:24:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (61,NULL,9,'Subject for Tell a Friend','2024-10-25 23:25:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (62,NULL,56,'Subject for Interview','2024-05-13 04:20:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (63,NULL,22,'Subject for Print/Merge Document','2024-07-19 10:42:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (64,NULL,22,'Subject for Print/Merge Document','2024-05-07 08:35:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (65,NULL,9,'Subject for Tell a Friend','2024-02-22 10:02:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (66,NULL,9,'Subject for Tell a Friend','2024-11-09 01:21:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (67,NULL,1,'Subject for Meeting','2025-01-03 06:48:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (68,NULL,56,'Subject for Interview','2024-10-10 14:51:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (69,NULL,2,'Subject for Phone Call','2024-10-10 01:30:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (70,NULL,9,'Subject for Tell a Friend','2024-05-31 12:10:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (71,NULL,9,'Subject for Tell a Friend','2024-05-30 10:14:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (72,NULL,56,'Subject for Interview','2024-08-03 00:45:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (73,NULL,1,'Subject for Meeting','2024-08-25 09:33:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (74,NULL,9,'Subject for Tell a Friend','2024-09-15 00:09:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (75,NULL,1,'Subject for Meeting','2024-07-15 11:01:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (76,NULL,56,'Subject for Interview','2024-08-02 00:29:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (77,NULL,9,'Subject for Tell a Friend','2024-12-23 08:27:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (78,NULL,56,'Subject for Interview','2024-09-23 14:48:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (79,NULL,2,'Subject for Phone Call','2024-03-12 19:35:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (80,NULL,2,'Subject for Phone Call','2024-03-24 02:27:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (81,NULL,56,'Subject for Interview','2024-07-23 19:28:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (82,NULL,56,'Subject for Interview','2024-05-03 15:51:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (83,NULL,22,'Subject for Print/Merge Document','2024-11-03 11:09:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (84,NULL,2,'Subject for Phone Call','2024-12-20 17:11:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (85,NULL,1,'Subject for Meeting','2025-01-29 14:47:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (86,NULL,2,'Subject for Phone Call','2024-11-26 21:58:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (87,NULL,22,'Subject for Print/Merge Document','2024-09-27 02:24:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (88,NULL,1,'Subject for Meeting','2024-10-19 17:04:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (89,NULL,1,'Subject for Meeting','2024-03-25 10:33:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (90,NULL,9,'Subject for Tell a Friend','2024-10-13 11:56:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (91,NULL,1,'Subject for Meeting','2024-10-09 01:56:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (92,NULL,2,'Subject for Phone Call','2024-07-14 20:42:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (93,NULL,1,'Subject for Meeting','2024-05-31 18:10:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (94,NULL,56,'Subject for Interview','2024-11-20 21:51:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (95,NULL,56,'Subject for Interview','2024-03-19 16:57:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (96,NULL,2,'Subject for Phone Call','2024-08-18 15:29:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (97,NULL,56,'Subject for Interview','2024-07-19 16:53:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (98,NULL,22,'Subject for Print/Merge Document','2024-05-31 23:53:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (99,NULL,1,'Subject for Meeting','2024-11-13 00:28:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (100,NULL,9,'Subject for Tell a Friend','2024-07-13 00:23:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (101,NULL,22,'Subject for Print/Merge Document','2024-03-04 14:48:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (102,NULL,1,'Subject for Meeting','2025-02-04 09:23:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (103,NULL,2,'Subject for Phone Call','2025-01-24 14:49:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (104,NULL,2,'Subject for Phone Call','2024-07-05 12:11:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (105,NULL,2,'Subject for Phone Call','2024-02-19 09:08:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (106,NULL,9,'Subject for Tell a Friend','2024-06-06 18:48:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (107,NULL,22,'Subject for Print/Merge Document','2024-02-23 00:29:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (108,NULL,56,'Subject for Interview','2025-01-25 14:12:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (109,NULL,1,'Subject for Meeting','2024-10-11 18:17:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (110,NULL,22,'Subject for Print/Merge Document','2024-07-30 10:37:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (111,NULL,1,'Subject for Meeting','2024-04-16 11:49:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (112,NULL,1,'Subject for Meeting','2024-12-30 08:15:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (113,NULL,1,'Subject for Meeting','2024-12-22 12:26:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (114,NULL,2,'Subject for Phone Call','2024-09-18 16:57:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (115,NULL,9,'Subject for Tell a Friend','2024-02-23 07:57:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (116,NULL,22,'Subject for Print/Merge Document','2024-03-21 01:04:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (117,NULL,2,'Subject for Phone Call','2024-05-20 18:09:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (118,NULL,1,'Subject for Meeting','2024-04-19 12:09:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (119,NULL,22,'Subject for Print/Merge Document','2024-08-14 10:55:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (120,NULL,2,'Subject for Phone Call','2024-04-07 00:23:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (121,NULL,56,'Subject for Interview','2024-07-22 10:44:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (122,NULL,22,'Subject for Print/Merge Document','2024-06-13 12:05:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (123,NULL,9,'Subject for Tell a Friend','2024-07-15 14:04:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (124,NULL,1,'Subject for Meeting','2024-03-27 13:21:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (125,NULL,56,'Subject for Interview','2024-02-14 14:12:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (126,NULL,2,'Subject for Phone Call','2024-11-21 19:45:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (127,NULL,22,'Subject for Print/Merge Document','2024-10-03 14:17:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (128,NULL,56,'Subject for Interview','2024-08-01 00:45:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (129,NULL,22,'Subject for Print/Merge Document','2024-09-22 20:51:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (130,NULL,56,'Subject for Interview','2024-06-28 09:40:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (131,NULL,22,'Subject for Print/Merge Document','2025-02-05 07:47:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (132,NULL,9,'Subject for Tell a Friend','2024-09-30 05:20:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (133,NULL,56,'Subject for Interview','2024-09-01 21:03:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (134,NULL,1,'Subject for Meeting','2024-09-19 10:32:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (135,NULL,56,'Subject for Interview','2024-03-25 04:22:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (136,NULL,1,'Subject for Meeting','2024-10-24 02:10:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (137,NULL,22,'Subject for Print/Merge Document','2024-08-02 16:25:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (138,NULL,9,'Subject for Tell a Friend','2024-12-02 00:45:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (139,NULL,9,'Subject for Tell a Friend','2024-10-12 12:18:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (140,NULL,9,'Subject for Tell a Friend','2024-03-02 16:33:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (141,NULL,1,'Subject for Meeting','2024-10-12 14:26:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (142,NULL,2,'Subject for Phone Call','2024-10-25 16:31:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (143,NULL,22,'Subject for Print/Merge Document','2024-09-22 12:47:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (144,NULL,1,'Subject for Meeting','2024-04-20 22:19:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (145,NULL,2,'Subject for Phone Call','2024-03-19 08:08:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (146,NULL,22,'Subject for Print/Merge Document','2024-04-19 20:42:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (147,NULL,1,'Subject for Meeting','2024-02-24 13:09:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (148,NULL,2,'Subject for Phone Call','2024-02-09 19:07:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (149,NULL,9,'Subject for Tell a Friend','2024-07-22 07:59:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (150,NULL,9,'Subject for Tell a Friend','2024-08-13 12:52:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (151,NULL,22,'Subject for Print/Merge Document','2024-10-18 08:38:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (152,NULL,9,'Subject for Tell a Friend','2024-12-29 12:12:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (153,NULL,2,'Subject for Phone Call','2024-09-01 18:14:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (154,NULL,56,'Subject for Interview','2024-02-15 14:02:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (155,NULL,56,'Subject for Interview','2024-03-04 23:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (156,NULL,22,'Subject for Print/Merge Document','2024-04-28 01:05:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (157,NULL,22,'Subject for Print/Merge Document','2024-04-20 23:35:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (158,NULL,1,'Subject for Meeting','2024-05-02 13:47:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (159,NULL,22,'Subject for Print/Merge Document','2024-04-15 21:36:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (160,NULL,9,'Subject for Tell a Friend','2024-06-26 05:34:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (161,NULL,9,'Subject for Tell a Friend','2024-10-14 01:29:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (162,NULL,22,'Subject for Print/Merge Document','2024-02-19 05:03:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (163,NULL,2,'Subject for Phone Call','2024-10-30 22:17:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (164,NULL,22,'Subject for Print/Merge Document','2025-01-16 15:52:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (165,NULL,2,'Subject for Phone Call','2024-11-13 12:51:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (166,NULL,1,'Subject for Meeting','2024-08-07 05:27:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (167,NULL,22,'Subject for Print/Merge Document','2024-10-23 22:01:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (168,NULL,22,'Subject for Print/Merge Document','2024-08-08 18:07:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (169,NULL,22,'Subject for Print/Merge Document','2024-11-12 14:40:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (170,NULL,56,'Subject for Interview','2024-07-07 02:43:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (171,NULL,2,'Subject for Phone Call','2024-08-02 06:31:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (172,NULL,22,'Subject for Print/Merge Document','2024-10-11 07:31:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (173,NULL,1,'Subject for Meeting','2024-04-20 11:27:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (174,NULL,56,'Subject for Interview','2024-11-17 14:18:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (175,NULL,2,'Subject for Phone Call','2024-08-07 18:09:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (176,NULL,22,'Subject for Print/Merge Document','2024-06-05 07:18:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (177,NULL,22,'Subject for Print/Merge Document','2024-11-14 06:52:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (178,NULL,56,'Subject for Interview','2025-01-09 17:10:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (179,NULL,1,'Subject for Meeting','2024-12-02 05:49:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (180,NULL,1,'Subject for Meeting','2024-04-25 08:28:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (181,NULL,2,'Subject for Phone Call','2024-02-18 09:46:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (182,NULL,22,'Subject for Print/Merge Document','2024-09-07 11:42:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (183,NULL,1,'Subject for Meeting','2024-08-27 00:55:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (184,NULL,1,'Subject for Meeting','2024-03-22 22:37:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (185,NULL,1,'Subject for Meeting','2024-09-08 00:52:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (186,NULL,9,'Subject for Tell a Friend','2024-12-03 15:32:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (187,NULL,2,'Subject for Phone Call','2024-11-17 23:20:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (188,NULL,9,'Subject for Tell a Friend','2024-08-11 19:46:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (189,NULL,22,'Subject for Print/Merge Document','2024-11-15 16:28:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (190,NULL,22,'Subject for Print/Merge Document','2024-12-10 17:28:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (191,NULL,56,'Subject for Interview','2024-11-15 06:06:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (192,NULL,9,'Subject for Tell a Friend','2024-03-20 18:09:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (193,NULL,1,'Subject for Meeting','2024-06-24 10:03:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (194,NULL,1,'Subject for Meeting','2024-03-05 13:36:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (195,NULL,22,'Subject for Print/Merge Document','2024-12-02 01:46:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (196,NULL,2,'Subject for Phone Call','2024-10-07 19:29:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (197,NULL,9,'Subject for Tell a Friend','2025-01-05 08:06:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (198,NULL,56,'Subject for Interview','2024-12-12 20:31:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (199,NULL,56,'Subject for Interview','2024-03-07 18:39:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (200,NULL,22,'Subject for Print/Merge Document','2024-07-10 08:29:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (201,NULL,22,'Subject for Print/Merge Document','2024-07-21 08:59:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (202,NULL,1,'Subject for Meeting','2024-03-31 01:40:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (203,NULL,22,'Subject for Print/Merge Document','2024-10-25 03:25:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (204,NULL,2,'Subject for Phone Call','2024-02-14 14:57:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (205,NULL,1,'Subject for Meeting','2024-07-14 14:03:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (206,NULL,1,'Subject for Meeting','2024-09-18 02:28:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (207,NULL,1,'Subject for Meeting','2024-11-23 17:48:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (208,NULL,56,'Subject for Interview','2024-08-09 08:02:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (209,NULL,56,'Subject for Interview','2024-03-20 23:35:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (210,NULL,2,'Subject for Phone Call','2024-09-10 14:30:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (211,NULL,22,'Subject for Print/Merge Document','2024-02-11 18:01:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (212,NULL,2,'Subject for Phone Call','2024-07-04 07:29:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (213,NULL,9,'Subject for Tell a Friend','2024-04-02 14:41:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (214,NULL,9,'Subject for Tell a Friend','2024-04-24 18:14:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (215,NULL,9,'Subject for Tell a Friend','2025-01-26 13:43:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (216,NULL,9,'Subject for Tell a Friend','2024-03-28 04:10:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (217,NULL,9,'Subject for Tell a Friend','2024-12-05 11:40:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (218,NULL,56,'Subject for Interview','2024-09-29 19:10:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (219,NULL,22,'Subject for Print/Merge Document','2024-06-07 11:03:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (220,NULL,22,'Subject for Print/Merge Document','2024-10-18 01:55:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (221,NULL,9,'Subject for Tell a Friend','2024-11-13 00:15:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (222,NULL,22,'Subject for Print/Merge Document','2024-07-10 20:06:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (223,NULL,56,'Subject for Interview','2024-04-30 04:58:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (224,NULL,9,'Subject for Tell a Friend','2024-05-17 12:02:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (225,NULL,1,'Subject for Meeting','2024-09-05 10:22:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (226,NULL,56,'Subject for Interview','2024-03-31 18:40:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (227,NULL,9,'Subject for Tell a Friend','2024-02-12 12:00:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (228,NULL,1,'Subject for Meeting','2024-02-23 18:27:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (229,NULL,1,'Subject for Meeting','2024-06-04 02:51:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (230,NULL,22,'Subject for Print/Merge Document','2024-03-01 12:52:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (231,NULL,2,'Subject for Phone Call','2024-05-17 23:32:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (232,NULL,22,'Subject for Print/Merge Document','2024-10-19 10:03:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (233,NULL,1,'Subject for Meeting','2024-04-16 12:27:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (234,NULL,1,'Subject for Meeting','2024-10-29 05:19:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (235,NULL,22,'Subject for Print/Merge Document','2024-12-29 08:15:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (236,NULL,9,'Subject for Tell a Friend','2024-11-17 02:53:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (237,NULL,56,'Subject for Interview','2024-10-14 04:56:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (238,NULL,2,'Subject for Phone Call','2024-07-16 14:05:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (239,NULL,9,'Subject for Tell a Friend','2025-01-12 16:05:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (240,NULL,1,'Subject for Meeting','2024-05-05 20:20:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (241,NULL,22,'Subject for Print/Merge Document','2024-04-26 02:38:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (242,NULL,56,'Subject for Interview','2024-03-13 01:56:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (243,NULL,1,'Subject for Meeting','2024-08-27 15:03:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (244,NULL,9,'Subject for Tell a Friend','2024-08-26 09:14:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (245,NULL,2,'Subject for Phone Call','2024-10-04 09:07:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (246,NULL,56,'Subject for Interview','2025-01-31 04:47:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (247,NULL,22,'Subject for Print/Merge Document','2025-01-19 02:37:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (248,NULL,22,'Subject for Print/Merge Document','2024-03-11 14:23:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (249,NULL,22,'Subject for Print/Merge Document','2024-10-19 23:43:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (250,NULL,22,'Subject for Print/Merge Document','2024-10-02 03:43:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (251,NULL,1,'Subject for Meeting','2024-03-05 01:10:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (252,NULL,9,'Subject for Tell a Friend','2025-01-29 05:47:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (253,NULL,22,'Subject for Print/Merge Document','2024-05-08 06:56:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (254,NULL,22,'Subject for Print/Merge Document','2024-06-30 14:45:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (255,NULL,2,'Subject for Phone Call','2024-05-18 11:54:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (256,NULL,2,'Subject for Phone Call','2024-06-26 23:42:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (257,NULL,2,'Subject for Phone Call','2024-05-15 16:24:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (258,NULL,56,'Subject for Interview','2024-02-24 21:51:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (259,NULL,22,'Subject for Print/Merge Document','2024-08-27 23:22:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (260,NULL,9,'Subject for Tell a Friend','2024-02-17 12:29:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (261,NULL,9,'Subject for Tell a Friend','2024-10-27 16:11:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (262,NULL,9,'Subject for Tell a Friend','2025-01-17 12:59:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (263,NULL,1,'Subject for Meeting','2024-08-05 03:54:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (264,NULL,1,'Subject for Meeting','2024-08-19 20:59:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (265,NULL,56,'Subject for Interview','2024-04-11 07:56:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (266,NULL,22,'Subject for Print/Merge Document','2024-02-14 00:16:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (267,NULL,2,'Subject for Phone Call','2024-05-11 21:29:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (268,NULL,1,'Subject for Meeting','2024-07-05 11:10:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (269,NULL,56,'Subject for Interview','2024-04-13 09:11:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (270,NULL,9,'Subject for Tell a Friend','2024-06-22 13:29:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (271,NULL,56,'Subject for Interview','2024-03-14 23:34:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (272,NULL,56,'Subject for Interview','2024-08-17 20:42:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (273,NULL,56,'Subject for Interview','2024-03-03 18:41:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (274,NULL,1,'Subject for Meeting','2025-01-13 20:22:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (275,NULL,9,'Subject for Tell a Friend','2024-05-02 05:03:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (276,NULL,56,'Subject for Interview','2024-05-23 21:14:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (277,NULL,22,'Subject for Print/Merge Document','2024-09-10 07:36:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (278,NULL,9,'Subject for Tell a Friend','2024-04-26 07:53:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (279,NULL,56,'Subject for Interview','2024-03-31 15:45:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (280,NULL,9,'Subject for Tell a Friend','2024-10-28 02:09:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (281,NULL,9,'Subject for Tell a Friend','2024-08-15 23:13:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (282,NULL,9,'Subject for Tell a Friend','2024-11-09 19:01:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (283,NULL,1,'Subject for Meeting','2024-03-13 04:36:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (284,NULL,56,'Subject for Interview','2024-05-11 13:10:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (285,NULL,22,'Subject for Print/Merge Document','2024-03-03 06:09:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (286,NULL,2,'Subject for Phone Call','2024-03-28 15:05:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (287,NULL,56,'Subject for Interview','2024-05-15 18:43:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (288,NULL,9,'Subject for Tell a Friend','2024-12-08 11:30:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (289,NULL,22,'Subject for Print/Merge Document','2024-05-03 15:20:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (290,NULL,22,'Subject for Print/Merge Document','2024-12-25 03:13:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (291,NULL,22,'Subject for Print/Merge Document','2024-11-15 06:13:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (292,NULL,2,'Subject for Phone Call','2024-12-10 17:44:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (293,NULL,9,'Subject for Tell a Friend','2024-10-24 08:22:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (294,NULL,1,'Subject for Meeting','2025-01-11 00:04:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (295,NULL,56,'Subject for Interview','2024-03-11 06:50:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (296,NULL,1,'Subject for Meeting','2024-09-02 17:43:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (297,NULL,22,'Subject for Print/Merge Document','2024-02-19 12:15:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (298,NULL,1,'Subject for Meeting','2025-01-01 13:00:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (299,NULL,22,'Subject for Print/Merge Document','2024-05-07 04:20:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (300,NULL,2,'Subject for Phone Call','2024-11-10 05:43:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (301,NULL,9,'Subject for Tell a Friend','2024-04-15 05:13:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (302,NULL,22,'Subject for Print/Merge Document','2024-11-01 22:19:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (303,NULL,22,'Subject for Print/Merge Document','2024-09-21 03:01:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (304,NULL,9,'Subject for Tell a Friend','2024-07-22 02:08:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (305,NULL,2,'Subject for Phone Call','2024-07-08 15:04:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (306,NULL,56,'Subject for Interview','2024-03-11 11:30:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (307,NULL,22,'Subject for Print/Merge Document','2024-03-28 19:36:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (308,NULL,22,'Subject for Print/Merge Document','2024-11-17 14:47:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (309,NULL,9,'Subject for Tell a Friend','2024-05-24 12:24:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (310,NULL,22,'Subject for Print/Merge Document','2025-01-28 07:57:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (311,NULL,2,'Subject for Phone Call','2025-01-19 20:58:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (312,NULL,9,'Subject for Tell a Friend','2024-05-17 21:51:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (313,NULL,1,'Subject for Meeting','2024-07-09 17:10:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (314,NULL,2,'Subject for Phone Call','2025-01-02 21:02:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (315,NULL,9,'Subject for Tell a Friend','2024-08-22 13:29:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (316,NULL,22,'Subject for Print/Merge Document','2024-05-08 07:54:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (317,NULL,1,'Subject for Meeting','2024-04-27 20:23:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (318,NULL,22,'Subject for Print/Merge Document','2024-11-11 00:01:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (319,NULL,2,'Subject for Phone Call','2025-01-13 00:24:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (320,NULL,1,'Subject for Meeting','2024-05-21 16:33:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (321,NULL,22,'Subject for Print/Merge Document','2024-12-20 04:35:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (322,NULL,56,'Subject for Interview','2024-11-02 03:22:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (323,NULL,56,'Subject for Interview','2024-02-12 17:03:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (324,NULL,56,'Subject for Interview','2024-08-14 15:07:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (325,NULL,56,'Subject for Interview','2024-12-22 05:24:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (326,NULL,22,'Subject for Print/Merge Document','2025-01-18 01:35:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (327,NULL,22,'Subject for Print/Merge Document','2024-04-05 00:35:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (328,NULL,56,'Subject for Interview','2024-12-02 23:04:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (329,NULL,9,'Subject for Tell a Friend','2024-12-19 11:27:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (330,NULL,1,'Subject for Meeting','2024-10-15 15:05:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (331,NULL,56,'Subject for Interview','2024-09-16 08:12:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (332,NULL,22,'Subject for Print/Merge Document','2024-12-03 20:43:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (333,NULL,2,'Subject for Phone Call','2025-01-07 02:05:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (334,NULL,2,'Subject for Phone Call','2024-10-21 10:53:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (335,NULL,9,'Subject for Tell a Friend','2024-04-12 03:13:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (336,NULL,56,'Subject for Interview','2024-05-08 12:53:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (337,NULL,2,'Subject for Phone Call','2024-03-30 06:13:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (338,NULL,22,'Subject for Print/Merge Document','2024-12-13 11:08:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (339,NULL,1,'Subject for Meeting','2024-03-23 01:54:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (340,NULL,22,'Subject for Print/Merge Document','2024-08-19 15:45:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (341,NULL,9,'Subject for Tell a Friend','2024-03-12 07:51:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (342,NULL,9,'Subject for Tell a Friend','2024-07-07 23:36:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (343,NULL,1,'Subject for Meeting','2025-01-28 16:20:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (344,NULL,1,'Subject for Meeting','2024-11-24 03:53:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (345,NULL,2,'Subject for Phone Call','2024-08-04 17:39:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (346,NULL,22,'Subject for Print/Merge Document','2024-12-12 18:04:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (347,NULL,22,'Subject for Print/Merge Document','2025-01-30 02:11:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (348,NULL,9,'Subject for Tell a Friend','2025-01-30 11:51:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (349,NULL,56,'Subject for Interview','2024-03-21 11:18:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (350,NULL,56,'Subject for Interview','2024-03-17 14:42:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (351,NULL,56,'Subject for Interview','2024-11-26 16:20:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (352,NULL,1,'Subject for Meeting','2024-12-25 13:40:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (353,NULL,22,'Subject for Print/Merge Document','2024-02-13 05:04:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (354,NULL,22,'Subject for Print/Merge Document','2024-07-10 22:22:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (355,NULL,2,'Subject for Phone Call','2024-07-14 01:22:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (356,NULL,9,'Subject for Tell a Friend','2024-12-07 13:16:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (357,NULL,22,'Subject for Print/Merge Document','2024-08-12 14:16:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (358,NULL,22,'Subject for Print/Merge Document','2024-12-31 14:39:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (359,NULL,1,'Subject for Meeting','2024-02-17 05:22:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (360,NULL,56,'Subject for Interview','2024-09-04 18:16:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (361,NULL,1,'Subject for Meeting','2024-09-02 01:07:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (362,NULL,2,'Subject for Phone Call','2024-08-08 09:43:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (363,NULL,56,'Subject for Interview','2024-02-20 15:16:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (364,NULL,1,'Subject for Meeting','2024-09-01 23:52:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (365,NULL,1,'Subject for Meeting','2024-12-06 04:02:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (366,NULL,56,'Subject for Interview','2024-02-11 00:55:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (367,NULL,9,'Subject for Tell a Friend','2024-10-27 19:00:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (368,NULL,9,'Subject for Tell a Friend','2024-04-19 20:19:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (369,NULL,9,'Subject for Tell a Friend','2024-08-06 21:16:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (370,NULL,56,'Subject for Interview','2024-03-09 00:59:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (371,NULL,2,'Subject for Phone Call','2024-10-12 06:13:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (372,NULL,2,'Subject for Phone Call','2024-04-27 04:23:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (373,NULL,22,'Subject for Print/Merge Document','2024-10-07 02:10:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (374,NULL,22,'Subject for Print/Merge Document','2025-02-04 13:35:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (375,NULL,56,'Subject for Interview','2024-02-20 05:29:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (376,NULL,2,'Subject for Phone Call','2025-02-03 02:57:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (377,NULL,9,'Subject for Tell a Friend','2024-08-19 16:05:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (378,NULL,2,'Subject for Phone Call','2025-01-07 12:31:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (379,NULL,9,'Subject for Tell a Friend','2024-08-08 03:46:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (380,NULL,9,'Subject for Tell a Friend','2024-02-23 23:01:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (381,NULL,22,'Subject for Print/Merge Document','2025-01-10 21:57:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (382,NULL,2,'Subject for Phone Call','2024-09-29 23:06:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (383,NULL,56,'Subject for Interview','2024-08-27 15:23:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (384,NULL,9,'Subject for Tell a Friend','2024-05-21 11:11:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (385,NULL,9,'Subject for Tell a Friend','2024-04-30 00:14:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (386,NULL,56,'Subject for Interview','2024-10-22 14:05:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (387,NULL,22,'Subject for Print/Merge Document','2025-01-03 09:40:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (388,NULL,2,'Subject for Phone Call','2024-11-03 16:02:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (389,NULL,22,'Subject for Print/Merge Document','2024-11-12 07:51:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (390,NULL,2,'Subject for Phone Call','2025-02-02 16:40:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (391,NULL,1,'Subject for Meeting','2024-12-14 21:33:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (392,NULL,56,'Subject for Interview','2024-04-16 22:21:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (393,NULL,22,'Subject for Print/Merge Document','2024-02-10 12:31:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (394,NULL,22,'Subject for Print/Merge Document','2024-11-27 20:33:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (395,NULL,1,'Subject for Meeting','2024-04-27 00:46:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (396,NULL,1,'Subject for Meeting','2024-05-25 07:52:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (397,NULL,22,'Subject for Print/Merge Document','2024-07-22 02:42:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (398,NULL,22,'Subject for Print/Merge Document','2024-05-16 22:28:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (399,NULL,9,'Subject for Tell a Friend','2024-05-02 10:22:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (400,NULL,9,'Subject for Tell a Friend','2024-06-01 00:08:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (401,NULL,1,'Subject for Meeting','2025-01-05 15:44:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (402,NULL,56,'Subject for Interview','2024-05-23 15:25:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (403,NULL,56,'Subject for Interview','2024-04-21 07:44:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (404,NULL,22,'Subject for Print/Merge Document','2025-01-25 15:59:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (405,NULL,2,'Subject for Phone Call','2024-11-08 14:26:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (406,NULL,9,'Subject for Tell a Friend','2024-06-21 23:55:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (407,NULL,1,'Subject for Meeting','2024-09-05 01:27:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (408,NULL,1,'Subject for Meeting','2024-03-03 16:57:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (409,NULL,2,'Subject for Phone Call','2024-09-16 10:58:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (410,NULL,1,'Subject for Meeting','2024-11-15 12:19:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (411,NULL,2,'Subject for Phone Call','2024-03-31 15:30:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (412,NULL,2,'Subject for Phone Call','2024-10-17 01:04:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (413,NULL,1,'Subject for Meeting','2024-05-23 19:35:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (414,NULL,56,'Subject for Interview','2024-07-20 09:41:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (415,NULL,2,'Subject for Phone Call','2024-12-27 04:13:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (416,NULL,22,'Subject for Print/Merge Document','2024-07-24 08:23:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (417,NULL,56,'Subject for Interview','2024-11-19 15:17:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (418,NULL,22,'Subject for Print/Merge Document','2024-07-27 10:08:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (419,NULL,2,'Subject for Phone Call','2024-07-31 08:33:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (420,NULL,2,'Subject for Phone Call','2024-03-23 08:06:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (421,NULL,56,'Subject for Interview','2024-04-18 20:30:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (422,NULL,9,'Subject for Tell a Friend','2024-04-21 08:03:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (423,NULL,1,'Subject for Meeting','2024-06-19 19:17:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (424,NULL,22,'Subject for Print/Merge Document','2024-07-04 09:51:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (425,NULL,1,'Subject for Meeting','2024-03-12 03:56:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (426,NULL,1,'Subject for Meeting','2025-01-16 19:01:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (427,NULL,2,'Subject for Phone Call','2024-12-31 20:01:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (428,NULL,1,'Subject for Meeting','2024-06-10 21:47:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (429,NULL,2,'Subject for Phone Call','2024-05-03 22:11:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (430,NULL,22,'Subject for Print/Merge Document','2024-12-01 08:23:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (431,NULL,9,'Subject for Tell a Friend','2024-03-17 11:04:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (432,NULL,22,'Subject for Print/Merge Document','2024-06-23 05:05:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (433,NULL,22,'Subject for Print/Merge Document','2024-12-05 16:26:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (434,NULL,9,'Subject for Tell a Friend','2025-01-17 14:58:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (435,NULL,1,'Subject for Meeting','2024-04-23 12:36:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (436,NULL,56,'Subject for Interview','2025-01-19 09:58:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (437,NULL,9,'Subject for Tell a Friend','2024-11-14 04:39:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (438,NULL,1,'Subject for Meeting','2024-09-17 07:56:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (439,NULL,1,'Subject for Meeting','2024-02-08 16:41:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (440,NULL,2,'Subject for Phone Call','2024-03-02 06:45:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (441,NULL,9,'Subject for Tell a Friend','2024-08-07 16:34:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (442,NULL,1,'Subject for Meeting','2024-10-02 08:19:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (443,NULL,1,'Subject for Meeting','2024-07-31 01:19:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (444,NULL,1,'Subject for Meeting','2024-07-24 01:04:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (445,NULL,22,'Subject for Print/Merge Document','2024-02-14 12:13:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (446,NULL,22,'Subject for Print/Merge Document','2024-08-20 04:51:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (447,NULL,56,'Subject for Interview','2024-10-19 23:21:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (448,NULL,9,'Subject for Tell a Friend','2024-10-16 09:23:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (449,NULL,2,'Subject for Phone Call','2024-04-05 13:46:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (450,NULL,2,'Subject for Phone Call','2024-05-25 15:59:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (451,1,6,'$ 125 April Mailer 1','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (452,2,6,'$ 50 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (453,3,6,'£ 25 April Mailer 1','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (454,4,6,'$ 50 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (455,5,6,'$ 50 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (456,6,6,'$ 500 April Mailer 1','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (457,7,6,'$ 1750 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (458,8,6,'$ 50 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (459,9,6,'$ 10 Online: Help CiviCRM','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (460,10,6,'$ 250 Online: Help CiviCRM','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (461,11,6,'¥ 500 ','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (462,12,6,'$ 50 Online: Save the Penguins','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (463,13,6,'$ 50 ','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (464,14,6,'$ 50 ','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (465,15,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (466,16,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (467,17,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (468,18,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (469,19,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (470,20,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (471,21,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (472,22,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (473,23,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (474,24,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (475,25,6,'$ 25 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (476,26,6,'$ 10 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (477,27,6,'$ 10 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (478,28,6,'$ 10 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (479,29,6,'$ 10 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (480,30,6,'$ 10 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (481,31,6,'€ 5 Recurring contribution','2025-04-06 20:13:17',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (482,1,7,'General','2025-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (483,2,7,'Student','2025-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (484,3,7,'General','2025-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (485,4,7,'Student','2025-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (486,5,7,'Student','2024-02-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (487,6,7,'Student','2025-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (488,7,7,'General','2025-01-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (489,8,7,'Student','2025-01-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (490,9,7,'General','2025-01-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (491,10,7,'General','2022-11-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (492,11,7,'Lifetime','2025-01-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (493,12,7,'Student','2025-01-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (494,13,7,'General','2025-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (495,14,7,'Student','2025-01-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (496,15,7,'General','2022-10-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (497,16,7,'Student','2025-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (498,17,7,'General','2025-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (499,18,7,'Student','2025-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (500,19,7,'General','2025-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (501,20,7,'General','2022-09-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (502,21,7,'General','2025-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (503,22,7,'Lifetime','2025-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (504,23,7,'General','2025-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (505,24,7,'Student','2025-01-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (506,25,7,'General','2022-07-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (507,26,7,'Student','2025-01-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (508,27,7,'General','2025-01-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (509,28,7,'Student','2025-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (510,29,7,'General','2025-01-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (511,30,7,'Student','2024-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (512,32,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (513,33,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (514,34,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (515,35,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (516,36,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (517,37,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (518,38,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (519,39,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (520,40,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (521,41,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (522,42,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (523,43,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (524,44,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (525,45,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (526,46,6,'$ 100.00 - General Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (527,47,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (528,48,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (529,49,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (530,50,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (531,51,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (532,52,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (533,53,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (534,54,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (535,55,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (536,56,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (537,57,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (538,58,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (539,59,6,'$ 50.00 - Student Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (540,60,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (541,61,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (597,67,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (599,69,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (602,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (608,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (614,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (619,89,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (623,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (625,95,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (628,98,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (630,100,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (631,101,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (632,102,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (633,103,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (634,104,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (635,105,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (636,106,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (637,107,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (639,109,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (640,110,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (641,111,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'), - (642,112,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-06 20:13:17',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-07 04:13:17','2025-02-07 04:13:17'); + (1,NULL,56,'Subject for Interview','2024-12-10 21:24:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(2,NULL,9,'Subject for Tell a Friend','2024-10-13 16:27:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(3,NULL,22,'Subject for Print/Merge Document','2024-03-27 07:10:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(4,NULL,56,'Subject for Interview','2024-07-02 11:23:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(5,NULL,1,'Subject for Meeting','2025-02-05 04:38:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(6,NULL,2,'Subject for Phone Call','2024-03-09 23:27:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(7,NULL,22,'Subject for Print/Merge Document','2024-03-31 16:01:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(8,NULL,56,'Subject for Interview','2024-11-14 07:08:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(9,NULL,22,'Subject for Print/Merge Document','2025-02-06 19:46:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(10,NULL,22,'Subject for Print/Merge Document','2024-11-16 07:43:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(11,NULL,1,'Subject for Meeting','2024-10-16 03:13:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(12,NULL,9,'Subject for Tell a Friend','2024-12-12 08:01:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(13,NULL,2,'Subject for Phone Call','2024-07-19 16:33:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(14,NULL,22,'Subject for Print/Merge Document','2024-09-18 06:10:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(15,NULL,2,'Subject for Phone Call','2025-01-02 02:42:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(16,NULL,22,'Subject for Print/Merge Document','2024-11-27 23:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(17,NULL,22,'Subject for Print/Merge Document','2024-08-22 00:09:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), +(18,NULL,56,'Subject for Interview','2024-11-30 15:54:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(19,NULL,9,'Subject for Tell a Friend','2024-09-05 04:59:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(20,NULL,1,'Subject for Meeting','2024-09-28 01:21:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(21,NULL,56,'Subject for Interview','2024-11-01 02:39:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(22,NULL,9,'Subject for Tell a Friend','2024-08-15 14:14:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(23,NULL,56,'Subject for Interview','2024-12-18 19:54:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(24,NULL,1,'Subject for Meeting','2024-12-01 11:25:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(25,NULL,22,'Subject for Print/Merge Document','2024-03-01 23:09:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(26,NULL,56,'Subject for Interview','2024-05-23 10:31:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(27,NULL,9,'Subject for Tell a Friend','2024-09-02 10:43:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(28,NULL,22,'Subject for Print/Merge Document','2024-03-07 19:08:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(29,NULL,22,'Subject for Print/Merge Document','2024-05-24 05:03:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(30,NULL,56,'Subject for Interview','2025-01-02 01:00:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(31,NULL,1,'Subject for Meeting','2024-03-03 23:02:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(32,NULL,2,'Subject for Phone Call','2024-08-29 01:32:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(33,NULL,1,'Subject for Meeting','2024-09-23 17:33:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(34,NULL,1,'Subject for Meeting','2024-04-13 02:47:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(35,NULL,22,'Subject for Print/Merge Document','2024-11-01 03:19:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(36,NULL,22,'Subject for Print/Merge Document','2024-11-21 20:55:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(37,NULL,22,'Subject for Print/Merge Document','2024-07-26 05:17:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(38,NULL,56,'Subject for Interview','2024-09-24 08:16:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(39,NULL,22,'Subject for Print/Merge Document','2024-09-24 15:15:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(40,NULL,56,'Subject for Interview','2024-04-04 04:58:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(41,NULL,9,'Subject for Tell a Friend','2024-02-26 16:50:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(42,NULL,1,'Subject for Meeting','2024-07-16 21:41:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(43,NULL,2,'Subject for Phone Call','2024-04-01 18:10:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(44,NULL,2,'Subject for Phone Call','2024-03-17 09:19:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(45,NULL,2,'Subject for Phone Call','2025-01-18 15:25:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(46,NULL,56,'Subject for Interview','2024-07-26 21:56:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(47,NULL,56,'Subject for Interview','2024-07-25 07:10:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(48,NULL,22,'Subject for Print/Merge Document','2024-10-16 03:27:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(49,NULL,2,'Subject for Phone Call','2024-10-13 12:56:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(50,NULL,9,'Subject for Tell a Friend','2024-11-02 23:02:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(51,NULL,22,'Subject for Print/Merge Document','2024-06-01 19:29:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(52,NULL,9,'Subject for Tell a Friend','2024-08-31 10:50:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(53,NULL,56,'Subject for Interview','2024-10-31 02:37:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(54,NULL,2,'Subject for Phone Call','2024-03-16 00:11:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(55,NULL,2,'Subject for Phone Call','2024-03-26 04:47:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(56,NULL,56,'Subject for Interview','2024-12-26 15:47:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(57,NULL,2,'Subject for Phone Call','2024-09-04 06:06:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(58,NULL,22,'Subject for Print/Merge Document','2024-06-03 02:26:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(59,NULL,22,'Subject for Print/Merge Document','2024-10-25 23:04:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(60,NULL,56,'Subject for Interview','2024-10-26 10:30:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(61,NULL,22,'Subject for Print/Merge Document','2024-03-08 04:44:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(62,NULL,2,'Subject for Phone Call','2024-03-04 13:56:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(63,NULL,1,'Subject for Meeting','2024-11-30 15:17:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(64,NULL,9,'Subject for Tell a Friend','2024-12-13 19:59:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(65,NULL,9,'Subject for Tell a Friend','2024-05-23 04:35:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(66,NULL,1,'Subject for Meeting','2025-01-30 09:36:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(67,NULL,56,'Subject for Interview','2024-10-23 22:18:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(68,NULL,9,'Subject for Tell a Friend','2024-07-31 03:28:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(69,NULL,2,'Subject for Phone Call','2024-03-01 09:24:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(70,NULL,22,'Subject for Print/Merge Document','2024-04-07 04:57:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(71,NULL,9,'Subject for Tell a Friend','2024-06-08 04:22:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(72,NULL,9,'Subject for Tell a Friend','2024-09-01 14:41:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(73,NULL,56,'Subject for Interview','2024-11-12 03:08:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(74,NULL,2,'Subject for Phone Call','2025-01-03 16:58:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(75,NULL,2,'Subject for Phone Call','2024-07-01 22:13:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(76,NULL,22,'Subject for Print/Merge Document','2024-10-29 00:15:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(77,NULL,9,'Subject for Tell a Friend','2024-04-11 10:09:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(78,NULL,1,'Subject for Meeting','2024-08-18 08:08:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(79,NULL,9,'Subject for Tell a Friend','2024-07-23 11:24:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(80,NULL,22,'Subject for Print/Merge Document','2024-12-22 19:29:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(81,NULL,9,'Subject for Tell a Friend','2024-07-07 20:20:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(82,NULL,22,'Subject for Print/Merge Document','2024-11-13 15:52:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(83,NULL,9,'Subject for Tell a Friend','2025-01-29 17:10:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(84,NULL,9,'Subject for Tell a Friend','2024-05-02 05:08:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(85,NULL,9,'Subject for Tell a Friend','2024-08-10 04:29:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(86,NULL,2,'Subject for Phone Call','2024-08-06 14:37:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(87,NULL,56,'Subject for Interview','2024-12-13 14:08:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(88,NULL,22,'Subject for Print/Merge Document','2024-07-15 22:56:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(89,NULL,56,'Subject for Interview','2024-06-24 06:14:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(90,NULL,2,'Subject for Phone Call','2024-12-12 18:40:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(91,NULL,1,'Subject for Meeting','2024-06-29 15:09:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(92,NULL,22,'Subject for Print/Merge Document','2024-05-24 03:03:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(93,NULL,22,'Subject for Print/Merge Document','2024-07-22 15:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(94,NULL,9,'Subject for Tell a Friend','2024-06-19 13:53:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(95,NULL,9,'Subject for Tell a Friend','2024-12-26 06:37:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(96,NULL,9,'Subject for Tell a Friend','2024-09-18 03:54:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(97,NULL,9,'Subject for Tell a Friend','2024-09-08 01:18:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(98,NULL,22,'Subject for Print/Merge Document','2024-11-29 10:07:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(99,NULL,1,'Subject for Meeting','2024-07-09 19:58:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(100,NULL,56,'Subject for Interview','2024-12-15 03:09:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(101,NULL,2,'Subject for Phone Call','2024-03-14 22:37:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(102,NULL,2,'Subject for Phone Call','2024-10-10 23:02:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(103,NULL,56,'Subject for Interview','2024-04-16 04:38:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(104,NULL,2,'Subject for Phone Call','2024-11-20 11:13:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(105,NULL,1,'Subject for Meeting','2024-12-12 19:54:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(106,NULL,9,'Subject for Tell a Friend','2025-01-21 12:20:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(107,NULL,22,'Subject for Print/Merge Document','2024-10-13 14:45:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(108,NULL,56,'Subject for Interview','2024-12-14 07:49:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(109,NULL,22,'Subject for Print/Merge Document','2024-09-14 12:01:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(110,NULL,2,'Subject for Phone Call','2024-10-18 04:12:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(111,NULL,9,'Subject for Tell a Friend','2024-07-07 11:52:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(112,NULL,9,'Subject for Tell a Friend','2024-07-01 07:16:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(113,NULL,9,'Subject for Tell a Friend','2024-11-04 02:12:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(114,NULL,56,'Subject for Interview','2024-05-19 16:53:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(115,NULL,22,'Subject for Print/Merge Document','2024-11-25 16:53:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(116,NULL,9,'Subject for Tell a Friend','2024-08-04 01:07:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(117,NULL,2,'Subject for Phone Call','2024-06-29 22:25:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(118,NULL,22,'Subject for Print/Merge Document','2024-03-29 12:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(119,NULL,56,'Subject for Interview','2024-06-13 16:17:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(120,NULL,2,'Subject for Phone Call','2024-04-28 05:12:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(121,NULL,1,'Subject for Meeting','2024-04-01 19:23:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), +(122,NULL,9,'Subject for Tell a Friend','2024-07-05 06:01:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(123,NULL,1,'Subject for Meeting','2025-01-10 18:25:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(124,NULL,22,'Subject for Print/Merge Document','2024-10-25 05:09:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(125,NULL,2,'Subject for Phone Call','2024-07-01 01:08:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(126,NULL,22,'Subject for Print/Merge Document','2024-03-11 00:14:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(127,NULL,2,'Subject for Phone Call','2024-03-07 02:38:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(128,NULL,2,'Subject for Phone Call','2024-10-15 17:35:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(129,NULL,9,'Subject for Tell a Friend','2024-05-18 19:26:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(130,NULL,56,'Subject for Interview','2024-12-05 22:50:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(131,NULL,2,'Subject for Phone Call','2025-02-04 05:01:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(132,NULL,2,'Subject for Phone Call','2024-03-16 17:12:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(133,NULL,2,'Subject for Phone Call','2024-06-08 09:45:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(134,NULL,2,'Subject for Phone Call','2024-10-12 19:40:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(135,NULL,9,'Subject for Tell a Friend','2024-12-15 06:51:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(136,NULL,1,'Subject for Meeting','2024-12-27 15:35:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(137,NULL,2,'Subject for Phone Call','2024-08-22 17:07:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(138,NULL,2,'Subject for Phone Call','2024-02-19 22:39:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(139,NULL,9,'Subject for Tell a Friend','2024-08-13 05:27:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(140,NULL,9,'Subject for Tell a Friend','2024-09-16 04:01:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(141,NULL,1,'Subject for Meeting','2024-05-08 14:13:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(142,NULL,9,'Subject for Tell a Friend','2024-03-29 03:56:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(143,NULL,9,'Subject for Tell a Friend','2024-04-05 05:24:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(144,NULL,9,'Subject for Tell a Friend','2024-06-29 15:09:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(145,NULL,2,'Subject for Phone Call','2024-09-18 17:27:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(146,NULL,1,'Subject for Meeting','2024-10-05 11:18:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(147,NULL,22,'Subject for Print/Merge Document','2024-07-24 04:03:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(148,NULL,9,'Subject for Tell a Friend','2024-06-21 12:02:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(149,NULL,9,'Subject for Tell a Friend','2024-03-31 01:40:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(150,NULL,2,'Subject for Phone Call','2024-09-21 07:17:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(151,NULL,9,'Subject for Tell a Friend','2025-02-02 13:18:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(152,NULL,56,'Subject for Interview','2024-11-23 23:10:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(153,NULL,22,'Subject for Print/Merge Document','2024-08-23 12:00:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(154,NULL,2,'Subject for Phone Call','2024-09-26 01:57:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(155,NULL,22,'Subject for Print/Merge Document','2024-10-18 00:58:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(156,NULL,22,'Subject for Print/Merge Document','2024-06-05 06:38:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(157,NULL,1,'Subject for Meeting','2024-05-27 09:13:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(158,NULL,9,'Subject for Tell a Friend','2025-02-06 08:38:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(159,NULL,1,'Subject for Meeting','2024-06-10 10:58:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(160,NULL,56,'Subject for Interview','2024-03-26 11:46:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(161,NULL,1,'Subject for Meeting','2024-08-23 20:26:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(162,NULL,22,'Subject for Print/Merge Document','2024-02-16 01:16:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(163,NULL,2,'Subject for Phone Call','2024-11-15 21:00:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(164,NULL,22,'Subject for Print/Merge Document','2024-10-29 12:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(165,NULL,2,'Subject for Phone Call','2024-10-10 01:44:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(166,NULL,56,'Subject for Interview','2025-01-28 04:53:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(167,NULL,56,'Subject for Interview','2024-08-29 11:48:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(168,NULL,56,'Subject for Interview','2025-01-20 08:36:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(169,NULL,56,'Subject for Interview','2024-08-24 12:30:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(170,NULL,2,'Subject for Phone Call','2024-08-14 15:22:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(171,NULL,56,'Subject for Interview','2024-07-18 14:21:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(172,NULL,56,'Subject for Interview','2024-09-08 17:28:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(173,NULL,9,'Subject for Tell a Friend','2024-02-29 17:26:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(174,NULL,9,'Subject for Tell a Friend','2024-09-15 04:11:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(175,NULL,1,'Subject for Meeting','2024-04-02 12:55:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(176,NULL,56,'Subject for Interview','2024-05-02 15:48:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(177,NULL,1,'Subject for Meeting','2024-05-22 08:41:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(178,NULL,22,'Subject for Print/Merge Document','2024-12-11 11:24:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(179,NULL,2,'Subject for Phone Call','2024-04-05 09:41:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(180,NULL,9,'Subject for Tell a Friend','2025-01-09 05:28:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(181,NULL,2,'Subject for Phone Call','2024-05-05 21:27:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(182,NULL,22,'Subject for Print/Merge Document','2024-03-06 21:16:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(183,NULL,56,'Subject for Interview','2024-10-10 09:09:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(184,NULL,56,'Subject for Interview','2024-04-29 06:46:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(185,NULL,56,'Subject for Interview','2024-08-10 05:55:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(186,NULL,9,'Subject for Tell a Friend','2024-09-13 02:47:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(187,NULL,1,'Subject for Meeting','2024-03-03 04:12:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(188,NULL,9,'Subject for Tell a Friend','2024-10-03 18:13:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(189,NULL,1,'Subject for Meeting','2024-02-20 00:28:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(190,NULL,1,'Subject for Meeting','2024-03-02 17:41:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(191,NULL,2,'Subject for Phone Call','2024-10-24 05:25:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(192,NULL,1,'Subject for Meeting','2024-06-21 05:09:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(193,NULL,9,'Subject for Tell a Friend','2024-11-12 21:04:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(194,NULL,9,'Subject for Tell a Friend','2024-05-10 15:30:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(195,NULL,1,'Subject for Meeting','2024-07-19 22:07:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(196,NULL,56,'Subject for Interview','2024-02-15 08:08:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(197,NULL,2,'Subject for Phone Call','2024-06-22 07:44:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(198,NULL,22,'Subject for Print/Merge Document','2024-10-02 09:40:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(199,NULL,22,'Subject for Print/Merge Document','2024-08-02 02:04:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(200,NULL,2,'Subject for Phone Call','2024-09-23 14:59:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(201,NULL,56,'Subject for Interview','2024-04-11 09:09:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(202,NULL,1,'Subject for Meeting','2024-09-21 16:31:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(203,NULL,1,'Subject for Meeting','2024-10-28 19:49:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(204,NULL,2,'Subject for Phone Call','2024-12-31 04:44:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(205,NULL,22,'Subject for Print/Merge Document','2024-08-08 01:27:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(206,NULL,22,'Subject for Print/Merge Document','2024-08-10 23:53:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(207,NULL,1,'Subject for Meeting','2024-03-09 15:53:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(208,NULL,22,'Subject for Print/Merge Document','2024-04-15 01:39:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(209,NULL,9,'Subject for Tell a Friend','2024-06-22 16:43:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(210,NULL,56,'Subject for Interview','2024-10-10 19:42:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(211,NULL,9,'Subject for Tell a Friend','2024-03-18 07:50:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(212,NULL,56,'Subject for Interview','2024-02-13 07:50:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(213,NULL,1,'Subject for Meeting','2024-03-31 14:34:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(214,NULL,1,'Subject for Meeting','2024-06-27 20:04:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(215,NULL,9,'Subject for Tell a Friend','2024-11-26 21:53:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(216,NULL,9,'Subject for Tell a Friend','2025-02-02 20:46:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(217,NULL,2,'Subject for Phone Call','2024-03-27 10:44:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(218,NULL,9,'Subject for Tell a Friend','2024-07-21 09:36:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), +(219,NULL,22,'Subject for Print/Merge Document','2024-11-07 18:03:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(220,NULL,1,'Subject for Meeting','2024-11-22 18:31:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(221,NULL,2,'Subject for Phone Call','2024-09-18 11:38:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(222,NULL,9,'Subject for Tell a Friend','2024-07-28 23:55:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(223,NULL,2,'Subject for Phone Call','2024-11-22 21:23:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(224,NULL,56,'Subject for Interview','2025-02-06 02:46:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(225,NULL,56,'Subject for Interview','2024-06-16 15:07:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(226,NULL,56,'Subject for Interview','2024-06-26 18:06:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(227,NULL,1,'Subject for Meeting','2024-03-26 02:18:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(228,NULL,1,'Subject for Meeting','2024-02-14 12:39:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(229,NULL,1,'Subject for Meeting','2024-10-13 19:30:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(230,NULL,1,'Subject for Meeting','2024-05-25 01:11:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(231,NULL,9,'Subject for Tell a Friend','2024-02-12 22:41:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(232,NULL,2,'Subject for Phone Call','2024-07-07 00:13:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(233,NULL,2,'Subject for Phone Call','2024-09-05 01:24:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(234,NULL,1,'Subject for Meeting','2024-06-27 12:08:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(235,NULL,1,'Subject for Meeting','2024-02-21 19:40:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(236,NULL,22,'Subject for Print/Merge Document','2024-06-30 11:55:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(237,NULL,9,'Subject for Tell a Friend','2024-07-04 11:55:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(238,NULL,56,'Subject for Interview','2024-05-25 02:45:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(239,NULL,22,'Subject for Print/Merge Document','2024-10-08 15:43:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(240,NULL,56,'Subject for Interview','2024-07-24 15:37:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(241,NULL,1,'Subject for Meeting','2024-07-22 16:47:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(242,NULL,9,'Subject for Tell a Friend','2025-01-29 16:53:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(243,NULL,9,'Subject for Tell a Friend','2024-11-17 15:44:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(244,NULL,9,'Subject for Tell a Friend','2024-08-24 19:31:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(245,NULL,56,'Subject for Interview','2024-05-20 18:23:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(246,NULL,9,'Subject for Tell a Friend','2024-12-09 11:46:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(247,NULL,22,'Subject for Print/Merge Document','2024-03-14 05:11:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(248,NULL,9,'Subject for Tell a Friend','2024-08-01 06:34:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(249,NULL,2,'Subject for Phone Call','2024-05-12 11:05:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(250,NULL,2,'Subject for Phone Call','2024-08-03 15:34:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(251,NULL,2,'Subject for Phone Call','2024-07-11 19:55:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(252,NULL,22,'Subject for Print/Merge Document','2024-08-18 22:30:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(253,NULL,9,'Subject for Tell a Friend','2024-08-19 22:50:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(254,NULL,22,'Subject for Print/Merge Document','2024-04-12 00:43:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(255,NULL,2,'Subject for Phone Call','2024-06-21 21:56:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(256,NULL,9,'Subject for Tell a Friend','2025-01-30 07:56:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(257,NULL,9,'Subject for Tell a Friend','2024-05-01 23:59:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(258,NULL,56,'Subject for Interview','2024-05-21 05:52:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(259,NULL,9,'Subject for Tell a Friend','2024-04-28 05:15:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(260,NULL,22,'Subject for Print/Merge Document','2024-08-29 16:34:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(261,NULL,22,'Subject for Print/Merge Document','2024-09-03 15:35:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(262,NULL,56,'Subject for Interview','2024-05-23 08:33:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(263,NULL,1,'Subject for Meeting','2024-09-19 18:08:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(264,NULL,9,'Subject for Tell a Friend','2024-05-11 14:35:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(265,NULL,56,'Subject for Interview','2024-10-07 01:39:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(266,NULL,1,'Subject for Meeting','2024-08-26 04:38:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(267,NULL,56,'Subject for Interview','2025-01-01 21:33:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(268,NULL,22,'Subject for Print/Merge Document','2024-08-08 16:52:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(269,NULL,56,'Subject for Interview','2024-09-02 03:55:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(270,NULL,9,'Subject for Tell a Friend','2025-01-09 06:33:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(271,NULL,2,'Subject for Phone Call','2024-07-22 10:16:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(272,NULL,22,'Subject for Print/Merge Document','2024-06-10 20:53:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(273,NULL,22,'Subject for Print/Merge Document','2024-04-30 14:19:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(274,NULL,56,'Subject for Interview','2024-06-01 13:53:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(275,NULL,56,'Subject for Interview','2025-02-02 22:20:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(276,NULL,9,'Subject for Tell a Friend','2024-09-04 20:36:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(277,NULL,1,'Subject for Meeting','2024-05-22 23:37:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(278,NULL,2,'Subject for Phone Call','2024-11-06 02:51:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(279,NULL,1,'Subject for Meeting','2024-11-21 04:02:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(280,NULL,22,'Subject for Print/Merge Document','2024-06-28 18:18:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(281,NULL,56,'Subject for Interview','2025-02-06 04:13:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(282,NULL,2,'Subject for Phone Call','2025-01-14 03:36:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(283,NULL,2,'Subject for Phone Call','2024-07-26 20:03:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(284,NULL,1,'Subject for Meeting','2024-07-06 22:48:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(285,NULL,22,'Subject for Print/Merge Document','2024-12-26 21:33:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(286,NULL,9,'Subject for Tell a Friend','2024-12-31 22:37:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(287,NULL,22,'Subject for Print/Merge Document','2024-11-14 00:58:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(288,NULL,22,'Subject for Print/Merge Document','2025-02-11 09:23:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(289,NULL,56,'Subject for Interview','2024-03-27 17:48:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(290,NULL,9,'Subject for Tell a Friend','2024-08-05 07:00:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(291,NULL,1,'Subject for Meeting','2024-03-29 08:44:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(292,NULL,22,'Subject for Print/Merge Document','2024-06-18 22:38:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(293,NULL,22,'Subject for Print/Merge Document','2024-11-18 12:31:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(294,NULL,56,'Subject for Interview','2024-12-03 16:36:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(295,NULL,1,'Subject for Meeting','2024-11-16 18:34:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(296,NULL,9,'Subject for Tell a Friend','2024-09-09 11:28:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(297,NULL,22,'Subject for Print/Merge Document','2024-04-06 04:02:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(298,NULL,56,'Subject for Interview','2024-12-25 19:35:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(299,NULL,9,'Subject for Tell a Friend','2024-07-31 20:20:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(300,NULL,2,'Subject for Phone Call','2024-09-13 14:19:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(301,NULL,9,'Subject for Tell a Friend','2024-04-06 00:33:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(302,NULL,2,'Subject for Phone Call','2024-10-19 13:57:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(303,NULL,2,'Subject for Phone Call','2024-07-04 19:33:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(304,NULL,1,'Subject for Meeting','2024-08-20 07:07:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(305,NULL,1,'Subject for Meeting','2024-09-20 09:43:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(306,NULL,56,'Subject for Interview','2024-02-15 09:50:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(307,NULL,56,'Subject for Interview','2025-01-06 08:35:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(308,NULL,2,'Subject for Phone Call','2024-04-20 05:38:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(309,NULL,56,'Subject for Interview','2024-05-13 05:43:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(310,NULL,9,'Subject for Tell a Friend','2025-02-05 20:50:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(311,NULL,9,'Subject for Tell a Friend','2024-06-01 15:12:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(312,NULL,9,'Subject for Tell a Friend','2024-08-19 18:44:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(313,NULL,56,'Subject for Interview','2024-03-03 12:38:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(314,NULL,1,'Subject for Meeting','2024-07-17 21:18:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), +(315,NULL,1,'Subject for Meeting','2025-01-10 19:43:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(316,NULL,1,'Subject for Meeting','2024-07-26 11:14:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(317,NULL,1,'Subject for Meeting','2025-02-09 14:08:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(318,NULL,2,'Subject for Phone Call','2024-04-27 00:19:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(319,NULL,2,'Subject for Phone Call','2024-04-23 04:00:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(320,NULL,56,'Subject for Interview','2024-05-29 02:04:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(321,NULL,2,'Subject for Phone Call','2024-08-12 13:23:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(322,NULL,56,'Subject for Interview','2025-01-03 05:37:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(323,NULL,1,'Subject for Meeting','2024-10-21 07:44:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(324,NULL,2,'Subject for Phone Call','2024-08-06 19:48:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(325,NULL,9,'Subject for Tell a Friend','2024-07-19 13:48:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(326,NULL,22,'Subject for Print/Merge Document','2025-01-09 05:46:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(327,NULL,9,'Subject for Tell a Friend','2024-02-24 01:42:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(328,NULL,56,'Subject for Interview','2024-02-25 03:42:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(329,NULL,56,'Subject for Interview','2024-12-27 08:53:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(330,NULL,1,'Subject for Meeting','2025-01-24 13:29:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(331,NULL,1,'Subject for Meeting','2024-06-15 21:44:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(332,NULL,9,'Subject for Tell a Friend','2024-07-02 17:26:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(333,NULL,56,'Subject for Interview','2024-02-25 03:43:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(334,NULL,9,'Subject for Tell a Friend','2024-04-20 09:55:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(335,NULL,9,'Subject for Tell a Friend','2024-07-07 05:53:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(336,NULL,9,'Subject for Tell a Friend','2024-06-10 10:30:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(337,NULL,1,'Subject for Meeting','2024-03-10 20:59:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(338,NULL,56,'Subject for Interview','2024-10-27 09:15:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(339,NULL,56,'Subject for Interview','2024-10-30 20:50:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(340,NULL,56,'Subject for Interview','2024-12-06 17:11:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(341,NULL,2,'Subject for Phone Call','2024-03-10 18:19:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(342,NULL,56,'Subject for Interview','2024-09-28 03:05:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(343,NULL,1,'Subject for Meeting','2024-09-23 08:47:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(344,NULL,56,'Subject for Interview','2024-06-08 20:31:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(345,NULL,1,'Subject for Meeting','2024-04-22 23:08:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(346,NULL,22,'Subject for Print/Merge Document','2024-12-11 16:46:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(347,NULL,9,'Subject for Tell a Friend','2024-05-31 21:24:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(348,NULL,22,'Subject for Print/Merge Document','2024-05-12 23:52:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(349,NULL,1,'Subject for Meeting','2024-09-26 11:37:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(350,NULL,9,'Subject for Tell a Friend','2024-09-03 09:29:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(351,NULL,9,'Subject for Tell a Friend','2024-11-11 10:29:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(352,NULL,9,'Subject for Tell a Friend','2024-06-21 11:35:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(353,NULL,2,'Subject for Phone Call','2025-01-11 17:24:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(354,NULL,2,'Subject for Phone Call','2024-11-26 01:53:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(355,NULL,2,'Subject for Phone Call','2025-02-11 07:24:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(356,NULL,56,'Subject for Interview','2024-08-06 05:16:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(357,NULL,9,'Subject for Tell a Friend','2024-09-09 23:50:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(358,NULL,2,'Subject for Phone Call','2024-11-13 11:53:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(359,NULL,2,'Subject for Phone Call','2024-10-06 15:39:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(360,NULL,56,'Subject for Interview','2024-10-10 04:13:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(361,NULL,1,'Subject for Meeting','2024-02-21 02:52:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(362,NULL,22,'Subject for Print/Merge Document','2024-04-08 23:17:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(363,NULL,9,'Subject for Tell a Friend','2024-11-11 03:37:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(364,NULL,1,'Subject for Meeting','2025-02-02 06:43:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(365,NULL,2,'Subject for Phone Call','2024-06-01 08:28:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(366,NULL,1,'Subject for Meeting','2024-04-29 23:39:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(367,NULL,2,'Subject for Phone Call','2024-06-01 13:39:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(368,NULL,56,'Subject for Interview','2024-08-18 18:07:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(369,NULL,2,'Subject for Phone Call','2025-01-30 19:47:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(370,NULL,2,'Subject for Phone Call','2024-10-12 16:23:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(371,NULL,1,'Subject for Meeting','2024-07-16 22:01:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(372,NULL,9,'Subject for Tell a Friend','2024-06-15 08:22:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(373,NULL,2,'Subject for Phone Call','2024-11-17 18:26:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(374,NULL,56,'Subject for Interview','2024-05-10 14:02:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(375,NULL,2,'Subject for Phone Call','2024-03-24 09:32:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(376,NULL,56,'Subject for Interview','2024-08-06 16:42:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(377,NULL,9,'Subject for Tell a Friend','2024-06-02 13:22:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(378,NULL,1,'Subject for Meeting','2024-09-29 10:04:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(379,NULL,2,'Subject for Phone Call','2024-03-11 01:39:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(380,NULL,9,'Subject for Tell a Friend','2024-10-07 20:56:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(381,NULL,1,'Subject for Meeting','2025-02-07 02:59:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(382,NULL,1,'Subject for Meeting','2024-09-29 18:54:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(383,NULL,1,'Subject for Meeting','2024-03-31 00:27:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(384,NULL,56,'Subject for Interview','2024-10-18 06:43:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(385,NULL,1,'Subject for Meeting','2025-02-08 16:16:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(386,NULL,2,'Subject for Phone Call','2024-06-24 04:36:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(387,NULL,22,'Subject for Print/Merge Document','2024-02-13 06:34:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(388,NULL,22,'Subject for Print/Merge Document','2024-09-07 18:38:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(389,NULL,22,'Subject for Print/Merge Document','2024-08-07 07:37:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(390,NULL,22,'Subject for Print/Merge Document','2024-05-08 05:06:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(391,NULL,1,'Subject for Meeting','2024-12-02 17:28:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(392,NULL,22,'Subject for Print/Merge Document','2024-06-27 23:20:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(393,NULL,22,'Subject for Print/Merge Document','2024-06-13 08:04:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(394,NULL,56,'Subject for Interview','2024-05-19 16:05:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(395,NULL,56,'Subject for Interview','2025-01-21 15:24:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(396,NULL,56,'Subject for Interview','2024-12-21 19:23:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(397,NULL,2,'Subject for Phone Call','2024-03-17 20:01:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(398,NULL,22,'Subject for Print/Merge Document','2024-06-15 11:24:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(399,NULL,22,'Subject for Print/Merge Document','2024-05-31 08:08:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(400,NULL,56,'Subject for Interview','2024-07-25 14:56:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(401,NULL,9,'Subject for Tell a Friend','2024-06-01 05:04:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(402,NULL,22,'Subject for Print/Merge Document','2024-06-16 15:44:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(403,NULL,2,'Subject for Phone Call','2024-03-02 16:06:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(404,NULL,9,'Subject for Tell a Friend','2024-08-05 16:53:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(405,NULL,1,'Subject for Meeting','2024-04-19 10:31:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(406,NULL,22,'Subject for Print/Merge Document','2024-05-27 04:45:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(407,NULL,22,'Subject for Print/Merge Document','2024-03-18 08:34:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(408,NULL,56,'Subject for Interview','2024-09-27 23:59:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(409,NULL,9,'Subject for Tell a Friend','2024-05-24 06:26:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(410,NULL,56,'Subject for Interview','2024-08-07 01:45:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), +(411,NULL,1,'Subject for Meeting','2024-05-29 23:41:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(412,NULL,9,'Subject for Tell a Friend','2024-10-10 23:33:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(413,NULL,2,'Subject for Phone Call','2025-01-07 03:04:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(414,NULL,1,'Subject for Meeting','2024-09-30 12:04:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(415,NULL,1,'Subject for Meeting','2024-06-22 02:17:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(416,NULL,22,'Subject for Print/Merge Document','2024-05-04 22:06:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(417,NULL,22,'Subject for Print/Merge Document','2025-01-29 15:59:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(418,NULL,2,'Subject for Phone Call','2024-05-13 00:08:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(419,NULL,9,'Subject for Tell a Friend','2024-12-04 22:47:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(420,NULL,9,'Subject for Tell a Friend','2024-03-24 15:51:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(421,NULL,2,'Subject for Phone Call','2024-07-10 22:34:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(422,NULL,22,'Subject for Print/Merge Document','2024-08-03 17:06:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(423,NULL,22,'Subject for Print/Merge Document','2024-06-22 07:34:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(424,NULL,1,'Subject for Meeting','2024-04-17 06:59:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(425,NULL,2,'Subject for Phone Call','2025-01-09 15:39:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(426,NULL,2,'Subject for Phone Call','2024-06-02 18:57:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(427,NULL,1,'Subject for Meeting','2024-08-24 20:41:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(428,NULL,2,'Subject for Phone Call','2024-04-05 02:56:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(429,NULL,2,'Subject for Phone Call','2024-09-25 14:31:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(430,NULL,2,'Subject for Phone Call','2024-06-06 15:11:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(431,NULL,22,'Subject for Print/Merge Document','2025-01-28 15:41:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(432,NULL,22,'Subject for Print/Merge Document','2024-12-29 00:02:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(433,NULL,56,'Subject for Interview','2024-09-28 09:17:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(434,NULL,1,'Subject for Meeting','2024-09-24 13:54:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(435,NULL,22,'Subject for Print/Merge Document','2024-04-02 06:13:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(436,NULL,9,'Subject for Tell a Friend','2024-12-01 15:42:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(437,NULL,56,'Subject for Interview','2024-04-01 16:34:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(438,NULL,1,'Subject for Meeting','2024-09-26 03:13:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(439,NULL,1,'Subject for Meeting','2024-02-13 02:19:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(440,NULL,1,'Subject for Meeting','2025-01-25 14:15:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(441,NULL,22,'Subject for Print/Merge Document','2024-03-24 11:09:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(442,NULL,22,'Subject for Print/Merge Document','2025-01-07 18:08:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(443,NULL,2,'Subject for Phone Call','2024-05-27 00:15:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(444,NULL,56,'Subject for Interview','2024-06-14 06:18:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(445,NULL,56,'Subject for Interview','2024-12-15 04:42:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(446,NULL,2,'Subject for Phone Call','2024-12-27 23:21:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(447,NULL,1,'Subject for Meeting','2024-03-17 15:53:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(448,NULL,22,'Subject for Print/Merge Document','2024-09-10 00:18:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(449,NULL,22,'Subject for Print/Merge Document','2024-04-22 00:55:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(450,NULL,2,'Subject for Phone Call','2024-04-17 00:30:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(451,1,6,'$ 125 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(452,2,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(453,3,6,'£ 25 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(454,4,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(455,5,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(456,6,6,'$ 500 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(457,7,6,'$ 1750 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(458,8,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(459,9,6,'$ 10 Online: Help CiviCRM','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(460,10,6,'$ 250 Online: Help CiviCRM','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(461,11,6,'¥ 500 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(462,12,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(463,13,6,'$ 50 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(464,14,6,'$ 50 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(465,15,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(466,16,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(467,17,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(468,18,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(469,19,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(470,20,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(471,21,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(472,22,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(473,23,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(474,24,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(475,25,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(476,26,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(477,27,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(478,28,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), +(479,29,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(480,30,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(481,31,6,'€ 5 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(482,1,7,'General','2025-02-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(483,2,7,'Student','2025-02-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(484,3,7,'General','2025-02-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(485,4,7,'Student','2025-02-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(486,5,7,'General','2023-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(487,6,7,'Student','2025-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(488,7,7,'General','2025-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(489,8,7,'Student','2025-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(490,9,7,'General','2025-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(491,10,7,'General','2022-12-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(492,11,7,'Lifetime','2025-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(493,12,7,'Student','2025-01-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(494,13,7,'General','2025-01-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(495,14,7,'Student','2025-01-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(496,15,7,'General','2022-10-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(497,16,7,'Student','2025-01-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(498,17,7,'General','2025-01-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(499,18,7,'Student','2025-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(500,19,7,'General','2025-01-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(501,20,7,'General','2022-09-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(502,21,7,'General','2025-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(503,22,7,'Lifetime','2025-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(504,23,7,'General','2025-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(505,24,7,'Student','2025-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(506,25,7,'Student','2024-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(507,26,7,'Student','2025-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(508,27,7,'General','2025-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(509,28,7,'Student','2025-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(510,29,7,'General','2025-01-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(511,30,7,'General','2022-06-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(512,32,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(513,33,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(514,34,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(515,35,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(516,36,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(517,37,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(518,38,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(519,39,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(520,40,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(521,41,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(523,43,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(524,44,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(525,45,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(526,46,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(527,47,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(528,48,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(529,49,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(530,50,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(531,51,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(532,52,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(534,54,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(535,55,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(536,56,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(537,57,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(538,58,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(539,59,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(540,60,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(541,61,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(593,63,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(602,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(607,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(609,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(616,86,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(617,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(622,92,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(623,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(626,96,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(627,97,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(628,98,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(629,99,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(630,100,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(631,101,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(633,103,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(635,105,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(636,106,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(637,107,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(638,108,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(639,109,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(640,110,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(641,111,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), +(642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -733,938 +732,957 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_contact` WRITE; /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */; INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES - (231,128,1,3), - (663,378,1,3), - (928,587,1,2), - (72,40,2,3), - (792,451,2,2), - (42,23,3,3), - (115,65,3,3), - (732,417,3,3), - (57,32,4,3), - (443,252,4,3), - (466,265,4,3), - (793,452,4,2), - (796,455,4,2), - (217,120,5,3), - (266,148,5,3), - (365,207,5,3), - (47,26,6,3), - (198,109,6,3), - (333,188,6,3), - (374,212,6,3), - (378,214,6,3), - (794,453,6,2), - (9,5,7,3), - (51,28,7,3), - (522,296,7,3), - (919,578,7,2), - (37,20,8,3), - (261,145,8,3), - (435,246,8,3), - (477,271,8,3), - (647,369,8,3), - (723,412,8,3), - (795,454,8,2), - (390,221,9,3), - (401,227,9,3), - (156,86,10,3), - (163,90,10,3), - (657,375,10,3), - (702,401,10,3), - (767,437,10,3), - (843,502,10,2), - (863,522,10,2), - (356,202,11,3), - (420,238,11,3), - (279,155,12,3), - (458,261,12,3), - (516,293,12,3), - (739,421,12,3), - (310,175,13,3), - (681,388,13,3), - (899,558,13,2), - (40,22,14,3), - (237,132,14,3), - (367,208,14,3), - (549,313,14,3), - (591,337,14,3), - (844,503,14,2), - (882,541,14,2), - (905,564,14,2), - (447,255,15,3), - (547,312,15,3), - (797,456,16,2), - (61,34,17,3), - (81,45,17,3), - (100,56,18,3), - (207,114,18,3), - (234,130,18,3), - (214,118,19,3), - (286,160,19,3), - (348,197,19,3), - (798,457,19,2), - (83,46,20,3), - (111,62,20,3), - (125,70,20,3), - (686,391,20,3), - (743,423,20,3), - (87,48,22,3), - (294,165,22,3), - (485,275,22,3), - (889,548,22,2), - (29,16,23,3), - (121,68,23,3), - (397,225,23,3), - (487,276,23,3), - (553,315,23,3), - (715,408,23,3), - (748,426,23,3), - (841,500,23,2), - (861,520,23,2), - (147,81,24,3), - (502,284,24,3), - (659,376,24,3), - (765,436,24,3), - (203,112,25,3), - (371,210,25,3), - (433,245,25,3), - (451,257,25,3), - (694,396,25,3), - (886,545,25,2), - (252,140,26,3), - (254,141,26,3), - (431,244,26,3), - (471,268,26,3), - (613,350,26,3), - (131,73,27,3), - (137,76,27,3), - (205,113,27,3), - (416,236,28,3), - (599,342,28,3), - (717,409,28,3), - (729,415,28,3), - (757,431,28,3), - (145,80,29,3), - (167,92,29,3), - (243,135,29,3), - (350,198,29,3), - (894,553,29,2), - (339,192,30,3), - (651,371,30,3), - (787,448,30,3), - (909,568,30,2), - (123,69,31,3), - (256,142,31,3), - (507,287,31,3), - (601,343,31,3), - (270,150,32,3), - (566,323,32,3), - (633,362,32,3), - (661,377,32,3), - (804,463,32,2), - (805,464,32,2), - (897,556,32,2), - (196,108,33,3), - (245,136,33,3), - (605,345,33,3), - (835,494,33,2), - (858,517,33,2), - (18,10,34,3), - (89,49,34,3), - (154,85,34,3), - (534,304,34,3), - (698,399,34,3), - (801,460,34,2), - (22,12,35,3), - (182,100,35,3), - (275,153,35,3), - (518,294,35,3), - (839,498,35,2), - (860,519,35,2), - (165,91,36,3), - (580,331,36,3), - (583,333,36,3), - (845,504,36,2), - (864,523,36,2), - (352,199,37,3), - (393,223,37,3), - (509,288,37,3), - (713,407,37,3), - (719,410,37,3), - (492,279,38,3), - (14,8,39,3), - (75,42,40,3), - (77,43,40,3), - (180,99,40,3), - (241,134,40,3), - (283,158,40,3), - (494,280,40,3), - (777,442,40,3), - (107,60,41,3), - (594,339,41,3), - (481,273,42,3), - (585,334,42,3), - (913,572,42,2), - (212,117,43,3), - (323,183,43,3), - (331,187,43,3), - (514,292,43,3), - (530,301,43,3), - (561,320,43,3), - (785,447,43,3), - (803,462,43,2), - (754,429,44,3), - (831,490,44,2), - (856,515,44,2), - (191,105,45,3), - (201,111,45,3), - (264,147,45,3), - (538,306,45,3), - (692,395,45,3), - (617,352,46,3), - (133,74,47,3), - (139,77,47,3), - (296,166,47,3), - (314,178,47,3), - (727,414,47,3), - (911,570,47,2), - (277,154,48,3), - (838,497,48,2), - (875,534,48,2), - (3,2,49,3), - (27,15,49,3), - (67,37,49,3), - (94,53,49,3), - (505,286,49,3), - (888,547,49,2), - (31,17,50,3), - (109,61,50,3), - (288,161,50,3), - (469,267,50,3), - (173,95,51,3), - (187,103,51,3), - (629,360,51,3), - (824,483,51,2), - (868,527,51,2), - (887,546,51,2), - (222,123,52,3), - (528,300,52,3), - (746,425,52,3), - (63,35,53,3), - (621,355,53,3), - (735,419,53,3), - (781,444,53,3), - (119,67,54,3), - (171,94,54,3), - (248,138,54,3), - (306,173,54,3), - (380,215,54,3), - (395,224,54,3), - (413,234,54,3), - (611,349,54,3), - (791,450,54,3), - (456,260,55,3), - (570,325,55,3), - (637,364,55,3), - (741,422,55,3), - (25,14,56,3), - (376,213,56,3), - (403,228,57,3), - (79,44,58,3), - (193,106,58,3), - (341,193,59,3), - (641,366,59,3), - (688,392,59,3), - (806,465,59,2), - (807,466,59,2), - (808,467,59,2), - (809,468,59,2), - (810,469,59,2), - (811,470,59,2), - (812,471,59,2), - (813,472,59,2), - (814,473,59,2), - (815,474,59,2), - (816,475,59,2), - (177,97,60,3), - (904,563,60,2), - (1,1,61,2), - (2,2,61,2), - (4,3,61,2), - (6,4,61,2), - (8,5,61,2), - (10,6,61,2), - (12,7,61,2), - (13,8,61,2), - (15,9,61,2), - (17,10,61,2), - (19,11,61,2), - (21,12,61,2), - (23,13,61,2), - (24,14,61,2), - (26,15,61,2), - (28,16,61,2), - (30,17,61,2), - (32,18,61,2), - (34,19,61,2), - (36,20,61,2), - (38,21,61,2), - (39,22,61,2), - (41,23,61,2), - (43,24,61,2), - (45,25,61,2), - (46,26,61,2), - (48,27,61,2), - (50,28,61,2), - (52,29,61,2), - (53,30,61,2), - (54,31,61,2), - (56,32,61,2), - (58,33,61,2), - (60,34,61,2), - (62,35,61,2), - (64,36,61,2), - (66,37,61,2), - (68,38,61,2), - (70,39,61,2), - (71,40,61,2), - (73,41,61,2), - (74,42,61,2), - (76,43,61,2), - (78,44,61,2), - (80,45,61,2), - (82,46,61,2), - (84,47,61,2), - (85,47,61,3), - (86,48,61,2), - (88,49,61,2), - (90,50,61,2), - (91,51,61,2), - (92,52,61,2), - (93,53,61,2), - (95,54,61,2), - (97,55,61,2), - (99,56,61,2), - (101,57,61,2), - (103,58,61,2), - (104,59,61,2), - (106,60,61,2), - (108,61,61,2), - (110,62,61,2), - (112,63,61,2), - (113,64,61,2), - (114,65,61,2), - (116,66,61,2), - (118,67,61,2), - (120,68,61,2), - (122,69,61,2), - (124,70,61,2), - (126,71,61,2), - (128,72,61,2), - (130,73,61,2), - (132,74,61,2), - (134,75,61,2), - (136,76,61,2), - (138,77,61,2), - (140,78,61,2), - (142,79,61,2), - (144,80,61,2), - (146,81,61,2), - (148,82,61,2), - (150,83,61,2), - (151,84,61,2), - (153,85,61,2), - (155,86,61,2), - (157,87,61,2), - (158,88,61,2), - (160,89,61,2), - (162,90,61,2), - (164,91,61,2), - (166,92,61,2), - (168,93,61,2), - (170,94,61,2), - (172,95,61,2), - (174,96,61,2), - (176,97,61,2), - (178,98,61,2), - (179,99,61,2), - (181,100,61,2), - (183,101,61,2), - (184,102,61,2), - (186,103,61,2), - (188,104,61,2), - (190,105,61,2), - (192,106,61,2), - (194,107,61,2), - (195,108,61,2), - (197,109,61,2), - (199,110,61,2), - (200,111,61,2), - (202,112,61,2), - (204,113,61,2), - (206,114,61,2), - (208,115,61,2), - (210,116,61,2), - (211,117,61,2), - (213,118,61,2), - (215,119,61,2), - (216,120,61,2), - (218,121,61,2), - (220,122,61,2), - (221,123,61,2), - (223,124,61,2), - (225,125,61,2), - (227,126,61,2), - (228,126,61,3), - (229,127,61,2), - (230,128,61,2), - (232,129,61,2), - (233,130,61,2), - (235,131,61,2), - (236,132,61,2), - (238,133,61,2), - (240,134,61,2), - (242,135,61,2), - (244,136,61,2), - (246,137,61,2), - (247,138,61,2), - (249,139,61,2), - (251,140,61,2), - (253,141,61,2), - (255,142,61,2), - (257,143,61,2), - (258,144,61,2), - (260,145,61,2), - (262,146,61,2), - (263,147,61,2), - (265,148,61,2), - (267,149,61,2), - (269,150,61,2), - (320,181,61,3), - (520,295,61,3), - (578,330,61,3), - (301,170,62,3), - (460,262,62,3), - (635,363,62,3), - (49,27,63,3), - (149,82,63,3), - (369,209,63,3), - (631,361,63,3), - (441,251,64,3), - (587,335,64,3), - (920,579,64,2), - (135,75,65,3), - (346,196,65,3), - (361,205,65,3), - (653,372,65,3), - (665,379,65,3), - (711,406,65,3), - (848,507,65,2), - (878,537,65,2), - (20,11,66,3), - (209,115,66,3), - (224,124,66,3), - (536,305,66,3), - (542,309,66,3), - (408,231,67,3), - (473,269,67,3), - (667,380,67,3), - (239,133,68,3), - (498,282,68,3), - (551,314,68,3), - (384,217,69,3), - (678,386,69,3), - (775,441,69,3), - (829,488,69,2), - (855,514,69,2), - (152,84,70,3), - (318,180,70,3), - (359,204,70,3), - (670,382,70,3), - (825,484,70,2), - (854,513,70,2), - (910,569,70,2), - (422,239,71,3), - (500,283,71,3), - (643,367,71,3), - (761,434,71,3), - (771,439,71,3), - (779,443,71,3), - (802,461,71,2), - (96,54,72,3), - (931,590,72,2), - (268,149,73,3), - (329,186,73,3), - (700,400,73,3), - (55,31,74,3), - (169,93,74,3), - (405,229,74,3), - (127,71,75,3), - (337,191,75,3), - (429,243,75,3), - (250,139,76,3), - (649,370,76,3), - (924,583,76,2), - (386,218,77,3), - (59,33,78,3), - (308,174,78,3), - (327,185,78,3), - (382,216,78,3), - (709,405,78,3), - (789,449,78,3), - (840,499,78,2), - (876,535,78,2), - (105,59,79,3), - (185,102,79,3), - (763,435,79,3), - (343,194,80,3), - (574,328,80,3), - (11,6,81,3), - (44,24,81,3), - (65,36,81,3), - (102,57,81,3), - (273,152,81,3), - (291,163,81,3), - (418,237,81,3), - (427,242,82,3), - (603,344,82,3), - (674,384,82,3), - (799,458,82,2), - (930,589,82,2), - (645,368,83,3), - (69,38,84,3), - (129,72,84,3), - (219,121,84,3), - (424,240,84,3), - (704,402,84,3), - (922,581,84,2), - (159,88,85,3), - (316,179,85,3), - (363,206,85,3), - (615,351,85,3), - (475,270,86,3), - (627,359,86,3), - (769,438,86,3), - (907,566,86,2), - (7,4,87,3), - (16,9,87,3), - (117,66,87,3), - (259,144,87,3), - (464,264,87,3), - (479,272,87,3), - (576,329,87,3), - (143,79,88,3), - (449,256,88,3), - (175,96,89,3), - (399,226,89,3), - (411,233,89,3), - (483,274,89,3), - (609,348,89,3), - (721,411,89,3), - (161,89,90,3), - (325,184,90,3), - (589,336,90,3), - (737,420,90,3), - (597,341,91,3), - (684,390,91,3), - (226,125,92,3), - (559,319,92,3), - (564,322,92,3), - (800,459,92,2), - (453,258,93,3), - (639,365,93,3), - (725,413,94,3), - (525,298,95,3), - (5,3,96,3), - (490,278,96,3), - (676,385,96,3), - (706,403,96,3), - (303,171,97,3), - (672,383,97,3), - (773,440,97,3), - (823,482,97,2), - (853,512,97,2), - (141,78,98,3), - (496,281,98,3), - (556,317,98,3), - (623,356,98,3), - (750,427,98,3), - (752,428,98,3), - (98,55,99,3), - (189,104,99,3), - (568,324,99,3), - (817,476,99,2), - (818,477,99,2), - (819,478,99,2), - (820,479,99,2), - (821,480,99,2), - (35,19,100,3), - (33,18,101,3), - (462,263,101,3), - (545,311,101,3), - (822,481,103,2), - (923,582,103,2), - (901,560,105,2), - (828,487,107,2), - (871,530,107,2), - (826,485,110,2), - (869,528,110,2), - (917,576,110,2), - (827,486,111,2), - (870,529,111,2), - (271,151,112,2), - (272,152,112,2), - (274,153,112,2), - (276,154,112,2), - (278,155,112,2), - (280,156,112,2), - (281,157,112,2), - (282,158,112,2), - (284,159,112,2), - (285,160,112,2), - (287,161,112,2), - (289,162,112,2), - (290,163,112,2), - (292,164,112,2), - (293,165,112,2), - (295,166,112,2), - (297,167,112,2), - (298,168,112,2), - (299,169,112,2), - (300,170,112,2), - (302,171,112,2), - (304,172,112,2), - (305,173,112,2), - (307,174,112,2), - (309,175,112,2), - (311,176,112,2), - (312,177,112,2), - (313,178,112,2), - (315,179,112,2), - (317,180,112,2), - (319,181,112,2), - (321,182,112,2), - (322,183,112,2), - (324,184,112,2), - (326,185,112,2), - (328,186,112,2), - (330,187,112,2), - (332,188,112,2), - (334,189,112,2), - (335,190,112,2), - (336,191,112,2), - (338,192,112,2), - (340,193,112,2), - (342,194,112,2), - (344,195,112,2), - (345,196,112,2), - (347,197,112,2), - (349,198,112,2), - (351,199,112,2), - (353,200,112,2), - (354,201,112,2), - (355,202,112,2), - (357,203,112,2), - (358,204,112,2), - (360,205,112,2), - (362,206,112,2), - (364,207,112,2), - (366,208,112,2), - (368,209,112,2), - (370,210,112,2), - (372,211,112,2), - (373,212,112,2), - (375,213,112,2), - (377,214,112,2), - (379,215,112,2), - (381,216,112,2), - (383,217,112,2), - (385,218,112,2), - (387,219,112,2), - (388,220,112,2), - (389,221,112,2), - (391,222,112,2), - (392,223,112,2), - (394,224,112,2), - (396,225,112,2), - (398,226,112,2), - (400,227,112,2), - (402,228,112,2), - (404,229,112,2), - (406,230,112,2), - (407,231,112,2), - (409,232,112,2), - (410,233,112,2), - (412,234,112,2), - (414,235,112,2), - (415,236,112,2), - (417,237,112,2), - (419,238,112,2), - (421,239,112,2), - (423,240,112,2), - (425,241,112,2), - (426,242,112,2), - (428,243,112,2), - (430,244,112,2), - (432,245,112,2), - (434,246,112,2), - (436,247,112,2), - (437,248,112,2), - (438,249,112,2), - (439,250,112,2), - (440,251,112,2), - (442,252,112,2), - (444,253,112,2), - (445,254,112,2), - (446,255,112,2), - (448,256,112,2), - (450,257,112,2), - (452,258,112,2), - (454,259,112,2), - (455,260,112,2), - (457,261,112,2), - (459,262,112,2), - (461,263,112,2), - (463,264,112,2), - (465,265,112,2), - (467,266,112,2), - (468,267,112,2), - (470,268,112,2), - (472,269,112,2), - (474,270,112,2), - (476,271,112,2), - (478,272,112,2), - (480,273,112,2), - (482,274,112,2), - (484,275,112,2), - (486,276,112,2), - (488,277,112,2), - (489,278,112,2), - (491,279,112,2), - (493,280,112,2), - (495,281,112,2), - (497,282,112,2), - (499,283,112,2), - (501,284,112,2), - (503,285,112,2), - (504,286,112,2), - (506,287,112,2), - (508,288,112,2), - (510,289,112,2), - (511,290,112,2), - (512,291,112,2), - (513,292,112,2), - (515,293,112,2), - (517,294,112,2), - (519,295,112,2), - (521,296,112,2), - (523,297,112,2), - (524,298,112,2), - (526,299,112,2), - (527,300,112,2), - (895,554,112,2), - (830,489,125,2), - (872,531,125,2), - (851,510,127,2), - (867,526,127,2), - (927,586,127,2), - (932,591,132,2), - (884,543,134,2), - (896,555,136,2), - (846,505,138,2), - (877,536,138,2), - (903,562,139,2), - (890,549,144,2), - (921,580,149,2), - (915,574,150,2), - (933,592,151,2), - (833,492,153,2), - (881,540,153,2), - (837,496,156,2), - (859,518,156,2), - (847,506,157,2), - (865,524,157,2), - (893,552,159,2), - (908,567,161,2), - (898,557,164,2), - (885,544,166,2), - (912,571,167,2), - (918,577,168,2), - (891,550,170,2), - (929,588,173,2), - (834,493,177,2), - (873,532,177,2), - (925,584,179,2), - (906,565,183,2), - (926,585,184,2), - (914,573,186,2), - (849,508,187,2), - (866,525,187,2), - (900,559,189,2), - (892,551,191,2), - (842,501,193,2), - (862,521,193,2), - (916,575,193,2), - (836,495,195,2), - (874,533,195,2), - (832,491,197,2), - (857,516,197,2), - (902,561,198,2), - (852,511,199,2), - (880,539,199,2), - (529,301,201,2), - (531,302,201,2), - (532,303,201,2), - (533,304,201,2), - (535,305,201,2), - (537,306,201,2), - (539,307,201,2), - (540,308,201,2), - (541,309,201,2), - (543,310,201,2), - (544,311,201,2), - (546,312,201,2), - (548,313,201,2), - (550,314,201,2), - (552,315,201,2), - (554,316,201,2), - (555,317,201,2), - (557,318,201,2), - (558,319,201,2), - (560,320,201,2), - (562,321,201,2), - (563,322,201,2), - (565,323,201,2), - (567,324,201,2), - (569,325,201,2), - (571,326,201,2), - (572,327,201,2), - (573,328,201,2), - (575,329,201,2), - (577,330,201,2), - (579,331,201,2), - (581,332,201,2), - (582,333,201,2), - (584,334,201,2), - (586,335,201,2), - (588,336,201,2), - (590,337,201,2), - (592,338,201,2), - (593,339,201,2), - (595,340,201,2), - (596,341,201,2), - (598,342,201,2), - (600,343,201,2), - (602,344,201,2), - (604,345,201,2), - (606,346,201,2), - (607,347,201,2), - (608,348,201,2), - (610,349,201,2), - (612,350,201,2), - (614,351,201,2), - (616,352,201,2), - (618,353,201,2), - (619,354,201,2), - (620,355,201,2), - (622,356,201,2), - (624,357,201,2), - (625,358,201,2), - (626,359,201,2), - (628,360,201,2), - (630,361,201,2), - (632,362,201,2), - (634,363,201,2), - (636,364,201,2), - (638,365,201,2), - (640,366,201,2), - (642,367,201,2), - (644,368,201,2), - (646,369,201,2), - (648,370,201,2), - (650,371,201,2), - (652,372,201,2), - (654,373,201,2), - (655,374,201,2), - (656,375,201,2), - (658,376,201,2), - (660,377,201,2), - (662,378,201,2), - (664,379,201,2), - (666,380,201,2), - (668,381,201,2), - (669,382,201,2), - (671,383,201,2), - (673,384,201,2), - (675,385,201,2), - (677,386,201,2), - (679,387,201,2), - (680,388,201,2), - (682,389,201,2), - (683,390,201,2), - (685,391,201,2), - (687,392,201,2), - (689,393,201,2), - (690,394,201,2), - (691,395,201,2), - (693,396,201,2), - (695,397,201,2), - (696,398,201,2), - (697,399,201,2), - (699,400,201,2), - (701,401,201,2), - (703,402,201,2), - (705,403,201,2), - (707,404,201,2), - (708,405,201,2), - (710,406,201,2), - (712,407,201,2), - (714,408,201,2), - (716,409,201,2), - (718,410,201,2), - (720,411,201,2), - (722,412,201,2), - (724,413,201,2), - (726,414,201,2), - (728,415,201,2), - (730,416,201,2), - (731,417,201,2), - (733,418,201,2), - (734,419,201,2), - (736,420,201,2), - (738,421,201,2), - (740,422,201,2), - (742,423,201,2), - (744,424,201,2), - (745,425,201,2), - (747,426,201,2), - (749,427,201,2), - (751,428,201,2), - (753,429,201,2), - (755,430,201,2), - (756,431,201,2), - (758,432,201,2), - (759,433,201,2), - (760,434,201,2), - (762,435,201,2), - (764,436,201,2), - (766,437,201,2), - (768,438,201,2), - (770,439,201,2), - (772,440,201,2), - (774,441,201,2), - (776,442,201,2), - (778,443,201,2), - (780,444,201,2), - (782,445,201,2), - (783,446,201,2), - (784,447,201,2), - (786,448,201,2), - (788,449,201,2), - (790,450,201,2), - (850,509,202,2), - (879,538,202,2); + (66,40,1,3), +(374,210,1,3), +(390,218,1,3), +(529,296,1,3), +(544,304,1,3), +(680,374,1,3), +(741,410,1,3), +(22,13,2,3), +(102,60,2,3), +(137,79,2,3), +(166,96,2,3), +(268,151,2,3), +(761,421,2,3), +(802,445,2,3), +(811,451,2,2), +(107,63,3,3), +(320,180,3,3), +(351,196,3,3), +(403,225,3,3), +(605,335,3,3), +(812,452,4,2), +(815,455,4,2), +(128,74,5,3), +(243,138,5,3), +(437,243,5,3), +(645,356,5,3), +(936,576,5,2), +(191,110,6,3), +(313,176,6,3), +(329,185,6,3), +(593,329,6,3), +(813,453,6,2), +(952,592,6,2), +(68,41,7,3), +(207,119,7,3), +(455,253,7,3), +(637,352,7,3), +(9,5,8,3), +(140,81,8,3), +(237,135,8,3), +(653,360,8,3), +(747,413,8,3), +(814,454,8,2), +(35,21,9,3), +(72,43,9,3), +(105,62,9,3), +(322,181,9,3), +(446,248,9,3), +(595,330,9,3), +(168,97,10,3), +(676,372,10,3), +(299,169,11,3), +(704,386,11,3), +(729,403,11,3), +(767,425,11,3), +(857,497,11,2), +(872,527,11,2), +(923,563,11,2), +(202,116,12,3), +(428,238,12,3), +(718,396,12,3), +(426,237,13,3), +(527,295,13,3), +(556,310,13,3), +(664,366,13,3), +(868,508,13,2), +(873,538,13,2), +(937,577,13,2), +(538,301,14,3), +(781,433,14,3), +(359,201,15,3), +(678,373,15,3), +(88,52,16,3), +(135,78,16,3), +(700,384,16,3), +(816,456,16,2), +(25,15,17,3), +(376,211,17,3), +(941,581,17,2), +(119,69,18,3), +(458,255,18,3), +(702,385,18,3), +(739,409,18,3), +(743,411,18,3), +(175,101,19,3), +(209,120,19,3), +(548,306,19,3), +(817,457,19,2), +(863,503,19,2), +(874,533,19,2), +(143,83,20,3), +(197,113,20,3), +(337,189,20,3), +(433,241,20,3), +(918,558,20,2), +(173,100,21,3), +(301,170,21,3), +(536,300,21,3), +(698,383,21,3), +(117,68,22,3), +(341,191,22,3), +(562,313,22,3), +(37,22,23,3), +(247,140,23,3), +(591,328,23,3), +(617,341,23,3), +(466,259,24,3), +(662,365,24,3), +(737,408,24,3), +(464,258,25,3), +(692,380,25,3), +(20,12,26,3), +(333,187,26,3), +(380,213,26,3), +(407,227,26,3), +(483,269,26,3), +(861,501,26,2), +(875,531,26,2), +(52,31,27,3), +(177,102,27,3), +(405,226,27,3), +(716,395,27,3), +(751,415,27,3), +(870,510,27,2), +(876,540,27,2), +(325,183,28,3), +(495,276,28,3), +(603,334,28,3), +(749,414,28,3), +(911,551,28,2), +(417,232,29,3), +(485,270,29,3), +(519,290,29,3), +(546,305,29,3), +(349,195,30,3), +(409,228,30,3), +(810,450,30,3), +(925,565,30,2), +(450,250,31,3), +(694,381,31,3), +(724,400,31,3), +(798,443,31,3), +(130,75,32,3), +(204,117,32,3), +(249,141,32,3), +(823,463,32,2), +(824,464,32,2), +(745,412,33,3), +(786,436,33,3), +(378,212,34,3), +(435,242,34,3), +(820,460,34,2), +(938,578,34,2), +(386,216,35,3), +(682,375,35,3), +(794,440,35,3), +(462,257,36,3), +(80,47,37,3), +(582,323,37,3), +(950,590,37,2), +(92,54,38,3), +(305,172,38,3), +(413,230,38,3), +(696,382,38,3), +(365,204,39,3), +(651,359,39,3), +(775,429,39,3), +(229,131,40,3), +(415,231,40,3), +(765,424,40,3), +(291,165,41,3), +(476,265,41,3), +(124,72,42,3), +(388,217,42,3), +(601,333,42,3), +(773,428,42,3), +(443,246,43,3), +(578,321,43,3), +(755,418,43,3), +(822,462,43,2), +(4,2,44,3), +(635,351,44,3), +(94,55,45,3), +(193,111,45,3), +(223,128,45,3), +(281,159,45,3), +(311,175,45,3), +(361,202,45,3), +(499,278,45,3), +(920,560,45,2), +(331,186,46,3), +(625,345,47,3), +(633,350,47,3), +(568,316,48,3), +(560,312,49,3), +(686,377,49,3), +(922,562,49,2), +(423,235,50,3), +(558,311,50,3), +(643,355,50,3), +(18,11,51,3), +(231,132,51,3), +(623,344,51,3), +(720,397,51,3), +(771,427,51,3), +(213,122,52,3), +(318,179,52,3), +(672,370,52,3), +(800,444,52,3), +(98,57,53,3), +(113,66,53,3), +(251,142,53,3), +(259,146,53,3), +(315,177,53,3), +(363,203,53,3), +(470,262,53,3), +(33,20,54,3), +(227,130,54,3), +(288,163,54,3), +(399,223,54,3), +(431,240,54,3), +(480,267,54,3), +(858,498,54,2), +(877,528,54,2), +(905,545,54,2), +(56,33,55,3), +(649,358,55,3), +(921,561,55,2), +(353,197,56,3), +(421,234,56,3), +(478,266,56,3), +(607,336,56,3), +(757,419,56,3), +(7,4,57,3), +(218,125,57,3), +(382,214,57,3), +(564,314,57,3), +(621,343,57,3), +(221,127,58,3), +(510,284,58,3), +(777,430,58,3), +(788,437,58,3), +(493,275,59,3), +(574,319,59,3), +(628,347,59,3), +(769,426,59,3), +(825,465,59,2), +(826,466,59,2), +(827,467,59,2), +(828,468,59,2), +(829,469,59,2), +(830,470,59,2), +(831,471,59,2), +(832,472,59,2), +(833,473,59,2), +(834,474,59,2), +(835,475,59,2), +(74,44,60,3), +(76,45,60,3), +(255,144,60,3), +(935,575,60,2), +(181,104,61,3), +(401,224,61,3), +(411,229,61,3), +(14,8,62,3), +(50,30,62,3), +(264,149,62,3), +(441,245,62,3), +(452,251,62,3), +(615,340,62,3), +(641,354,62,3), +(63,38,63,3), +(162,94,63,3), +(599,332,63,3), +(611,338,63,3), +(666,367,63,3), +(31,19,64,3), +(154,89,64,3), +(199,114,64,3), +(343,192,64,3), +(597,331,64,3), +(714,394,64,3), +(943,583,64,2), +(188,108,65,3), +(327,184,65,3), +(474,264,65,3), +(566,315,65,3), +(933,573,65,2), +(554,309,66,3), +(731,404,66,3), +(792,439,66,3), +(29,18,67,3), +(570,317,67,3), +(658,363,67,3), +(670,369,67,3), +(690,379,67,3), +(733,405,67,3), +(584,324,68,3), +(393,220,69,3), +(540,302,69,3), +(688,378,69,3), +(846,486,69,2), +(878,516,69,2), +(151,87,70,3), +(211,121,70,3), +(472,263,70,3), +(491,274,70,3), +(506,282,70,3), +(96,56,71,3), +(126,73,71,3), +(164,95,71,3), +(241,137,71,3), +(552,308,71,3), +(631,349,71,3), +(821,461,71,2), +(303,171,72,3), +(487,271,72,3), +(149,86,73,3), +(347,194,73,3), +(262,148,74,3), +(270,152,74,3), +(576,320,74,3), +(647,357,75,3), +(11,6,76,3), +(115,67,76,3), +(235,134,76,3), +(266,150,76,3), +(297,168,76,3), +(517,289,76,3), +(915,555,76,2), +(46,27,77,3), +(133,77,77,3), +(171,99,77,3), +(233,133,77,3), +(245,139,77,3), +(279,158,77,3), +(345,193,77,3), +(534,299,77,3), +(860,500,77,2), +(879,530,77,2), +(39,23,78,3), +(929,569,78,2), +(147,85,79,3), +(397,222,79,3), +(917,557,79,2), +(58,34,80,3), +(156,90,80,3), +(508,283,80,3), +(913,553,80,2), +(109,64,81,3), +(111,65,81,3), +(395,221,81,3), +(619,342,81,3), +(862,502,81,2), +(880,532,81,2), +(277,157,82,3), +(501,279,82,3), +(525,294,82,3), +(580,322,82,3), +(783,434,82,3), +(818,458,82,2), +(847,487,82,2), +(881,517,82,2), +(257,145,83,3), +(309,174,83,3), +(497,277,83,3), +(550,307,83,3), +(41,24,84,3), +(145,84,84,3), +(253,143,84,3), +(572,318,84,3), +(674,371,84,3), +(844,484,84,2), +(882,514,84,2), +(928,568,84,2), +(83,49,85,3), +(158,91,85,3), +(185,106,85,3), +(215,123,85,3), +(806,447,85,3), +(2,1,86,3), +(295,167,86,3), +(521,291,86,3), +(609,337,87,3), +(942,582,87,2), +(44,26,88,3), +(122,71,88,3), +(372,209,88,3), +(586,325,88,3), +(866,506,88,2), +(883,536,88,2), +(85,50,89,3), +(293,166,90,3), +(726,401,90,3), +(70,42,91,3), +(183,105,91,3), +(460,256,92,3), +(504,281,92,3), +(819,459,92,2), +(842,482,92,2), +(884,512,92,2), +(285,161,93,3), +(439,244,93,3), +(759,420,93,3), +(179,103,94,3), +(655,361,94,3), +(684,376,94,3), +(273,154,95,3), +(283,160,95,3), +(339,190,95,3), +(384,215,95,3), +(54,32,96,3), +(239,136,96,3), +(369,207,96,3), +(419,233,96,3), +(542,303,96,3), +(660,364,96,3), +(1,1,97,2), +(3,2,97,2), +(5,3,97,2), +(6,4,97,2), +(8,5,97,2), +(10,6,97,2), +(12,7,97,2), +(13,8,97,2), +(15,9,97,2), +(16,10,97,2), +(17,11,97,2), +(19,12,97,2), +(21,13,97,2), +(23,14,97,2), +(24,15,97,2), +(26,16,97,2), +(27,17,97,2), +(28,18,97,2), +(30,19,97,2), +(32,20,97,2), +(34,21,97,2), +(36,22,97,2), +(38,23,97,2), +(40,24,97,2), +(42,25,97,2), +(43,26,97,2), +(45,27,97,2), +(47,28,97,2), +(48,29,97,2), +(49,30,97,2), +(51,31,97,2), +(53,32,97,2), +(55,33,97,2), +(57,34,97,2), +(59,35,97,2), +(60,36,97,2), +(61,37,97,2), +(62,38,97,2), +(64,39,97,2), +(65,40,97,2), +(67,41,97,2), +(69,42,97,2), +(71,43,97,2), +(73,44,97,2), +(75,45,97,2), +(77,46,97,2), +(79,47,97,2), +(81,48,97,2), +(82,49,97,2), +(84,50,97,2), +(86,51,97,2), +(87,52,97,2), +(89,53,97,2), +(91,54,97,2), +(93,55,97,2), +(95,56,97,2), +(97,57,97,2), +(99,58,97,2), +(100,59,97,2), +(101,60,97,2), +(103,61,97,2), +(104,62,97,2), +(106,63,97,2), +(108,64,97,2), +(110,65,97,2), +(112,66,97,2), +(114,67,97,2), +(116,68,97,2), +(118,69,97,2), +(120,70,97,2), +(121,71,97,2), +(123,72,97,2), +(125,73,97,2), +(127,74,97,2), +(129,75,97,2), +(131,76,97,2), +(132,77,97,2), +(134,78,97,2), +(136,79,97,2), +(138,80,97,2), +(139,81,97,2), +(141,82,97,2), +(142,83,97,2), +(144,84,97,2), +(146,85,97,2), +(148,86,97,2), +(150,87,97,2), +(152,88,97,2), +(153,89,97,2), +(155,90,97,2), +(157,91,97,2), +(159,92,97,2), +(160,93,97,2), +(161,94,97,2), +(163,95,97,2), +(165,96,97,2), +(167,97,97,2), +(169,98,97,2), +(170,99,97,2), +(172,100,97,2), +(174,101,97,2), +(176,102,97,2), +(178,103,97,2), +(180,104,97,2), +(182,105,97,2), +(184,106,97,2), +(186,107,97,2), +(187,108,97,2), +(189,109,97,2), +(190,110,97,2), +(192,111,97,2), +(194,112,97,2), +(195,112,97,3), +(196,113,97,2), +(198,114,97,2), +(200,115,97,2), +(201,116,97,2), +(203,117,97,2), +(205,118,97,2), +(206,119,97,2), +(208,120,97,2), +(210,121,97,2), +(212,122,97,2), +(214,123,97,2), +(216,124,97,2), +(217,125,97,2), +(219,126,97,2), +(220,127,97,2), +(222,128,97,2), +(224,129,97,2), +(225,129,97,3), +(226,130,97,2), +(228,131,97,2), +(230,132,97,2), +(232,133,97,2), +(234,134,97,2), +(236,135,97,2), +(238,136,97,2), +(240,137,97,2), +(242,138,97,2), +(244,139,97,2), +(246,140,97,2), +(248,141,97,2), +(250,142,97,2), +(252,143,97,2), +(254,144,97,2), +(256,145,97,2), +(258,146,97,2), +(260,147,97,2), +(261,148,97,2), +(263,149,97,2), +(265,150,97,2), +(307,173,97,3), +(532,298,97,3), +(668,368,97,3), +(357,200,99,3), +(589,327,99,3), +(836,476,99,2), +(837,477,99,2), +(838,478,99,2), +(839,479,99,2), +(840,480,99,2), +(843,483,99,2), +(885,513,99,2), +(78,46,100,3), +(335,188,100,3), +(448,249,100,3), +(513,286,100,3), +(639,353,100,3), +(710,391,100,3), +(804,446,100,3), +(859,499,100,2), +(886,529,100,2), +(90,53,101,3), +(613,339,101,3), +(790,438,101,3), +(841,481,103,2), +(949,589,110,2), +(934,574,111,2), +(865,505,113,2), +(887,535,113,2), +(908,548,113,2), +(864,504,115,2), +(888,534,115,2), +(850,490,116,2), +(889,520,116,2), +(855,495,117,2), +(890,525,117,2), +(916,556,117,2), +(945,585,118,2), +(903,543,125,2), +(906,546,129,2), +(871,511,130,2), +(891,541,130,2), +(946,586,134,2), +(912,552,137,2), +(910,550,139,2), +(909,549,140,2), +(869,509,141,2), +(892,539,141,2), +(947,587,146,2), +(940,580,147,2), +(853,493,148,2), +(893,523,148,2), +(944,584,148,2), +(907,547,149,2), +(852,492,152,2), +(894,522,152,2), +(926,566,152,2), +(867,507,159,2), +(895,537,159,2), +(845,485,160,2), +(896,515,160,2), +(939,579,162,2), +(914,554,163,2), +(904,544,167,2), +(537,301,168,2), +(539,302,168,2), +(541,303,168,2), +(543,304,168,2), +(545,305,168,2), +(547,306,168,2), +(549,307,168,2), +(551,308,168,2), +(553,309,168,2), +(555,310,168,2), +(557,311,168,2), +(559,312,168,2), +(561,313,168,2), +(563,314,168,2), +(565,315,168,2), +(567,316,168,2), +(569,317,168,2), +(571,318,168,2), +(573,319,168,2), +(575,320,168,2), +(577,321,168,2), +(579,322,168,2), +(581,323,168,2), +(583,324,168,2), +(585,325,168,2), +(587,326,168,2), +(588,327,168,2), +(590,328,168,2), +(592,329,168,2), +(594,330,168,2), +(596,331,168,2), +(598,332,168,2), +(600,333,168,2), +(602,334,168,2), +(604,335,168,2), +(606,336,168,2), +(608,337,168,2), +(610,338,168,2), +(612,339,168,2), +(614,340,168,2), +(616,341,168,2), +(618,342,168,2), +(620,343,168,2), +(622,344,168,2), +(624,345,168,2), +(626,346,168,2), +(627,347,168,2), +(629,348,168,2), +(630,349,168,2), +(632,350,168,2), +(634,351,168,2), +(636,352,168,2), +(638,353,168,2), +(640,354,168,2), +(642,355,168,2), +(644,356,168,2), +(646,357,168,2), +(648,358,168,2), +(650,359,168,2), +(652,360,168,2), +(654,361,168,2), +(656,362,168,2), +(657,363,168,2), +(659,364,168,2), +(661,365,168,2), +(663,366,168,2), +(665,367,168,2), +(667,368,168,2), +(669,369,168,2), +(671,370,168,2), +(673,371,168,2), +(675,372,168,2), +(677,373,168,2), +(679,374,168,2), +(681,375,168,2), +(683,376,168,2), +(685,377,168,2), +(687,378,168,2), +(689,379,168,2), +(691,380,168,2), +(693,381,168,2), +(695,382,168,2), +(697,383,168,2), +(699,384,168,2), +(701,385,168,2), +(703,386,168,2), +(705,387,168,2), +(706,388,168,2), +(707,389,168,2), +(708,390,168,2), +(709,391,168,2), +(711,392,168,2), +(712,393,168,2), +(713,394,168,2), +(715,395,168,2), +(717,396,168,2), +(719,397,168,2), +(721,398,168,2), +(722,399,168,2), +(723,400,168,2), +(725,401,168,2), +(727,402,168,2), +(728,403,168,2), +(730,404,168,2), +(732,405,168,2), +(734,406,168,2), +(735,407,168,2), +(736,408,168,2), +(738,409,168,2), +(740,410,168,2), +(742,411,168,2), +(744,412,168,2), +(746,413,168,2), +(748,414,168,2), +(750,415,168,2), +(752,416,168,2), +(753,417,168,2), +(754,418,168,2), +(756,419,168,2), +(758,420,168,2), +(760,421,168,2), +(762,422,168,2), +(763,423,168,2), +(764,424,168,2), +(766,425,168,2), +(768,426,168,2), +(770,427,168,2), +(772,428,168,2), +(774,429,168,2), +(776,430,168,2), +(778,431,168,2), +(779,432,168,2), +(780,433,168,2), +(782,434,168,2), +(784,435,168,2), +(785,436,168,2), +(787,437,168,2), +(789,438,168,2), +(791,439,168,2), +(793,440,168,2), +(795,441,168,2), +(796,442,168,2), +(797,443,168,2), +(799,444,168,2), +(801,445,168,2), +(803,446,168,2), +(805,447,168,2), +(807,448,168,2), +(808,449,168,2), +(809,450,168,2), +(267,151,172,2), +(269,152,172,2), +(271,153,172,2), +(272,154,172,2), +(274,155,172,2), +(275,156,172,2), +(276,157,172,2), +(278,158,172,2), +(280,159,172,2), +(282,160,172,2), +(284,161,172,2), +(286,162,172,2), +(287,163,172,2), +(289,164,172,2), +(290,165,172,2), +(292,166,172,2), +(294,167,172,2), +(296,168,172,2), +(298,169,172,2), +(300,170,172,2), +(302,171,172,2), +(304,172,172,2), +(306,173,172,2), +(308,174,172,2), +(310,175,172,2), +(312,176,172,2), +(314,177,172,2), +(316,178,172,2), +(317,179,172,2), +(319,180,172,2), +(321,181,172,2), +(323,182,172,2), +(324,183,172,2), +(326,184,172,2), +(328,185,172,2), +(330,186,172,2), +(332,187,172,2), +(334,188,172,2), +(336,189,172,2), +(338,190,172,2), +(340,191,172,2), +(342,192,172,2), +(344,193,172,2), +(346,194,172,2), +(348,195,172,2), +(350,196,172,2), +(352,197,172,2), +(354,198,172,2), +(355,199,172,2), +(356,200,172,2), +(358,201,172,2), +(360,202,172,2), +(362,203,172,2), +(364,204,172,2), +(366,205,172,2), +(367,206,172,2), +(368,207,172,2), +(370,208,172,2), +(371,209,172,2), +(373,210,172,2), +(375,211,172,2), +(377,212,172,2), +(379,213,172,2), +(381,214,172,2), +(383,215,172,2), +(385,216,172,2), +(387,217,172,2), +(389,218,172,2), +(391,219,172,2), +(392,220,172,2), +(394,221,172,2), +(396,222,172,2), +(398,223,172,2), +(400,224,172,2), +(402,225,172,2), +(404,226,172,2), +(406,227,172,2), +(408,228,172,2), +(410,229,172,2), +(412,230,172,2), +(414,231,172,2), +(416,232,172,2), +(418,233,172,2), +(420,234,172,2), +(422,235,172,2), +(424,236,172,2), +(425,237,172,2), +(427,238,172,2), +(429,239,172,2), +(430,240,172,2), +(432,241,172,2), +(434,242,172,2), +(436,243,172,2), +(438,244,172,2), +(440,245,172,2), +(442,246,172,2), +(444,247,172,2), +(445,248,172,2), +(447,249,172,2), +(449,250,172,2), +(451,251,172,2), +(453,252,172,2), +(454,253,172,2), +(456,254,172,2), +(457,255,172,2), +(459,256,172,2), +(461,257,172,2), +(463,258,172,2), +(465,259,172,2), +(467,260,172,2), +(468,261,172,2), +(469,262,172,2), +(471,263,172,2), +(473,264,172,2), +(475,265,172,2), +(477,266,172,2), +(479,267,172,2), +(481,268,172,2), +(482,269,172,2), +(484,270,172,2), +(486,271,172,2), +(488,272,172,2), +(489,273,172,2), +(490,274,172,2), +(492,275,172,2), +(494,276,172,2), +(496,277,172,2), +(498,278,172,2), +(500,279,172,2), +(502,280,172,2), +(503,281,172,2), +(505,282,172,2), +(507,283,172,2), +(509,284,172,2), +(511,285,172,2), +(512,286,172,2), +(514,287,172,2), +(515,288,172,2), +(516,289,172,2), +(518,290,172,2), +(520,291,172,2), +(522,292,172,2), +(523,293,172,2), +(524,294,172,2), +(526,295,172,2), +(528,296,172,2), +(530,297,172,2), +(531,298,172,2), +(533,299,172,2), +(535,300,172,2), +(848,488,172,2), +(897,518,172,2), +(856,496,174,2), +(898,526,174,2), +(854,494,180,2), +(899,524,180,2), +(924,564,180,2), +(948,588,181,2), +(930,570,184,2), +(851,491,185,2), +(900,521,185,2), +(919,559,186,2), +(849,489,189,2), +(901,519,189,2), +(932,572,190,2), +(951,591,192,2), +(931,571,194,2), +(927,567,197,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -1675,195 +1693,188 @@ UNLOCK TABLES; LOCK TABLES `civicrm_address` WRITE; /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */; INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES - (1,191,1,1,0,'689E States Blvd NE',689,'E',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Grand Rapids',1,1021,NULL,'49560',NULL,1228,43.031413,-85.550267,0,NULL,NULL,NULL), - (2,11,1,1,0,'354M El Camino Way W',354,'M',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78788',NULL,1228,30.326374,-97.771258,0,NULL,NULL,NULL), - (3,181,1,1,0,'196I Lincoln St W',196,'I',NULL,'Lincoln','St','W',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'94269',NULL,1228,38.377411,-121.444429,0,NULL,NULL,NULL), - (4,182,1,1,0,'435Q Northpoint Pl S',435,'Q',NULL,'Northpoint','Pl','S',NULL,NULL,NULL,NULL,'Sioux Falls',1,1040,NULL,'57110',NULL,1228,43.544375,-96.65801,0,NULL,NULL,NULL), - (5,86,1,1,0,'249Y States Ave SW',249,'Y',NULL,'States','Ave','SW',NULL,NULL,NULL,NULL,'Goodsprings',1,1000,NULL,'35560',NULL,1228,33.679503,-87.237372,0,NULL,NULL,NULL), - (6,4,1,1,0,'861Y Bay Way W',861,'Y',NULL,'Bay','Way','W',NULL,NULL,NULL,NULL,'Roseburg North',1,1036,NULL,'97795',NULL,1228,43.276877,-123.348568,0,NULL,NULL,NULL), - (7,98,1,1,0,'158O Maple Ave N',158,'O',NULL,'Maple','Ave','N',NULL,NULL,NULL,NULL,'Poplarville',1,1023,NULL,'39470',NULL,1228,30.810936,-89.56435,0,NULL,NULL,NULL), - (8,172,1,1,0,'557O Van Ness Rd SE',557,'O',NULL,'Van Ness','Rd','SE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55488',NULL,1228,45.015914,-93.47188,0,NULL,NULL,NULL), - (9,108,1,1,0,'181H El Camino Rd SW',181,'H',NULL,'El Camino','Rd','SW',NULL,NULL,NULL,NULL,'Nashville',1,1041,NULL,'37215',NULL,1228,36.098408,-86.82522,0,NULL,NULL,NULL), - (10,95,1,1,0,'71Q Woodbridge Dr SE',71,'Q',NULL,'Woodbridge','Dr','SE',NULL,NULL,NULL,NULL,'Calhoun',1,1012,NULL,'62419',NULL,1228,38.625864,-87.99407,0,NULL,NULL,NULL), - (11,58,1,1,0,'379Z Pine Way E',379,'Z',NULL,'Pine','Way','E',NULL,NULL,NULL,NULL,'Divide',1,1025,NULL,'59727',NULL,1228,45.794048,-112.77595,0,NULL,NULL,NULL), - (12,5,1,1,0,'409W Green Ave S',409,'W',NULL,'Green','Ave','S',NULL,NULL,NULL,NULL,'Lampe',1,1024,NULL,'65681',NULL,1228,36.561455,-93.46715,0,NULL,NULL,NULL), - (13,139,1,1,0,'426E Northpoint Pl NW',426,'E',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Downsville',1,1017,NULL,'71234',NULL,1228,32.641967,-92.3529,0,NULL,NULL,NULL), - (14,76,1,1,0,'391G Beech Ln SE',391,'G',NULL,'Beech','Ln','SE',NULL,NULL,NULL,NULL,'Castle Rock',1,1022,NULL,'55010',NULL,1228,44.544465,-93.15353,0,NULL,NULL,NULL), - (15,7,1,1,0,'757J Main Way E',757,'J',NULL,'Main','Way','E',NULL,NULL,NULL,NULL,'Tamarack',1,1022,NULL,'55787',NULL,1228,46.679313,-93.13241,0,NULL,NULL,NULL), - (16,106,1,1,0,'357M Caulder Dr SE',357,'M',NULL,'Caulder','Dr','SE',NULL,NULL,NULL,NULL,'Palm Bay',1,1008,NULL,'32907',NULL,1228,28.012241,-80.67729,0,NULL,NULL,NULL), - (17,179,1,1,0,'381F States Blvd E',381,'F',NULL,'States','Blvd','E',NULL,NULL,NULL,NULL,'Stockdale',1,1037,NULL,'15483',NULL,1228,40.081257,-79.85174,0,NULL,NULL,NULL), - (18,10,1,1,0,'308B Lincoln Ave N',308,'B',NULL,'Lincoln','Ave','N',NULL,NULL,NULL,NULL,'Johnsonville',1,1031,NULL,'12094',NULL,1228,42.899334,-73.49006,0,NULL,NULL,NULL), - (19,39,1,1,0,'910A Pine Pl N',910,'A',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Ligonier',1,1037,NULL,'15658',NULL,1228,40.247351,-79.22882,0,NULL,NULL,NULL), - (20,51,1,1,0,'268Y Cadell Way S',268,'Y',NULL,'Cadell','Way','S',NULL,NULL,NULL,NULL,'New Meadows',1,1011,NULL,'83654',NULL,1228,45.077791,-116.34335,0,NULL,NULL,NULL), - (21,134,1,1,0,'272C Northpoint Way E',272,'C',NULL,'Northpoint','Way','E',NULL,NULL,NULL,NULL,'Wrightsville',1,1037,NULL,'17368',NULL,1228,40.002058,-76.52757,0,NULL,NULL,NULL), - (22,128,1,1,0,'816Z Green Rd S',816,'Z',NULL,'Green','Rd','S',NULL,NULL,NULL,NULL,'Newport News',1,1045,NULL,'23607',NULL,1228,36.987151,-76.4195,0,NULL,NULL,NULL), - (23,105,1,1,0,'374I Beech Pl SW',374,'I',NULL,'Beech','Pl','SW',NULL,NULL,NULL,NULL,'Daytona Beach',1,1008,NULL,'32117',NULL,1228,29.238606,-81.05316,0,NULL,NULL,NULL), - (24,158,1,1,0,'383S Pine St NW',383,'S',NULL,'Pine','St','NW',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77026',NULL,1228,29.79437,-95.33395,0,NULL,NULL,NULL), - (25,19,1,1,0,'647U Cadell Ave S',647,'U',NULL,'Cadell','Ave','S',NULL,NULL,NULL,NULL,'Knoxville',1,1019,NULL,'21758',NULL,1228,39.342991,-77.66014,0,NULL,NULL,NULL), - (26,143,1,1,0,'559P Caulder Rd W',559,'P',NULL,'Caulder','Rd','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35225',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL), - (27,114,1,1,0,'890H Green Dr SE',890,'H',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Ruthton',1,1022,NULL,'56170',NULL,1228,44.17521,-96.07363,0,NULL,NULL,NULL), - (28,92,1,1,0,'123T Martin Luther King Ln NW',123,'T',NULL,'Martin Luther King','Ln','NW',NULL,NULL,NULL,NULL,'Lancaster',1,1004,NULL,'93536',NULL,1228,34.728857,-118.32683,0,NULL,NULL,NULL), - (29,164,1,1,0,'781K Woodbridge Way N',781,'K',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Sioux Falls',1,1040,NULL,'57110',NULL,1228,43.544375,-96.65801,0,NULL,NULL,NULL), - (30,174,1,1,0,'314P Green Blvd SW',314,'P',NULL,'Green','Blvd','SW',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67217',NULL,1228,37.62421,-97.36312,0,NULL,NULL,NULL), - (31,52,1,1,0,'337J Beech Ln S',337,'J',NULL,'Beech','Ln','S',NULL,NULL,NULL,NULL,'Vernalis',1,1004,NULL,'95385',NULL,1228,37.609781,-121.26784,0,NULL,NULL,NULL), - (32,24,1,1,0,'392L Dowlen Ave SE',392,'L',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Saint Benedict',1,1017,NULL,'70457',NULL,1228,30.42551,-89.881256,0,NULL,NULL,NULL), - (33,14,1,1,0,'889P Dowlen Ave W',889,'P',NULL,'Dowlen','Ave','W',NULL,NULL,NULL,NULL,'Binghamton',1,1031,NULL,'13905',NULL,1228,42.121443,-75.93329,0,NULL,NULL,NULL), - (34,196,1,1,0,'424V Lincoln Dr N',424,'V',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Beaver',1,1036,NULL,'97108',NULL,1228,45.284763,-123.6908,0,NULL,NULL,NULL), - (35,166,1,1,0,'855D Bay Blvd SE',855,'D',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Catawba',1,1045,NULL,'24070',NULL,1228,37.361962,-80.19485,0,NULL,NULL,NULL), - (36,73,1,1,0,'289F Main Dr S',289,'F',NULL,'Main','Dr','S',NULL,NULL,NULL,NULL,'Southern Pines',1,1032,NULL,'28388',NULL,1228,35.280335,-79.432734,0,NULL,NULL,NULL), - (37,152,1,1,0,'886M Jackson Dr N',886,'M',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Stonefort',1,1012,NULL,'62987',NULL,1228,37.635792,-88.67912,0,NULL,NULL,NULL), - (38,72,1,1,0,'980J Maple Path NE',980,'J',NULL,'Maple','Path','NE',NULL,NULL,NULL,NULL,'Brooklyn',1,1023,NULL,'39425',NULL,1228,31.059327,-89.09164,0,NULL,NULL,NULL), - (39,13,1,1,0,'638B El Camino St N',638,'B',NULL,'El Camino','St','N',NULL,NULL,NULL,NULL,'Hudson',1,1049,NULL,'82515',NULL,1228,42.86682,-108.53339,0,NULL,NULL,NULL), - (40,155,1,1,0,'275E States Dr SW',275,'E',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'Beverly',1,1020,NULL,'01915',NULL,1228,42.560995,-70.8757,0,NULL,NULL,NULL), - (41,117,1,1,0,'956B Main Dr NE',956,'B',NULL,'Main','Dr','NE',NULL,NULL,NULL,NULL,'Paris',1,1016,NULL,'40361',NULL,1228,38.212471,-84.23646,0,NULL,NULL,NULL), - (42,37,1,1,0,'195H Caulder Way NW',195,'H',NULL,'Caulder','Way','NW',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90060',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), - (43,64,1,1,0,'602V Second Dr SW',602,'V',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Fairfield',1,1014,NULL,'52556',NULL,1228,41.017736,-91.95,0,NULL,NULL,NULL), - (44,110,1,1,0,'643Y Cadell Dr NW',643,'Y',NULL,'Cadell','Dr','NW',NULL,NULL,NULL,NULL,'Fort Lyon',1,1005,NULL,'81038',NULL,1228,37.955547,-103.072469,0,NULL,NULL,NULL), - (45,23,1,1,0,'986J Main Pl NE',986,'J',NULL,'Main','Pl','NE',NULL,NULL,NULL,NULL,'Cedar Bluffs',1,1026,NULL,'68015',NULL,1228,41.386373,-96.64986,0,NULL,NULL,NULL), - (46,2,1,1,0,'970S Second Way E',970,'S',NULL,'Second','Way','E',NULL,NULL,NULL,NULL,'New York',1,1031,NULL,'10272',NULL,1228,40.780751,-73.977182,0,NULL,NULL,NULL), - (47,78,1,1,0,'300G Van Ness St SW',300,'G',NULL,'Van Ness','St','SW',NULL,NULL,NULL,NULL,'Springfield',1,1020,NULL,'01107',NULL,1228,42.120193,-72.6061,0,NULL,NULL,NULL), - (48,69,1,1,0,'364L Lincoln St W',364,'L',NULL,'Lincoln','St','W',NULL,NULL,NULL,NULL,'Palm Coast',1,1008,NULL,'32142',NULL,1228,29.466085,-81.282815,0,NULL,NULL,NULL), - (49,145,1,1,0,'580E El Camino Pl NE',580,'E',NULL,'El Camino','Pl','NE',NULL,NULL,NULL,NULL,'Lynn',1,1020,NULL,'01901',NULL,1228,42.461246,-70.946743,0,NULL,NULL,NULL), - (50,120,1,1,0,'752L States Ln SE',752,'L',NULL,'States','Ln','SE',NULL,NULL,NULL,NULL,'Hancock',1,1031,NULL,'13783',NULL,1228,41.985839,-75.28214,0,NULL,NULL,NULL), - (51,15,1,1,0,'789W Pine Rd NW',789,'W',NULL,'Pine','Rd','NW',NULL,NULL,NULL,NULL,'San Francisco',1,1004,NULL,'94169',NULL,1228,37.784827,-122.727802,0,NULL,NULL,NULL), - (52,103,1,1,0,'397B Second Path W',397,'B',NULL,'Second','Path','W',NULL,NULL,NULL,NULL,'Media',1,1037,NULL,'19091',NULL,1228,39.934047,-75.405987,0,NULL,NULL,NULL), - (53,125,1,1,0,'252J El Camino Dr SW',252,'J',NULL,'El Camino','Dr','SW',NULL,NULL,NULL,NULL,'McKinney',1,1042,NULL,'75069',NULL,1228,33.195073,-96.60363,0,NULL,NULL,NULL), - (54,137,1,1,0,'885E Maple Blvd NW',885,'E',NULL,'Maple','Blvd','NW',NULL,NULL,NULL,NULL,'Overton',1,1026,NULL,'68863',NULL,1228,40.752213,-99.52687,0,NULL,NULL,NULL), - (55,25,1,1,0,'556R Dowlen Pl SW',556,'R',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,NULL), - (56,22,1,1,0,'449Z Maple St S',449,'Z',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Alexandria',1,1013,NULL,'46001',NULL,1228,40.257082,-85.673,0,NULL,NULL,NULL), - (57,159,1,1,0,'105W Jackson Way NE',105,'W',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55416',NULL,1228,44.946664,-93.34215,0,NULL,NULL,NULL), - (58,185,1,1,0,'250I Cadell Blvd E',250,'I',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Congerville',1,1012,NULL,'61729',NULL,1228,40.619306,-89.22353,0,NULL,NULL,NULL), - (59,71,1,1,0,'78G Maple St NW',78,'G',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Waxahachie',1,1042,NULL,'75167',NULL,1228,32.380958,-96.91801,0,NULL,NULL,NULL), - (60,194,1,1,0,'329U Van Ness Way N',329,'U',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Sauquoit',1,1031,NULL,'13456',NULL,1228,43.005669,-75.26202,0,NULL,NULL,NULL), - (61,171,1,1,0,'363D Jackson Rd N',363,'D',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55402',NULL,1228,44.975565,-93.27053,0,NULL,NULL,NULL), - (62,178,1,1,0,'851T Van Ness Ave W',851,'T',NULL,'Van Ness','Ave','W',NULL,NULL,NULL,NULL,'East Winthrop',1,1018,NULL,'04343',NULL,1228,44.414056,-69.751913,0,NULL,NULL,NULL), - (63,38,1,1,0,'329B Maple Way S',329,'B',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Dade City',1,1008,NULL,'33525',NULL,1228,28.346914,-82.20293,0,NULL,NULL,NULL), - (64,89,1,1,0,'354G Cadell Dr SW',354,'G',NULL,'Cadell','Dr','SW',NULL,NULL,NULL,NULL,'Sparks',1,1027,NULL,'89431',NULL,1228,39.542711,-119.75445,0,NULL,NULL,NULL), - (65,85,1,1,0,'251U Woodbridge Ave E',251,'U',NULL,'Woodbridge','Ave','E',NULL,NULL,NULL,NULL,'Lansing',1,1021,NULL,'48980',NULL,1228,42.599184,-84.371973,0,NULL,NULL,NULL), - (66,60,1,1,0,'1I College Ave SW',1,'I',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93764',NULL,1228,36.746375,-119.639658,0,NULL,NULL,NULL), - (67,180,1,1,0,'267C Cadell Rd N',267,'C',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Shreveport',1,1017,NULL,'71148',NULL,1228,32.607556,-93.75256,0,NULL,NULL,NULL), - (68,28,1,1,0,'283H Bay Ave E',283,'H',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'North Creek',1,1031,NULL,'12853',NULL,1228,43.683067,-73.97457,0,NULL,NULL,NULL), - (69,184,1,1,0,'541W Second Pl NW',541,'W',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,NULL), - (70,91,1,1,0,'407U Maple Ln NE',407,'U',NULL,'Maple','Ln','NE',NULL,NULL,NULL,NULL,'West Peterborough',1,1028,NULL,'03468',NULL,1228,42.890804,-71.933396,0,NULL,NULL,NULL), - (71,74,1,1,0,'189U Northpoint Path SW',189,'U',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Toronto',1,1015,NULL,'66777',NULL,1228,37.777886,-95.93877,0,NULL,NULL,NULL), - (72,151,1,1,0,'360A College Ln W',360,'A',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'New Ulm',1,1042,NULL,'78950',NULL,1228,29.909257,-96.49617,0,NULL,NULL,NULL), - (73,183,1,1,0,'72L Main Ave NE',72,'L',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Wadsworth',1,1012,NULL,'60083',NULL,1228,42.428187,-87.92935,0,NULL,NULL,NULL), - (74,133,1,1,0,'171V Van Ness Ave NW',171,'V',NULL,'Van Ness','Ave','NW',NULL,NULL,NULL,NULL,'Frenchtown',1,1029,NULL,'08825',NULL,1228,40.509998,-75.03239,0,NULL,NULL,NULL), - (75,62,3,1,0,'89R Caulder Pl SE',89,'R',NULL,'Caulder','Pl','SE',NULL,'Donor Relations',NULL,NULL,'Birchwood',1,1041,NULL,'37308',NULL,1228,35.357001,-84.99288,0,NULL,NULL,NULL), - (76,9,2,1,0,'89R Caulder Pl SE',89,'R',NULL,'Caulder','Pl','SE',NULL,'Donor Relations',NULL,NULL,'Birchwood',1,1041,NULL,'37308',NULL,1228,35.357001,-84.99288,0,NULL,NULL,75), - (77,96,3,1,0,'945X Dowlen Rd W',945,'X',NULL,'Dowlen','Rd','W',NULL,'Receiving',NULL,NULL,'Fieldton',1,1042,NULL,'79326',NULL,1228,34.04877,-102.20958,0,NULL,NULL,NULL), - (78,173,2,1,0,'945X Dowlen Rd W',945,'X',NULL,'Dowlen','Rd','W',NULL,'Receiving',NULL,NULL,'Fieldton',1,1042,NULL,'79326',NULL,1228,34.04877,-102.20958,0,NULL,NULL,77), - (79,3,3,1,0,'865Q Northpoint St E',865,'Q',NULL,'Northpoint','St','E',NULL,'c/o OPDC',NULL,NULL,'Hialeah',1,1008,NULL,'33016',NULL,1228,25.887983,-80.33284,0,NULL,NULL,NULL), - (80,50,3,1,0,'784Y Martin Luther King Path NE',784,'Y',NULL,'Martin Luther King','Path','NE',NULL,'Donor Relations',NULL,NULL,'Grand Rapids',1,1034,NULL,'43522',NULL,1228,41.427352,-83.84944,0,NULL,NULL,NULL), - (81,23,2,0,0,'784Y Martin Luther King Path NE',784,'Y',NULL,'Martin Luther King','Path','NE',NULL,'Donor Relations',NULL,NULL,'Grand Rapids',1,1034,NULL,'43522',NULL,1228,41.427352,-83.84944,0,NULL,NULL,80), - (82,12,3,1,0,'892X Pine Dr W',892,'X',NULL,'Pine','Dr','W',NULL,'Mailstop 101',NULL,NULL,'San Diego',1,1004,NULL,'92155',NULL,1228,32.671602,-117.165665,0,NULL,NULL,NULL), - (83,6,3,1,0,'906N Northpoint Ln SW',906,'N',NULL,'Northpoint','Ln','SW',NULL,'c/o PO Plus',NULL,NULL,'Easton',1,1037,NULL,'18045',NULL,1228,40.681531,-75.26722,0,NULL,NULL,NULL), - (84,42,3,1,0,'603L Caulder Dr S',603,'L',NULL,'Caulder','Dr','S',NULL,'Mailstop 101',NULL,NULL,'River Falls',1,1048,NULL,'54022',NULL,1228,44.854636,-92.61729,0,NULL,NULL,NULL), - (85,200,3,1,0,'892W Bay Blvd S',892,'W',NULL,'Bay','Blvd','S',NULL,'Urgent',NULL,NULL,'Clayton',1,1021,NULL,'49235',NULL,1228,41.853441,-84.20769,0,NULL,NULL,NULL), - (86,148,3,1,0,'141A Woodbridge Ave N',141,'A',NULL,'Woodbridge','Ave','N',NULL,'Urgent',NULL,NULL,'Havre',1,1025,NULL,'59501',NULL,1228,48.584562,-109.78365,0,NULL,NULL,NULL), - (87,116,3,1,0,'44M Dowlen Way SE',44,'M',NULL,'Dowlen','Way','SE',NULL,'Editorial Dept',NULL,NULL,'Grimes',1,1004,NULL,'95950',NULL,1228,39.070128,-121.8981,0,NULL,NULL,NULL), - (88,48,2,1,0,'44M Dowlen Way SE',44,'M',NULL,'Dowlen','Way','SE',NULL,'Editorial Dept',NULL,NULL,'Grimes',1,1004,NULL,'95950',NULL,1228,39.070128,-121.8981,0,NULL,NULL,87), - (89,49,3,1,0,'853L Main Pl W',853,'L',NULL,'Main','Pl','W',NULL,'c/o OPDC',NULL,NULL,'Winnetka',1,1004,NULL,'91396',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), - (90,63,2,1,0,'853L Main Pl W',853,'L',NULL,'Main','Pl','W',NULL,'c/o OPDC',NULL,NULL,'Winnetka',1,1004,NULL,'91396',NULL,1228,33.786594,-118.298662,0,NULL,NULL,89), - (91,26,3,1,0,'490L Caulder Ln E',490,'L',NULL,'Caulder','Ln','E',NULL,'Attn: Accounting',NULL,NULL,'Corsicana',1,1042,NULL,'75110',NULL,1228,32.078228,-96.44612,0,NULL,NULL,NULL), - (92,157,2,1,0,'490L Caulder Ln E',490,'L',NULL,'Caulder','Ln','E',NULL,'Attn: Accounting',NULL,NULL,'Corsicana',1,1042,NULL,'75110',NULL,1228,32.078228,-96.44612,0,NULL,NULL,91), - (93,123,3,1,0,'772K Green Way S',772,'K',NULL,'Green','Way','S',NULL,'Mailstop 101',NULL,NULL,'Chicago',1,1012,NULL,'60629',NULL,1228,41.777482,-87.71155,0,NULL,NULL,NULL), - (94,35,2,1,0,'772K Green Way S',772,'K',NULL,'Green','Way','S',NULL,'Mailstop 101',NULL,NULL,'Chicago',1,1012,NULL,'60629',NULL,1228,41.777482,-87.71155,0,NULL,NULL,93), - (95,46,3,1,0,'493G Lincoln Dr S',493,'G',NULL,'Lincoln','Dr','S',NULL,'Urgent',NULL,NULL,'Tecopa',1,1004,NULL,'92389',NULL,1228,35.848556,-116.22627,0,NULL,NULL,NULL), - (96,191,2,0,0,'493G Lincoln Dr S',493,'G',NULL,'Lincoln','Dr','S',NULL,'Urgent',NULL,NULL,'Tecopa',1,1004,NULL,'92389',NULL,1228,35.848556,-116.22627,0,NULL,NULL,95), - (97,161,3,1,0,'27C College Rd E',27,'C',NULL,'College','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Peapack',1,1029,NULL,'07977',NULL,1228,40.707505,-74.65657,0,NULL,NULL,NULL), - (98,95,2,0,0,'27C College Rd E',27,'C',NULL,'College','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Peapack',1,1029,NULL,'07977',NULL,1228,40.707505,-74.65657,0,NULL,NULL,97), - (99,67,3,1,0,'135E Main Blvd SE',135,'E',NULL,'Main','Blvd','SE',NULL,'Editorial Dept',NULL,NULL,'Henderson',1,1047,NULL,'25106',NULL,1228,38.805615,-82.11034,0,NULL,NULL,NULL), - (100,17,3,1,0,'815D Green Pl W',815,'D',NULL,'Green','Pl','W',NULL,'c/o OPDC',NULL,NULL,'Elma',1,1046,NULL,'98541',NULL,1228,47.03575,-123.40713,0,NULL,NULL,NULL), - (101,168,3,1,0,'50Q College St E',50,'Q',NULL,'College','St','E',NULL,'Mailstop 101',NULL,NULL,'Sun River',1,1025,NULL,'59483',NULL,1228,47.465072,-111.79735,0,NULL,NULL,NULL), - (102,164,2,0,0,'50Q College St E',50,'Q',NULL,'College','St','E',NULL,'Mailstop 101',NULL,NULL,'Sun River',1,1025,NULL,'59483',NULL,1228,47.465072,-111.79735,0,NULL,NULL,101), - (103,82,3,1,0,'570W El Camino Dr NW',570,'W',NULL,'El Camino','Dr','NW',NULL,'Payables Dept.',NULL,NULL,'Point Lay',1,1001,NULL,'99759',NULL,1228,69.741023,-163.00861,0,NULL,NULL,NULL), - (104,105,2,0,0,'570W El Camino Dr NW',570,'W',NULL,'El Camino','Dr','NW',NULL,'Payables Dept.',NULL,NULL,'Point Lay',1,1001,NULL,'99759',NULL,1228,69.741023,-163.00861,0,NULL,NULL,103), - (105,140,3,1,0,'759K Woodbridge Path S',759,'K',NULL,'Woodbridge','Path','S',NULL,'Churchgate',NULL,NULL,'Tinley Park',1,1012,NULL,'60477',NULL,1228,41.5738,-87.80389,0,NULL,NULL,NULL), - (106,121,2,1,0,'759K Woodbridge Path S',759,'K',NULL,'Woodbridge','Path','S',NULL,'Churchgate',NULL,NULL,'Tinley Park',1,1012,NULL,'60477',NULL,1228,41.5738,-87.80389,0,NULL,NULL,105), - (107,90,1,1,0,'556R Dowlen Pl SW',556,'R',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,55), - (108,187,1,1,0,'556R Dowlen Pl SW',556,'R',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,55), - (109,35,1,0,0,'556R Dowlen Pl SW',556,'R',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,55), - (110,137,1,0,0,'556R Dowlen Pl SW',556,'R',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,55), - (111,165,1,1,0,'449Z Maple St S',449,'Z',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Alexandria',1,1013,NULL,'46001',NULL,1228,40.257082,-85.673,0,NULL,NULL,56), - (112,167,1,1,0,'449Z Maple St S',449,'Z',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Alexandria',1,1013,NULL,'46001',NULL,1228,40.257082,-85.673,0,NULL,NULL,56), - (113,154,1,1,0,'449Z Maple St S',449,'Z',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Alexandria',1,1013,NULL,'46001',NULL,1228,40.257082,-85.673,0,NULL,NULL,56), - (114,77,1,1,0,'449Z Maple St S',449,'Z',NULL,'Maple','St','S',NULL,NULL,NULL,NULL,'Alexandria',1,1013,NULL,'46001',NULL,1228,40.257082,-85.673,0,NULL,NULL,56), - (115,41,1,1,0,'105W Jackson Way NE',105,'W',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55416',NULL,1228,44.946664,-93.34215,0,NULL,NULL,57), - (116,32,1,1,0,'105W Jackson Way NE',105,'W',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55416',NULL,1228,44.946664,-93.34215,0,NULL,NULL,57), - (117,115,1,1,0,'105W Jackson Way NE',105,'W',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55416',NULL,1228,44.946664,-93.34215,0,NULL,NULL,57), - (118,118,1,1,0,'105W Jackson Way NE',105,'W',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55416',NULL,1228,44.946664,-93.34215,0,NULL,NULL,57), - (119,135,1,1,0,'250I Cadell Blvd E',250,'I',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Congerville',1,1012,NULL,'61729',NULL,1228,40.619306,-89.22353,0,NULL,NULL,58), - (120,47,1,1,0,'250I Cadell Blvd E',250,'I',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Congerville',1,1012,NULL,'61729',NULL,1228,40.619306,-89.22353,0,NULL,NULL,58), - (121,192,1,1,0,'250I Cadell Blvd E',250,'I',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Congerville',1,1012,NULL,'61729',NULL,1228,40.619306,-89.22353,0,NULL,NULL,58), - (122,193,1,1,0,'664Q Dowlen Rd W',664,'Q',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Montgomery',1,1000,NULL,'36140',NULL,1228,32.233377,-86.208528,0,NULL,NULL,NULL), - (123,27,1,1,0,'78G Maple St NW',78,'G',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Waxahachie',1,1042,NULL,'75167',NULL,1228,32.380958,-96.91801,0,NULL,NULL,59), - (124,157,1,0,0,'78G Maple St NW',78,'G',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Waxahachie',1,1042,NULL,'75167',NULL,1228,32.380958,-96.91801,0,NULL,NULL,59), - (125,16,1,1,0,'78G Maple St NW',78,'G',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Waxahachie',1,1042,NULL,'75167',NULL,1228,32.380958,-96.91801,0,NULL,NULL,59), - (126,107,1,1,0,'78G Maple St NW',78,'G',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Waxahachie',1,1042,NULL,'75167',NULL,1228,32.380958,-96.91801,0,NULL,NULL,59), - (127,119,1,1,0,'329U Van Ness Way N',329,'U',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Sauquoit',1,1031,NULL,'13456',NULL,1228,43.005669,-75.26202,0,NULL,NULL,60), - (128,104,1,1,0,'329U Van Ness Way N',329,'U',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Sauquoit',1,1031,NULL,'13456',NULL,1228,43.005669,-75.26202,0,NULL,NULL,60), - (129,31,1,1,0,'329U Van Ness Way N',329,'U',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Sauquoit',1,1031,NULL,'13456',NULL,1228,43.005669,-75.26202,0,NULL,NULL,60), - (130,88,1,1,0,'786Z Van Ness Dr E',786,'Z',NULL,'Van Ness','Dr','E',NULL,NULL,NULL,NULL,'Kinderhook',1,1031,NULL,'12106',NULL,1228,42.388394,-73.70726,0,NULL,NULL,NULL), - (131,63,1,0,0,'363D Jackson Rd N',363,'D',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55402',NULL,1228,44.975565,-93.27053,0,NULL,NULL,61), - (132,197,1,1,0,'363D Jackson Rd N',363,'D',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55402',NULL,1228,44.975565,-93.27053,0,NULL,NULL,61), - (133,190,1,1,0,'363D Jackson Rd N',363,'D',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55402',NULL,1228,44.975565,-93.27053,0,NULL,NULL,61), - (134,177,1,1,0,'363D Jackson Rd N',363,'D',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55402',NULL,1228,44.975565,-93.27053,0,NULL,NULL,61), - (135,29,1,1,0,'851T Van Ness Ave W',851,'T',NULL,'Van Ness','Ave','W',NULL,NULL,NULL,NULL,'East Winthrop',1,1018,NULL,'04343',NULL,1228,44.414056,-69.751913,0,NULL,NULL,62), - (136,81,1,1,0,'851T Van Ness Ave W',851,'T',NULL,'Van Ness','Ave','W',NULL,NULL,NULL,NULL,'East Winthrop',1,1018,NULL,'04343',NULL,1228,44.414056,-69.751913,0,NULL,NULL,62), - (137,122,1,1,0,'851T Van Ness Ave W',851,'T',NULL,'Van Ness','Ave','W',NULL,NULL,NULL,NULL,'East Winthrop',1,1018,NULL,'04343',NULL,1228,44.414056,-69.751913,0,NULL,NULL,62), - (138,127,1,1,0,'694G El Camino Ave SW',694,'G',NULL,'El Camino','Ave','SW',NULL,NULL,NULL,NULL,'Mesquite',1,1042,NULL,'75149',NULL,1228,32.767329,-96.60759,0,NULL,NULL,NULL), - (139,144,1,1,0,'329B Maple Way S',329,'B',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Dade City',1,1008,NULL,'33525',NULL,1228,28.346914,-82.20293,0,NULL,NULL,63), - (140,100,1,1,0,'329B Maple Way S',329,'B',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Dade City',1,1008,NULL,'33525',NULL,1228,28.346914,-82.20293,0,NULL,NULL,63), - (141,150,1,1,0,'329B Maple Way S',329,'B',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Dade City',1,1008,NULL,'33525',NULL,1228,28.346914,-82.20293,0,NULL,NULL,63), - (142,129,1,1,0,'329B Maple Way S',329,'B',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Dade City',1,1008,NULL,'33525',NULL,1228,28.346914,-82.20293,0,NULL,NULL,63), - (143,146,1,1,0,'354G Cadell Dr SW',354,'G',NULL,'Cadell','Dr','SW',NULL,NULL,NULL,NULL,'Sparks',1,1027,NULL,'89431',NULL,1228,39.542711,-119.75445,0,NULL,NULL,64), - (144,8,1,1,0,'354G Cadell Dr SW',354,'G',NULL,'Cadell','Dr','SW',NULL,NULL,NULL,NULL,'Sparks',1,1027,NULL,'89431',NULL,1228,39.542711,-119.75445,0,NULL,NULL,64), - (145,198,1,1,0,'354G Cadell Dr SW',354,'G',NULL,'Cadell','Dr','SW',NULL,NULL,NULL,NULL,'Sparks',1,1027,NULL,'89431',NULL,1228,39.542711,-119.75445,0,NULL,NULL,64), - (146,20,1,1,0,'976D Van Ness Ln E',976,'D',NULL,'Van Ness','Ln','E',NULL,NULL,NULL,NULL,'Terrace Park',1,1034,NULL,'45174',NULL,1228,39.161061,-84.30808,0,NULL,NULL,NULL), - (147,170,1,1,0,'251U Woodbridge Ave E',251,'U',NULL,'Woodbridge','Ave','E',NULL,NULL,NULL,NULL,'Lansing',1,1021,NULL,'48980',NULL,1228,42.599184,-84.371973,0,NULL,NULL,65), - (148,65,1,1,0,'251U Woodbridge Ave E',251,'U',NULL,'Woodbridge','Ave','E',NULL,NULL,NULL,NULL,'Lansing',1,1021,NULL,'48980',NULL,1228,42.599184,-84.371973,0,NULL,NULL,65), - (149,75,1,1,0,'251U Woodbridge Ave E',251,'U',NULL,'Woodbridge','Ave','E',NULL,NULL,NULL,NULL,'Lansing',1,1021,NULL,'48980',NULL,1228,42.599184,-84.371973,0,NULL,NULL,65), - (150,97,1,1,0,'251U Woodbridge Ave E',251,'U',NULL,'Woodbridge','Ave','E',NULL,NULL,NULL,NULL,'Lansing',1,1021,NULL,'48980',NULL,1228,42.599184,-84.371973,0,NULL,NULL,65), - (151,124,1,1,0,'1I College Ave SW',1,'I',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93764',NULL,1228,36.746375,-119.639658,0,NULL,NULL,66), - (152,141,1,1,0,'1I College Ave SW',1,'I',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93764',NULL,1228,36.746375,-119.639658,0,NULL,NULL,66), - (153,30,1,1,0,'1I College Ave SW',1,'I',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93764',NULL,1228,36.746375,-119.639658,0,NULL,NULL,66), - (154,45,1,1,0,'87X States Blvd N',87,'X',NULL,'States','Blvd','N',NULL,NULL,NULL,NULL,'Gulfport',1,1023,NULL,'39505',NULL,1228,30.415795,-89.068448,0,NULL,NULL,NULL), - (155,57,1,1,0,'267C Cadell Rd N',267,'C',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Shreveport',1,1017,NULL,'71148',NULL,1228,32.607556,-93.75256,0,NULL,NULL,67), - (156,83,1,1,0,'267C Cadell Rd N',267,'C',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Shreveport',1,1017,NULL,'71148',NULL,1228,32.607556,-93.75256,0,NULL,NULL,67), - (157,68,1,1,0,'267C Cadell Rd N',267,'C',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Shreveport',1,1017,NULL,'71148',NULL,1228,32.607556,-93.75256,0,NULL,NULL,67), - (158,188,1,1,0,'267C Cadell Rd N',267,'C',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Shreveport',1,1017,NULL,'71148',NULL,1228,32.607556,-93.75256,0,NULL,NULL,67), - (159,176,1,1,0,'283H Bay Ave E',283,'H',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'North Creek',1,1031,NULL,'12853',NULL,1228,43.683067,-73.97457,0,NULL,NULL,68), - (160,102,1,1,0,'283H Bay Ave E',283,'H',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'North Creek',1,1031,NULL,'12853',NULL,1228,43.683067,-73.97457,0,NULL,NULL,68), - (161,142,1,1,0,'283H Bay Ave E',283,'H',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'North Creek',1,1031,NULL,'12853',NULL,1228,43.683067,-73.97457,0,NULL,NULL,68), - (162,132,1,1,0,'283H Bay Ave E',283,'H',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'North Creek',1,1031,NULL,'12853',NULL,1228,43.683067,-73.97457,0,NULL,NULL,68), - (163,66,1,1,0,'541W Second Pl NW',541,'W',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,69), - (164,173,1,0,0,'541W Second Pl NW',541,'W',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,69), - (165,169,1,1,0,'541W Second Pl NW',541,'W',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,69), - (166,111,1,1,0,'541W Second Pl NW',541,'W',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Simpson',1,1012,NULL,'62985',NULL,1228,37.458878,-88.69466,0,NULL,NULL,69), - (167,55,1,1,0,'407U Maple Ln NE',407,'U',NULL,'Maple','Ln','NE',NULL,NULL,NULL,NULL,'West Peterborough',1,1028,NULL,'03468',NULL,1228,42.890804,-71.933396,0,NULL,NULL,70), - (168,189,1,1,0,'407U Maple Ln NE',407,'U',NULL,'Maple','Ln','NE',NULL,NULL,NULL,NULL,'West Peterborough',1,1028,NULL,'03468',NULL,1228,42.890804,-71.933396,0,NULL,NULL,70), - (169,87,1,1,0,'407U Maple Ln NE',407,'U',NULL,'Maple','Ln','NE',NULL,NULL,NULL,NULL,'West Peterborough',1,1028,NULL,'03468',NULL,1228,42.890804,-71.933396,0,NULL,NULL,70), - (170,44,1,1,0,'887H Northpoint Dr N',887,'H',NULL,'Northpoint','Dr','N',NULL,NULL,NULL,NULL,'Monticello',1,1031,NULL,'12701',NULL,1228,41.653071,-74.69748,0,NULL,NULL,NULL), - (171,59,1,1,0,'189U Northpoint Path SW',189,'U',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Toronto',1,1015,NULL,'66777',NULL,1228,37.777886,-95.93877,0,NULL,NULL,71), - (172,112,1,1,0,'189U Northpoint Path SW',189,'U',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Toronto',1,1015,NULL,'66777',NULL,1228,37.777886,-95.93877,0,NULL,NULL,71), - (173,61,1,1,0,'189U Northpoint Path SW',189,'U',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Toronto',1,1015,NULL,'66777',NULL,1228,37.777886,-95.93877,0,NULL,NULL,71), - (174,201,1,1,0,'189U Northpoint Path SW',189,'U',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Toronto',1,1015,NULL,'66777',NULL,1228,37.777886,-95.93877,0,NULL,NULL,71), - (175,199,1,1,0,'360A College Ln W',360,'A',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'New Ulm',1,1042,NULL,'78950',NULL,1228,29.909257,-96.49617,0,NULL,NULL,72), - (176,56,1,1,0,'360A College Ln W',360,'A',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'New Ulm',1,1042,NULL,'78950',NULL,1228,29.909257,-96.49617,0,NULL,NULL,72), - (177,160,1,1,0,'360A College Ln W',360,'A',NULL,'College','Ln','W',NULL,NULL,NULL,NULL,'New Ulm',1,1042,NULL,'78950',NULL,1228,29.909257,-96.49617,0,NULL,NULL,72), - (178,48,1,0,0,'94I Northpoint Blvd W',94,'I',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Leominster',1,1020,NULL,'01453',NULL,1228,42.526523,-71.75358,0,NULL,NULL,NULL), - (179,18,1,1,0,'72L Main Ave NE',72,'L',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Wadsworth',1,1012,NULL,'60083',NULL,1228,42.428187,-87.92935,0,NULL,NULL,73), - (180,163,1,1,0,'72L Main Ave NE',72,'L',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Wadsworth',1,1012,NULL,'60083',NULL,1228,42.428187,-87.92935,0,NULL,NULL,73), - (181,33,1,1,0,'72L Main Ave NE',72,'L',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Wadsworth',1,1012,NULL,'60083',NULL,1228,42.428187,-87.92935,0,NULL,NULL,73), - (182,36,1,1,0,'242P Pine Blvd NW',242,'P',NULL,'Pine','Blvd','NW',NULL,NULL,NULL,NULL,'Newhall',1,1004,NULL,'91322',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), - (183,9,1,0,0,'171V Van Ness Ave NW',171,'V',NULL,'Van Ness','Ave','NW',NULL,NULL,NULL,NULL,'Frenchtown',1,1029,NULL,'08825',NULL,1228,40.509998,-75.03239,0,NULL,NULL,74), - (184,34,1,1,0,'171V Van Ness Ave NW',171,'V',NULL,'Van Ness','Ave','NW',NULL,NULL,NULL,NULL,'Frenchtown',1,1029,NULL,'08825',NULL,1228,40.509998,-75.03239,0,NULL,NULL,74), - (185,126,1,1,0,'171V Van Ness Ave NW',171,'V',NULL,'Van Ness','Ave','NW',NULL,NULL,NULL,NULL,'Frenchtown',1,1029,NULL,'08825',NULL,1228,40.509998,-75.03239,0,NULL,NULL,74), - (186,79,1,1,0,'171V Van Ness Ave NW',171,'V',NULL,'Van Ness','Ave','NW',NULL,NULL,NULL,NULL,'Frenchtown',1,1029,NULL,'08825',NULL,1228,40.509998,-75.03239,0,NULL,NULL,74), - (187,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL), - (188,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL), - (189,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); + (1,198,1,1,0,'200G Cadell Blvd S',200,'G',NULL,'Cadell','Blvd','S',NULL,NULL,NULL,NULL,'Okmulgee',1,1035,NULL,'74447',NULL,1228,35.628612,-95.9734,0,NULL,NULL,NULL), +(2,123,1,1,0,'956W Green Path S',956,'W',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Linton',1,1013,NULL,'47441',NULL,1228,39.039636,-87.16987,0,NULL,NULL,NULL), +(3,192,1,1,0,'7W Northpoint Rd SW',7,'W',NULL,'Northpoint','Rd','SW',NULL,NULL,NULL,NULL,'Owenton',1,1016,NULL,'40359',NULL,1228,38.467809,-84.81023,0,NULL,NULL,NULL), +(4,72,1,1,0,'788Y Northpoint St SE',788,'Y',NULL,'Northpoint','St','SE',NULL,NULL,NULL,NULL,'Hamel',1,1012,NULL,'62046',NULL,1228,38.889879,-89.84638,0,NULL,NULL,NULL), +(5,96,1,1,0,'393Q Woodbridge Ave N',393,'Q',NULL,'Woodbridge','Ave','N',NULL,NULL,NULL,NULL,'Quitaque',1,1042,NULL,'79255',NULL,1228,34.362997,-101.05209,0,NULL,NULL,NULL), +(6,97,1,1,0,'808D Green Path NW',808,'D',NULL,'Green','Path','NW',NULL,NULL,NULL,NULL,'Wilkes Barre',1,1037,NULL,'18710',NULL,1228,41.272248,-75.880146,0,NULL,NULL,NULL), +(7,66,1,1,0,'970W Northpoint St S',970,'W',NULL,'Northpoint','St','S',NULL,NULL,NULL,NULL,'Lake Charles',1,1017,NULL,'70601',NULL,1228,30.226399,-93.20496,0,NULL,NULL,NULL), +(8,4,1,1,0,'31L Bay Ln NW',31,'L',NULL,'Bay','Ln','NW',NULL,NULL,NULL,NULL,'Gorum',1,1017,NULL,'71434',NULL,1228,31.440908,-92.94724,0,NULL,NULL,NULL), +(9,154,1,1,0,'709O Caulder Blvd S',709,'O',NULL,'Caulder','Blvd','S',NULL,NULL,NULL,NULL,'Gleneden Beach',1,1036,NULL,'97388',NULL,1228,44.885,-123.994219,0,NULL,NULL,NULL), +(10,17,1,1,0,'417O Dowlen Rd S',417,'O',NULL,'Dowlen','Rd','S',NULL,NULL,NULL,NULL,'Jackson',1,1013,NULL,'47718',NULL,1228,38.420839,-86.570962,0,NULL,NULL,NULL), +(11,64,1,1,0,'196F Maple St NW',196,'F',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Bison',1,1035,NULL,'73720',NULL,1228,36.200563,-97.88883,0,NULL,NULL,NULL), +(12,172,1,1,0,'760O Beech St E',760,'O',NULL,'Beech','St','E',NULL,NULL,NULL,NULL,'Abrams',1,1048,NULL,'54101',NULL,1228,44.788898,-88.04535,0,NULL,NULL,NULL), +(13,61,1,1,0,'791Z Pine Path S',791,'Z',NULL,'Pine','Path','S',NULL,NULL,NULL,NULL,'Kimper',1,1016,NULL,'41539',NULL,1228,37.504315,-82.32797,0,NULL,NULL,NULL), +(14,151,1,1,0,'200G Main Blvd NW',200,'G',NULL,'Main','Blvd','NW',NULL,NULL,NULL,NULL,'Cascade Locks',1,1036,NULL,'97014',NULL,1228,45.655523,-121.89435,0,NULL,NULL,NULL), +(15,187,1,1,0,'915J Dowlen St N',915,'J',NULL,'Dowlen','St','N',NULL,NULL,NULL,NULL,'Grinnell',1,1014,NULL,'50177',NULL,1228,41.685742,-92.532032,0,NULL,NULL,NULL), +(16,7,1,1,0,'879F Northpoint Way S',879,'F',NULL,'Northpoint','Way','S',NULL,NULL,NULL,NULL,'New Holland',1,1012,NULL,'62671',NULL,1228,40.186852,-89.56053,0,NULL,NULL,NULL), +(17,25,1,1,0,'288J Martin Luther King Ln N',288,'J',NULL,'Martin Luther King','Ln','N',NULL,NULL,NULL,NULL,'Oaks',1,1037,NULL,'19456',NULL,1228,40.133355,-75.453631,0,NULL,NULL,NULL), +(18,95,1,1,0,'787W Green Pl NE',787,'W',NULL,'Green','Pl','NE',NULL,NULL,NULL,NULL,'Kingsbury',1,1027,NULL,'89779',NULL,1228,38.971319,-119.922973,0,NULL,NULL,NULL), +(19,146,1,1,0,'185U Pine Pl E',185,'U',NULL,'Pine','Pl','E',NULL,NULL,NULL,NULL,'Kempton',1,1013,NULL,'46049',NULL,1228,40.292007,-86.22757,0,NULL,NULL,NULL), +(20,145,1,1,0,'33S Beech Way E',33,'S',NULL,'Beech','Way','E',NULL,NULL,NULL,NULL,'Guffey',1,1005,NULL,'80820',NULL,1228,38.783844,-105.63616,0,NULL,NULL,NULL), +(21,185,1,1,0,'124C Cadell Rd W',124,'C',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'Miami',1,1008,NULL,'33242',NULL,1228,25.558428,-80.458168,0,NULL,NULL,NULL), +(22,125,1,1,0,'862N Dowlen Ln NW',862,'N',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Naperville',1,1012,NULL,'60564',NULL,1228,41.707118,-88.19634,0,NULL,NULL,NULL), +(23,132,1,1,0,'274L El Camino Way W',274,'L',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Jewett',1,1012,NULL,'62436',NULL,1228,39.190088,-88.2601,0,NULL,NULL,NULL), +(24,170,1,1,0,'517B Green Ave S',517,'B',NULL,'Green','Ave','S',NULL,NULL,NULL,NULL,'Okemos',1,1021,NULL,'48805',NULL,1228,42.599184,-84.371973,0,NULL,NULL,NULL), +(25,86,1,1,0,'271Z College Blvd W',271,'Z',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40259',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL), +(26,163,1,1,0,'930R College Ln E',930,'R',NULL,'College','Ln','E',NULL,NULL,NULL,NULL,'Oak Hall',1,1045,NULL,'23396',NULL,1228,37.923682,-75.555142,0,NULL,NULL,NULL), +(27,10,1,1,0,'97L Main Blvd NW',97,'L',NULL,'Main','Blvd','NW',NULL,NULL,NULL,NULL,'Flat Rock',1,1034,NULL,'44828',NULL,1228,41.234403,-82.86059,0,NULL,NULL,NULL), +(28,126,1,1,0,'832Z Dowlen Ave SE',832,'Z',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93724',NULL,1228,36.746375,-119.639658,0,NULL,NULL,NULL), +(29,93,1,1,0,'454J Beech Ln W',454,'J',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Mentone',1,1042,NULL,'79754',NULL,1228,31.72285,-103.57449,0,NULL,NULL,NULL), +(30,71,1,1,0,'862E Main Ln NW',862,'E',NULL,'Main','Ln','NW',NULL,NULL,NULL,NULL,'Scottsburg',1,1036,NULL,'97473',NULL,1228,43.669352,-123.8141,0,NULL,NULL,NULL), +(31,69,1,1,0,'535T Lincoln St NE',535,'T',NULL,'Lincoln','St','NE',NULL,NULL,NULL,NULL,'Philipsburg',1,1025,NULL,'59858',NULL,1228,46.293656,-113.36273,0,NULL,NULL,NULL), +(32,81,1,1,0,'204P Second Path SW',204,'P',NULL,'Second','Path','SW',NULL,NULL,NULL,NULL,'Short Hills',1,1029,NULL,'07078',NULL,1228,40.73915,-74.32749,0,NULL,NULL,NULL), +(33,45,1,1,0,'371L El Camino Ave W',371,'L',NULL,'El Camino','Ave','W',NULL,NULL,NULL,NULL,'Lapine',1,1000,NULL,'36046',NULL,1228,32.025367,-86.34182,0,NULL,NULL,NULL), +(34,148,1,1,0,'818I Lincoln Way NE',818,'I',NULL,'Lincoln','Way','NE',NULL,NULL,NULL,NULL,'Spivey',1,1015,NULL,'67142',NULL,1228,37.468889,-98.21584,0,NULL,NULL,NULL), +(35,128,1,1,0,'948K Woodbridge Path N',948,'K',NULL,'Woodbridge','Path','N',NULL,NULL,NULL,NULL,'Des Moines',1,1014,NULL,'50320',NULL,1228,41.537059,-93.58072,0,NULL,NULL,NULL), +(36,37,1,1,0,'289J College Rd NE',289,'J',NULL,'College','Rd','NE',NULL,NULL,NULL,NULL,'Mission',1,1042,NULL,'78512',NULL,1228,26.232613,-98.348534,0,NULL,NULL,NULL), +(37,85,1,1,0,'533E Pine Path N',533,'E',NULL,'Pine','Path','N',NULL,NULL,NULL,NULL,'Framingham',1,1020,NULL,'01705',NULL,1228,42.446396,-71.459405,0,NULL,NULL,NULL), +(38,5,1,1,0,'737I College Way E',737,'I',NULL,'College','Way','E',NULL,NULL,NULL,NULL,'Greenville',1,1039,NULL,'29605',NULL,1228,34.798035,-82.39289,0,NULL,NULL,NULL), +(39,63,1,1,0,'752W College Path S',752,'W',NULL,'College','Path','S',NULL,NULL,NULL,NULL,'Carbon',1,1042,NULL,'76435',NULL,1228,32.236449,-98.83268,0,NULL,NULL,NULL), +(40,106,1,1,0,'721K Dowlen Pl S',721,'K',NULL,'Dowlen','Pl','S',NULL,NULL,NULL,NULL,'Little Cedar',1,1014,NULL,'50454',NULL,1228,43.38301,-92.7293,0,NULL,NULL,NULL), +(41,150,1,1,0,'536M Martin Luther King Ln SE',536,'M',NULL,'Martin Luther King','Ln','SE',NULL,NULL,NULL,NULL,'Sewaren',1,1029,NULL,'07077',NULL,1228,40.553971,-74.25938,0,NULL,NULL,NULL), +(42,200,1,1,0,'331S Martin Luther King St NW',331,'S',NULL,'Martin Luther King','St','NW',NULL,NULL,NULL,NULL,'Lake Cormorant',1,1023,NULL,'38641',NULL,1228,34.904881,-90.19353,0,NULL,NULL,NULL), +(43,193,1,1,0,'947M Van Ness Rd W',947,'M',NULL,'Van Ness','Rd','W',NULL,NULL,NULL,NULL,'San Juan Capistrano',1,1004,NULL,'92675',NULL,1228,33.500843,-117.65866,0,NULL,NULL,NULL), +(44,143,1,1,0,'19G States St NW',19,'G',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Gifford',1,1039,NULL,'29923',NULL,1228,32.866195,-81.24215,0,NULL,NULL,NULL), +(45,52,1,1,0,'427U Caulder Rd N',427,'U',NULL,'Caulder','Rd','N',NULL,NULL,NULL,NULL,'Carey',1,1011,NULL,'83320',NULL,1228,43.356224,-113.89078,0,NULL,NULL,NULL), +(46,139,1,1,0,'468C States Blvd W',468,'C',NULL,'States','Blvd','W',NULL,NULL,NULL,NULL,'Lynn',1,1032,NULL,'28750',NULL,1228,35.236179,-82.236198,0,NULL,NULL,NULL), +(47,32,1,1,0,'663T Northpoint Path NW',663,'T',NULL,'Northpoint','Path','NW',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44111',NULL,1228,41.459399,-81.78174,0,NULL,NULL,NULL), +(48,94,1,1,0,'927O Northpoint Rd NW',927,'O',NULL,'Northpoint','Rd','NW',NULL,NULL,NULL,NULL,'Brooklyn',1,1023,NULL,'39425',NULL,1228,31.059327,-89.09164,0,NULL,NULL,NULL), +(49,118,1,1,0,'212S Bay Blvd NW',212,'S',NULL,'Bay','Blvd','NW',NULL,NULL,NULL,NULL,'Athens',1,1041,NULL,'37303',NULL,1228,35.441378,-84.61975,0,NULL,NULL,NULL), +(50,119,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,NULL), +(51,129,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,NULL), +(52,78,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,NULL), +(53,36,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,NULL), +(54,43,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,NULL), +(55,124,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,NULL), +(56,135,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,NULL), +(57,194,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,NULL), +(58,15,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,NULL), +(59,127,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,NULL), +(60,47,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,NULL), +(61,134,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,NULL), +(62,2,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,NULL), +(63,51,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,NULL), +(64,53,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,NULL), +(65,41,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,NULL), +(66,28,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,NULL), +(67,42,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,NULL), +(68,111,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,NULL), +(69,183,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,NULL), +(70,34,3,1,0,'484Z Green Ave E',484,'Z',NULL,'Green','Ave','E',NULL,'Cuffe Parade',NULL,NULL,'Valliant',1,1035,NULL,'74764',NULL,1228,34.038794,-95.07793,0,NULL,NULL,NULL), +(71,156,3,1,0,'42J Beech Path S',42,'J',NULL,'Beech','Path','S',NULL,'Urgent',NULL,NULL,'McNeil',1,1003,NULL,'71752',NULL,1228,33.362351,-93.20045,0,NULL,NULL,NULL), +(72,22,3,1,0,'831Y Green Rd SW',831,'Y',NULL,'Green','Rd','SW',NULL,'Subscriptions Dept',NULL,NULL,'Huntsville',1,1000,NULL,'35810',NULL,1228,34.77624,-86.61339,0,NULL,NULL,NULL), +(73,195,3,1,0,'180C Jackson Way E',180,'C',NULL,'Jackson','Way','E',NULL,'Urgent',NULL,NULL,'Troy',1,1044,NULL,'05868',NULL,1228,44.902837,-72.408,0,NULL,NULL,NULL), +(74,169,3,1,0,'962T Martin Luther King St W',962,'T',NULL,'Martin Luther King','St','W',NULL,'Receiving',NULL,NULL,'Clear Lake',1,1048,NULL,'54005',NULL,1228,45.237727,-92.22901,0,NULL,NULL,NULL), +(75,46,3,1,0,'82P States Way W',82,'P',NULL,'States','Way','W',NULL,'c/o OPDC',NULL,NULL,'Centerville',1,1040,NULL,'57014',NULL,1228,43.111838,-96.9563,0,NULL,NULL,NULL), +(76,91,2,1,0,'82P States Way W',82,'P',NULL,'States','Way','W',NULL,'c/o OPDC',NULL,NULL,'Centerville',1,1040,NULL,'57014',NULL,1228,43.111838,-96.9563,0,NULL,NULL,75), +(77,40,3,1,0,'308E Van Ness Way S',308,'E',NULL,'Van Ness','Way','S',NULL,'Editorial Dept',NULL,NULL,'Germantown',1,1019,NULL,'20876',NULL,1228,39.191769,-77.24329,0,NULL,NULL,NULL), +(78,136,3,1,0,'730D College Path S',730,'D',NULL,'College','Path','S',NULL,'Disbursements',NULL,NULL,'San Francisco',1,1004,NULL,'94106',NULL,1228,37.784827,-122.727802,0,NULL,NULL,NULL), +(79,143,2,0,0,'730D College Path S',730,'D',NULL,'College','Path','S',NULL,'Disbursements',NULL,NULL,'San Francisco',1,1004,NULL,'94106',NULL,1228,37.784827,-122.727802,0,NULL,NULL,78), +(80,33,3,1,0,'177P Jackson Pl E',177,'P',NULL,'Jackson','Pl','E',NULL,'Editorial Dept',NULL,NULL,'Springfield',1,1045,NULL,'22161',NULL,1228,38.807462,-77.219354,0,NULL,NULL,NULL), +(81,131,3,1,0,'593D Bay Path NW',593,'D',NULL,'Bay','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Tulsa',1,1035,NULL,'74112',NULL,1228,36.148444,-95.90841,0,NULL,NULL,NULL), +(82,162,2,1,0,'593D Bay Path NW',593,'D',NULL,'Bay','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Tulsa',1,1035,NULL,'74112',NULL,1228,36.148444,-95.90841,0,NULL,NULL,81), +(83,181,3,1,0,'172M Woodbridge St E',172,'M',NULL,'Woodbridge','St','E',NULL,'Mailstop 101',NULL,NULL,'Cruger',1,1023,NULL,'38924',NULL,1228,33.309896,-90.21172,0,NULL,NULL,NULL), +(84,56,2,1,0,'172M Woodbridge St E',172,'M',NULL,'Woodbridge','St','E',NULL,'Mailstop 101',NULL,NULL,'Cruger',1,1023,NULL,'38924',NULL,1228,33.309896,-90.21172,0,NULL,NULL,83), +(85,149,3,1,0,'302L Van Ness Blvd NE',302,'L',NULL,'Van Ness','Blvd','NE',NULL,'Urgent',NULL,NULL,'Lynch',1,1016,NULL,'40855',NULL,1228,36.96222,-82.90522,0,NULL,NULL,NULL), +(86,68,2,1,0,'302L Van Ness Blvd NE',302,'L',NULL,'Van Ness','Blvd','NE',NULL,'Urgent',NULL,NULL,'Lynch',1,1016,NULL,'40855',NULL,1228,36.96222,-82.90522,0,NULL,NULL,85), +(87,196,3,1,0,'894V Woodbridge St S',894,'V',NULL,'Woodbridge','St','S',NULL,'Disbursements',NULL,NULL,'Noble',1,1013,NULL,'46692',NULL,1228,40.752777,-85.744328,0,NULL,NULL,NULL), +(88,155,3,1,0,'126S Woodbridge Path N',126,'S',NULL,'Woodbridge','Path','N',NULL,'Attn: Accounting',NULL,NULL,'Chatsworth',1,1004,NULL,'91311',NULL,1228,34.259052,-118.59426,0,NULL,NULL,NULL), +(89,58,2,1,0,'126S Woodbridge Path N',126,'S',NULL,'Woodbridge','Path','N',NULL,'Attn: Accounting',NULL,NULL,'Chatsworth',1,1004,NULL,'91311',NULL,1228,34.259052,-118.59426,0,NULL,NULL,88), +(90,83,3,1,0,'123W Lincoln Blvd SW',123,'W',NULL,'Lincoln','Blvd','SW',NULL,'c/o PO Plus',NULL,NULL,'Harman',1,1047,NULL,'26270',NULL,1228,38.915141,-79.53066,0,NULL,NULL,NULL), +(91,158,3,1,0,'704N Martin Luther King Dr SW',704,'N',NULL,'Martin Luther King','Dr','SW',NULL,'Attn: Accounting',NULL,NULL,'Southfield',1,1020,NULL,'01259',NULL,1228,42.0645,-73.24674,0,NULL,NULL,NULL), +(92,191,3,1,0,'619H Second Rd N',619,'H',NULL,'Second','Rd','N',NULL,'Urgent',NULL,NULL,'Ritzville',1,1046,NULL,'99169',NULL,1228,47.107228,-118.43136,0,NULL,NULL,NULL), +(93,125,2,0,0,'619H Second Rd N',619,'H',NULL,'Second','Rd','N',NULL,'Urgent',NULL,NULL,'Ritzville',1,1046,NULL,'99169',NULL,1228,47.107228,-118.43136,0,NULL,NULL,92), +(94,144,3,1,0,'368G El Camino Way E',368,'G',NULL,'El Camino','Way','E',NULL,'Payables Dept.',NULL,NULL,'Boston',1,1020,NULL,'02106',NULL,1228,42.354318,-71.073449,0,NULL,NULL,NULL), +(95,30,2,1,0,'368G El Camino Way E',368,'G',NULL,'El Camino','Way','E',NULL,'Payables Dept.',NULL,NULL,'Boston',1,1020,NULL,'02106',NULL,1228,42.354318,-71.073449,0,NULL,NULL,94), +(96,109,3,1,0,'135A Jackson Blvd SE',135,'A',NULL,'Jackson','Blvd','SE',NULL,'Attn: Accounting',NULL,NULL,'Meyersdale',1,1037,NULL,'15552',NULL,1228,39.805436,-79.00013,0,NULL,NULL,NULL), +(97,97,2,0,0,'135A Jackson Blvd SE',135,'A',NULL,'Jackson','Blvd','SE',NULL,'Attn: Accounting',NULL,NULL,'Meyersdale',1,1037,NULL,'15552',NULL,1228,39.805436,-79.00013,0,NULL,NULL,96), +(98,3,3,1,0,'304K Lincoln Ln N',304,'K',NULL,'Lincoln','Ln','N',NULL,'Community Relations',NULL,NULL,'Carey',1,1042,NULL,'79222',NULL,1228,34.529678,-100.207642,0,NULL,NULL,NULL), +(99,18,2,1,0,'304K Lincoln Ln N',304,'K',NULL,'Lincoln','Ln','N',NULL,'Community Relations',NULL,NULL,'Carey',1,1042,NULL,'79222',NULL,1228,34.529678,-100.207642,0,NULL,NULL,98), +(100,67,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), +(101,31,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), +(102,35,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), +(103,118,1,0,0,'728K Caulder Dr NW',728,'K',NULL,'Caulder','Dr','NW',NULL,NULL,NULL,NULL,'Jackson',1,1023,NULL,'39216',NULL,1228,32.334738,-90.16933,0,NULL,NULL,NULL), +(104,137,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), +(105,6,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), +(106,176,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), +(107,140,1,1,0,'654H Green Pl SE',654,'H',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40231',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL), +(108,102,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), +(109,26,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), +(110,44,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), +(111,101,1,1,0,'2Q Van Ness St S',2,'Q',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28255',NULL,1228,35.26002,-80.804151,0,NULL,NULL,NULL), +(112,74,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), +(113,152,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), +(114,142,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), +(115,91,1,0,0,'361V Bay Path W',361,'V',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Hampton',1,1008,NULL,'32044',NULL,1228,29.863141,-82.15623,0,NULL,NULL,NULL), +(116,56,1,0,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), +(117,98,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), +(118,165,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), +(119,201,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), +(120,11,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), +(121,141,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), +(122,82,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), +(123,60,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), +(124,168,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), +(125,20,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), +(126,112,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), +(127,19,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), +(128,113,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), +(129,110,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), +(130,49,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), +(131,178,1,1,0,'324D Woodbridge Ave NW',324,'D',NULL,'Woodbridge','Ave','NW',NULL,NULL,NULL,NULL,'Alexandria',1,1017,NULL,'71309',NULL,1228,31.30473,-92.619593,0,NULL,NULL,NULL), +(132,190,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), +(133,122,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), +(134,197,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), +(135,115,1,1,0,'583H Green Dr S',583,'H',NULL,'Green','Dr','S',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33609',NULL,1228,27.943549,-82.50656,0,NULL,NULL,NULL), +(136,68,1,0,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), +(137,75,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), +(138,103,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), +(139,87,1,1,0,'967V Main Ln W',967,'V',NULL,'Main','Ln','W',NULL,NULL,NULL,NULL,'Vicksburg',1,1023,NULL,'39180',NULL,1228,32.292761,-90.87184,0,NULL,NULL,NULL), +(140,157,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), +(141,130,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), +(142,188,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), +(143,14,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), +(144,16,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), +(145,58,1,0,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), +(146,114,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), +(147,164,1,1,0,'181A Main Dr W',181,'A',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Harper',1,1015,NULL,'67058',NULL,1228,37.297898,-98.03916,0,NULL,NULL,NULL), +(148,30,1,0,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), +(149,100,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), +(150,120,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), +(151,76,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), +(152,21,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), +(153,55,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), +(154,65,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), +(155,90,1,1,0,'769P Jackson Blvd NE',769,'P',NULL,'Jackson','Blvd','NE',NULL,NULL,NULL,NULL,'Windsor',1,1005,NULL,'80550',NULL,1228,40.47997,-104.90227,0,NULL,NULL,NULL), +(156,173,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), +(157,162,1,0,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), +(158,180,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), +(159,117,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), +(160,105,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), +(161,175,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), +(162,80,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), +(163,199,1,1,0,'159S States Ave NE',159,'S',NULL,'States','Ave','NE',NULL,NULL,NULL,NULL,'Kathleen',1,1008,NULL,'33849',NULL,1228,28.24625,-82.06358,0,NULL,NULL,NULL), +(164,57,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), +(165,29,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), +(166,160,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), +(167,104,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), +(168,171,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), +(169,92,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), +(170,48,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), +(171,8,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), +(172,89,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), +(173,161,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), +(174,54,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), +(175,138,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), +(176,50,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), +(177,167,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), +(178,38,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), +(179,88,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), +(180,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL), +(181,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL), +(182,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */; UNLOCK TABLES; @@ -1956,13 +1967,13 @@ LOCK TABLES `civicrm_component` WRITE; /*!40000 ALTER TABLE `civicrm_component` DISABLE KEYS */; INSERT INTO `civicrm_component` (`id`, `name`, `namespace`) VALUES (1,'CiviEvent','CRM_Event'), - (2,'CiviContribute','CRM_Contribute'), - (3,'CiviMember','CRM_Member'), - (4,'CiviMail','CRM_Mailing'), - (6,'CiviPledge','CRM_Pledge'), - (7,'CiviCase','CRM_Case'), - (8,'CiviReport','CRM_Report'), - (9,'CiviCampaign','CRM_Campaign'); +(2,'CiviContribute','CRM_Contribute'), +(3,'CiviMember','CRM_Member'), +(4,'CiviMail','CRM_Mailing'), +(6,'CiviPledge','CRM_Pledge'), +(7,'CiviCase','CRM_Case'), +(8,'CiviReport','CRM_Report'), +(9,'CiviCampaign','CRM_Campaign'); /*!40000 ALTER TABLE `civicrm_component` ENABLE KEYS */; UNLOCK TABLES; @@ -1973,208 +1984,208 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contact` WRITE; /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */; INSERT INTO `civicrm_contact` (`id`, `contact_type`, `external_identifier`, `display_name`, `organization_name`, `contact_sub_type`, `first_name`, `middle_name`, `last_name`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `sort_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `hash`, `api_key`, `source`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`, `preferred_mail_format`) VALUES - (1,'Organization',NULL,'Default Organization','Default Organization',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Default Organization',NULL,'Default Organization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-02-07 04:13:13','Both'), - (2,'Individual',NULL,'Dr. Elina Müller',NULL,NULL,'Elina','','Müller',0,0,0,0,0,0,NULL,'Müller, Elina',NULL,NULL,NULL,NULL,NULL,'4147818089',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina Müller',NULL,1,'1966-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (3,'Organization',NULL,'Northpoint Education Partnership','Northpoint Education Partnership',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Northpoint Education Partnership',NULL,NULL,NULL,'4',NULL,'2993507495',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Education Partnership',NULL,NULL,NULL,0,NULL,NULL,106,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (4,'Individual',NULL,'Mr. Claudio Grant',NULL,NULL,'Claudio','','Grant',1,0,0,0,0,0,NULL,'Grant, Claudio',NULL,NULL,NULL,NULL,NULL,'682174254',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Mr. Claudio Grant',NULL,2,'1980-08-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (5,'Individual',NULL,'Damaris Parker',NULL,NULL,'Damaris','D','Parker',0,0,0,0,1,0,NULL,'Parker, Damaris',NULL,NULL,NULL,'4',NULL,'1055790628',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Parker',NULL,NULL,'1950-04-12',1,'2024-03-13',NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (6,'Organization',NULL,'Creative Empowerment Network','Creative Empowerment Network',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Creative Empowerment Network',NULL,NULL,NULL,NULL,NULL,'2685468535',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Empowerment Network',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (7,'Individual',NULL,'Mrs. Justina Blackwell',NULL,NULL,'Justina','K','Blackwell',0,1,0,0,0,0,NULL,'Blackwell, Justina',NULL,NULL,NULL,NULL,NULL,'630587972',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Blackwell',NULL,NULL,'1945-12-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (8,'Individual',NULL,'Jina Jacobs',NULL,NULL,'Jina','U','Jacobs',0,0,0,0,1,0,NULL,'Jacobs, Jina',NULL,NULL,NULL,'5',NULL,'89454888',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Jacobs',NULL,1,'1986-01-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (9,'Individual',NULL,'Betty Zope-Jensen','Birchwood Development School',NULL,'Betty','','Zope-Jensen',0,1,0,0,0,0,NULL,'Zope-Jensen, Betty',NULL,NULL,NULL,'3',NULL,'1811215585',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Zope-Jensen',NULL,1,'1980-03-23',0,NULL,NULL,NULL,NULL,NULL,62,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (10,'Individual',NULL,'Mr. Troy Adams',NULL,NULL,'Troy','W','Adams',0,1,0,0,0,0,NULL,'Adams, Troy',NULL,NULL,NULL,'1',NULL,'271731072',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Adams',NULL,2,'1950-07-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (11,'Individual',NULL,'prentices@testmail.com',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'prentices@testmail.com',NULL,NULL,NULL,NULL,NULL,'2527794607',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear prentices@testmail.com',1,NULL,'Dear prentices@testmail.com',1,NULL,'prentices@testmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (12,'Organization',NULL,'Global Poetry Partners','Global Poetry Partners',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Global Poetry Partners',NULL,NULL,NULL,NULL,NULL,'3682125906',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Poetry Partners',NULL,NULL,NULL,0,NULL,NULL,130,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (13,'Individual',NULL,'Bob Samson',NULL,NULL,'Bob','','Samson',0,0,0,0,0,0,NULL,'Samson, Bob',NULL,NULL,NULL,'1',NULL,'3804857512',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Samson',NULL,NULL,'1972-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (14,'Individual',NULL,'Scott Smith Jr.',NULL,NULL,'Scott','','Smith',0,0,0,0,0,0,NULL,'Smith, Scott',NULL,NULL,NULL,NULL,NULL,'786607395',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Smith Jr.',NULL,2,'1986-11-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (15,'Individual',NULL,'Dr. Jina Samson',NULL,NULL,'Jina','','Samson',0,0,0,0,0,0,NULL,'Samson, Jina',NULL,NULL,NULL,NULL,NULL,'1574192972',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (16,'Individual',NULL,'Bryon González',NULL,NULL,'Bryon','','González',1,0,0,0,0,0,NULL,'González, Bryon',NULL,NULL,NULL,NULL,NULL,'3874135170',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon González',NULL,2,'2017-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (17,'Organization',NULL,'Elma Literacy Partners','Elma Literacy Partners',NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Elma Literacy Partners',NULL,NULL,NULL,NULL,NULL,'4142947755',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Elma Literacy Partners',NULL,NULL,NULL,0,NULL,NULL,146,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (18,'Individual',NULL,'Laree Terrell',NULL,NULL,'Laree','V','Terrell',0,0,0,0,1,0,NULL,'Terrell, Laree',NULL,NULL,NULL,NULL,NULL,'4214058462',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Terrell',NULL,1,'1964-07-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (19,'Individual',NULL,'robertson.mei@fishmail.org',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'robertson.mei@fishmail.org',NULL,NULL,NULL,NULL,NULL,'434190288',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear robertson.mei@fishmail.org',1,NULL,'Dear robertson.mei@fishmail.org',1,NULL,'robertson.mei@fishmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (20,'Individual',NULL,'Truman Jacobs',NULL,NULL,'Truman','L','Jacobs',0,0,0,0,0,0,NULL,'Jacobs, Truman',NULL,NULL,NULL,NULL,NULL,'2934376834',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Jacobs',NULL,2,'1982-12-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (21,'Individual',NULL,'Mrs. Alexia Lee',NULL,NULL,'Alexia','','Lee',1,0,0,0,1,0,NULL,'Lee, Alexia',NULL,NULL,NULL,NULL,NULL,'3084747746',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Mrs. Alexia Lee',NULL,1,'1945-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (22,'Household',NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,'350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (23,'Individual',NULL,'Bernadette Terry','Sierra Poetry Initiative',NULL,'Bernadette','','Terry',0,0,0,0,0,0,NULL,'Terry, Bernadette',NULL,NULL,NULL,'3',NULL,'2401458356',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Terry',NULL,NULL,'1986-06-10',0,NULL,NULL,NULL,NULL,NULL,50,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (24,'Individual',NULL,'Craig Yadav II',NULL,NULL,'Craig','','Yadav',0,0,0,0,0,0,NULL,'Yadav, Craig',NULL,NULL,NULL,NULL,NULL,'1298063266',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Yadav II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (25,'Household',NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,'1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (26,'Organization',NULL,'Community Technology Trust','Community Technology Trust',NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'Community Technology Trust',NULL,NULL,NULL,'1',NULL,'1837076895',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Technology Trust',NULL,NULL,NULL,0,NULL,NULL,157,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (27,'Individual',NULL,'merriegonzlez76@testing.net',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'merriegonzlez76@testing.net',NULL,NULL,NULL,NULL,NULL,'1441935760',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear merriegonzlez76@testing.net',1,NULL,'Dear merriegonzlez76@testing.net',1,NULL,'merriegonzlez76@testing.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (28,'Household',NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,'1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (29,'Individual',NULL,'Ms. Juliann Robertson',NULL,NULL,'Juliann','','Robertson',1,0,0,0,0,0,NULL,'Robertson, Juliann',NULL,NULL,NULL,NULL,NULL,'2263807778',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Ms. Juliann Robertson',NULL,NULL,'1963-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (30,'Individual',NULL,'Allen Smith',NULL,NULL,'Allen','J','Smith',0,0,0,0,0,0,NULL,'Smith, Allen',NULL,NULL,NULL,'5',NULL,'3227262372',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Smith',NULL,2,'2010-05-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (31,'Individual',NULL,'Dr. Heidi Robertson-Cruz',NULL,NULL,'Heidi','I','Robertson-Cruz',0,0,0,0,0,0,NULL,'Robertson-Cruz, Heidi',NULL,NULL,NULL,'4',NULL,'1927998571',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Dr. Heidi Robertson-Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (32,'Individual',NULL,'Brent Prentice III',NULL,NULL,'Brent','K','Prentice',0,0,0,0,1,0,NULL,'Prentice, Brent',NULL,NULL,NULL,'1',NULL,'279352372',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Prentice III',NULL,NULL,'1992-11-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (33,'Individual',NULL,'Miguel Terrell Sr.',NULL,NULL,'Miguel','','Terrell',0,1,0,0,0,0,NULL,'Terrell, Miguel',NULL,NULL,NULL,'5',NULL,'2002488569',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Terrell Sr.',NULL,NULL,'2002-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (34,'Individual',NULL,'clintz13@mymail.co.uk',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'clintz13@mymail.co.uk',NULL,NULL,NULL,'3',NULL,'680264522',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear clintz13@mymail.co.uk',1,NULL,'Dear clintz13@mymail.co.uk',1,NULL,'clintz13@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (35,'Individual',NULL,'Esta Cooper','Local Technology Partners',NULL,'Esta','','Cooper',1,0,0,0,1,0,NULL,'Cooper, Esta',NULL,NULL,NULL,NULL,NULL,'4135799575',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Cooper',NULL,1,'2000-08-24',0,NULL,NULL,NULL,NULL,NULL,123,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (36,'Individual',NULL,'andrewt@spamalot.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'andrewt@spamalot.org',NULL,NULL,NULL,'5',NULL,'541490093',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear andrewt@spamalot.org',1,NULL,'Dear andrewt@spamalot.org',1,NULL,'andrewt@spamalot.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (37,'Individual',NULL,'Kacey Zope',NULL,NULL,'Kacey','F','Zope',1,1,0,0,0,0,NULL,'Zope, Kacey',NULL,NULL,NULL,'3',NULL,'1628998232',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Zope',NULL,1,'1984-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (38,'Household',NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,'797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (39,'Individual',NULL,'Mr. Sherman Deforest Sr.',NULL,NULL,'Sherman','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Sherman',NULL,NULL,NULL,NULL,NULL,'2166438146',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Deforest Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (40,'Individual',NULL,'Mr. Winford Zope',NULL,NULL,'Winford','','Zope',0,0,0,0,0,0,NULL,'Zope, Winford',NULL,NULL,NULL,'2',NULL,'3617829114',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Mr. Winford Zope',NULL,2,'1978-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:15','Both'), - (41,'Individual',NULL,'Ms. Felisha Bachman-Prentice',NULL,NULL,'Felisha','O','Bachman-Prentice',1,0,0,0,1,0,NULL,'Bachman-Prentice, Felisha',NULL,NULL,NULL,'3',NULL,'3985572432',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Ms. Felisha Bachman-Prentice',NULL,1,'1972-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (42,'Organization',NULL,'River Falls Poetry Collective','River Falls Poetry Collective',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'River Falls Poetry Collective',NULL,NULL,NULL,NULL,NULL,'2027104379',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'River Falls Poetry Collective',NULL,NULL,NULL,0,NULL,NULL,65,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (43,'Individual',NULL,'Dr. Ashlie Zope',NULL,NULL,'Ashlie','E','Zope',0,0,0,0,0,0,NULL,'Zope, Ashlie',NULL,NULL,NULL,'3',NULL,'2745365069',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Dr. Ashlie Zope',NULL,NULL,'1970-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (44,'Individual',NULL,'Lou Terry',NULL,NULL,'Lou','L','Terry',1,1,0,0,0,0,NULL,'Terry, Lou',NULL,NULL,NULL,'4',NULL,'3819399693',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Terry',NULL,2,'1956-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (45,'Individual',NULL,'omarsmith63@lol.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'omarsmith63@lol.org',NULL,NULL,NULL,'5',NULL,'1573317822',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear omarsmith63@lol.org',1,NULL,'Dear omarsmith63@lol.org',1,NULL,'omarsmith63@lol.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (46,'Organization',NULL,'Lincoln Environmental Fund','Lincoln Environmental Fund',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Lincoln Environmental Fund',NULL,NULL,NULL,'5',NULL,'1860319871',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lincoln Environmental Fund',NULL,NULL,NULL,0,NULL,NULL,191,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (47,'Individual',NULL,'Truman Roberts',NULL,NULL,'Truman','U','Roberts',1,0,0,0,0,0,NULL,'Roberts, Truman',NULL,NULL,NULL,'2',NULL,'3664937465',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Roberts',NULL,2,'2003-05-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (48,'Individual',NULL,'Mr. Omar Samson Jr.','Creative Food Fellowship',NULL,'Omar','I','Samson',0,1,0,0,0,0,NULL,'Samson, Omar',NULL,NULL,NULL,'1',NULL,'1847935667',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Samson Jr.',NULL,NULL,'1969-03-22',0,NULL,NULL,NULL,NULL,NULL,116,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (49,'Organization',NULL,'Sierra Health Trust','Sierra Health Trust',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Sierra Health Trust',NULL,NULL,NULL,'5',NULL,'3803406805',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Health Trust',NULL,NULL,NULL,0,NULL,NULL,63,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (50,'Organization',NULL,'Sierra Poetry Initiative','Sierra Poetry Initiative',NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Sierra Poetry Initiative',NULL,NULL,NULL,NULL,NULL,'3358290273',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Poetry Initiative',NULL,NULL,NULL,0,NULL,NULL,23,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (51,'Individual',NULL,'Daren Roberts III',NULL,NULL,'Daren','I','Roberts',0,0,0,0,0,0,NULL,'Roberts, Daren',NULL,NULL,NULL,'1',NULL,'1647753164',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Roberts III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (52,'Individual',NULL,'Mr. Norris Jameson',NULL,NULL,'Norris','Q','Jameson',1,1,0,0,0,0,NULL,'Jameson, Norris',NULL,NULL,NULL,NULL,NULL,'3849460374',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Jameson',NULL,NULL,'1996-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (53,'Individual',NULL,'Dr. Scarlet Zope',NULL,NULL,'Scarlet','','Zope',0,0,0,0,1,0,NULL,'Zope, Scarlet',NULL,NULL,NULL,NULL,NULL,'3308177981',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Dr. Scarlet Zope',NULL,NULL,'1976-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (54,'Individual',NULL,'Mrs. Magan McReynolds',NULL,NULL,'Magan','E','McReynolds',0,1,0,0,1,0,NULL,'McReynolds, Magan',NULL,NULL,NULL,NULL,NULL,'3630572084',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan McReynolds',NULL,1,'1987-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (55,'Individual',NULL,'Betty Terry',NULL,NULL,'Betty','','Terry',0,0,0,0,0,0,NULL,'Terry, Betty',NULL,NULL,NULL,NULL,NULL,'3939845643',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (56,'Individual',NULL,'Jacob Samson Sr.',NULL,NULL,'Jacob','X','Samson',0,1,0,0,0,0,NULL,'Samson, Jacob',NULL,NULL,NULL,NULL,NULL,'1567006775',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Samson Sr.',NULL,2,'1987-01-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (57,'Individual',NULL,'Sharyn Deforest',NULL,NULL,'Sharyn','N','Deforest',0,1,0,0,0,0,NULL,'Deforest, Sharyn',NULL,NULL,NULL,'3',NULL,'2704728591',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Deforest',NULL,NULL,'1997-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (58,'Individual',NULL,'Dr. Felisha Jones',NULL,NULL,'Felisha','','Jones',0,0,0,0,0,0,NULL,'Jones, Felisha',NULL,NULL,NULL,'2',NULL,'2947770839',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Dr. Felisha Jones',NULL,1,'1999-01-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (59,'Individual',NULL,'Delana Wilson',NULL,NULL,'Delana','','Wilson',0,1,0,0,0,0,NULL,'Wilson, Delana',NULL,NULL,NULL,'2',NULL,'3114260501',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Wilson',NULL,1,'1969-04-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (60,'Household',NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,'4082772645',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (61,'Individual',NULL,'Carylon Adams-Wilson',NULL,NULL,'Carylon','','Adams-Wilson',0,0,0,0,0,0,NULL,'Adams-Wilson, Carylon',NULL,NULL,NULL,NULL,NULL,'2171644225',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Adams-Wilson',NULL,1,'2014-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (62,'Organization',NULL,'Birchwood Development School','Birchwood Development School',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Birchwood Development School',NULL,NULL,NULL,'3',NULL,'3935925555',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Birchwood Development School',NULL,NULL,NULL,0,NULL,NULL,9,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (63,'Individual',NULL,'gonzlez-cooper.rosario@sample.net','Sierra Health Trust',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'gonzlez-cooper.rosario@sample.net',NULL,NULL,NULL,'3',NULL,'2766920457',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear gonzlez-cooper.rosario@sample.net',1,NULL,'Dear gonzlez-cooper.rosario@sample.net',1,NULL,'gonzlez-cooper.rosario@sample.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,49,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (64,'Individual',NULL,'Dr. Maria Olsen Jr.',NULL,NULL,'Maria','','Olsen',0,1,0,0,0,0,NULL,'Olsen, Maria',NULL,NULL,NULL,NULL,NULL,'1487979958',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Olsen Jr.',NULL,NULL,'1990-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (65,'Individual',NULL,'Dr. Herminia Olsen','River Falls Poetry Collective',NULL,'Herminia','O','Olsen',0,0,0,0,0,0,NULL,'Olsen, Herminia',NULL,NULL,NULL,NULL,NULL,'52824125',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Dr. Herminia Olsen',NULL,NULL,'1985-03-01',0,NULL,NULL,NULL,NULL,NULL,42,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (66,'Individual',NULL,'Dr. Eleonor Jensen',NULL,NULL,'Eleonor','E','Jensen',0,0,0,0,0,0,NULL,'Jensen, Eleonor',NULL,NULL,NULL,'5',NULL,'3811801023',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Dr. Eleonor Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (67,'Organization',NULL,'West Virginia Education Association','West Virginia Education Association',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'West Virginia Education Association',NULL,NULL,NULL,NULL,NULL,'1117776619',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'West Virginia Education Association',NULL,NULL,NULL,0,NULL,NULL,110,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (68,'Individual',NULL,'Kiara Wilson-Deforest',NULL,NULL,'Kiara','W','Wilson-Deforest',0,0,0,0,0,0,NULL,'Wilson-Deforest, Kiara',NULL,NULL,NULL,NULL,NULL,'2842310004',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Wilson-Deforest',NULL,1,'2018-03-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (69,'Individual',NULL,'Ms. Margaret Olsen',NULL,NULL,'Margaret','I','Olsen',0,0,0,0,0,0,NULL,'Olsen, Margaret',NULL,NULL,NULL,NULL,NULL,'3839484919',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Olsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (70,'Individual',NULL,'Dr. Bryon Nielsen',NULL,NULL,'Bryon','K','Nielsen',0,1,0,0,0,0,NULL,'Nielsen, Bryon',NULL,NULL,NULL,'2',NULL,'164626710',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Nielsen',NULL,2,'1967-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (71,'Household',NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'González family',NULL,NULL,NULL,'4',NULL,'3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (72,'Individual',NULL,'Mr. Sonny Blackwell III',NULL,NULL,'Sonny','U','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Sonny',NULL,NULL,NULL,'2',NULL,'3890759177',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Blackwell III',NULL,2,'1999-11-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (73,'Individual',NULL,'Mrs. Nicole Adams',NULL,NULL,'Nicole','','Adams',0,1,0,0,0,0,NULL,'Adams, Nicole',NULL,NULL,NULL,'3',NULL,'1724528090',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Adams',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (74,'Household',NULL,'Adams-Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Adams-Wilson family',NULL,NULL,NULL,NULL,NULL,'518408640',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-Wilson family',5,NULL,'Dear Adams-Wilson family',2,NULL,'Adams-Wilson family',NULL,NULL,NULL,0,NULL,'Adams-Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (75,'Individual',NULL,'Dr. Daren Olsen',NULL,NULL,'Daren','','Olsen',0,0,0,0,0,0,NULL,'Olsen, Daren',NULL,NULL,NULL,'2',NULL,'1772811610',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Olsen',NULL,2,'2001-07-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (76,'Individual',NULL,'Ray Wattson Jr.',NULL,NULL,'Ray','','Wattson',1,1,0,0,0,0,NULL,'Wattson, Ray',NULL,NULL,NULL,'5',NULL,'56249313',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wattson Jr.',NULL,2,'1996-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (77,'Individual',NULL,'Juliann Wilson',NULL,NULL,'Juliann','G','Wilson',0,0,0,0,0,0,NULL,'Wilson, Juliann',NULL,NULL,NULL,'2',NULL,'267768378',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Wilson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (78,'Individual',NULL,'Dr. Rebekah Roberts',NULL,NULL,'Rebekah','R','Roberts',0,0,0,0,0,0,NULL,'Roberts, Rebekah',NULL,NULL,NULL,'5',NULL,'3047736227',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Dr. Rebekah Roberts',NULL,1,'1951-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (79,'Individual',NULL,'Dr. Jacob Jensen',NULL,NULL,'Jacob','V','Jensen',1,0,0,0,1,0,NULL,'Jensen, Jacob',NULL,NULL,NULL,'3',NULL,'1631509477',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Jensen',NULL,2,'1966-06-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (80,'Individual',NULL,'Mr. Truman Cooper',NULL,NULL,'Truman','K','Cooper',1,0,0,0,0,0,NULL,'Cooper, Truman',NULL,NULL,NULL,'3',NULL,'938772676',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Cooper',NULL,2,'1981-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (81,'Individual',NULL,'Jackson Robertson II',NULL,NULL,'Jackson','','Robertson',0,1,0,0,1,0,NULL,'Robertson, Jackson',NULL,NULL,NULL,NULL,NULL,'810135210',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Robertson II',NULL,2,'2022-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (82,'Organization',NULL,'Alaska Health Fellowship','Alaska Health Fellowship',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Alaska Health Fellowship',NULL,NULL,NULL,'1',NULL,'2844568250',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Alaska Health Fellowship',NULL,NULL,NULL,0,NULL,NULL,105,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (83,'Individual',NULL,'Jina Wilson-Deforest',NULL,NULL,'Jina','Z','Wilson-Deforest',1,0,0,0,0,0,NULL,'Wilson-Deforest, Jina',NULL,NULL,NULL,'4',NULL,'1651207647',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Wilson-Deforest',NULL,1,'2017-07-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (84,'Individual',NULL,'Carylon Łąchowski',NULL,NULL,'Carylon','W','Łąchowski',1,1,0,0,0,0,NULL,'Łąchowski, Carylon',NULL,NULL,NULL,NULL,NULL,'1553333443',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:15','Both'), - (85,'Household',NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Olsen family',NULL,NULL,NULL,'2',NULL,'1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (86,'Individual',NULL,'Ms. Betty Wattson',NULL,NULL,'Betty','','Wattson',0,0,0,0,1,0,NULL,'Wattson, Betty',NULL,NULL,NULL,NULL,NULL,'1650634236',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Ms. Betty Wattson',NULL,NULL,'1981-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (87,'Individual',NULL,'Iris Terry',NULL,NULL,'Iris','M','Terry',1,0,0,0,0,0,NULL,'Terry, Iris',NULL,NULL,NULL,'3',NULL,'2685110672',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (88,'Individual',NULL,'Dr. Teddy Robertson Jr.',NULL,NULL,'Teddy','D','Robertson',0,0,0,0,0,0,NULL,'Robertson, Teddy',NULL,NULL,NULL,NULL,NULL,'3214459579',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Dr. Teddy Robertson Jr.',NULL,2,'1980-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (89,'Household',NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,'1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (90,'Individual',NULL,'Kathlyn Cooper',NULL,NULL,'Kathlyn','','Cooper',0,0,0,0,1,0,NULL,'Cooper, Kathlyn',NULL,NULL,NULL,'3',NULL,'4144432038',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (91,'Household',NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Terry family',NULL,NULL,NULL,'4',NULL,'558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (92,'Individual',NULL,'Dr. Heidi Samuels',NULL,NULL,'Heidi','','Samuels',0,0,0,0,1,0,NULL,'Samuels, Heidi',NULL,NULL,NULL,'5',NULL,'3595168109',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Dr. Heidi Samuels',NULL,1,'1993-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (93,'Individual',NULL,'Mrs. Betty Bachman',NULL,NULL,'Betty','P','Bachman',0,0,0,0,0,0,NULL,'Bachman, Betty',NULL,NULL,NULL,'5',NULL,'2914699083',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Bachman',NULL,1,'1988-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (94,'Individual',NULL,'Allan Prentice Sr.',NULL,NULL,'Allan','','Prentice',0,0,0,0,0,0,NULL,'Prentice, Allan',NULL,NULL,NULL,NULL,NULL,'2464878706',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Prentice Sr.',NULL,2,'1961-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (95,'Individual',NULL,'Dr. Herminia Robertson','Peapack Software Collective',NULL,'Herminia','X','Robertson',0,1,0,0,0,0,NULL,'Robertson, Herminia',NULL,NULL,NULL,'1',NULL,'1577316832',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Dr. Herminia Robertson',NULL,NULL,'1983-03-31',0,NULL,NULL,NULL,NULL,NULL,161,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (96,'Organization',NULL,'Sierra Health Solutions','Sierra Health Solutions',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Sierra Health Solutions',NULL,NULL,NULL,'3',NULL,'1746954375',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Health Solutions',NULL,NULL,NULL,0,NULL,NULL,173,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (97,'Individual',NULL,'olsenc5@sample.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'olsenc5@sample.org',NULL,NULL,NULL,'5',NULL,'2873431765',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear olsenc5@sample.org',1,NULL,'Dear olsenc5@sample.org',1,NULL,'olsenc5@sample.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (98,'Individual',NULL,'Mrs. Ivey Yadav',NULL,NULL,'Ivey','A','Yadav',0,0,0,0,0,0,NULL,'Yadav, Ivey',NULL,NULL,NULL,NULL,NULL,'4072347641',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Mrs. Ivey Yadav',NULL,1,'1939-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (99,'Individual',NULL,'Rolando Zope',NULL,NULL,'Rolando','','Zope',0,0,0,0,0,0,NULL,'Zope, Rolando',NULL,NULL,NULL,NULL,NULL,'1046286833',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Zope',NULL,2,'1978-11-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (100,'Individual',NULL,'Mrs. Santina Jensen',NULL,NULL,'Santina','','Jensen',0,0,0,0,0,0,NULL,'Jensen, Santina',NULL,NULL,NULL,'2',NULL,'864111104',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Mrs. Santina Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (101,'Individual',NULL,'Dr. Sonny Jensen Sr.',NULL,NULL,'Sonny','','Jensen',1,0,0,0,0,0,NULL,'Jensen, Sonny',NULL,NULL,NULL,NULL,NULL,'2008494811',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny Jensen Sr.',NULL,2,'1994-02-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (102,'Individual',NULL,'Dr. Shad Wagner',NULL,NULL,'Shad','F','Wagner',1,0,0,0,0,0,NULL,'Wagner, Shad',NULL,NULL,NULL,NULL,NULL,'4276107724',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Wagner',NULL,2,'2003-09-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (103,'Individual',NULL,'Ms. Esta Łąchowski',NULL,NULL,'Esta','','Łąchowski',1,0,0,0,0,0,NULL,'Łąchowski, Esta',NULL,NULL,NULL,NULL,NULL,'195412899',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Ms. Esta Łąchowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (104,'Individual',NULL,'Iris Robertson-Cruz',NULL,NULL,'Iris','','Robertson-Cruz',0,0,0,0,1,0,NULL,'Robertson-Cruz, Iris',NULL,NULL,NULL,'1',NULL,'3236415966',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Robertson-Cruz',NULL,1,'2008-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (105,'Individual',NULL,'Mrs. Kacey Smith','Alaska Health Fellowship',NULL,'Kacey','V','Smith',1,0,0,0,0,0,NULL,'Smith, Kacey',NULL,NULL,NULL,NULL,NULL,'4027129634',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Mrs. Kacey Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,82,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (106,'Individual',NULL,'Teddy Olsen III','Northpoint Education Partnership',NULL,'Teddy','','Olsen',0,0,0,0,0,0,NULL,'Olsen, Teddy',NULL,NULL,NULL,NULL,NULL,'72064715',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Olsen III',NULL,2,'1967-06-12',0,NULL,NULL,NULL,NULL,NULL,3,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (107,'Individual',NULL,'Ashley González',NULL,NULL,'Ashley','','González',0,1,0,0,0,0,NULL,'González, Ashley',NULL,NULL,NULL,NULL,NULL,'1248338675',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley González',NULL,NULL,'1990-09-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (108,'Individual',NULL,'Ms. Herminia Wagner',NULL,NULL,'Herminia','','Wagner',0,0,0,0,1,0,NULL,'Wagner, Herminia',NULL,NULL,NULL,NULL,NULL,'1890057520',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Wagner',NULL,1,'1974-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (109,'Individual',NULL,'Ms. Esta Roberts',NULL,NULL,'Esta','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Esta',NULL,NULL,NULL,'5',NULL,'317264112',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Ms. Esta Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (110,'Individual',NULL,'Mr. Maria Olsen','West Virginia Education Association',NULL,'Maria','X','Olsen',0,0,0,0,0,0,NULL,'Olsen, Maria',NULL,NULL,NULL,'4',NULL,'1487979958',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Olsen',NULL,NULL,'1940-07-22',1,NULL,NULL,NULL,NULL,NULL,67,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (111,'Individual',NULL,'Dr. Sanford Jensen Sr.',NULL,NULL,'Sanford','Z','Jensen',0,0,0,0,1,0,NULL,'Jensen, Sanford',NULL,NULL,NULL,NULL,NULL,'1526792308',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Dr. Sanford Jensen Sr.',NULL,NULL,'1958-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (112,'Individual',NULL,'Dr. Jed Adams-Wilson',NULL,NULL,'Jed','X','Adams-Wilson',1,1,0,0,0,0,NULL,'Adams-Wilson, Jed',NULL,NULL,NULL,'1',NULL,'2677619545',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Adams-Wilson',NULL,2,'1988-04-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (113,'Individual',NULL,'adamsr32@notmail.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'adamsr32@notmail.co.pl',NULL,NULL,NULL,'3',NULL,'568916721',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear adamsr32@notmail.co.pl',1,NULL,'Dear adamsr32@notmail.co.pl',1,NULL,'adamsr32@notmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (114,'Individual',NULL,'Lashawnda Dimitrov',NULL,NULL,'Lashawnda','','Dimitrov',0,0,0,0,0,0,NULL,'Dimitrov, Lashawnda',NULL,NULL,NULL,NULL,NULL,'1960360685',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Dimitrov',NULL,NULL,'1981-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (115,'Individual',NULL,'wprentice@testing.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'wprentice@testing.info',NULL,NULL,NULL,NULL,NULL,'2531212044',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear wprentice@testing.info',1,NULL,'Dear wprentice@testing.info',1,NULL,'wprentice@testing.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (116,'Organization',NULL,'Creative Food Fellowship','Creative Food Fellowship',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Creative Food Fellowship',NULL,NULL,NULL,NULL,NULL,'835124715',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Food Fellowship',NULL,NULL,NULL,0,NULL,NULL,48,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (117,'Individual',NULL,'Tanya Zope',NULL,NULL,'Tanya','','Zope',0,1,0,0,0,0,NULL,'Zope, Tanya',NULL,NULL,NULL,NULL,NULL,'2120997971',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (118,'Individual',NULL,'bprentice27@example.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'bprentice27@example.co.pl',NULL,NULL,NULL,'1',NULL,'2866165794',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear bprentice27@example.co.pl',1,NULL,'Dear bprentice27@example.co.pl',1,NULL,'bprentice27@example.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (119,'Individual',NULL,'Mrs. Magan Cruz',NULL,NULL,'Magan','','Cruz',1,0,0,0,0,0,NULL,'Cruz, Magan',NULL,NULL,NULL,NULL,NULL,'3859349817',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan Cruz',NULL,1,'1972-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (120,'Individual',NULL,'Princess Yadav',NULL,NULL,'Princess','','Yadav',0,0,0,0,0,0,NULL,'Yadav, Princess',NULL,NULL,NULL,NULL,NULL,'266930664',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Yadav',NULL,NULL,'1964-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (121,'Individual',NULL,'Magan Adams','Woodbridge Wellness Network',NULL,'Magan','L','Adams',0,0,0,0,0,0,NULL,'Adams, Magan',NULL,NULL,NULL,'5',NULL,'922015448',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Adams',NULL,1,'1958-01-26',0,NULL,NULL,NULL,NULL,NULL,140,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (122,'Individual',NULL,'Mr. Bob Robertson',NULL,NULL,'Bob','Y','Robertson',0,1,0,0,0,0,NULL,'Robertson, Bob',NULL,NULL,NULL,NULL,NULL,'2136994257',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Robertson',NULL,NULL,'1998-08-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (123,'Organization',NULL,'Local Technology Partners','Local Technology Partners',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Local Technology Partners',NULL,NULL,NULL,'5',NULL,'871257907',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Technology Partners',NULL,NULL,NULL,0,NULL,NULL,35,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (124,'Individual',NULL,'Mrs. Josefa Smith',NULL,NULL,'Josefa','B','Smith',1,0,0,0,0,0,NULL,'Smith, Josefa',NULL,NULL,NULL,NULL,NULL,'3557343869',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (125,'Individual',NULL,'Allen Barkley',NULL,NULL,'Allen','H','Barkley',0,0,0,0,0,0,NULL,'Barkley, Allen',NULL,NULL,NULL,NULL,NULL,'2669831068',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Barkley',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (126,'Individual',NULL,'Mrs. Beula Zope-Jensen',NULL,NULL,'Beula','E','Zope-Jensen',0,0,0,0,0,0,NULL,'Zope-Jensen, Beula',NULL,NULL,NULL,'3',NULL,'4215381721',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Zope-Jensen',NULL,NULL,'1981-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (127,'Individual',NULL,'Mr. Scott Robertson III',NULL,NULL,'Scott','F','Robertson',0,0,0,0,0,0,NULL,'Robertson, Scott',NULL,NULL,NULL,NULL,NULL,'284541050',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Robertson III',NULL,NULL,'1962-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (128,'Individual',NULL,'Iris Jones',NULL,NULL,'Iris','T','Jones',0,1,0,0,0,0,NULL,'Jones, Iris',NULL,NULL,NULL,'3',NULL,'3545440397',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (129,'Individual',NULL,'Mr. Roland Jensen',NULL,NULL,'Roland','Y','Jensen',0,0,0,0,0,0,NULL,'Jensen, Roland',NULL,NULL,NULL,NULL,NULL,'3860934183',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Jensen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (130,'Individual',NULL,'alidagrant@mymail.net','Global Poetry Partners',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'alidagrant@mymail.net',NULL,NULL,NULL,'4',NULL,'2999106145',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear alidagrant@mymail.net',1,NULL,'Dear alidagrant@mymail.net',1,NULL,'alidagrant@mymail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,12,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (131,'Individual',NULL,'Maxwell Yadav III',NULL,NULL,'Maxwell','','Yadav',0,0,0,0,1,0,NULL,'Yadav, Maxwell',NULL,NULL,NULL,NULL,NULL,'1292324110',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Yadav III',NULL,2,'1991-07-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (132,'Individual',NULL,'Dr. Lawerence Wagner',NULL,NULL,'Lawerence','O','Wagner',0,0,0,0,0,0,NULL,'Wagner, Lawerence',NULL,NULL,NULL,'5',NULL,'1509313186',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Dr. Lawerence Wagner',NULL,2,'1974-11-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (133,'Household',NULL,'Zope-Jensen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Zope-Jensen family',NULL,NULL,NULL,NULL,NULL,'2691015333',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Jensen family',5,NULL,'Dear Zope-Jensen family',2,NULL,'Zope-Jensen family',NULL,NULL,NULL,0,NULL,'Zope-Jensen family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (134,'Individual',NULL,'terrell.p.margaret@mymail.co.in',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'terrell.p.margaret@mymail.co.in',NULL,NULL,NULL,'5',NULL,'1748139763',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear terrell.p.margaret@mymail.co.in',1,NULL,'Dear terrell.p.margaret@mymail.co.in',1,NULL,'terrell.p.margaret@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (135,'Individual',NULL,'Santina Roberts',NULL,NULL,'Santina','Z','Roberts',0,0,0,0,0,0,NULL,'Roberts, Santina',NULL,NULL,NULL,NULL,NULL,'1490757631',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Roberts',NULL,1,'1964-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (136,'Individual',NULL,'Teddy Jensen',NULL,NULL,'Teddy','','Jensen',0,0,0,0,0,0,NULL,'Jensen, Teddy',NULL,NULL,NULL,NULL,NULL,'1565680627',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jensen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (137,'Individual',NULL,'Maria Yadav III',NULL,NULL,'Maria','','Yadav',0,0,0,0,0,0,NULL,'Yadav, Maria',NULL,NULL,NULL,NULL,NULL,'1203839406',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Yadav III',NULL,NULL,'1989-09-05',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (138,'Individual',NULL,'aroberts@spamalot.co.uk',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'aroberts@spamalot.co.uk',NULL,NULL,NULL,NULL,NULL,'4168511384',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear aroberts@spamalot.co.uk',1,NULL,'Dear aroberts@spamalot.co.uk',1,NULL,'aroberts@spamalot.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (139,'Individual',NULL,'Allan Jameson',NULL,NULL,'Allan','A','Jameson',1,0,0,0,1,0,NULL,'Jameson, Allan',NULL,NULL,NULL,'3',NULL,'3508046316',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (140,'Organization',NULL,'Woodbridge Wellness Network','Woodbridge Wellness Network',NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Woodbridge Wellness Network',NULL,NULL,NULL,NULL,NULL,'3089482715',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Woodbridge Wellness Network',NULL,NULL,NULL,0,NULL,NULL,121,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (141,'Individual',NULL,'Dr. Russell Smith',NULL,NULL,'Russell','','Smith',1,0,0,0,0,0,NULL,'Smith, Russell',NULL,NULL,NULL,NULL,NULL,'2357263550',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Smith',NULL,2,'1996-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (142,'Individual',NULL,'Dr. Magan Wagner',NULL,NULL,'Magan','X','Wagner',0,0,0,0,0,0,NULL,'Wagner, Magan',NULL,NULL,NULL,'5',NULL,'822485998',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Wagner',NULL,NULL,'1987-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (143,'Individual',NULL,'Teddy Bachman',NULL,NULL,'Teddy','B','Bachman',1,0,0,0,0,0,NULL,'Bachman, Teddy',NULL,NULL,NULL,NULL,NULL,'352195656',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Bachman',NULL,2,'1947-08-15',1,'2024-04-06',NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (144,'Individual',NULL,'Ms. Bernadette Prentice-Jensen',NULL,NULL,'Bernadette','','Prentice-Jensen',0,0,0,0,0,0,NULL,'Prentice-Jensen, Bernadette',NULL,NULL,NULL,NULL,NULL,'1671669646',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Ms. Bernadette Prentice-Jensen',NULL,1,'1994-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (145,'Individual',NULL,'Dr. Errol Yadav',NULL,NULL,'Errol','X','Yadav',1,0,0,0,0,0,NULL,'Yadav, Errol',NULL,NULL,NULL,NULL,NULL,'502679845',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Yadav',NULL,NULL,'1997-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (146,'Individual',NULL,'Mrs. Lashawnda Jacobs','Elma Literacy Partners',NULL,'Lashawnda','R','Jacobs',1,0,0,0,1,0,NULL,'Jacobs, Lashawnda',NULL,NULL,NULL,'3',NULL,'1880205754',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Jacobs',NULL,NULL,'1978-07-19',0,NULL,NULL,NULL,NULL,NULL,17,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (147,'Individual',NULL,'Ms. Damaris Cruz',NULL,NULL,'Damaris','P','Cruz',0,0,0,0,1,0,NULL,'Cruz, Damaris',NULL,NULL,NULL,'3',NULL,'2407382740',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Ms. Damaris Cruz',NULL,NULL,'1996-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (148,'Organization',NULL,'Montana Development Fellowship','Montana Development Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Montana Development Fellowship',NULL,NULL,NULL,NULL,NULL,'3951040222',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Montana Development Fellowship',NULL,NULL,NULL,0,NULL,NULL,167,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (149,'Individual',NULL,'Landon Müller',NULL,NULL,'Landon','','Müller',0,0,0,0,0,0,NULL,'Müller, Landon',NULL,NULL,NULL,NULL,NULL,'2647475480',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (150,'Individual',NULL,'Scott Jensen',NULL,NULL,'Scott','E','Jensen',1,0,0,0,0,0,NULL,'Jensen, Scott',NULL,NULL,NULL,NULL,NULL,'4064239922',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Jensen',NULL,NULL,'2012-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (151,'Household',NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,'333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (152,'Individual',NULL,'Teresa Zope',NULL,NULL,'Teresa','C','Zope',1,1,0,0,1,0,NULL,'Zope, Teresa',NULL,NULL,NULL,'5',NULL,'2553065969',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (153,'Individual',NULL,'elinas@fakemail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'elinas@fakemail.info',NULL,NULL,NULL,'1',NULL,'1899336064',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear elinas@fakemail.info',1,NULL,'Dear elinas@fakemail.info',1,NULL,'elinas@fakemail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (154,'Individual',NULL,'Josefa Wilson',NULL,NULL,'Josefa','','Wilson',0,0,0,0,0,0,NULL,'Wilson, Josefa',NULL,NULL,NULL,'5',NULL,'244303065',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Wilson',NULL,1,'2012-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (155,'Individual',NULL,'Kandace Barkley',NULL,NULL,'Kandace','','Barkley',0,0,0,0,0,0,NULL,'Barkley, Kandace',NULL,NULL,NULL,'5',NULL,'3931171378',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Barkley',NULL,1,'1975-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (156,'Individual',NULL,'Dr. Brent Dimitrov III',NULL,NULL,'Brent','','Dimitrov',1,0,0,0,0,0,NULL,'Dimitrov, Brent',NULL,NULL,NULL,NULL,NULL,'317189304',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Dimitrov III',NULL,2,NULL,1,'2025-01-05',NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (157,'Individual',NULL,'Nicole González','Community Technology Trust',NULL,'Nicole','','González',0,0,0,0,1,0,NULL,'González, Nicole',NULL,NULL,NULL,NULL,NULL,'2179645787',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole González',NULL,1,'2007-08-04',0,NULL,NULL,NULL,NULL,NULL,26,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (158,'Individual',NULL,'Ms. Princess Terrell',NULL,NULL,'Princess','W','Terrell',0,1,0,0,0,0,NULL,'Terrell, Princess',NULL,NULL,NULL,NULL,NULL,'676378006',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (159,'Household',NULL,'Prentice family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Prentice family',NULL,NULL,NULL,'4',NULL,'3313623671',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice family',5,NULL,'Dear Prentice family',2,NULL,'Prentice family',NULL,NULL,NULL,0,NULL,'Prentice family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (160,'Individual',NULL,'Mrs. Princess Samson',NULL,NULL,'Princess','','Samson',0,0,0,0,0,0,NULL,'Samson, Princess',NULL,NULL,NULL,'5',NULL,'3367737253',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Mrs. Princess Samson',NULL,NULL,'1995-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (161,'Organization',NULL,'Peapack Software Collective','Peapack Software Collective',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Peapack Software Collective',NULL,NULL,NULL,'5',NULL,'2787271096',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Peapack Software Collective',NULL,NULL,NULL,0,NULL,NULL,95,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (162,'Individual',NULL,'Scarlet Wattson','Bay Sustainability Fellowship',NULL,'Scarlet','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Scarlet',NULL,NULL,NULL,'5',NULL,'2653124972',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,200,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (163,'Individual',NULL,'Dr. Craig Terrell II',NULL,NULL,'Craig','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Craig',NULL,NULL,NULL,NULL,NULL,'1728721271',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Terrell II',NULL,2,'1986-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (164,'Individual',NULL,'Jackson Díaz Jr.','Sun River Advocacy Fund',NULL,'Jackson','V','Díaz',0,0,0,0,0,0,NULL,'Díaz, Jackson',NULL,NULL,NULL,'4',NULL,'770065800',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Díaz Jr.',NULL,NULL,'1962-09-10',0,NULL,NULL,NULL,NULL,NULL,168,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (165,'Individual',NULL,'Betty Wilson',NULL,NULL,'Betty','W','Wilson',0,0,0,0,0,0,NULL,'Wilson, Betty',NULL,NULL,NULL,NULL,NULL,'3748989066',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Wilson',NULL,NULL,'1988-01-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (166,'Individual',NULL,'Billy Terry III',NULL,NULL,'Billy','','Terry',0,0,0,0,0,0,NULL,'Terry, Billy',NULL,NULL,NULL,NULL,NULL,'808293154',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Terry III',NULL,2,'1952-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (167,'Individual',NULL,'wilsont31@fakemail.co.in','Montana Development Fellowship',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'wilsont31@fakemail.co.in',NULL,NULL,NULL,'1',NULL,'1407786434',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear wilsont31@fakemail.co.in',1,NULL,'Dear wilsont31@fakemail.co.in',1,NULL,'wilsont31@fakemail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,148,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (168,'Organization',NULL,'Sun River Advocacy Fund','Sun River Advocacy Fund',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Sun River Advocacy Fund',NULL,NULL,NULL,'4',NULL,'3532992356',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sun River Advocacy Fund',NULL,NULL,NULL,0,NULL,NULL,164,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (169,'Individual',NULL,'Junko Jensen',NULL,NULL,'Junko','','Jensen',0,0,0,0,0,0,NULL,'Jensen, Junko',NULL,NULL,NULL,NULL,NULL,'2889888199',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (170,'Individual',NULL,'Dr. Junko Olsen',NULL,NULL,'Junko','U','Olsen',0,1,0,0,1,0,NULL,'Olsen, Junko',NULL,NULL,NULL,'1',NULL,'4116303103',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Olsen',NULL,1,'1961-04-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (171,'Household',NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Cooper family',NULL,NULL,NULL,'4',NULL,'1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (172,'Individual',NULL,'Dr. Sonny Dimitrov III',NULL,NULL,'Sonny','','Dimitrov',0,1,0,0,0,0,NULL,'Dimitrov, Sonny',NULL,NULL,NULL,'5',NULL,'2683326100',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny Dimitrov III',NULL,2,'1995-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (173,'Individual',NULL,'Daren Jensen','Sierra Health Solutions',NULL,'Daren','U','Jensen',0,1,0,0,0,0,NULL,'Jensen, Daren',NULL,NULL,NULL,NULL,NULL,'817039458',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Jensen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,96,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (174,'Individual',NULL,'Mr. Daren Wilson',NULL,NULL,'Daren','N','Wilson',1,0,0,0,0,0,NULL,'Wilson, Daren',NULL,NULL,NULL,'3',NULL,'198225944',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Mr. Daren Wilson',NULL,NULL,'1980-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (175,'Individual',NULL,'yadav.jed83@mymail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'yadav.jed83@mymail.info',NULL,NULL,NULL,'1',NULL,'765325972',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear yadav.jed83@mymail.info',1,NULL,'Dear yadav.jed83@mymail.info',1,NULL,'yadav.jed83@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (176,'Individual',NULL,'Josefa Wagner',NULL,NULL,'Josefa','M','Wagner',0,0,0,0,0,0,NULL,'Wagner, Josefa',NULL,NULL,NULL,'4',NULL,'497687514',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Wagner',NULL,NULL,'1970-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (177,'Individual',NULL,'Dr. Barry Cooper',NULL,NULL,'Barry','','Cooper',1,0,0,0,0,0,NULL,'Cooper, Barry',NULL,NULL,NULL,'1',NULL,'1437359805',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Cooper',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (178,'Household',NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Robertson family',NULL,NULL,NULL,'4',NULL,'3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (179,'Individual',NULL,'Valene Parker',NULL,NULL,'Valene','','Parker',0,0,0,0,0,0,NULL,'Parker, Valene',NULL,NULL,NULL,'3',NULL,'2439115501',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Parker',NULL,1,'1967-02-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (180,'Household',NULL,'Wilson-Deforest family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Wilson-Deforest family',NULL,NULL,NULL,'1',NULL,'2061951154',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson-Deforest family',5,NULL,'Dear Wilson-Deforest family',2,NULL,'Wilson-Deforest family',NULL,NULL,NULL,0,NULL,'Wilson-Deforest family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (181,'Individual',NULL,'Tanya González',NULL,NULL,'Tanya','U','González',0,0,0,0,0,0,NULL,'González, Tanya',NULL,NULL,NULL,'3',NULL,'3735559010',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya González',NULL,1,'1954-06-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (182,'Individual',NULL,'wagner.megan71@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wagner.megan71@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,'452827559',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear wagner.megan71@testmail.co.nz',1,NULL,'Dear wagner.megan71@testmail.co.nz',1,NULL,'wagner.megan71@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (183,'Household',NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Terrell family',NULL,NULL,NULL,'5',NULL,'1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (184,'Household',NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,'797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (185,'Household',NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Roberts family',NULL,NULL,NULL,'1',NULL,'2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (186,'Individual',NULL,'Mrs. Merrie Wagner',NULL,NULL,'Merrie','U','Wagner',1,0,0,0,0,0,NULL,'Wagner, Merrie',NULL,NULL,NULL,NULL,NULL,'1799305605',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Wagner',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (187,'Individual',NULL,'Merrie Cooper',NULL,NULL,'Merrie','F','Cooper',1,0,0,0,0,0,NULL,'Cooper, Merrie',NULL,NULL,NULL,'1',NULL,'340467569',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Cooper',NULL,NULL,'2004-01-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (188,'Individual',NULL,'Dr. Irvin Wilson III',NULL,NULL,'Irvin','','Wilson',0,1,0,0,0,0,NULL,'Wilson, Irvin',NULL,NULL,NULL,NULL,NULL,'441477896',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Wilson III',NULL,2,'1961-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (189,'Individual',NULL,'Ms. Beula Terry',NULL,NULL,'Beula','','Terry',0,0,0,0,0,0,NULL,'Terry, Beula',NULL,NULL,NULL,'5',NULL,'2053123123',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Ms. Beula Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (190,'Individual',NULL,'Merrie Cooper',NULL,NULL,'Merrie','','Cooper',0,0,0,0,1,0,NULL,'Cooper, Merrie',NULL,NULL,NULL,'2',NULL,'340467569',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (191,'Individual',NULL,'Dr. Brittney Roberts','Lincoln Environmental Fund',NULL,'Brittney','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Brittney',NULL,NULL,NULL,'2',NULL,'3955023783',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Dr. Brittney Roberts',NULL,1,'1968-08-31',0,NULL,NULL,NULL,NULL,NULL,46,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (192,'Individual',NULL,'Ms. Josefa Roberts',NULL,NULL,'Josefa','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Josefa',NULL,NULL,NULL,NULL,NULL,'2404922387',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Ms. Josefa Roberts',NULL,NULL,'1990-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (193,'Individual',NULL,'Dr. Jacob Roberts',NULL,NULL,'Jacob','O','Roberts',0,0,0,0,0,0,NULL,'Roberts, Jacob',NULL,NULL,NULL,'1',NULL,'867918923',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Roberts',NULL,NULL,'1992-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (194,'Household',NULL,'Robertson-Cruz family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Robertson-Cruz family',NULL,NULL,NULL,'4',NULL,'2957021336',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson-Cruz family',5,NULL,'Dear Robertson-Cruz family',2,NULL,'Robertson-Cruz family',NULL,NULL,NULL,0,NULL,'Robertson-Cruz family',NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (195,'Individual',NULL,'Ms. Angelika Terry',NULL,NULL,'Angelika','','Terry',0,1,0,0,0,0,NULL,'Terry, Angelika',NULL,NULL,NULL,'5',NULL,'1807339903',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Ms. Angelika Terry',NULL,1,'1965-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (196,'Individual',NULL,'lsamuels86@testmail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'lsamuels86@testmail.info',NULL,NULL,NULL,NULL,NULL,'1750300398',NULL,'Sample Data',3,3,NULL,NULL,1,NULL,'Dear lsamuels86@testmail.info',1,NULL,'Dear lsamuels86@testmail.info',1,NULL,'lsamuels86@testmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (197,'Individual',NULL,'Arlyne Cooper',NULL,NULL,'Arlyne','','Cooper',0,0,0,0,0,0,NULL,'Cooper, Arlyne',NULL,NULL,NULL,NULL,NULL,'1117506834',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (198,'Individual',NULL,'Ashley Jacobs',NULL,NULL,'Ashley','Y','Jacobs',0,0,0,0,0,0,NULL,'Jacobs, Ashley',NULL,NULL,NULL,NULL,NULL,'2224166572',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jacobs',NULL,1,'2019-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (199,'Individual',NULL,'Mrs. Kandace Samson',NULL,NULL,'Kandace','W','Samson',0,0,0,0,0,0,NULL,'Samson, Kandace',NULL,NULL,NULL,'4',NULL,'4288681899',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace Samson',NULL,1,'1988-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (200,'Organization',NULL,'Bay Sustainability Fellowship','Bay Sustainability Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Bay Sustainability Fellowship',NULL,NULL,NULL,'2',NULL,'71587868',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Sustainability Fellowship',NULL,NULL,NULL,0,NULL,NULL,162,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (201,'Individual',NULL,'Mr. Lincoln Adams',NULL,NULL,'Lincoln','R','Adams',0,0,0,0,1,0,NULL,'Adams, Lincoln',NULL,NULL,NULL,'1',NULL,'3895803165',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Adams',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:15','2025-02-07 04:13:16','Both'), - (202,'Individual',NULL,'Jenny Lee',NULL,NULL,'Jenny',NULL,'Lee',0,0,0,0,0,0,NULL,'Lee, Jenny',NULL,NULL,NULL,NULL,'en_US','da96295d4c874e77115403283c97cf49',NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-07 04:13:16','2025-02-07 04:13:16','Both'); + (1,'Organization',NULL,'Default Organization','Default Organization',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Default Organization',NULL,'Default Organization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-02-11 21:13:43','Both'), +(2,'Household',NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Ivanov family',NULL,NULL,NULL,'2',NULL,'2450779112',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:03','Both'), +(3,'Organization',NULL,'Texas Sports Fellowship','Texas Sports Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Texas Sports Fellowship',NULL,NULL,NULL,NULL,NULL,'3990995306',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Sports Fellowship',NULL,NULL,NULL,0,NULL,NULL,18,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:04','Both'), +(4,'Individual',NULL,'jjensen52@sample.com',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'jjensen52@sample.com',NULL,NULL,NULL,'5',NULL,'2700000115',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear jjensen52@sample.com',1,NULL,'Dear jjensen52@sample.com',1,NULL,'jjensen52@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:00','Both'), +(5,'Individual',NULL,'Andrew Samson III',NULL,NULL,'Andrew','P','Samson',0,0,0,0,0,0,NULL,'Samson, Andrew',NULL,NULL,NULL,'5',NULL,'2323395058',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Samson III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(6,'Individual',NULL,'Nicole Grant',NULL,NULL,'Nicole','E','Grant',0,0,0,0,0,0,NULL,'Grant, Nicole',NULL,NULL,NULL,NULL,NULL,'2858185937',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Grant',NULL,NULL,'1986-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(7,'Individual',NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,'1',NULL,'2016003946',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear wagner.heidi@testmail.co.nz',1,NULL,'Dear wagner.heidi@testmail.co.nz',1,NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(8,'Individual',NULL,'Dr. Shad Wattson',NULL,NULL,'Shad','','Wattson',0,1,0,0,0,0,NULL,'Wattson, Shad',NULL,NULL,NULL,'1',NULL,'2057635546',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Wattson',NULL,2,'1991-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(9,'Individual',NULL,'Rosario Nielsen II',NULL,NULL,'Rosario','','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Rosario',NULL,NULL,NULL,'1',NULL,'615615044',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Nielsen II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(10,'Individual',NULL,'Omar Ivanov',NULL,NULL,'Omar','','Ivanov',1,0,0,0,0,0,NULL,'Ivanov, Omar',NULL,NULL,NULL,NULL,NULL,'474284391',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Ivanov',NULL,2,'1938-05-31',1,'2024-03-31',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(11,'Individual',NULL,'Kacey Robertson',NULL,NULL,'Kacey','Q','Robertson',0,1,0,0,0,0,NULL,'Robertson, Kacey',NULL,NULL,NULL,NULL,NULL,'3458101883',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Robertson',NULL,NULL,'1983-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(12,'Individual',NULL,'Dr. Juliann Blackwell',NULL,NULL,'Juliann','L','Blackwell',1,1,0,0,0,0,NULL,'Blackwell, Juliann',NULL,NULL,NULL,NULL,NULL,'4227449212',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann Blackwell',NULL,1,'1964-06-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(13,'Individual',NULL,'Princess Bachman',NULL,NULL,'Princess','','Bachman',0,0,0,0,1,0,NULL,'Bachman, Princess',NULL,NULL,NULL,NULL,NULL,'2581077622',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Bachman',NULL,1,'1935-03-24',1,'2024-05-28',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(14,'Individual',NULL,'Mr. Carlos Blackwell',NULL,NULL,'Carlos','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Carlos',NULL,NULL,NULL,NULL,NULL,'3674253965',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Mr. Carlos Blackwell',NULL,2,'1982-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(15,'Household',NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Barkley family',NULL,NULL,NULL,'3',NULL,'2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(16,'Individual',NULL,'Dr. Carylon Wilson',NULL,NULL,'Carylon','','Wilson',0,0,0,0,1,0,NULL,'Wilson, Carylon',NULL,NULL,NULL,'1',NULL,'2619345674',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Wilson',NULL,1,'1969-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(17,'Individual',NULL,'Maxwell Barkley II',NULL,NULL,'Maxwell','W','Barkley',0,0,0,0,1,0,NULL,'Barkley, Maxwell',NULL,NULL,NULL,'5',NULL,'3720432108',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Barkley II',NULL,2,'1976-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(18,'Individual',NULL,'ts.jameson7@fishmail.org','Texas Sports Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'ts.jameson7@fishmail.org',NULL,NULL,NULL,NULL,NULL,'2065420241',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear ts.jameson7@fishmail.org',1,NULL,'Dear ts.jameson7@fishmail.org',1,NULL,'ts.jameson7@fishmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,3,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(19,'Individual',NULL,'Teddy Jensen',NULL,NULL,'Teddy','V','Jensen',1,0,0,0,0,0,NULL,'Jensen, Teddy',NULL,NULL,NULL,NULL,NULL,'1565680627',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jensen',NULL,2,'1961-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(20,'Individual',NULL,'Winford Jensen-Bachman',NULL,NULL,'Winford','X','Jensen-Bachman',0,1,0,0,0,0,NULL,'Jensen-Bachman, Winford',NULL,NULL,NULL,NULL,NULL,'2996564668',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Jensen-Bachman',NULL,2,'2015-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(21,'Individual',NULL,'Dr. Troy Terrell',NULL,NULL,'Troy','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Troy',NULL,NULL,NULL,'4',NULL,'2532022550',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Terrell',NULL,2,'1984-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(22,'Organization',NULL,'Alabama Food Network','Alabama Food Network',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Alabama Food Network',NULL,NULL,NULL,'2',NULL,'113819934',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Alabama Food Network',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(23,'Individual',NULL,'Delana Terry',NULL,NULL,'Delana','K','Terry',0,1,0,0,0,0,NULL,'Terry, Delana',NULL,NULL,NULL,'2',NULL,'588631021',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(24,'Individual',NULL,'Mr. Maxwell Prentice Jr.',NULL,NULL,'Maxwell','','Prentice',0,0,0,0,0,0,NULL,'Prentice, Maxwell',NULL,NULL,NULL,NULL,NULL,'1532112278',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Prentice Jr.',NULL,2,'1958-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(25,'Individual',NULL,'Mr. Sonny Terrell',NULL,NULL,'Sonny','','Terrell',1,1,0,0,0,0,NULL,'Terrell, Sonny',NULL,NULL,NULL,NULL,NULL,'462144814',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(26,'Individual',NULL,'Jina Nielsen',NULL,NULL,'Jina','','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Jina',NULL,NULL,NULL,NULL,NULL,'1591443627',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Nielsen',NULL,1,'2019-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(27,'Individual',NULL,'Mr. Maxwell Terrell Sr.','Indiana Action Academy',NULL,'Maxwell','D','Terrell',1,0,0,0,0,0,NULL,'Terrell, Maxwell',NULL,NULL,NULL,'4',NULL,'4143618431',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Terrell Sr.',NULL,2,'1964-11-10',0,NULL,NULL,NULL,NULL,NULL,196,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(28,'Household',NULL,'Patel family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Patel family',NULL,NULL,NULL,'1',NULL,'1669281794',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Patel family',5,NULL,'Dear Patel family',2,NULL,'Patel family',NULL,NULL,NULL,0,NULL,'Patel family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(29,'Individual',NULL,'Kacey Patel',NULL,NULL,'Kacey','','Patel',1,0,0,0,1,0,NULL,'Patel, Kacey',NULL,NULL,NULL,'2',NULL,'1613499781',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Patel',NULL,1,'1979-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(30,'Individual',NULL,'Ashley Ivanov','Friends Literacy Network',NULL,'Ashley','','Ivanov',0,0,0,0,0,0,NULL,'Ivanov, Ashley',NULL,NULL,NULL,NULL,NULL,'2740657237',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Ivanov',NULL,1,'1977-04-28',0,NULL,NULL,NULL,NULL,NULL,144,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(31,'Individual',NULL,'Eleonor Wattson',NULL,NULL,'Eleonor','','Wattson',1,0,0,0,0,0,NULL,'Wattson, Eleonor',NULL,NULL,NULL,'5',NULL,'746639902',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Wattson',NULL,1,'1998-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(32,'Individual',NULL,'Brent Smith',NULL,NULL,'Brent','','Smith',0,0,0,0,0,0,NULL,'Smith, Brent',NULL,NULL,NULL,NULL,NULL,'645749990',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Smith',NULL,2,'1976-02-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(33,'Organization',NULL,'Jackson Advocacy Association','Jackson Advocacy Association',NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Jackson Advocacy Association',NULL,NULL,NULL,NULL,NULL,'645727743',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Advocacy Association',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(34,'Organization',NULL,'Valliant Sustainability Center','Valliant Sustainability Center',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Valliant Sustainability Center',NULL,NULL,NULL,'3',NULL,'2968341550',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Valliant Sustainability Center',NULL,NULL,NULL,0,NULL,NULL,87,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(35,'Individual',NULL,'Mr. Toby Wattson',NULL,NULL,'Toby','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Toby',NULL,NULL,NULL,NULL,NULL,'2853574652',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Wattson',NULL,NULL,'1984-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(36,'Household',NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Lee family',NULL,NULL,NULL,'5',NULL,'845831176',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Lee family',5,NULL,'Dear Lee family',2,NULL,'Lee family',NULL,NULL,NULL,0,NULL,'Lee family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(37,'Individual',NULL,'Mrs. Esta Grant',NULL,NULL,'Esta','B','Grant',0,0,0,0,1,0,NULL,'Grant, Esta',NULL,NULL,NULL,'4',NULL,'3391242752',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Grant',NULL,NULL,'1963-02-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(38,'Individual',NULL,'Mr. Irvin Łąchowski',NULL,NULL,'Irvin','D','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Irvin',NULL,NULL,NULL,'5',NULL,'2177704001',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Łąchowski',NULL,2,'1981-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:06','Both'), +(39,'Individual',NULL,'Dr. Josefa Jacobs','Beech Development Initiative',NULL,'Josefa','','Jacobs',0,0,0,0,0,0,NULL,'Jacobs, Josefa',NULL,NULL,NULL,NULL,NULL,'4224564328',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Jacobs',NULL,NULL,'1950-02-07',0,NULL,NULL,NULL,NULL,NULL,156,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(40,'Organization',NULL,'Rural Legal Collective','Rural Legal Collective',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Rural Legal Collective',NULL,NULL,NULL,NULL,NULL,'432107588',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Legal Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(41,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(42,'Household',NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Wattson family',NULL,NULL,NULL,'5',NULL,'2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(43,'Household',NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Wilson family',NULL,NULL,NULL,'1',NULL,'350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(44,'Individual',NULL,'Bryon Nielsen',NULL,NULL,'Bryon','W','Nielsen',0,1,0,0,1,0,NULL,'Nielsen, Bryon',NULL,NULL,NULL,'3',NULL,'164626710',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(45,'Individual',NULL,'Iris Cruz',NULL,NULL,'Iris','Z','Cruz',1,0,0,0,0,0,NULL,'Cruz, Iris',NULL,NULL,NULL,NULL,NULL,'2567937727',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Cruz',NULL,1,'1950-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(46,'Organization',NULL,'Global Literacy Initiative','Global Literacy Initiative',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Global Literacy Initiative',NULL,NULL,NULL,NULL,NULL,'1038098677',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Initiative',NULL,NULL,NULL,0,NULL,NULL,91,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(47,'Household',NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Blackwell family',NULL,NULL,NULL,'1',NULL,'3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(48,'Individual',NULL,'Rebekah Wattson',NULL,NULL,'Rebekah','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Rebekah',NULL,NULL,NULL,NULL,NULL,'289475581',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Wattson',NULL,1,'1996-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(49,'Individual',NULL,'Beula Terry',NULL,NULL,'Beula','E','Terry',0,0,0,0,0,0,NULL,'Terry, Beula',NULL,NULL,NULL,'4',NULL,'2053123123',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Terry',NULL,1,'2009-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(50,'Individual',NULL,'Arlyne Barkley-Łąchowski',NULL,NULL,'Arlyne','V','Barkley-Łąchowski',0,0,0,0,0,0,NULL,'Barkley-Łąchowski, Arlyne',NULL,NULL,NULL,'4',NULL,'2470147529',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Barkley-Łąchowski',NULL,1,'2002-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(51,'Household',NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,'1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(52,'Individual',NULL,'Alexia Parker',NULL,NULL,'Alexia','','Parker',0,1,0,0,1,0,NULL,'Parker, Alexia',NULL,NULL,NULL,NULL,NULL,'1459104008',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Parker',NULL,1,'1964-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(53,'Household',NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,'3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(54,'Individual',NULL,'Jerome Grant Sr.',NULL,NULL,'Jerome','','Grant',1,0,0,0,0,0,NULL,'Grant, Jerome',NULL,NULL,NULL,'5',NULL,'92527229',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Grant Sr.',NULL,2,'1998-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(55,'Individual',NULL,'Jina Terrell',NULL,NULL,'Jina','','Terrell',1,0,0,0,1,0,NULL,'Terrell, Jina',NULL,NULL,NULL,NULL,NULL,'1009343548',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Terrell',NULL,1,'1983-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(56,'Individual',NULL,'Nicole Barkley-Wilson','Sierra Sports Initiative',NULL,'Nicole','','Barkley-Wilson',0,1,0,0,0,0,NULL,'Barkley-Wilson, Nicole',NULL,NULL,NULL,'3',NULL,'368415563',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Barkley-Wilson',NULL,1,'1965-06-09',0,NULL,NULL,NULL,NULL,NULL,181,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(57,'Individual',NULL,'Dr. Jina Patel',NULL,NULL,'Jina','','Patel',0,0,0,0,0,0,NULL,'Patel, Jina',NULL,NULL,NULL,'2',NULL,'2542120009',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Patel',NULL,NULL,'2000-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(58,'Individual',NULL,'Ashlie Roberts-Wilson','Chatsworth Advocacy Fund',NULL,'Ashlie','','Roberts-Wilson',0,1,0,0,1,0,NULL,'Roberts-Wilson, Ashlie',NULL,NULL,NULL,NULL,NULL,'998915681',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Roberts-Wilson',NULL,NULL,'2009-12-29',0,NULL,NULL,NULL,NULL,NULL,155,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(59,'Individual',NULL,'Dr. Mei Wagner',NULL,NULL,'Mei','','Wagner',0,0,0,0,0,0,NULL,'Wagner, Mei',NULL,NULL,NULL,NULL,NULL,'2525344479',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Dr. Mei Wagner',NULL,1,'1950-04-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(60,'Individual',NULL,'Dr. Kenny Robertson','Progressive Empowerment Solutions',NULL,'Kenny','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Kenny',NULL,NULL,NULL,'4',NULL,'2857414580',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Robertson',NULL,2,'1976-10-30',0,NULL,NULL,NULL,NULL,NULL,158,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(61,'Individual',NULL,'olsend26@testing.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'olsend26@testing.org',NULL,NULL,NULL,NULL,NULL,'756204564',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear olsend26@testing.org',1,NULL,'Dear olsend26@testing.org',1,NULL,'olsend26@testing.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(62,'Individual',NULL,'Damaris Jameson',NULL,NULL,'Damaris','','Jameson',0,0,0,0,1,0,NULL,'Jameson, Damaris',NULL,NULL,NULL,'2',NULL,'2629827382',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Jameson',NULL,NULL,'1989-09-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(63,'Individual',NULL,'Mr. Elbert Jacobs Jr.',NULL,NULL,'Elbert','N','Jacobs',1,0,0,0,0,0,NULL,'Jacobs, Elbert',NULL,NULL,NULL,'5',NULL,'3874322217',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Jacobs Jr.',NULL,NULL,'1992-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(64,'Individual',NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,'2',NULL,'3150814155',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear cruz.juliann@airmail.biz',1,NULL,'Dear cruz.juliann@airmail.biz',1,NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(65,'Individual',NULL,'Alida Terrell',NULL,NULL,'Alida','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Alida',NULL,NULL,NULL,NULL,NULL,'4292003963',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Terrell',NULL,1,'2005-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(66,'Individual',NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,'3',NULL,'1896548687',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear santinaw@notmail.co.uk',1,NULL,'Dear santinaw@notmail.co.uk',1,NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(67,'Individual',NULL,'Mrs. Princess Wattson',NULL,NULL,'Princess','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Princess',NULL,NULL,NULL,'4',NULL,'1322463207',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Mrs. Princess Wattson',NULL,NULL,'1966-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(68,'Individual',NULL,'Magan Samson','Kentucky Development Association',NULL,'Magan','','Samson',0,0,0,0,0,0,NULL,'Samson, Magan',NULL,NULL,NULL,NULL,NULL,'2138748254',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,149,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(69,'Individual',NULL,'Iris Parker',NULL,NULL,'Iris','V','Parker',0,0,0,0,1,0,NULL,'Parker, Iris',NULL,NULL,NULL,'4',NULL,'1685537074',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(70,'Individual',NULL,'Merrie Parker',NULL,NULL,'Merrie','','Parker',0,0,0,0,0,0,NULL,'Parker, Merrie',NULL,NULL,NULL,NULL,NULL,'3944654315',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Parker',NULL,NULL,'1963-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(71,'Individual',NULL,'Scarlet Jensen',NULL,NULL,'Scarlet','','Jensen',0,0,0,0,1,0,NULL,'Jensen, Scarlet',NULL,NULL,NULL,NULL,NULL,'1368448205',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Jensen',NULL,NULL,'1975-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(72,'Individual',NULL,'Mr. Clint Samson Sr.',NULL,NULL,'Clint','','Samson',0,0,0,0,0,0,NULL,'Samson, Clint',NULL,NULL,NULL,'5',NULL,'1111759709',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Samson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(73,'Individual',NULL,'Dr. Ray Lee Sr.',NULL,NULL,'Ray','','Lee',0,0,0,0,0,0,NULL,'Lee, Ray',NULL,NULL,NULL,NULL,NULL,'77853179',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Lee Sr.',NULL,NULL,'1970-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(74,'Individual',NULL,'leek@notmail.biz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'leek@notmail.biz',NULL,NULL,NULL,NULL,NULL,'1191187531',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear leek@notmail.biz',1,NULL,'Dear leek@notmail.biz',1,NULL,'leek@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(75,'Individual',NULL,'Russell Samson',NULL,NULL,'Russell','Y','Samson',0,0,0,0,0,0,NULL,'Samson, Russell',NULL,NULL,NULL,NULL,NULL,'961724057',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Samson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(76,'Individual',NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,'4231702399',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear maxwellivanov@infomail.co.nz',1,NULL,'Dear maxwellivanov@infomail.co.nz',1,NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(77,'Individual',NULL,'Dr. Truman Terrell',NULL,NULL,'Truman','F','Terrell',0,0,0,0,0,0,NULL,'Terrell, Truman',NULL,NULL,NULL,NULL,NULL,'653635789',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Terrell',NULL,NULL,'1946-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(78,'Household',NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Nielsen family',NULL,NULL,NULL,'5',NULL,'766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), +(79,'Individual',NULL,'Mrs. Josefa Díaz',NULL,NULL,'Josefa','G','Díaz',0,0,0,0,0,0,NULL,'Díaz, Josefa',NULL,NULL,NULL,'5',NULL,'3732568656',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Díaz',NULL,1,'1943-03-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(80,'Individual',NULL,'Dr. Bob Grant',NULL,NULL,'Bob','','Grant',0,0,0,0,0,0,NULL,'Grant, Bob',NULL,NULL,NULL,NULL,NULL,'2147877951',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Grant',NULL,NULL,'1994-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(81,'Individual',NULL,'Dr. Rodrigo Smith',NULL,NULL,'Rodrigo','','Smith',0,0,0,0,0,0,NULL,'Smith, Rodrigo',NULL,NULL,NULL,NULL,NULL,'928415905',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Smith',NULL,NULL,'1994-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(82,'Individual',NULL,'Ashley Robertson II',NULL,NULL,'Ashley','J','Robertson',0,1,0,0,0,0,NULL,'Robertson, Ashley',NULL,NULL,NULL,NULL,NULL,'3118372484',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Robertson II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(83,'Organization',NULL,'Harman Technology Systems','Harman Technology Systems',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Harman Technology Systems',NULL,NULL,NULL,'5',NULL,'820916704',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Harman Technology Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(84,'Individual',NULL,'Herminia Jones',NULL,NULL,'Herminia','','Jones',0,0,0,0,0,0,NULL,'Jones, Herminia',NULL,NULL,NULL,'3',NULL,'3666467845',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(85,'Individual',NULL,'Sanford González II',NULL,NULL,'Sanford','M','González',0,1,0,0,1,0,NULL,'González, Sanford',NULL,NULL,NULL,NULL,NULL,'216196838',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford González II',NULL,2,'1935-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(86,'Individual',NULL,'Brigette Deforest',NULL,NULL,'Brigette','A','Deforest',1,1,0,0,0,0,NULL,'Deforest, Brigette',NULL,NULL,NULL,NULL,NULL,'3260851036',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Deforest',NULL,1,'1969-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(87,'Individual',NULL,'Dr. Roland Samson II','Valliant Sustainability Center',NULL,'Roland','P','Samson',0,0,0,0,0,0,NULL,'Samson, Roland',NULL,NULL,NULL,'5',NULL,'2394998180',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Samson II',NULL,2,'1974-11-01',0,NULL,NULL,NULL,NULL,NULL,34,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(88,'Individual',NULL,'Dr. Jacob Łąchowski',NULL,NULL,'Jacob','D','Łąchowski',0,1,0,0,0,0,NULL,'Łąchowski, Jacob',NULL,NULL,NULL,'1',NULL,'3250596054',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Łąchowski',NULL,2,'1971-06-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:06','Both'), +(89,'Individual',NULL,'Dr. Elina Grant',NULL,NULL,'Elina','P','Grant',1,0,0,0,0,0,NULL,'Grant, Elina',NULL,NULL,NULL,NULL,NULL,'1935800100',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(90,'Individual',NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,'615437026',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear tobyt@airmail.co.uk',1,NULL,'Dear tobyt@airmail.co.uk',1,NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(91,'Individual',NULL,'Dr. Maria Lee Sr.','Global Literacy Initiative',NULL,'Maria','','Lee',1,0,0,0,0,0,NULL,'Lee, Maria',NULL,NULL,NULL,'5',NULL,'474251826',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Lee Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,46,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(92,'Individual',NULL,'Megan Wattson',NULL,NULL,'Megan','H','Wattson',0,0,0,0,1,0,NULL,'Wattson, Megan',NULL,NULL,NULL,'1',NULL,'1244939479',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Wattson',NULL,1,'1983-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(93,'Individual',NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,'4',NULL,'1853646682',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear jacobs.kathleen@sample.co.pl',1,NULL,'Dear jacobs.kathleen@sample.co.pl',1,NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(94,'Individual',NULL,'parkera@airmail.biz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'parkera@airmail.biz',NULL,NULL,NULL,'5',NULL,'2554978998',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear parkera@airmail.biz',1,NULL,'Dear parkera@airmail.biz',1,NULL,'parkera@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(95,'Individual',NULL,'Dr. Bob Robertson III',NULL,NULL,'Bob','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Bob',NULL,NULL,NULL,NULL,NULL,'2136994257',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Robertson III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(96,'Individual',NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,NULL,NULL,'2877950421',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear omarnielsen92@infomail.com',1,NULL,'Dear omarnielsen92@infomail.com',1,NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(97,'Individual',NULL,'Ms. Valene Adams','Pennsylvania Peace Partners',NULL,'Valene','','Adams',0,0,0,0,0,0,NULL,'Adams, Valene',NULL,NULL,NULL,NULL,NULL,'3741125103',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Adams',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,109,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(98,'Individual',NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,'3',NULL,'4088954839',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear wilsonm91@example.co.in',1,NULL,'Dear wilsonm91@example.co.in',1,NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(99,'Individual',NULL,'Clint Jones',NULL,NULL,'Clint','Y','Jones',0,0,0,0,1,0,NULL,'Jones, Clint',NULL,NULL,NULL,NULL,NULL,'329949700',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Jones',NULL,2,'1983-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), +(100,'Individual',NULL,'Esta Ivanov',NULL,NULL,'Esta','','Ivanov',1,0,0,0,0,0,NULL,'Ivanov, Esta',NULL,NULL,NULL,'4',NULL,'3595290803',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Ivanov',NULL,1,'1997-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(101,'Individual',NULL,'Dr. Shad Nielsen II',NULL,NULL,'Shad','E','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Shad',NULL,NULL,NULL,NULL,NULL,'2247760585',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Nielsen II',NULL,NULL,'1964-12-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(102,'Individual',NULL,'Megan Nielsen',NULL,NULL,'Megan','V','Nielsen',1,0,0,0,0,0,NULL,'Nielsen, Megan',NULL,NULL,NULL,NULL,NULL,'3463797269',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Nielsen',NULL,1,'1991-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(103,'Individual',NULL,'Ashley Samson',NULL,NULL,'Ashley','J','Samson',0,1,0,0,0,0,NULL,'Samson, Ashley',NULL,NULL,NULL,'2',NULL,'2849668612',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(104,'Individual',NULL,'Craig Patel',NULL,NULL,'Craig','V','Patel',0,0,0,0,0,0,NULL,'Patel, Craig',NULL,NULL,NULL,'3',NULL,'1204688948',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Patel',NULL,2,'1965-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(105,'Individual',NULL,'Ms. Brittney Cruz-Grant',NULL,NULL,'Brittney','','Cruz-Grant',1,1,0,0,0,0,NULL,'Cruz-Grant, Brittney',NULL,NULL,NULL,'2',NULL,'2310432877',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Cruz-Grant',NULL,1,'1974-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), +(106,'Individual',NULL,'Mr. Elbert Robertson',NULL,NULL,'Elbert','N','Robertson',0,0,0,0,0,0,NULL,'Robertson, Elbert',NULL,NULL,NULL,NULL,NULL,'3684824833',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Robertson',NULL,2,'1961-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(107,'Individual',NULL,'Beula Wattson',NULL,NULL,'Beula','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Beula',NULL,NULL,NULL,'3',NULL,'4074227652',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Wattson',NULL,1,'1979-12-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(108,'Individual',NULL,'Esta Deforest',NULL,NULL,'Esta','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Esta',NULL,NULL,NULL,NULL,NULL,'2058701056',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Deforest',NULL,1,'1943-02-25',1,'2024-08-12',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), +(109,'Organization',NULL,'Pennsylvania Peace Partners','Pennsylvania Peace Partners',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Pennsylvania Peace Partners',NULL,NULL,NULL,'3',NULL,'2069211084',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pennsylvania Peace Partners',NULL,NULL,NULL,0,NULL,NULL,97,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), +(110,'Individual',NULL,'Allan Terry',NULL,NULL,'Allan','L','Terry',0,1,0,0,0,0,NULL,'Terry, Allan',NULL,NULL,NULL,'2',NULL,'1982784074',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Terry',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(111,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(112,'Individual',NULL,'Josefa Jensen-Bachman',NULL,NULL,'Josefa','Z','Jensen-Bachman',1,1,0,0,0,0,NULL,'Jensen-Bachman, Josefa',NULL,NULL,NULL,NULL,NULL,'3973237650',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Jensen-Bachman',NULL,1,'1991-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(113,'Individual',NULL,'Ms. Arlyne Yadav-Terry',NULL,NULL,'Arlyne','','Yadav-Terry',0,0,0,0,0,0,NULL,'Yadav-Terry, Arlyne',NULL,NULL,NULL,NULL,NULL,'542176948',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Yadav-Terry',NULL,1,'1976-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(114,'Individual',NULL,'Josefa Roberts-Wilson',NULL,NULL,'Josefa','C','Roberts-Wilson',0,1,0,0,0,0,NULL,'Roberts-Wilson, Josefa',NULL,NULL,NULL,NULL,NULL,'4234250214',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Roberts-Wilson',NULL,1,'2007-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(115,'Individual',NULL,'Mr. Troy Barkley',NULL,NULL,'Troy','X','Barkley',0,0,0,0,1,0,NULL,'Barkley, Troy',NULL,NULL,NULL,NULL,NULL,'3703467861',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Barkley',NULL,2,'1977-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(116,'Individual',NULL,'Dr. Lawerence Wattson Sr.',NULL,NULL,'Lawerence','X','Wattson',0,0,0,0,0,0,NULL,'Wattson, Lawerence',NULL,NULL,NULL,'2',NULL,'933286419',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Dr. Lawerence Wattson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(117,'Individual',NULL,'Mr. Ray McReynolds',NULL,NULL,'Ray','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Ray',NULL,NULL,NULL,'2',NULL,'3928590704',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray McReynolds',NULL,2,'1962-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(118,'Individual',NULL,'Nicole Roberts',NULL,NULL,'Nicole','M','Roberts',0,0,0,0,0,0,NULL,'Roberts, Nicole',NULL,NULL,NULL,'2',NULL,'998604159',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Roberts',NULL,1,'1946-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(119,'Household',NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Wattson family',NULL,NULL,NULL,'4',NULL,'2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(120,'Individual',NULL,'Mrs. Eleonor Ivanov',NULL,NULL,'Eleonor','Z','Ivanov',0,1,0,0,0,0,NULL,'Ivanov, Eleonor',NULL,NULL,NULL,NULL,NULL,'2341250254',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Mrs. Eleonor Ivanov',NULL,1,'1993-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(121,'Individual',NULL,'Dr. Ray Lee',NULL,NULL,'Ray','S','Lee',1,0,0,0,0,0,NULL,'Lee, Ray',NULL,NULL,NULL,'1',NULL,'77853179',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Lee',NULL,NULL,'1999-09-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(122,'Individual',NULL,'Dr. Jay Barkley Sr.',NULL,NULL,'Jay','S','Barkley',0,0,0,0,1,0,NULL,'Barkley, Jay',NULL,NULL,NULL,'3',NULL,'3834351816',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Barkley Sr.',NULL,2,'2002-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(123,'Individual',NULL,'Mr. Lincoln Barkley III',NULL,NULL,'Lincoln','I','Barkley',1,0,0,0,0,0,NULL,'Barkley, Lincoln',NULL,NULL,NULL,NULL,NULL,'1151829541',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Barkley III',NULL,NULL,NULL,1,'2024-03-23',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(124,'Household',NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,'3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(125,'Individual',NULL,'Dr. Kacey Terrell','Second Technology Fellowship',NULL,'Kacey','','Terrell',0,0,0,0,1,0,NULL,'Terrell, Kacey',NULL,NULL,NULL,NULL,NULL,'1088955590',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Dr. Kacey Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,191,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(126,'Individual',NULL,'Miguel Deforest',NULL,NULL,'Miguel','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Miguel',NULL,NULL,NULL,'5',NULL,'2379734396',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Deforest',NULL,2,'1945-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(127,'Household',NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Samson family',NULL,NULL,NULL,'5',NULL,'333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(128,'Individual',NULL,'Dr. Scott Grant Sr.',NULL,NULL,'Scott','Z','Grant',0,0,0,0,1,0,NULL,'Grant, Scott',NULL,NULL,NULL,'4',NULL,'501213138',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Grant Sr.',NULL,2,'1995-11-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(129,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,'3',NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(130,'Individual',NULL,'Mr. Lincoln Blackwell',NULL,NULL,'Lincoln','K','Blackwell',0,1,0,0,0,0,NULL,'Blackwell, Lincoln',NULL,NULL,NULL,'3',NULL,'3253258794',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Blackwell',NULL,NULL,'1985-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(131,'Organization',NULL,'Oklahoma Sports Center','Oklahoma Sports Center',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Oklahoma Sports Center',NULL,NULL,NULL,NULL,NULL,'2535066196',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Oklahoma Sports Center',NULL,NULL,NULL,0,NULL,NULL,162,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(132,'Individual',NULL,'nielsenm@airmail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'nielsenm@airmail.info',NULL,NULL,NULL,NULL,NULL,'4213460638',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear nielsenm@airmail.info',1,NULL,'Dear nielsenm@airmail.info',1,NULL,'nielsenm@airmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(133,'Individual',NULL,'Jacob Deforest III',NULL,NULL,'Jacob','','Deforest',0,0,0,0,1,0,NULL,'Deforest, Jacob',NULL,NULL,NULL,NULL,NULL,'2389625358',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Deforest III',NULL,2,'1950-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(134,'Household',NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,NULL,'2561093533',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts-Wilson family',5,NULL,'Dear Roberts-Wilson family',2,NULL,'Roberts-Wilson family',NULL,NULL,NULL,0,NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(135,'Household',NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,NULL,'4052812039',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Bachman family',5,NULL,'Dear Jensen-Bachman family',2,NULL,'Jensen-Bachman family',NULL,NULL,NULL,0,NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(136,'Organization',NULL,'Friends Development Network','Friends Development Network',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Friends Development Network',NULL,NULL,NULL,'4',NULL,'2176703575',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Development Network',NULL,NULL,NULL,0,NULL,NULL,143,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(137,'Individual',NULL,'Junko Grant',NULL,NULL,'Junko','','Grant',0,0,0,0,0,0,NULL,'Grant, Junko',NULL,NULL,NULL,NULL,NULL,'1134606119',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Grant',NULL,1,'1967-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(138,'Individual',NULL,'Claudio Grant II',NULL,NULL,'Claudio','','Grant',0,0,0,0,0,0,NULL,'Grant, Claudio',NULL,NULL,NULL,NULL,NULL,'682174254',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Grant II',NULL,2,'1985-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(139,'Individual',NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,'3',NULL,'2157634243',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear elbertg@mymail.co.uk',1,NULL,'Dear elbertg@mymail.co.uk',1,NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(140,'Individual',NULL,'Bryon Grant III',NULL,NULL,'Bryon','','Grant',0,0,0,0,0,0,NULL,'Grant, Bryon',NULL,NULL,NULL,'3',NULL,'3825566776',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Grant III',NULL,2,'1982-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(141,'Individual',NULL,'Mr. Lou Robertson Sr.',NULL,NULL,'Lou','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Lou',NULL,NULL,NULL,'2',NULL,'4128397596',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Robertson Sr.',NULL,2,'1985-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(142,'Individual',NULL,'Sharyn Lee',NULL,NULL,'Sharyn','H','Lee',0,0,0,0,1,0,NULL,'Lee, Sharyn',NULL,NULL,NULL,'5',NULL,'1422629875',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Lee',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(143,'Individual',NULL,'Mr. Irvin Díaz','Friends Development Network',NULL,'Irvin','','Díaz',0,0,0,0,0,0,NULL,'Díaz, Irvin',NULL,NULL,NULL,NULL,NULL,'2415400429',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Díaz',NULL,2,'1985-01-21',0,NULL,NULL,NULL,NULL,NULL,136,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(144,'Organization',NULL,'Friends Literacy Network','Friends Literacy Network',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Friends Literacy Network',NULL,NULL,NULL,NULL,NULL,'3436827839',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Literacy Network',NULL,NULL,NULL,0,NULL,NULL,30,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(145,'Individual',NULL,'Ms. Heidi Reynolds',NULL,NULL,'Heidi','','Reynolds',0,0,0,0,0,0,NULL,'Reynolds, Heidi',NULL,NULL,NULL,'4',NULL,'925137718',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Reynolds',NULL,1,'1950-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(146,'Individual',NULL,'Jina Łąchowski',NULL,NULL,'Jina','','Łąchowski',0,0,0,0,1,0,NULL,'Łąchowski, Jina',NULL,NULL,NULL,NULL,NULL,'4065988488',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Łąchowski',NULL,1,'1977-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(147,'Individual',NULL,'chowskia@mymail.net',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'chowskia@mymail.net',NULL,NULL,NULL,NULL,NULL,'1843702133',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear chowskia@mymail.net',1,NULL,'Dear chowskia@mymail.net',1,NULL,'chowskia@mymail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:13:59','Both'), +(148,'Individual',NULL,'Princess Cooper',NULL,NULL,'Princess','','Cooper',0,1,0,0,0,0,NULL,'Cooper, Princess',NULL,NULL,NULL,NULL,NULL,'3515918144',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Cooper',NULL,1,'1973-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(149,'Organization',NULL,'Kentucky Development Association','Kentucky Development Association',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Kentucky Development Association',NULL,NULL,NULL,NULL,NULL,'1017244655',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Kentucky Development Association',NULL,NULL,NULL,0,NULL,NULL,68,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(150,'Individual',NULL,'Mr. Lou Lee',NULL,NULL,'Lou','','Lee',0,1,0,0,1,0,NULL,'Lee, Lou',NULL,NULL,NULL,NULL,NULL,'2234392100',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Lee',NULL,2,'1938-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(151,'Individual',NULL,'Lashawnda Patel',NULL,NULL,'Lashawnda','X','Patel',0,1,0,0,1,0,NULL,'Patel, Lashawnda',NULL,NULL,NULL,NULL,NULL,'3886858056',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Patel',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(152,'Individual',NULL,'Mrs. Delana Lee',NULL,NULL,'Delana','R','Lee',0,1,0,0,0,0,NULL,'Lee, Delana',NULL,NULL,NULL,NULL,NULL,'3418239378',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Mrs. Delana Lee',NULL,NULL,'1997-02-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(153,'Individual',NULL,'Dr. Irvin Jones III',NULL,NULL,'Irvin','M','Jones',0,0,0,0,0,0,NULL,'Jones, Irvin',NULL,NULL,NULL,NULL,NULL,'1283789305',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Jones III',NULL,2,'1947-06-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(154,'Individual',NULL,'Andrew Wagner',NULL,NULL,'Andrew','','Wagner',1,0,0,0,0,0,NULL,'Wagner, Andrew',NULL,NULL,NULL,NULL,NULL,'1096023784',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Wagner',NULL,NULL,'1969-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(155,'Organization',NULL,'Chatsworth Advocacy Fund','Chatsworth Advocacy Fund',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Chatsworth Advocacy Fund',NULL,NULL,NULL,'1',NULL,'62311103',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Chatsworth Advocacy Fund',NULL,NULL,NULL,0,NULL,NULL,58,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(156,'Organization',NULL,'Beech Development Initiative','Beech Development Initiative',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Beech Development Initiative',NULL,NULL,NULL,NULL,NULL,'370253589',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Development Initiative',NULL,NULL,NULL,0,NULL,NULL,39,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(157,'Individual',NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,'4',NULL,'2121702447',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear iveyb@mymail.co.nz',1,NULL,'Dear iveyb@mymail.co.nz',1,NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(158,'Organization',NULL,'Progressive Empowerment Solutions','Progressive Empowerment Solutions',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Progressive Empowerment Solutions',NULL,NULL,NULL,'1',NULL,'2023631586',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Empowerment Solutions',NULL,NULL,NULL,0,NULL,NULL,60,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(159,'Individual',NULL,'Dr. Claudio Wilson Jr.',NULL,NULL,'Claudio','V','Wilson',0,0,0,0,1,0,NULL,'Wilson, Claudio',NULL,NULL,NULL,NULL,NULL,'1650887830',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Dr. Claudio Wilson Jr.',NULL,2,'2002-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(160,'Individual',NULL,'Jay Patel',NULL,NULL,'Jay','','Patel',0,0,0,0,0,0,NULL,'Patel, Jay',NULL,NULL,NULL,'1',NULL,'320192131',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Patel',NULL,NULL,'2001-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(161,'Individual',NULL,'Jed Grant',NULL,NULL,'Jed','','Grant',0,1,0,0,0,0,NULL,'Grant, Jed',NULL,NULL,NULL,'2',NULL,'2644056120',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Grant',NULL,NULL,'2005-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(162,'Individual',NULL,'Herminia McReynolds','Oklahoma Sports Center',NULL,'Herminia','V','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Herminia',NULL,NULL,NULL,NULL,NULL,'2752519462',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia McReynolds',NULL,NULL,'1998-05-02',0,NULL,NULL,NULL,NULL,NULL,131,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(163,'Individual',NULL,'Mei Müller',NULL,NULL,'Mei','W','Müller',0,0,0,0,1,0,NULL,'Müller, Mei',NULL,NULL,NULL,NULL,NULL,'726297805',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Müller',NULL,NULL,'1959-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(164,'Individual',NULL,'Dr. Maxwell Roberts',NULL,NULL,'Maxwell','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Maxwell',NULL,NULL,NULL,NULL,NULL,'3618827003',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Roberts',NULL,NULL,'1968-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(165,'Individual',NULL,'Merrie Wilson',NULL,NULL,'Merrie','','Wilson',1,0,0,0,0,0,NULL,'Wilson, Merrie',NULL,NULL,NULL,NULL,NULL,'2015028870',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Wilson',NULL,1,'1989-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(166,'Individual',NULL,'Betty Blackwell',NULL,NULL,'Betty','G','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Betty',NULL,NULL,NULL,'4',NULL,'1950991394',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Blackwell',NULL,1,'1984-03-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(167,'Individual',NULL,'Brigette Łąchowski',NULL,NULL,'Brigette','E','Łąchowski',1,0,0,0,0,0,NULL,'Łąchowski, Brigette',NULL,NULL,NULL,'2',NULL,'484497434',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Łąchowski',NULL,1,'1982-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(168,'Individual',NULL,'Lashawnda Bachman',NULL,NULL,'Lashawnda','Q','Bachman',1,0,0,0,0,0,NULL,'Bachman, Lashawnda',NULL,NULL,NULL,'2',NULL,'1842507173',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Bachman',NULL,1,'1966-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(169,'Organization',NULL,'Martin Luther King Family Partnership','Martin Luther King Family Partnership',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Martin Luther King Family Partnership',NULL,NULL,NULL,NULL,NULL,'1748619433',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Family Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(170,'Individual',NULL,'Ms. Heidi Smith',NULL,NULL,'Heidi','D','Smith',0,0,0,0,0,0,NULL,'Smith, Heidi',NULL,NULL,NULL,NULL,NULL,'837834326',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Smith',NULL,1,'1960-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(171,'Individual',NULL,'Kathleen Wattson',NULL,NULL,'Kathleen','','Wattson',0,0,0,0,1,0,NULL,'Wattson, Kathleen',NULL,NULL,NULL,'5',NULL,'784443764',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(172,'Individual',NULL,'Dr. Landon Bachman Sr.',NULL,NULL,'Landon','H','Bachman',1,0,0,0,0,0,NULL,'Bachman, Landon',NULL,NULL,NULL,'2',NULL,'1765533665',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Bachman Sr.',NULL,2,'1962-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(173,'Individual',NULL,'Princess McReynolds',NULL,NULL,'Princess','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Princess',NULL,NULL,NULL,'1',NULL,'2818218342',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess McReynolds',NULL,NULL,'1970-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(174,'Individual',NULL,'Erik Müller Sr.',NULL,NULL,'Erik','','Müller',0,1,0,0,0,0,NULL,'Müller, Erik',NULL,NULL,NULL,NULL,NULL,'826359334',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Müller Sr.',NULL,2,'1977-06-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(175,'Individual',NULL,'Dr. Shad Grant III',NULL,NULL,'Shad','','Grant',0,0,0,0,0,0,NULL,'Grant, Shad',NULL,NULL,NULL,'3',NULL,'3908834377',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Grant III',NULL,2,'1985-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(176,'Individual',NULL,'Sonny Grant',NULL,NULL,'Sonny','N','Grant',0,0,0,0,0,0,NULL,'Grant, Sonny',NULL,NULL,NULL,NULL,NULL,'2555884603',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Grant',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(177,'Individual',NULL,'Norris Łąchowski',NULL,NULL,'Norris','','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Norris',NULL,NULL,NULL,'1',NULL,'1332829607',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Łąchowski',NULL,NULL,'1977-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(178,'Individual',NULL,'Bryon Terry',NULL,NULL,'Bryon','','Terry',0,0,0,0,0,0,NULL,'Terry, Bryon',NULL,NULL,NULL,NULL,NULL,'86438947',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Terry',NULL,2,'1990-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(179,'Individual',NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,'1',NULL,'351830283',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear maxwellcooper@example.co.in',1,NULL,'Dear maxwellcooper@example.co.in',1,NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(180,'Individual',NULL,'Ms. Kathlyn McReynolds',NULL,NULL,'Kathlyn','Z','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Kathlyn',NULL,NULL,NULL,'2',NULL,'1098429926',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Ms. Kathlyn McReynolds',NULL,1,'1989-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(181,'Organization',NULL,'Sierra Sports Initiative','Sierra Sports Initiative',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Sierra Sports Initiative',NULL,NULL,NULL,'2',NULL,'644051549',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Sports Initiative',NULL,NULL,NULL,0,NULL,NULL,56,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(182,'Individual',NULL,'Ashlie Nielsen',NULL,NULL,'Ashlie','','Nielsen',1,1,0,0,1,0,NULL,'Nielsen, Ashlie',NULL,NULL,NULL,'3',NULL,'89218160',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Nielsen',NULL,NULL,'1988-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(183,'Household',NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Łąchowski family',NULL,NULL,NULL,'1',NULL,'2407077255',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(184,'Individual',NULL,'Truman Samuels',NULL,NULL,'Truman','','Samuels',1,0,0,0,0,0,NULL,'Samuels, Truman',NULL,NULL,NULL,NULL,NULL,'818816780',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Samuels',NULL,2,'1965-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(185,'Individual',NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,'4',NULL,'3995084433',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear jacobr22@infomail.biz',1,NULL,'Dear jacobr22@infomail.biz',1,NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(186,'Individual',NULL,'Mr. Lincoln Jameson III',NULL,NULL,'Lincoln','W','Jameson',0,0,0,0,0,0,NULL,'Jameson, Lincoln',NULL,NULL,NULL,'2',NULL,'2753899992',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Jameson III',NULL,2,'1937-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(187,'Individual',NULL,'Allan Blackwell',NULL,NULL,'Allan','X','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Allan',NULL,NULL,NULL,'3',NULL,'3904004195',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Blackwell',NULL,NULL,'1986-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(188,'Individual',NULL,'Angelika Blackwell',NULL,NULL,'Angelika','G','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Angelika',NULL,NULL,NULL,'2',NULL,'2888403240',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(189,'Individual',NULL,'Dr. Toby Bachman',NULL,NULL,'Toby','','Bachman',0,0,0,0,1,0,NULL,'Bachman, Toby',NULL,NULL,NULL,'4',NULL,'3370727882',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Bachman',NULL,NULL,'1956-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(190,'Individual',NULL,'Ms. Lashawnda Olsen-Barkley',NULL,NULL,'Lashawnda','','Olsen-Barkley',0,0,0,0,0,0,NULL,'Olsen-Barkley, Lashawnda',NULL,NULL,NULL,'2',NULL,'201900052',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Ms. Lashawnda Olsen-Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(191,'Organization',NULL,'Second Technology Fellowship','Second Technology Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Second Technology Fellowship',NULL,NULL,NULL,NULL,NULL,'584862025',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Technology Fellowship',NULL,NULL,NULL,0,NULL,NULL,125,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(192,'Individual',NULL,'Mrs. Teresa Wagner',NULL,NULL,'Teresa','G','Wagner',0,0,0,0,0,0,NULL,'Wagner, Teresa',NULL,NULL,NULL,NULL,NULL,'3788497377',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Mrs. Teresa Wagner',NULL,1,'1942-04-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), +(193,'Individual',NULL,'Mrs. Alida Zope',NULL,NULL,'Alida','','Zope',0,0,0,0,0,0,NULL,'Zope, Alida',NULL,NULL,NULL,'3',NULL,'3726796517',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(194,'Household',NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,'558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), +(195,'Organization',NULL,'Jackson Health Fellowship','Jackson Health Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jackson Health Fellowship',NULL,NULL,NULL,'3',NULL,'4134926307',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Health Fellowship',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(196,'Organization',NULL,'Indiana Action Academy','Indiana Action Academy',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Indiana Action Academy',NULL,NULL,NULL,'4',NULL,'1753573103',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Indiana Action Academy',NULL,NULL,NULL,0,NULL,NULL,27,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), +(197,'Individual',NULL,'Arlyne Barkley',NULL,NULL,'Arlyne','R','Barkley',0,0,0,0,1,0,NULL,'Barkley, Arlyne',NULL,NULL,NULL,NULL,NULL,'3692098721',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Barkley',NULL,1,'2011-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(198,'Individual',NULL,'Dr. Margaret Díaz',NULL,NULL,'Margaret','','Díaz',0,0,0,0,0,0,NULL,'Díaz, Margaret',NULL,NULL,NULL,NULL,NULL,'1820455973',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Díaz',NULL,NULL,'1962-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:13:59','Both'), +(199,'Individual',NULL,'Dr. Jerome Grant',NULL,NULL,'Jerome','','Grant',0,0,0,0,1,0,NULL,'Grant, Jerome',NULL,NULL,NULL,'4',NULL,'92527229',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Grant',NULL,2,'1972-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(200,'Individual',NULL,'Mrs. Merrie Terry',NULL,NULL,'Merrie','','Terry',0,0,0,0,0,0,NULL,'Terry, Merrie',NULL,NULL,NULL,NULL,NULL,'3801150846',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), +(201,'Individual',NULL,'Ray Wilson II',NULL,NULL,'Ray','B','Wilson',0,0,0,0,1,0,NULL,'Wilson, Ray',NULL,NULL,NULL,NULL,NULL,'1585243279',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wilson II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), +(202,'Individual',NULL,'Jenny Lee',NULL,NULL,'Jenny',NULL,'Lee',0,0,0,0,0,0,NULL,'Lee, Jenny',NULL,NULL,NULL,NULL,'en_US','fb1963cbdb9976cef89521d74dcac85f',NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:14:07','2025-02-11 21:14:07','Both'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -2186,13 +2197,13 @@ LOCK TABLES `civicrm_contact_type` WRITE; /*!40000 ALTER TABLE `civicrm_contact_type` DISABLE KEYS */; INSERT INTO `civicrm_contact_type` (`id`, `name`, `label`, `description`, `image_URL`, `icon`, `parent_id`, `is_active`, `is_reserved`) VALUES (1,'Individual','Individual',NULL,NULL,'fa-user',NULL,1,1), - (2,'Household','Household',NULL,NULL,'fa-home',NULL,1,1), - (3,'Organization','Organization',NULL,NULL,'fa-building',NULL,1,1), - (4,'Student','Student',NULL,NULL,'fa-graduation-cap',1,1,0), - (5,'Parent','Parent',NULL,NULL,'fa-user-circle-o',1,1,0), - (6,'Staff','Staff',NULL,NULL,'fa-id-badge',1,1,0), - (7,'Team','Team',NULL,NULL,'fa-users',3,1,0), - (8,'Sponsor','Sponsor',NULL,NULL,'fa-leaf',3,1,0); +(2,'Household','Household',NULL,NULL,'fa-home',NULL,1,1), +(3,'Organization','Organization',NULL,NULL,'fa-building',NULL,1,1), +(4,'Student','Student',NULL,NULL,'fa-graduation-cap',1,1,0), +(5,'Parent','Parent',NULL,NULL,'fa-user-circle-o',1,1,0), +(6,'Staff','Staff',NULL,NULL,'fa-id-badge',1,1,0), +(7,'Team','Team',NULL,NULL,'fa-users',3,1,0), +(8,'Sponsor','Sponsor',NULL,NULL,'fa-leaf',3,1,0); /*!40000 ALTER TABLE `civicrm_contact_type` ENABLE KEYS */; UNLOCK TABLES; @@ -2203,117 +2214,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution` WRITE; /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */; INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`, `is_template`) VALUES - (1,2,1,NULL,4,'2015-02-06 20:13:17',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,0.00,NULL,0), - (2,4,1,NULL,1,'2022-11-06 20:13:17',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (3,6,1,NULL,4,'2019-01-12 07:13:17',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,0.00,NULL,0), - (4,8,1,NULL,4,'2022-11-06 20:13:17',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,0.00,NULL,0), - (5,4,1,NULL,1,'2022-11-06 20:13:17',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (6,16,1,NULL,4,'2024-11-13 19:31:17',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,0.00,NULL,0), - (7,19,1,NULL,1,'2025-02-04 20:13:17',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,0.00,NULL,0), - (8,82,1,NULL,1,'2024-06-15 04:24:17',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (9,92,1,NULL,1,'2024-03-06 20:13:17',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (10,34,1,NULL,1,'2020-09-13 22:13:17',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (11,71,1,NULL,1,'2025-02-05 16:13:17',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (12,43,1,NULL,1,'2023-11-06 09:39:57',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (13,32,1,NULL,1,'2024-11-06 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (14,32,1,NULL,1,'2024-12-06 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (15,59,1,NULL,1,'2023-11-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (16,59,1,NULL,1,'2023-12-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (17,59,1,NULL,1,'2024-01-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (18,59,1,NULL,1,'2024-02-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (19,59,1,NULL,1,'2024-03-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (20,59,1,NULL,1,'2024-04-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (21,59,1,NULL,1,'2024-05-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (22,59,1,NULL,1,'2024-06-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (23,59,1,NULL,1,'2024-07-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (24,59,1,NULL,1,'2024-08-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (25,59,1,NULL,1,'2024-09-06 20:13:17',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (26,99,1,NULL,1,'2024-06-06 20:13:17',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (27,99,1,NULL,1,'2024-07-06 20:13:17',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (28,99,1,NULL,1,'2024-08-06 20:13:17',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (29,99,1,NULL,1,'2024-09-06 20:13:17',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (30,99,1,NULL,1,'2024-10-06 20:13:17',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (31,103,1,NULL,1,'2025-01-06 20:13:17',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (32,97,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'872a75b9923d8c1d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (33,70,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'34d0652244affce1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (34,69,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'6e36caab13df46dc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (35,44,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'3efa96a6cec008d1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (36,197,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'38aad2fb5d1b3c52',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (37,33,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'8f0054a232c7106e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (38,156,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'9757353f6f019609',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (39,35,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'f658e9ff127fb049',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (40,23,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'8a518f8cde34c49c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (41,193,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'90f26225e705e509',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (42,10,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'49878470ac123aa9',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (43,36,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'04938feab9f03451',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (44,157,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'b47fb4cc038d6d6b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (45,187,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'784d5a0d7a1b71ab',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (46,127,2,NULL,1,'2025-02-06 20:13:17',0.00,100.00,NULL,NULL,'46b35710bfbd01e8',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (47,51,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'56b4265aa7d54a7b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (48,110,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'19f65c2e0105f78c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (49,111,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'e824488038f56075',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (50,107,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f66ec5cd0d9a0fbc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (51,125,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'fb07645011d4557b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (52,177,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f19b40ba52023023',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (53,195,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'3e501ab832d8637f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (54,48,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'e17965ec225fb03b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (55,78,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'2df457b0bf0a5b60',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (56,138,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'3ce897d758ac181b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (57,65,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f7deacf00b4d6df2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (58,202,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'1080c9989d4ec02d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (59,199,2,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'9866eed4625a2161',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (60,153,2,NULL,1,'2025-02-06 20:13:17',0.00,1200.00,NULL,NULL,'f7b1dcc48300da38',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (61,14,2,NULL,1,'2025-02-06 20:13:17',0.00,1200.00,NULL,NULL,'d98248fa9a2aab2d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (63,1,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f9509813b437e3d4',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (64,7,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'6dcc00c2b85e3bd7',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (65,13,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'8049bafecd510bb9',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (66,14,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'803407b62085da29',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (67,22,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'1a1fa2bf4b653373',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (68,25,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'bd07f14fa0a0e395',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (69,29,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'9cfc6d00c2fe08e8',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (70,30,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'96c8a45568d19bd2',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (71,32,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'b6720d7e09e82046',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (72,42,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'9bbb954a34da447b',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (73,47,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'95287e700e2f2a5a',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (74,49,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'bb80398084ba5f7b',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (75,51,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'2205e23d98e213eb',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (76,60,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'8090584051f6b5cd',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (77,64,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'fa942ee6214e9c8a',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (78,70,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'b34aec2b3cf29dd9',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (79,72,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'e2d360f51e958944',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (80,76,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'8c362709d740c03b',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (81,82,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'1d82b44366dc8aec',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (82,84,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'3f27ff9e2c5d2d52',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (83,86,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'c33e3b0136a2cca0',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (84,103,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'d856f380cdeed8be',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (85,105,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'0dd4af0d0f3c95c4',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (86,110,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'cb3efcc0f6ecca45',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (87,112,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'181a64155745e6d3',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (88,127,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'b426d5c25debecfb',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (89,132,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'c31d01b410455349',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (90,134,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'720d7036088c768d',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (91,136,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'7b3d76fe13424cb1',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (92,139,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'87c6a8cf0098e3cd',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (93,144,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'642761ab9b1533c3',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (94,149,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'c55a0b92b300ddbb',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (95,150,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'9d4810381af95a96',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (96,151,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'39f796dc7f237e53',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (97,159,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'05a9aefaabf3b0ef',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (98,161,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'0fe80f8a4e51ac35',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (99,164,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'2b0bc8f31de023b3',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (100,166,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'90d682827677b0cf',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (101,167,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'8a58b47489afe8ed',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (102,168,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f1f4f5263ee4741e',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (103,170,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'f04fbebb92681b29',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (104,173,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'176f1017ddf9eed7',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (105,179,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'471684875d6ececf',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (106,183,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'e9ed805a3dce6b67',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (107,184,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'ea80081cda10b046',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (108,186,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'3b75a1c680be88f6',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (109,189,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'2f86ca454e8367b8',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (110,191,4,NULL,1,'2025-02-06 20:13:17',0.00,800.00,NULL,NULL,'e5a3bb6a7c7d94c4',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (111,193,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'7a8c3e678327008e',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), - (112,198,4,NULL,1,'2025-02-06 20:13:17',0.00,50.00,NULL,NULL,'40693f2083221d57',NULL,NULL,'USD',NULL,NULL,'2025-02-06 20:13:17',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0); + (1,2,1,NULL,4,'2015-02-11 21:14:13',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,0.00,NULL,0), +(2,4,1,NULL,1,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(3,6,1,NULL,4,'2019-01-17 08:14:13',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,0.00,NULL,0), +(4,8,1,NULL,4,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,0.00,NULL,0), +(5,4,1,NULL,1,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(6,16,1,NULL,4,'2024-11-18 20:32:13',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,0.00,NULL,0), +(7,19,1,NULL,1,'2025-02-09 21:14:13',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,0.00,NULL,0), +(8,82,1,NULL,1,'2024-06-20 05:25:13',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(9,92,1,NULL,1,'2024-03-11 21:14:13',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(10,34,1,NULL,1,'2020-09-18 23:14:13',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(11,71,1,NULL,1,'2025-02-10 17:14:13',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(12,43,1,NULL,1,'2023-11-11 10:40:53',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(13,32,1,NULL,1,'2024-11-11 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(14,32,1,NULL,1,'2024-12-11 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(15,59,1,NULL,1,'2023-11-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(16,59,1,NULL,1,'2023-12-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(17,59,1,NULL,1,'2024-01-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(18,59,1,NULL,1,'2024-02-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(19,59,1,NULL,1,'2024-03-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(20,59,1,NULL,1,'2024-04-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(21,59,1,NULL,1,'2024-05-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(22,59,1,NULL,1,'2024-06-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(23,59,1,NULL,1,'2024-07-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(24,59,1,NULL,1,'2024-08-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(25,59,1,NULL,1,'2024-09-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(26,99,1,NULL,1,'2024-06-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(27,99,1,NULL,1,'2024-07-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(28,99,1,NULL,1,'2024-08-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(29,99,1,NULL,1,'2024-09-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(30,99,1,NULL,1,'2024-10-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(31,103,1,NULL,1,'2025-01-11 21:14:13',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(32,92,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'30b21218d4f608be',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(33,99,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'0dedfa09e891438f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(34,84,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'574b9165dd1b2b08',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(35,160,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2a38f7756033f606',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(36,69,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'023af7d0c7f31b8a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(37,82,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'33d7025c877837f5',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(38,172,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'62d9ef9ccc062221',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(39,189,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'02389d9d955ce089',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(40,116,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'7d6fcd38d448304e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(41,185,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'f5358baca286095a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(42,152,2,NULL,1,'2025-02-11 21:14:14',0.00,1200.00,NULL,NULL,'e62ae07fa55fd663',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(43,148,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c9e18530302548b2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(44,180,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'1d0bcce5e3098071',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(45,117,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'202a92329ecef77e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(46,174,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'54ef2704f518b5f4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(47,11,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2f4c60965320af89',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(48,54,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'525936f76eaded41',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(49,100,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c9863526e83a76ec',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(50,77,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'5c82b9195bb60c1c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(51,26,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'aba9c3f3571c72df',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(52,81,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'70a25e1a224d8953',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(53,19,2,NULL,1,'2025-02-11 21:14:14',0.00,1200.00,NULL,NULL,'7709afa3e698eda0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(54,115,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'89c796b13ba0d28a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(55,113,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'062f7ed8d280446a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(56,88,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'380fc034c1ac7e2b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(57,159,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'6c1d7a100734c442',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(58,13,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'c4bb26bafd34a7ec',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(59,141,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'56d62e4b8de9e019',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(60,27,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'f8ea0147caf88d9e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(61,130,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'76a4f2862289bedc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(63,5,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'6d6c3146a0f2ca2c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(64,6,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'f4718d011de18df0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(65,11,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'2f9e0ac0e64b7838',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(66,13,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7d686602d215ef51',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(67,17,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'4b07755fa1f5b062',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(68,20,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'fe91541ab3ac36bb',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(69,28,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'d469814944d49bf7',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(70,30,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'992368ca700244de',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(71,34,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'629be821c1050c28',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(72,37,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'5e96e6ad3e4d7931',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(73,45,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'275ea22fdba62972',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(74,49,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'f03674f7ee9a296a',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(75,54,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'2fcbf2346f509f8c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(76,55,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7cfc64c19ce2e710',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(77,60,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'256b383f905d7f60',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(78,64,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2630868a771db2c8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(79,65,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'c4495379ed6eb080',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(80,76,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'634616b413dda509',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(81,78,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'38500eff4fe4f408',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(82,79,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'c5cf79c1a1a9724a',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(83,80,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3cddfd1a376b75ce',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(84,84,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'4448ab608fdcf5b8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(85,87,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'94e75bfe88b77a1e',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(86,110,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'e9e138a2d12808b2',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(87,111,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'968db382c346785b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(88,113,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'ec883bafea47f002',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(89,117,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c307954cba953250',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(90,118,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'a04031766e066125',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(91,125,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'ef4386a7d7349d5b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(92,129,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'0991cc36c28c5183',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(93,134,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'27547f8765679bba',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(94,137,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'25efeb195a2226c5',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(95,139,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'e5221b71be93c59f',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(96,140,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7b1b12afc904a2bb',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(97,146,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'82bfc16353bc11d8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(98,147,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'8e591a74e7bfcc1b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(99,148,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'74f57f05ebb364d9',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(100,149,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c133f13ab6e644aa',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(101,152,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'80ad0bf6b7a42de0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(102,162,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'1f351b2a90f13441',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(103,163,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'0778baf13b378795',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(104,167,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'ccf97b109357b8f2',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(105,180,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7c4356899190cbe5',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(106,181,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'36a0f24d2a86c4be',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(107,184,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'6465ecbfbea93628',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(108,186,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3b8c6753e607caae',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(109,190,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3f6751e063aad61c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(110,192,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'5d53c4a3409d0fb3',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(111,194,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'8d80f80d5f271482',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), +(112,197,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'65cf28ebef7101d8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -2324,9 +2335,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_page` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_page` DISABLE KEYS */; INSERT INTO `civicrm_contribution_page` (`id`, `title`, `frontend_title`, `name`, `intro_text`, `financial_type_id`, `payment_processor`, `is_credit_card_only`, `is_monetary`, `is_recur`, `is_confirm_enabled`, `recur_frequency_unit`, `is_recur_interval`, `is_recur_installments`, `adjust_recur_start_date`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_allow_other_amount`, `default_amount_id`, `min_amount`, `max_amount`, `goal_amount`, `thankyou_title`, `thankyou_text`, `thankyou_footer`, `is_email_receipt`, `receipt_from_name`, `receipt_from_email`, `cc_receipt`, `bcc_receipt`, `receipt_text`, `is_active`, `footer_text`, `amount_block_is_active`, `start_date`, `end_date`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_billing_required`) VALUES - (1,'Donate page','Help Support CiviCRM!','donate','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Contribute NOW by trying out our new online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,137,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about CiviCRM!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-06 20:13:13','USD',NULL,1,0), - (2,'Membership page','Member Signup and Renewal','membership','Members are the life-blood of our organization. If you\'re not already a member - please consider signing up today. You can select the membership level the fits your budget and needs below.',2,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Thanks for Your Support!','Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.',NULL,1,'Membership Department','memberships@civicrm.org',NULL,NULL,'Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.\r\n\r\nKeep this receipt for your records.',1,NULL,0,NULL,NULL,NULL,'2025-02-06 20:13:13','USD',NULL,1,0), - (3,'Pledge page','Pledge for CiviCRM!','pledge','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Pledge NOW by trying out our online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,NULL,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools like Pledge.

Please tell your friends and colleagues about CiviPledge!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-06 20:13:13','USD',NULL,1,0); + (1,'Donate page','Help Support CiviCRM!','donate','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Contribute NOW by trying out our new online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,137,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about CiviCRM!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0), +(2,'Membership page','Member Signup and Renewal','membership','Members are the life-blood of our organization. If you\'re not already a member - please consider signing up today. You can select the membership level the fits your budget and needs below.',2,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Thanks for Your Support!','Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.',NULL,1,'Membership Department','memberships@civicrm.org',NULL,NULL,'Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.\r\n\r\nKeep this receipt for your records.',1,NULL,0,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0), +(3,'Pledge page','Pledge for CiviCRM!','pledge','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Pledge NOW by trying out our online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,NULL,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools like Pledge.

Please tell your friends and colleagues about CiviPledge!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0); /*!40000 ALTER TABLE `civicrm_contribution_page` ENABLE KEYS */; UNLOCK TABLES; @@ -2346,9 +2357,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_recur` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_recur` DISABLE KEYS */; INSERT INTO `civicrm_contribution_recur` (`id`, `contact_id`, `amount`, `currency`, `frequency_unit`, `frequency_interval`, `installments`, `start_date`, `create_date`, `modified_date`, `cancel_date`, `cancel_reason`, `end_date`, `processor_id`, `payment_token_id`, `trxn_id`, `invoice_id`, `contribution_status_id`, `is_test`, `cycle_day`, `next_sched_contribution_date`, `failure_count`, `failure_retry_date`, `auto_renew`, `payment_processor_id`, `financial_type_id`, `payment_instrument_id`, `campaign_id`, `is_email_receipt`) VALUES - (1,59,25.00,'USD','month',1,12,'2023-11-06 20:13:17','2025-02-06 20:13:17','2025-02-07 04:13:17',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (2,99,10.00,'CAD','month',1,6,'2024-06-06 20:13:17','2025-02-06 20:13:17','2025-02-07 04:13:17','2025-01-06 20:13:17','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (3,103,5.00,'EUR','month',3,3,'2025-01-06 20:13:17','2025-02-06 20:13:17','2025-02-07 04:13:17',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2025-04-06 20:13:17',0,NULL,0,1,NULL,NULL,NULL,1); + (1,59,25.00,'USD','month',1,12,'2023-11-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), +(2,99,10.00,'CAD','month',1,6,'2024-06-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13','2025-01-11 21:14:13','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), +(3,103,5.00,'EUR','month',3,3,'2025-01-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2025-04-11 21:14:13',0,NULL,0,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_contribution_recur` ENABLE KEYS */; UNLOCK TABLES; @@ -2359,8 +2370,8 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_soft` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */; INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES - (1,9,101,10.00,'USD',1,1,'Jones Family','Helping Hands',10), - (2,10,101,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); + (1,9,123,10.00,'USD',1,1,'Jones Family','Helping Hands',10), +(2,10,123,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -2381,255 +2392,255 @@ LOCK TABLES `civicrm_country` WRITE; /*!40000 ALTER TABLE `civicrm_country` DISABLE KEYS */; INSERT INTO `civicrm_country` (`id`, `name`, `iso_code`, `country_code`, `address_format_id`, `idd_prefix`, `ndd_prefix`, `region_id`, `is_province_abbreviated`, `is_active`) VALUES (1001,'Afghanistan','AF',NULL,NULL,NULL,NULL,4,0,1), - (1002,'Albania','AL',NULL,NULL,NULL,NULL,1,0,1), - (1003,'Algeria','DZ',NULL,NULL,NULL,NULL,3,0,1), - (1004,'American Samoa','AS',NULL,NULL,NULL,NULL,2,0,1), - (1005,'Andorra','AD',NULL,NULL,NULL,NULL,1,0,1), - (1006,'Angola','AO',NULL,NULL,NULL,NULL,5,0,1), - (1007,'Anguilla','AI',NULL,NULL,NULL,NULL,2,0,1), - (1008,'Antarctica','AQ',NULL,NULL,NULL,NULL,1,0,1), - (1009,'Antigua and Barbuda','AG',NULL,NULL,NULL,NULL,2,0,1), - (1010,'Argentina','AR',NULL,NULL,NULL,NULL,2,0,1), - (1011,'Armenia','AM',NULL,NULL,NULL,NULL,1,0,1), - (1012,'Aruba','AW',NULL,NULL,NULL,NULL,2,0,1), - (1013,'Australia','AU',NULL,NULL,NULL,NULL,4,0,1), - (1014,'Austria','AT',NULL,NULL,NULL,NULL,1,0,1), - (1015,'Azerbaijan','AZ',NULL,NULL,NULL,NULL,1,0,1), - (1016,'Bahrain','BH',NULL,NULL,NULL,NULL,3,0,1), - (1017,'Bangladesh','BD',NULL,NULL,NULL,NULL,4,0,1), - (1018,'Barbados','BB',NULL,NULL,NULL,NULL,4,0,1), - (1019,'Belarus','BY',NULL,NULL,NULL,NULL,1,0,1), - (1020,'Belgium','BE',NULL,NULL,NULL,NULL,1,0,1), - (1021,'Belize','BZ',NULL,NULL,NULL,NULL,2,0,1), - (1022,'Benin','BJ',NULL,NULL,NULL,NULL,5,0,1), - (1023,'Bermuda','BM',NULL,NULL,NULL,NULL,2,0,1), - (1024,'Bhutan','BT',NULL,NULL,NULL,NULL,4,0,1), - (1025,'Bolivia','BO',NULL,NULL,NULL,NULL,2,0,1), - (1026,'Bosnia and Herzegovina','BA',NULL,NULL,NULL,NULL,1,0,1), - (1027,'Botswana','BW',NULL,NULL,NULL,NULL,5,0,1), - (1028,'Bouvet Island','BV',NULL,NULL,NULL,NULL,1,0,1), - (1029,'Brazil','BR',NULL,NULL,NULL,NULL,2,0,1), - (1030,'British Indian Ocean Territory','IO',NULL,NULL,NULL,NULL,4,0,1), - (1031,'Virgin Islands, British','VG',NULL,NULL,NULL,NULL,2,0,1), - (1032,'Brunei Darussalam','BN',NULL,NULL,NULL,NULL,4,0,1), - (1033,'Bulgaria','BG',NULL,NULL,NULL,NULL,1,0,1), - (1034,'Burkina Faso','BF',NULL,NULL,NULL,NULL,5,0,1), - (1035,'Myanmar','MM',NULL,NULL,NULL,NULL,4,0,1), - (1036,'Burundi','BI',NULL,NULL,NULL,NULL,5,0,1), - (1037,'Cambodia','KH',NULL,NULL,NULL,NULL,4,0,1), - (1038,'Cameroon','CM',NULL,NULL,NULL,NULL,5,0,1), - (1039,'Canada','CA',NULL,NULL,NULL,NULL,2,1,1), - (1040,'Cape Verde','CV',NULL,NULL,NULL,NULL,5,0,1), - (1041,'Cayman Islands','KY',NULL,NULL,NULL,NULL,5,0,1), - (1042,'Central African Republic','CF',NULL,NULL,NULL,NULL,5,0,1), - (1043,'Chad','TD',NULL,NULL,NULL,NULL,5,0,1), - (1044,'Chile','CL',NULL,NULL,NULL,NULL,2,0,1), - (1045,'China','CN',NULL,NULL,NULL,NULL,4,0,1), - (1046,'Christmas Island','CX',NULL,NULL,NULL,NULL,4,0,1), - (1047,'Cocos (Keeling) Islands','CC',NULL,NULL,NULL,NULL,4,0,1), - (1048,'Colombia','CO',NULL,NULL,NULL,NULL,2,0,1), - (1049,'Comoros','KM',NULL,NULL,NULL,NULL,5,0,1), - (1050,'Congo, The Democratic Republic of the','CD',NULL,NULL,NULL,NULL,5,0,1), - (1051,'Congo, Republic of the','CG',NULL,NULL,NULL,NULL,5,0,1), - (1052,'Cook Islands','CK',NULL,NULL,NULL,NULL,4,0,1), - (1053,'Costa Rica','CR',NULL,NULL,NULL,NULL,2,0,1), - (1054,'Côte d’Ivoire','CI',NULL,NULL,NULL,NULL,5,0,1), - (1055,'Croatia','HR',NULL,NULL,NULL,NULL,1,0,1), - (1056,'Cuba','CU',NULL,NULL,NULL,NULL,2,0,1), - (1057,'Cyprus','CY',NULL,NULL,NULL,NULL,1,0,1), - (1058,'Czech Republic','CZ',NULL,NULL,NULL,NULL,1,0,1), - (1059,'Denmark','DK',NULL,NULL,NULL,NULL,1,0,1), - (1060,'Djibouti','DJ',NULL,NULL,NULL,NULL,5,0,1), - (1061,'Dominica','DM',NULL,NULL,NULL,NULL,2,0,1), - (1062,'Dominican Republic','DO',NULL,NULL,NULL,NULL,2,0,1), - (1063,'Timor-Leste','TL',NULL,NULL,NULL,NULL,4,0,1), - (1064,'Ecuador','EC',NULL,NULL,NULL,NULL,2,0,1), - (1065,'Egypt','EG',NULL,NULL,NULL,NULL,3,0,1), - (1066,'El Salvador','SV',NULL,NULL,NULL,NULL,2,0,1), - (1067,'Equatorial Guinea','GQ',NULL,NULL,NULL,NULL,5,0,1), - (1068,'Eritrea','ER',NULL,NULL,NULL,NULL,5,0,1), - (1069,'Estonia','EE',NULL,NULL,NULL,NULL,1,0,1), - (1070,'Ethiopia','ET',NULL,NULL,NULL,NULL,5,0,1), - (1072,'Falkland Islands (Malvinas)','FK',NULL,NULL,NULL,NULL,2,0,1), - (1073,'Faroe Islands','FO',NULL,NULL,NULL,NULL,1,0,1), - (1074,'Fiji','FJ',NULL,NULL,NULL,NULL,4,0,1), - (1075,'Finland','FI',NULL,NULL,NULL,NULL,1,0,1), - (1076,'France','FR',NULL,NULL,NULL,NULL,1,0,1), - (1077,'French Guiana','GF',NULL,NULL,NULL,NULL,2,0,1), - (1078,'French Polynesia','PF',NULL,NULL,NULL,NULL,4,0,1), - (1079,'French Southern Territories','TF',NULL,NULL,NULL,NULL,1,0,1), - (1080,'Gabon','GA',NULL,NULL,NULL,NULL,5,0,1), - (1081,'Georgia','GE',NULL,NULL,NULL,NULL,3,0,1), - (1082,'Germany','DE',NULL,NULL,NULL,NULL,1,0,1), - (1083,'Ghana','GH',NULL,NULL,NULL,NULL,5,0,1), - (1084,'Gibraltar','GI',NULL,NULL,NULL,NULL,1,0,1), - (1085,'Greece','GR',NULL,NULL,NULL,NULL,1,0,1), - (1086,'Greenland','GL',NULL,NULL,NULL,NULL,2,0,1), - (1087,'Grenada','GD',NULL,NULL,NULL,NULL,2,0,1), - (1088,'Guadeloupe','GP',NULL,NULL,NULL,NULL,2,0,1), - (1089,'Guam','GU',NULL,NULL,NULL,NULL,4,0,1), - (1090,'Guatemala','GT',NULL,NULL,NULL,NULL,2,0,1), - (1091,'Guinea','GN',NULL,NULL,NULL,NULL,5,0,1), - (1092,'Guinea-Bissau','GW',NULL,NULL,NULL,NULL,5,0,1), - (1093,'Guyana','GY',NULL,NULL,NULL,NULL,2,0,1), - (1094,'Haiti','HT',NULL,NULL,NULL,NULL,2,0,1), - (1095,'Heard Island and McDonald Islands','HM',NULL,NULL,NULL,NULL,4,0,1), - (1096,'Holy See (Vatican City State)','VA',NULL,NULL,NULL,NULL,1,0,1), - (1097,'Honduras','HN',NULL,NULL,NULL,NULL,2,0,1), - (1098,'Hong Kong','HK',NULL,NULL,NULL,NULL,4,0,1), - (1099,'Hungary','HU',NULL,NULL,NULL,NULL,1,0,1), - (1100,'Iceland','IS',NULL,NULL,NULL,NULL,1,0,1), - (1101,'India','IN',NULL,NULL,NULL,NULL,4,0,1), - (1102,'Indonesia','ID',NULL,NULL,NULL,NULL,4,0,1), - (1103,'Iran, Islamic Republic of','IR',NULL,NULL,NULL,NULL,3,0,1), - (1104,'Iraq','IQ',NULL,NULL,NULL,NULL,3,0,1), - (1105,'Ireland','IE',NULL,NULL,NULL,NULL,1,0,1), - (1106,'Israel','IL',NULL,NULL,NULL,NULL,3,0,1), - (1107,'Italy','IT',NULL,NULL,NULL,NULL,1,0,1), - (1108,'Jamaica','JM',NULL,NULL,NULL,NULL,2,0,1), - (1109,'Japan','JP',NULL,NULL,NULL,NULL,4,0,1), - (1110,'Jordan','JO',NULL,NULL,NULL,NULL,3,0,1), - (1111,'Kazakhstan','KZ',NULL,NULL,NULL,NULL,1,0,1), - (1112,'Kenya','KE',NULL,NULL,NULL,NULL,5,0,1), - (1113,'Kiribati','KI',NULL,NULL,NULL,NULL,4,0,1), - (1114,'Korea, Democratic People\'s Republic of','KP',NULL,NULL,NULL,NULL,4,0,1), - (1115,'Korea, Republic of','KR',NULL,NULL,NULL,NULL,4,0,1), - (1116,'Kuwait','KW',NULL,NULL,NULL,NULL,3,0,1), - (1117,'Kyrgyzstan','KG',NULL,NULL,NULL,NULL,1,0,1), - (1118,'Lao People\'s Democratic Republic','LA',NULL,NULL,NULL,NULL,4,0,1), - (1119,'Latvia','LV',NULL,NULL,NULL,NULL,1,0,1), - (1120,'Lebanon','LB',NULL,NULL,NULL,NULL,3,0,1), - (1121,'Lesotho','LS',NULL,NULL,NULL,NULL,5,0,1), - (1122,'Liberia','LR',NULL,NULL,NULL,NULL,5,0,1), - (1123,'Libya','LY',NULL,NULL,NULL,NULL,3,0,1), - (1124,'Liechtenstein','LI',NULL,NULL,NULL,NULL,1,0,1), - (1125,'Lithuania','LT',NULL,NULL,NULL,NULL,1,0,1), - (1126,'Luxembourg','LU',NULL,NULL,NULL,NULL,1,0,1), - (1127,'Macao','MO',NULL,NULL,NULL,NULL,4,0,1), - (1128,'North Macedonia','MK',NULL,NULL,NULL,NULL,1,0,1), - (1129,'Madagascar','MG',NULL,NULL,NULL,NULL,5,0,1), - (1130,'Malawi','MW',NULL,NULL,NULL,NULL,5,0,1), - (1131,'Malaysia','MY',NULL,NULL,NULL,NULL,4,0,1), - (1132,'Maldives','MV',NULL,NULL,NULL,NULL,4,0,1), - (1133,'Mali','ML',NULL,NULL,NULL,NULL,5,0,1), - (1134,'Malta','MT',NULL,NULL,NULL,NULL,1,0,1), - (1135,'Marshall Islands','MH',NULL,NULL,NULL,NULL,4,0,1), - (1136,'Martinique','MQ',NULL,NULL,NULL,NULL,2,0,1), - (1137,'Mauritania','MR',NULL,NULL,NULL,NULL,5,0,1), - (1138,'Mauritius','MU',NULL,NULL,NULL,NULL,5,0,1), - (1139,'Mayotte','YT',NULL,NULL,NULL,NULL,5,0,1), - (1140,'Mexico','MX',NULL,NULL,NULL,NULL,2,0,1), - (1141,'Micronesia, Federated States of','FM',NULL,NULL,NULL,NULL,4,0,1), - (1142,'Moldova','MD',NULL,NULL,NULL,NULL,1,0,1), - (1143,'Monaco','MC',NULL,NULL,NULL,NULL,1,0,1), - (1144,'Mongolia','MN',NULL,NULL,NULL,NULL,4,0,1), - (1145,'Montserrat','MS',NULL,NULL,NULL,NULL,2,0,1), - (1146,'Morocco','MA',NULL,NULL,NULL,NULL,3,0,1), - (1147,'Mozambique','MZ',NULL,NULL,NULL,NULL,5,0,1), - (1148,'Namibia','NA',NULL,NULL,NULL,NULL,5,0,1), - (1149,'Nauru','NR',NULL,NULL,NULL,NULL,4,0,1), - (1150,'Nepal','NP',NULL,NULL,NULL,NULL,4,0,1), - (1152,'Netherlands','NL',NULL,NULL,NULL,NULL,1,0,1), - (1153,'New Caledonia','NC',NULL,NULL,NULL,NULL,4,0,1), - (1154,'New Zealand','NZ',NULL,NULL,NULL,NULL,4,0,1), - (1155,'Nicaragua','NI',NULL,NULL,NULL,NULL,2,0,1), - (1156,'Niger','NE',NULL,NULL,NULL,NULL,5,0,1), - (1157,'Nigeria','NG',NULL,NULL,NULL,NULL,5,0,1), - (1158,'Niue','NU',NULL,NULL,NULL,NULL,4,0,1), - (1159,'Norfolk Island','NF',NULL,NULL,NULL,NULL,4,0,1), - (1160,'Northern Mariana Islands','MP',NULL,NULL,NULL,NULL,2,0,1), - (1161,'Norway','NO',NULL,NULL,NULL,NULL,1,0,1), - (1162,'Oman','OM',NULL,NULL,NULL,NULL,3,0,1), - (1163,'Pakistan','PK',NULL,NULL,NULL,NULL,4,0,1), - (1164,'Palau','PW',NULL,NULL,NULL,NULL,4,0,1), - (1165,'Palestine, State of','PS',NULL,NULL,NULL,NULL,3,0,1), - (1166,'Panama','PA',NULL,NULL,NULL,NULL,2,0,1), - (1167,'Papua New Guinea','PG',NULL,NULL,NULL,NULL,4,0,1), - (1168,'Paraguay','PY',NULL,NULL,NULL,NULL,2,0,1), - (1169,'Peru','PE',NULL,NULL,NULL,NULL,2,0,1), - (1170,'Philippines','PH',NULL,NULL,NULL,NULL,4,0,1), - (1171,'Pitcairn','PN',NULL,NULL,NULL,NULL,4,0,1), - (1172,'Poland','PL',NULL,NULL,NULL,NULL,1,0,1), - (1173,'Portugal','PT',NULL,NULL,NULL,NULL,1,0,1), - (1174,'Puerto Rico','PR',NULL,NULL,NULL,NULL,2,0,1), - (1175,'Qatar','QA',NULL,NULL,NULL,NULL,3,0,1), - (1176,'Romania','RO',NULL,NULL,NULL,NULL,1,0,1), - (1177,'Russian Federation','RU',NULL,NULL,NULL,NULL,1,0,1), - (1178,'Rwanda','RW',NULL,NULL,NULL,NULL,5,0,1), - (1179,'Reunion','RE',NULL,NULL,NULL,NULL,5,0,1), - (1180,'Saint Helena','SH',NULL,NULL,NULL,NULL,5,0,1), - (1181,'Saint Kitts and Nevis','KN',NULL,NULL,NULL,NULL,2,0,1), - (1182,'Saint Lucia','LC',NULL,NULL,NULL,NULL,2,0,1), - (1183,'Saint Pierre and Miquelon','PM',NULL,NULL,NULL,NULL,2,0,1), - (1184,'Saint Vincent and the Grenadines','VC',NULL,NULL,NULL,NULL,2,0,1), - (1185,'Samoa','WS',NULL,NULL,NULL,NULL,4,0,1), - (1186,'San Marino','SM',NULL,NULL,NULL,NULL,1,0,1), - (1187,'Saudi Arabia','SA',NULL,NULL,NULL,NULL,3,0,1), - (1188,'Senegal','SN',NULL,NULL,NULL,NULL,5,0,1), - (1189,'Seychelles','SC',NULL,NULL,NULL,NULL,5,0,1), - (1190,'Sierra Leone','SL',NULL,NULL,NULL,NULL,5,0,1), - (1191,'Singapore','SG',NULL,NULL,NULL,NULL,4,0,1), - (1192,'Slovakia','SK',NULL,NULL,NULL,NULL,1,0,1), - (1193,'Slovenia','SI',NULL,NULL,NULL,NULL,1,0,1), - (1194,'Solomon Islands','SB',NULL,NULL,NULL,NULL,4,0,1), - (1195,'Somalia','SO',NULL,NULL,NULL,NULL,5,0,1), - (1196,'South Africa','ZA',NULL,NULL,NULL,NULL,5,0,1), - (1197,'South Georgia and the South Sandwich Islands','GS',NULL,NULL,NULL,NULL,2,0,1), - (1198,'Spain','ES',NULL,NULL,NULL,NULL,1,0,1), - (1199,'Sri Lanka','LK',NULL,NULL,NULL,NULL,4,0,1), - (1200,'Sudan','SD',NULL,NULL,NULL,NULL,3,0,1), - (1201,'Suriname','SR',NULL,NULL,NULL,NULL,2,0,1), - (1202,'Svalbard and Jan Mayen','SJ',NULL,NULL,NULL,NULL,1,0,1), - (1203,'Eswatini','SZ',NULL,NULL,NULL,NULL,5,0,1), - (1204,'Sweden','SE',NULL,NULL,NULL,NULL,1,0,1), - (1205,'Switzerland','CH',NULL,NULL,NULL,NULL,1,0,1), - (1206,'Syrian Arab Republic','SY',NULL,NULL,NULL,NULL,3,0,1), - (1207,'Sao Tome and Principe','ST',NULL,NULL,NULL,NULL,5,0,1), - (1208,'Taiwan','TW',NULL,NULL,NULL,NULL,4,0,1), - (1209,'Tajikistan','TJ',NULL,NULL,NULL,NULL,3,0,1), - (1210,'Tanzania, United Republic of','TZ',NULL,NULL,NULL,NULL,5,0,1), - (1211,'Thailand','TH',NULL,NULL,NULL,NULL,4,0,1), - (1212,'Bahamas','BS',NULL,NULL,NULL,NULL,2,0,1), - (1213,'Gambia','GM',NULL,NULL,NULL,NULL,5,0,1), - (1214,'Togo','TG',NULL,NULL,NULL,NULL,5,0,1), - (1215,'Tokelau','TK',NULL,NULL,NULL,NULL,4,0,1), - (1216,'Tonga','TO',NULL,NULL,NULL,NULL,4,0,1), - (1217,'Trinidad and Tobago','TT',NULL,NULL,NULL,NULL,2,0,1), - (1218,'Tunisia','TN',NULL,NULL,NULL,NULL,3,0,1), - (1219,'Turkey','TR',NULL,NULL,NULL,NULL,1,0,1), - (1220,'Turkmenistan','TM',NULL,NULL,NULL,NULL,1,0,1), - (1221,'Turks and Caicos Islands','TC',NULL,NULL,NULL,NULL,2,0,1), - (1222,'Tuvalu','TV',NULL,NULL,NULL,NULL,4,0,1), - (1223,'Uganda','UG',NULL,NULL,NULL,NULL,5,0,1), - (1224,'Ukraine','UA',NULL,NULL,NULL,NULL,1,0,1), - (1225,'United Arab Emirates','AE',NULL,NULL,NULL,NULL,3,0,1), - (1226,'United Kingdom','GB',NULL,NULL,NULL,NULL,1,0,1), - (1227,'United States Minor Outlying Islands','UM',NULL,NULL,NULL,NULL,2,0,1), - (1228,'United States','US',NULL,NULL,NULL,NULL,2,1,1), - (1229,'Uruguay','UY',NULL,NULL,NULL,NULL,2,0,1), - (1230,'Uzbekistan','UZ',NULL,NULL,NULL,NULL,1,0,1), - (1231,'Vanuatu','VU',NULL,NULL,NULL,NULL,4,0,1), - (1232,'Venezuela','VE',NULL,NULL,NULL,NULL,2,0,1), - (1233,'Viet Nam','VN',NULL,NULL,NULL,NULL,4,0,1), - (1234,'Virgin Islands, U.S.','VI',NULL,NULL,NULL,NULL,2,0,1), - (1235,'Wallis and Futuna','WF',NULL,NULL,NULL,NULL,4,0,1), - (1236,'Western Sahara','EH',NULL,NULL,NULL,NULL,3,0,1), - (1237,'Yemen','YE',NULL,NULL,NULL,NULL,3,0,1), - (1239,'Zambia','ZM',NULL,NULL,NULL,NULL,5,0,1), - (1240,'Zimbabwe','ZW',NULL,NULL,NULL,NULL,5,0,1), - (1241,'Åland Islands','AX',NULL,NULL,NULL,NULL,1,0,1), - (1242,'Serbia','RS',NULL,NULL,NULL,NULL,1,0,1), - (1243,'Montenegro','ME',NULL,NULL,NULL,NULL,1,0,1), - (1244,'Jersey','JE',NULL,NULL,NULL,NULL,99,0,1), - (1245,'Guernsey','GG',NULL,NULL,NULL,NULL,99,0,1), - (1246,'Isle of Man','IM',NULL,NULL,NULL,NULL,99,0,1), - (1247,'South Sudan','SS',NULL,NULL,NULL,NULL,5,0,1), - (1248,'Curaçao','CW',NULL,NULL,NULL,NULL,2,0,1), - (1249,'Sint Maarten (Dutch Part)','SX',NULL,NULL,NULL,NULL,2,0,1), - (1250,'Bonaire, Saint Eustatius and Saba','BQ',NULL,NULL,NULL,NULL,2,0,1), - (1251,'Kosovo','XK',NULL,NULL,NULL,NULL,1,0,1), - (1252,'Saint Barthélemy','BL',NULL,NULL,NULL,NULL,2,0,1), - (1253,'Saint Martin (French part)','MF',NULL,NULL,NULL,NULL,2,0,1); +(1002,'Albania','AL',NULL,NULL,NULL,NULL,1,0,1), +(1003,'Algeria','DZ',NULL,NULL,NULL,NULL,3,0,1), +(1004,'American Samoa','AS',NULL,NULL,NULL,NULL,2,0,1), +(1005,'Andorra','AD',NULL,NULL,NULL,NULL,1,0,1), +(1006,'Angola','AO',NULL,NULL,NULL,NULL,5,0,1), +(1007,'Anguilla','AI',NULL,NULL,NULL,NULL,2,0,1), +(1008,'Antarctica','AQ',NULL,NULL,NULL,NULL,1,0,1), +(1009,'Antigua and Barbuda','AG',NULL,NULL,NULL,NULL,2,0,1), +(1010,'Argentina','AR',NULL,NULL,NULL,NULL,2,0,1), +(1011,'Armenia','AM',NULL,NULL,NULL,NULL,1,0,1), +(1012,'Aruba','AW',NULL,NULL,NULL,NULL,2,0,1), +(1013,'Australia','AU',NULL,NULL,NULL,NULL,4,0,1), +(1014,'Austria','AT',NULL,NULL,NULL,NULL,1,0,1), +(1015,'Azerbaijan','AZ',NULL,NULL,NULL,NULL,1,0,1), +(1016,'Bahrain','BH',NULL,NULL,NULL,NULL,3,0,1), +(1017,'Bangladesh','BD',NULL,NULL,NULL,NULL,4,0,1), +(1018,'Barbados','BB',NULL,NULL,NULL,NULL,4,0,1), +(1019,'Belarus','BY',NULL,NULL,NULL,NULL,1,0,1), +(1020,'Belgium','BE',NULL,NULL,NULL,NULL,1,0,1), +(1021,'Belize','BZ',NULL,NULL,NULL,NULL,2,0,1), +(1022,'Benin','BJ',NULL,NULL,NULL,NULL,5,0,1), +(1023,'Bermuda','BM',NULL,NULL,NULL,NULL,2,0,1), +(1024,'Bhutan','BT',NULL,NULL,NULL,NULL,4,0,1), +(1025,'Bolivia','BO',NULL,NULL,NULL,NULL,2,0,1), +(1026,'Bosnia and Herzegovina','BA',NULL,NULL,NULL,NULL,1,0,1), +(1027,'Botswana','BW',NULL,NULL,NULL,NULL,5,0,1), +(1028,'Bouvet Island','BV',NULL,NULL,NULL,NULL,1,0,1), +(1029,'Brazil','BR',NULL,NULL,NULL,NULL,2,0,1), +(1030,'British Indian Ocean Territory','IO',NULL,NULL,NULL,NULL,4,0,1), +(1031,'Virgin Islands, British','VG',NULL,NULL,NULL,NULL,2,0,1), +(1032,'Brunei Darussalam','BN',NULL,NULL,NULL,NULL,4,0,1), +(1033,'Bulgaria','BG',NULL,NULL,NULL,NULL,1,0,1), +(1034,'Burkina Faso','BF',NULL,NULL,NULL,NULL,5,0,1), +(1035,'Myanmar','MM',NULL,NULL,NULL,NULL,4,0,1), +(1036,'Burundi','BI',NULL,NULL,NULL,NULL,5,0,1), +(1037,'Cambodia','KH',NULL,NULL,NULL,NULL,4,0,1), +(1038,'Cameroon','CM',NULL,NULL,NULL,NULL,5,0,1), +(1039,'Canada','CA',NULL,NULL,NULL,NULL,2,1,1), +(1040,'Cape Verde','CV',NULL,NULL,NULL,NULL,5,0,1), +(1041,'Cayman Islands','KY',NULL,NULL,NULL,NULL,5,0,1), +(1042,'Central African Republic','CF',NULL,NULL,NULL,NULL,5,0,1), +(1043,'Chad','TD',NULL,NULL,NULL,NULL,5,0,1), +(1044,'Chile','CL',NULL,NULL,NULL,NULL,2,0,1), +(1045,'China','CN',NULL,NULL,NULL,NULL,4,0,1), +(1046,'Christmas Island','CX',NULL,NULL,NULL,NULL,4,0,1), +(1047,'Cocos (Keeling) Islands','CC',NULL,NULL,NULL,NULL,4,0,1), +(1048,'Colombia','CO',NULL,NULL,NULL,NULL,2,0,1), +(1049,'Comoros','KM',NULL,NULL,NULL,NULL,5,0,1), +(1050,'Congo, The Democratic Republic of the','CD',NULL,NULL,NULL,NULL,5,0,1), +(1051,'Congo, Republic of the','CG',NULL,NULL,NULL,NULL,5,0,1), +(1052,'Cook Islands','CK',NULL,NULL,NULL,NULL,4,0,1), +(1053,'Costa Rica','CR',NULL,NULL,NULL,NULL,2,0,1), +(1054,'Côte d’Ivoire','CI',NULL,NULL,NULL,NULL,5,0,1), +(1055,'Croatia','HR',NULL,NULL,NULL,NULL,1,0,1), +(1056,'Cuba','CU',NULL,NULL,NULL,NULL,2,0,1), +(1057,'Cyprus','CY',NULL,NULL,NULL,NULL,1,0,1), +(1058,'Czech Republic','CZ',NULL,NULL,NULL,NULL,1,0,1), +(1059,'Denmark','DK',NULL,NULL,NULL,NULL,1,0,1), +(1060,'Djibouti','DJ',NULL,NULL,NULL,NULL,5,0,1), +(1061,'Dominica','DM',NULL,NULL,NULL,NULL,2,0,1), +(1062,'Dominican Republic','DO',NULL,NULL,NULL,NULL,2,0,1), +(1063,'Timor-Leste','TL',NULL,NULL,NULL,NULL,4,0,1), +(1064,'Ecuador','EC',NULL,NULL,NULL,NULL,2,0,1), +(1065,'Egypt','EG',NULL,NULL,NULL,NULL,3,0,1), +(1066,'El Salvador','SV',NULL,NULL,NULL,NULL,2,0,1), +(1067,'Equatorial Guinea','GQ',NULL,NULL,NULL,NULL,5,0,1), +(1068,'Eritrea','ER',NULL,NULL,NULL,NULL,5,0,1), +(1069,'Estonia','EE',NULL,NULL,NULL,NULL,1,0,1), +(1070,'Ethiopia','ET',NULL,NULL,NULL,NULL,5,0,1), +(1072,'Falkland Islands (Malvinas)','FK',NULL,NULL,NULL,NULL,2,0,1), +(1073,'Faroe Islands','FO',NULL,NULL,NULL,NULL,1,0,1), +(1074,'Fiji','FJ',NULL,NULL,NULL,NULL,4,0,1), +(1075,'Finland','FI',NULL,NULL,NULL,NULL,1,0,1), +(1076,'France','FR',NULL,NULL,NULL,NULL,1,0,1), +(1077,'French Guiana','GF',NULL,NULL,NULL,NULL,2,0,1), +(1078,'French Polynesia','PF',NULL,NULL,NULL,NULL,4,0,1), +(1079,'French Southern Territories','TF',NULL,NULL,NULL,NULL,1,0,1), +(1080,'Gabon','GA',NULL,NULL,NULL,NULL,5,0,1), +(1081,'Georgia','GE',NULL,NULL,NULL,NULL,3,0,1), +(1082,'Germany','DE',NULL,NULL,NULL,NULL,1,0,1), +(1083,'Ghana','GH',NULL,NULL,NULL,NULL,5,0,1), +(1084,'Gibraltar','GI',NULL,NULL,NULL,NULL,1,0,1), +(1085,'Greece','GR',NULL,NULL,NULL,NULL,1,0,1), +(1086,'Greenland','GL',NULL,NULL,NULL,NULL,2,0,1), +(1087,'Grenada','GD',NULL,NULL,NULL,NULL,2,0,1), +(1088,'Guadeloupe','GP',NULL,NULL,NULL,NULL,2,0,1), +(1089,'Guam','GU',NULL,NULL,NULL,NULL,4,0,1), +(1090,'Guatemala','GT',NULL,NULL,NULL,NULL,2,0,1), +(1091,'Guinea','GN',NULL,NULL,NULL,NULL,5,0,1), +(1092,'Guinea-Bissau','GW',NULL,NULL,NULL,NULL,5,0,1), +(1093,'Guyana','GY',NULL,NULL,NULL,NULL,2,0,1), +(1094,'Haiti','HT',NULL,NULL,NULL,NULL,2,0,1), +(1095,'Heard Island and McDonald Islands','HM',NULL,NULL,NULL,NULL,4,0,1), +(1096,'Holy See (Vatican City State)','VA',NULL,NULL,NULL,NULL,1,0,1), +(1097,'Honduras','HN',NULL,NULL,NULL,NULL,2,0,1), +(1098,'Hong Kong','HK',NULL,NULL,NULL,NULL,4,0,1), +(1099,'Hungary','HU',NULL,NULL,NULL,NULL,1,0,1), +(1100,'Iceland','IS',NULL,NULL,NULL,NULL,1,0,1), +(1101,'India','IN',NULL,NULL,NULL,NULL,4,0,1), +(1102,'Indonesia','ID',NULL,NULL,NULL,NULL,4,0,1), +(1103,'Iran, Islamic Republic of','IR',NULL,NULL,NULL,NULL,3,0,1), +(1104,'Iraq','IQ',NULL,NULL,NULL,NULL,3,0,1), +(1105,'Ireland','IE',NULL,NULL,NULL,NULL,1,0,1), +(1106,'Israel','IL',NULL,NULL,NULL,NULL,3,0,1), +(1107,'Italy','IT',NULL,NULL,NULL,NULL,1,0,1), +(1108,'Jamaica','JM',NULL,NULL,NULL,NULL,2,0,1), +(1109,'Japan','JP',NULL,NULL,NULL,NULL,4,0,1), +(1110,'Jordan','JO',NULL,NULL,NULL,NULL,3,0,1), +(1111,'Kazakhstan','KZ',NULL,NULL,NULL,NULL,1,0,1), +(1112,'Kenya','KE',NULL,NULL,NULL,NULL,5,0,1), +(1113,'Kiribati','KI',NULL,NULL,NULL,NULL,4,0,1), +(1114,'Korea, Democratic People\'s Republic of','KP',NULL,NULL,NULL,NULL,4,0,1), +(1115,'Korea, Republic of','KR',NULL,NULL,NULL,NULL,4,0,1), +(1116,'Kuwait','KW',NULL,NULL,NULL,NULL,3,0,1), +(1117,'Kyrgyzstan','KG',NULL,NULL,NULL,NULL,1,0,1), +(1118,'Lao People\'s Democratic Republic','LA',NULL,NULL,NULL,NULL,4,0,1), +(1119,'Latvia','LV',NULL,NULL,NULL,NULL,1,0,1), +(1120,'Lebanon','LB',NULL,NULL,NULL,NULL,3,0,1), +(1121,'Lesotho','LS',NULL,NULL,NULL,NULL,5,0,1), +(1122,'Liberia','LR',NULL,NULL,NULL,NULL,5,0,1), +(1123,'Libya','LY',NULL,NULL,NULL,NULL,3,0,1), +(1124,'Liechtenstein','LI',NULL,NULL,NULL,NULL,1,0,1), +(1125,'Lithuania','LT',NULL,NULL,NULL,NULL,1,0,1), +(1126,'Luxembourg','LU',NULL,NULL,NULL,NULL,1,0,1), +(1127,'Macao','MO',NULL,NULL,NULL,NULL,4,0,1), +(1128,'North Macedonia','MK',NULL,NULL,NULL,NULL,1,0,1), +(1129,'Madagascar','MG',NULL,NULL,NULL,NULL,5,0,1), +(1130,'Malawi','MW',NULL,NULL,NULL,NULL,5,0,1), +(1131,'Malaysia','MY',NULL,NULL,NULL,NULL,4,0,1), +(1132,'Maldives','MV',NULL,NULL,NULL,NULL,4,0,1), +(1133,'Mali','ML',NULL,NULL,NULL,NULL,5,0,1), +(1134,'Malta','MT',NULL,NULL,NULL,NULL,1,0,1), +(1135,'Marshall Islands','MH',NULL,NULL,NULL,NULL,4,0,1), +(1136,'Martinique','MQ',NULL,NULL,NULL,NULL,2,0,1), +(1137,'Mauritania','MR',NULL,NULL,NULL,NULL,5,0,1), +(1138,'Mauritius','MU',NULL,NULL,NULL,NULL,5,0,1), +(1139,'Mayotte','YT',NULL,NULL,NULL,NULL,5,0,1), +(1140,'Mexico','MX',NULL,NULL,NULL,NULL,2,0,1), +(1141,'Micronesia, Federated States of','FM',NULL,NULL,NULL,NULL,4,0,1), +(1142,'Moldova','MD',NULL,NULL,NULL,NULL,1,0,1), +(1143,'Monaco','MC',NULL,NULL,NULL,NULL,1,0,1), +(1144,'Mongolia','MN',NULL,NULL,NULL,NULL,4,0,1), +(1145,'Montserrat','MS',NULL,NULL,NULL,NULL,2,0,1), +(1146,'Morocco','MA',NULL,NULL,NULL,NULL,3,0,1), +(1147,'Mozambique','MZ',NULL,NULL,NULL,NULL,5,0,1), +(1148,'Namibia','NA',NULL,NULL,NULL,NULL,5,0,1), +(1149,'Nauru','NR',NULL,NULL,NULL,NULL,4,0,1), +(1150,'Nepal','NP',NULL,NULL,NULL,NULL,4,0,1), +(1152,'Netherlands','NL',NULL,NULL,NULL,NULL,1,0,1), +(1153,'New Caledonia','NC',NULL,NULL,NULL,NULL,4,0,1), +(1154,'New Zealand','NZ',NULL,NULL,NULL,NULL,4,0,1), +(1155,'Nicaragua','NI',NULL,NULL,NULL,NULL,2,0,1), +(1156,'Niger','NE',NULL,NULL,NULL,NULL,5,0,1), +(1157,'Nigeria','NG',NULL,NULL,NULL,NULL,5,0,1), +(1158,'Niue','NU',NULL,NULL,NULL,NULL,4,0,1), +(1159,'Norfolk Island','NF',NULL,NULL,NULL,NULL,4,0,1), +(1160,'Northern Mariana Islands','MP',NULL,NULL,NULL,NULL,2,0,1), +(1161,'Norway','NO',NULL,NULL,NULL,NULL,1,0,1), +(1162,'Oman','OM',NULL,NULL,NULL,NULL,3,0,1), +(1163,'Pakistan','PK',NULL,NULL,NULL,NULL,4,0,1), +(1164,'Palau','PW',NULL,NULL,NULL,NULL,4,0,1), +(1165,'Palestine, State of','PS',NULL,NULL,NULL,NULL,3,0,1), +(1166,'Panama','PA',NULL,NULL,NULL,NULL,2,0,1), +(1167,'Papua New Guinea','PG',NULL,NULL,NULL,NULL,4,0,1), +(1168,'Paraguay','PY',NULL,NULL,NULL,NULL,2,0,1), +(1169,'Peru','PE',NULL,NULL,NULL,NULL,2,0,1), +(1170,'Philippines','PH',NULL,NULL,NULL,NULL,4,0,1), +(1171,'Pitcairn','PN',NULL,NULL,NULL,NULL,4,0,1), +(1172,'Poland','PL',NULL,NULL,NULL,NULL,1,0,1), +(1173,'Portugal','PT',NULL,NULL,NULL,NULL,1,0,1), +(1174,'Puerto Rico','PR',NULL,NULL,NULL,NULL,2,0,1), +(1175,'Qatar','QA',NULL,NULL,NULL,NULL,3,0,1), +(1176,'Romania','RO',NULL,NULL,NULL,NULL,1,0,1), +(1177,'Russian Federation','RU',NULL,NULL,NULL,NULL,1,0,1), +(1178,'Rwanda','RW',NULL,NULL,NULL,NULL,5,0,1), +(1179,'Reunion','RE',NULL,NULL,NULL,NULL,5,0,1), +(1180,'Saint Helena','SH',NULL,NULL,NULL,NULL,5,0,1), +(1181,'Saint Kitts and Nevis','KN',NULL,NULL,NULL,NULL,2,0,1), +(1182,'Saint Lucia','LC',NULL,NULL,NULL,NULL,2,0,1), +(1183,'Saint Pierre and Miquelon','PM',NULL,NULL,NULL,NULL,2,0,1), +(1184,'Saint Vincent and the Grenadines','VC',NULL,NULL,NULL,NULL,2,0,1), +(1185,'Samoa','WS',NULL,NULL,NULL,NULL,4,0,1), +(1186,'San Marino','SM',NULL,NULL,NULL,NULL,1,0,1), +(1187,'Saudi Arabia','SA',NULL,NULL,NULL,NULL,3,0,1), +(1188,'Senegal','SN',NULL,NULL,NULL,NULL,5,0,1), +(1189,'Seychelles','SC',NULL,NULL,NULL,NULL,5,0,1), +(1190,'Sierra Leone','SL',NULL,NULL,NULL,NULL,5,0,1), +(1191,'Singapore','SG',NULL,NULL,NULL,NULL,4,0,1), +(1192,'Slovakia','SK',NULL,NULL,NULL,NULL,1,0,1), +(1193,'Slovenia','SI',NULL,NULL,NULL,NULL,1,0,1), +(1194,'Solomon Islands','SB',NULL,NULL,NULL,NULL,4,0,1), +(1195,'Somalia','SO',NULL,NULL,NULL,NULL,5,0,1), +(1196,'South Africa','ZA',NULL,NULL,NULL,NULL,5,0,1), +(1197,'South Georgia and the South Sandwich Islands','GS',NULL,NULL,NULL,NULL,2,0,1), +(1198,'Spain','ES',NULL,NULL,NULL,NULL,1,0,1), +(1199,'Sri Lanka','LK',NULL,NULL,NULL,NULL,4,0,1), +(1200,'Sudan','SD',NULL,NULL,NULL,NULL,3,0,1), +(1201,'Suriname','SR',NULL,NULL,NULL,NULL,2,0,1), +(1202,'Svalbard and Jan Mayen','SJ',NULL,NULL,NULL,NULL,1,0,1), +(1203,'Eswatini','SZ',NULL,NULL,NULL,NULL,5,0,1), +(1204,'Sweden','SE',NULL,NULL,NULL,NULL,1,0,1), +(1205,'Switzerland','CH',NULL,NULL,NULL,NULL,1,0,1), +(1206,'Syrian Arab Republic','SY',NULL,NULL,NULL,NULL,3,0,1), +(1207,'Sao Tome and Principe','ST',NULL,NULL,NULL,NULL,5,0,1), +(1208,'Taiwan','TW',NULL,NULL,NULL,NULL,4,0,1), +(1209,'Tajikistan','TJ',NULL,NULL,NULL,NULL,3,0,1), +(1210,'Tanzania, United Republic of','TZ',NULL,NULL,NULL,NULL,5,0,1), +(1211,'Thailand','TH',NULL,NULL,NULL,NULL,4,0,1), +(1212,'Bahamas','BS',NULL,NULL,NULL,NULL,2,0,1), +(1213,'Gambia','GM',NULL,NULL,NULL,NULL,5,0,1), +(1214,'Togo','TG',NULL,NULL,NULL,NULL,5,0,1), +(1215,'Tokelau','TK',NULL,NULL,NULL,NULL,4,0,1), +(1216,'Tonga','TO',NULL,NULL,NULL,NULL,4,0,1), +(1217,'Trinidad and Tobago','TT',NULL,NULL,NULL,NULL,2,0,1), +(1218,'Tunisia','TN',NULL,NULL,NULL,NULL,3,0,1), +(1219,'Turkey','TR',NULL,NULL,NULL,NULL,1,0,1), +(1220,'Turkmenistan','TM',NULL,NULL,NULL,NULL,1,0,1), +(1221,'Turks and Caicos Islands','TC',NULL,NULL,NULL,NULL,2,0,1), +(1222,'Tuvalu','TV',NULL,NULL,NULL,NULL,4,0,1), +(1223,'Uganda','UG',NULL,NULL,NULL,NULL,5,0,1), +(1224,'Ukraine','UA',NULL,NULL,NULL,NULL,1,0,1), +(1225,'United Arab Emirates','AE',NULL,NULL,NULL,NULL,3,0,1), +(1226,'United Kingdom','GB',NULL,NULL,NULL,NULL,1,0,1), +(1227,'United States Minor Outlying Islands','UM',NULL,NULL,NULL,NULL,2,0,1), +(1228,'United States','US',NULL,NULL,NULL,NULL,2,1,1), +(1229,'Uruguay','UY',NULL,NULL,NULL,NULL,2,0,1), +(1230,'Uzbekistan','UZ',NULL,NULL,NULL,NULL,1,0,1), +(1231,'Vanuatu','VU',NULL,NULL,NULL,NULL,4,0,1), +(1232,'Venezuela','VE',NULL,NULL,NULL,NULL,2,0,1), +(1233,'Viet Nam','VN',NULL,NULL,NULL,NULL,4,0,1), +(1234,'Virgin Islands, U.S.','VI',NULL,NULL,NULL,NULL,2,0,1), +(1235,'Wallis and Futuna','WF',NULL,NULL,NULL,NULL,4,0,1), +(1236,'Western Sahara','EH',NULL,NULL,NULL,NULL,3,0,1), +(1237,'Yemen','YE',NULL,NULL,NULL,NULL,3,0,1), +(1239,'Zambia','ZM',NULL,NULL,NULL,NULL,5,0,1), +(1240,'Zimbabwe','ZW',NULL,NULL,NULL,NULL,5,0,1), +(1241,'Åland Islands','AX',NULL,NULL,NULL,NULL,1,0,1), +(1242,'Serbia','RS',NULL,NULL,NULL,NULL,1,0,1), +(1243,'Montenegro','ME',NULL,NULL,NULL,NULL,1,0,1), +(1244,'Jersey','JE',NULL,NULL,NULL,NULL,99,0,1), +(1245,'Guernsey','GG',NULL,NULL,NULL,NULL,99,0,1), +(1246,'Isle of Man','IM',NULL,NULL,NULL,NULL,99,0,1), +(1247,'South Sudan','SS',NULL,NULL,NULL,NULL,5,0,1), +(1248,'Curaçao','CW',NULL,NULL,NULL,NULL,2,0,1), +(1249,'Sint Maarten (Dutch Part)','SX',NULL,NULL,NULL,NULL,2,0,1), +(1250,'Bonaire, Saint Eustatius and Saba','BQ',NULL,NULL,NULL,NULL,2,0,1), +(1251,'Kosovo','XK',NULL,NULL,NULL,NULL,1,0,1), +(1252,'Saint Barthélemy','BL',NULL,NULL,NULL,NULL,2,0,1), +(1253,'Saint Martin (French part)','MF',NULL,NULL,NULL,NULL,2,0,1); /*!40000 ALTER TABLE `civicrm_country` ENABLE KEYS */; UNLOCK TABLES; @@ -2641,11 +2652,11 @@ LOCK TABLES `civicrm_county` WRITE; /*!40000 ALTER TABLE `civicrm_county` DISABLE KEYS */; INSERT INTO `civicrm_county` (`id`, `name`, `abbreviation`, `state_province_id`, `is_active`) VALUES (1,'Alameda',NULL,1004,1), - (2,'Contra Costa',NULL,1004,1), - (3,'Marin',NULL,1004,1), - (4,'San Francisco',NULL,1004,1), - (5,'San Mateo',NULL,1004,1), - (6,'Santa Clara',NULL,1004,1); +(2,'Contra Costa',NULL,1004,1), +(3,'Marin',NULL,1004,1), +(4,'San Francisco',NULL,1004,1), +(5,'San Mateo',NULL,1004,1), +(6,'Santa Clara',NULL,1004,1); /*!40000 ALTER TABLE `civicrm_county` ENABLE KEYS */; UNLOCK TABLES; @@ -2657,179 +2668,179 @@ LOCK TABLES `civicrm_currency` WRITE; /*!40000 ALTER TABLE `civicrm_currency` DISABLE KEYS */; INSERT INTO `civicrm_currency` (`id`, `name`, `symbol`, `numeric_code`, `full_name`) VALUES (1,'AUD','$','036','Australian Dollar'), - (2,'CAD','$','124','Canadian Dollar'), - (3,'EUR','€','978','Euro'), - (4,'GBP','£','826','Pound Sterling'), - (5,'ILS','₪','826','New Israeli Shekel'), - (6,'INR','₨','356','Indian Rupee'), - (7,'JPY','¥','392','Japanese Yen'), - (8,'KRW','₩','410','South Korean Won'), - (9,'LAK','₭','418','Lao Kip'), - (10,'MNT','₮','496','Mongolian Tugrik'), - (11,'NGN','₦','566','Nigerian Naira'), - (12,'PLN','zł','985','Polish Złoty'), - (13,'THB','฿','764','Thai Baht'), - (14,'USD','$','840','US Dollar'), - (15,'VND','₫','704','Viet Nam Dong'), - (16,'ZAR','R','710','South African Rand'), - (17,'AED',NULL,'784','UAE Dirham'), - (18,'AFN','؋','971','Afghani'), - (19,'ALL','Lek','008','Albanian Lek'), - (20,'AMD',NULL,'051','Armenian Dram'), - (21,'ANG','ƒ','532','Netherlands Antillian Guilder'), - (22,'AOA',NULL,'973','Angola Kwanza'), - (23,'ARS','$','032','Argentine Peso'), - (24,'AWG','ƒ','533','Aruban Guilder'), - (25,'AZN','ман','944','Azerbaijanian Manat'), - (26,'BAM','KM','977','Convertible Marks'), - (27,'BBD','$','052','Barbados Dollar'), - (28,'BDT',NULL,'050','Bangladeshi Taka'), - (29,'BGN','лв','975','Bulgarian Lev'), - (30,'BHD',NULL,'048','Bahraini Dinar'), - (31,'BIF',NULL,'108','Burundi Franc'), - (32,'BMD','$','060','Bermudian Dollar'), - (33,'BND','$','096','Brunei Dollar'), - (34,'BOB','$b','068','Boliviano'), - (35,'BOV',NULL,'984','Bolivian Mvdol'), - (36,'BRL','R$','986','Brazilian Real'), - (37,'BSD','$','044','Bahamian Dollar'), - (38,'BTN',NULL,'064','Bhutan Ngultrum'), - (39,'BWP','P','072','Botswana Pula'), - (40,'BYN','p.','974','Belarussian Rouble'), - (41,'BZD','BZ$','084','Belize Dollar'), - (42,'CDF',NULL,'976','Franc Congolais'), - (43,'CHE',NULL,'947','WIR Euro'), - (44,'CHF','CHF','756','Swiss Franc'), - (45,'CHW',NULL,'948','WIR Franc'), - (46,'CLF',NULL,'990','Unidades de fomento'), - (47,'CLP','$','152','Chilean Peso'), - (48,'CNY','元','156','Chinese Yuan Renminbi'), - (49,'COP','$','170','Colombian Peso'), - (50,'COU',NULL,'970','Unidad de Valor Real'), - (51,'CRC','₡','188','Costa Rican Colon'), - (52,'RSD','Дин.','941','Serbian Dinar'), - (53,'CUP','₱','192','Cuban Peso'), - (54,'CVE',NULL,'132','Cape Verde Escudo'), - (56,'CZK','Kč','203','Czech Koruna'), - (57,'DJF',NULL,'262','Djibouti Franc'), - (58,'DKK','kr','208','Danish Krone'), - (59,'DOP','RD$','214','Dominican Peso'), - (60,'DZD',NULL,'012','Algerian Dinar'), - (62,'EGP','£','818','Egyptian Pound'), - (63,'ERN',NULL,'232','Eritrean Nakfa'), - (64,'ETB',NULL,'230','Ethiopian Birr'), - (65,'FJD','$','242','Fiji Dollar'), - (66,'FKP','£','238','Falkland Islands Pound'), - (67,'GEL',NULL,'981','Georgian Lari'), - (68,'GHS','¢','288','Ghanaian Cedi'), - (69,'GIP','£','292','Gibraltar Pound'), - (70,'GMD',NULL,'270','Gambian Dalasi'), - (71,'GNF',NULL,'324','Guinea Franc'), - (72,'GTQ','Q','320','Guatemalan Quetzal'), - (74,'GYD','$','328','Guyana Dollar'), - (75,'HKD','HK$','344','Hong Kong Dollar'), - (76,'HNL','L','340','Honduran Lempira'), - (77,'HRK','kn','191','Croatian Kuna'), - (78,'HTG',NULL,'332','Haitian Gourde'), - (79,'HUF','Ft','348','Hungarian Forint'), - (80,'IDR','Rp','360','Indonesian Rupiah'), - (81,'IQD',NULL,'368','Iraqi Dinar'), - (82,'IRR','﷼','364','Iranian Rial'), - (83,'ISK','kr','352','Iceland Krona'), - (84,'JMD','J$','388','Jamaican Dollar'), - (85,'JOD',NULL,'400','Jordanian Dinar'), - (86,'KES',NULL,'404','Kenyan Shilling'), - (87,'KGS','лв','417','Kyrgyzstan Som'), - (88,'KHR','៛','116','Cambodian Riel'), - (89,'KMF',NULL,'174','Comoro Franc'), - (90,'KPW','₩','408','North Korean Won'), - (91,'KWD',NULL,'414','Kuwaiti Dinar'), - (92,'KYD','$','136','Cayman Islands Dollar'), - (93,'KZT','лв','398','Kazakhstan Tenge'), - (94,'LBP','£','422','Lebanese Pound'), - (95,'LKR','₨','144','Sri Lanka Rupee'), - (96,'LRD','$','430','Liberian Dollar'), - (97,'LSL',NULL,'426','Lesotho Loti'), - (100,'LYD',NULL,'434','Libyan Dinar'), - (101,'MAD',NULL,'504','Moroccan Dirham'), - (102,'MDL',NULL,'498','Moldovan Leu'), - (103,'MGA',NULL,'969','Malagascy Ariary'), - (104,'MKD','ден','807','Macedonian Denar'), - (105,'MMK',NULL,'104','Myanmar Kyat'), - (106,'MOP',NULL,'446','Macao Pataca'), - (107,'MRO',NULL,'478','Mauritanian Ouguiya'), - (109,'MUR','₨','480','Mauritius Rupee'), - (110,'MVR',NULL,'462','Maldive Rufiyaa'), - (111,'MWK',NULL,'454','Malawi Kwacha'), - (112,'MXN','$','484','Mexican Peso'), - (113,'MXV',NULL,'979','Mexican Unidad de Inversion (UID)'), - (114,'MYR','RM','458','Malaysian Ringgit'), - (115,'MZN','MT','943','Mozambique Metical'), - (116,'NAD','N$','516','Namibian Dollar'), - (117,'NIO','C$','558','Nicaraguan Cordoba Oro'), - (118,'NOK','kr','578','Norwegian Krone'), - (119,'NPR','₨','524','Nepalese Rupee'), - (120,'NZD','$','554','New Zealand Dollar'), - (121,'OMR','﷼','512','Rial Omani'), - (122,'PAB','B/.','590','Panamanian Balboa'), - (123,'PEN','S/.','604','Peruvian Nuevo Sol'), - (124,'PGK',NULL,'598','Papua New Guinea Kina'), - (125,'PHP','Php','608','Philippine Peso'), - (126,'PKR','₨','586','Pakistan Rupee'), - (127,'PYG','Gs','600','Paraguay Guarani'), - (128,'QAR','﷼','634','Qatari Rial'), - (130,'RON','lei','946','Romanian New Leu'), - (131,'RUB','руб','643','Russian Rouble'), - (132,'RWF',NULL,'646','Rwanda Franc'), - (133,'SAR','﷼','682','Saudi Riyal'), - (134,'SBD','$','090','Solomon Islands Dollar'), - (135,'SCR','₨','690','Seychelles Rupee'), - (137,'SEK','kr','752','Swedish Krona'), - (138,'SGD','$','702','Singapore Dollar'), - (139,'SHP','£','654','Saint Helena Pound'), - (142,'SLL',NULL,'694','Leone'), - (143,'SOS','S','706','Somali Shilling'), - (144,'SRD','$','968','Surinam Dollar'), - (145,'STD',NULL,'678','São Tome and Principe Dobra'), - (146,'SVC','$','222','El Salvador Colon'), - (147,'SYP','£','760','Syrian Pound'), - (148,'SZL',NULL,'748','Eswatini Lilangeni'), - (149,'TJS',NULL,'972','Tajik Somoni'), - (151,'TND',NULL,'788','Tunisian Dinar'), - (152,'TOP',NULL,'776','Tongan Pa\'anga'), - (153,'TRY','YTL','949','New Turkish Lira'), - (154,'TTD','TT$','780','Trinidad and Tobago Dollar'), - (155,'TWD','NT$','901','New Taiwan Dollar'), - (156,'TZS',NULL,'834','Tanzanian Shilling'), - (157,'UAH','₴','980','Ukrainian Hryvnia'), - (158,'UGX',NULL,'800','Ugandan Shilling'), - (159,'USN',NULL,'997','US Dollar (Next day)'), - (160,'USS',NULL,'998','US Dollar (Same day)'), - (161,'UYU','$U','858','Peso Uruguayo'), - (162,'UZS','лв','860','Uzbekistan Sum'), - (163,'VEF','Bs','937','Venezuela Bolivar'), - (164,'VUV',NULL,'548','Vanuatu Vatu'), - (165,'WST',NULL,'882','Samoan Tala'), - (166,'XAF',NULL,'950','CFA Franc BEAC'), - (167,'XAG',NULL,'961','Silver'), - (168,'XAU',NULL,'959','Gold'), - (169,'XBA',NULL,'955','Bond Markets Units European Composite Unit (EURCO)'), - (170,'XBB',NULL,'956','European Monetary Unit (E.M.U.-6)'), - (171,'XBC',NULL,'957','European Unit of Account 9 (E.U.A.-9)'), - (172,'XBD',NULL,'958','European Unit of Account 17 (E.U.A.-17)'), - (173,'XCD','$','951','East Caribbean Dollar'), - (174,'XDR',NULL,'960','Special Drawing Right'), - (175,'XFO',NULL,NULL,'Gold-Franc'), - (176,'XFU',NULL,NULL,'UIC-Franc'), - (177,'XOF',NULL,'952','CFA Franc BCEAO'), - (178,'XPD',NULL,'964','Palladium'), - (179,'XPF',NULL,'953','CFP Franc'), - (180,'XPT',NULL,'962','Platinum'), - (181,'XTS',NULL,'963','Code for testing purposes'), - (182,'XXX',NULL,'999','No currency involved'), - (183,'YER','﷼','886','Yemeni Rial'), - (184,'ZMK',NULL,'894','Zambian Kwacha'), - (185,'ZWD','Z$','716','Zimbabwe Dollar'); +(2,'CAD','$','124','Canadian Dollar'), +(3,'EUR','€','978','Euro'), +(4,'GBP','£','826','Pound Sterling'), +(5,'ILS','₪','826','New Israeli Shekel'), +(6,'INR','₨','356','Indian Rupee'), +(7,'JPY','¥','392','Japanese Yen'), +(8,'KRW','₩','410','South Korean Won'), +(9,'LAK','₭','418','Lao Kip'), +(10,'MNT','₮','496','Mongolian Tugrik'), +(11,'NGN','₦','566','Nigerian Naira'), +(12,'PLN','zł','985','Polish Złoty'), +(13,'THB','฿','764','Thai Baht'), +(14,'USD','$','840','US Dollar'), +(15,'VND','₫','704','Viet Nam Dong'), +(16,'ZAR','R','710','South African Rand'), +(17,'AED',NULL,'784','UAE Dirham'), +(18,'AFN','؋','971','Afghani'), +(19,'ALL','Lek','008','Albanian Lek'), +(20,'AMD',NULL,'051','Armenian Dram'), +(21,'ANG','ƒ','532','Netherlands Antillian Guilder'), +(22,'AOA',NULL,'973','Angola Kwanza'), +(23,'ARS','$','032','Argentine Peso'), +(24,'AWG','ƒ','533','Aruban Guilder'), +(25,'AZN','ман','944','Azerbaijanian Manat'), +(26,'BAM','KM','977','Convertible Marks'), +(27,'BBD','$','052','Barbados Dollar'), +(28,'BDT',NULL,'050','Bangladeshi Taka'), +(29,'BGN','лв','975','Bulgarian Lev'), +(30,'BHD',NULL,'048','Bahraini Dinar'), +(31,'BIF',NULL,'108','Burundi Franc'), +(32,'BMD','$','060','Bermudian Dollar'), +(33,'BND','$','096','Brunei Dollar'), +(34,'BOB','$b','068','Boliviano'), +(35,'BOV',NULL,'984','Bolivian Mvdol'), +(36,'BRL','R$','986','Brazilian Real'), +(37,'BSD','$','044','Bahamian Dollar'), +(38,'BTN',NULL,'064','Bhutan Ngultrum'), +(39,'BWP','P','072','Botswana Pula'), +(40,'BYN','p.','974','Belarussian Rouble'), +(41,'BZD','BZ$','084','Belize Dollar'), +(42,'CDF',NULL,'976','Franc Congolais'), +(43,'CHE',NULL,'947','WIR Euro'), +(44,'CHF','CHF','756','Swiss Franc'), +(45,'CHW',NULL,'948','WIR Franc'), +(46,'CLF',NULL,'990','Unidades de fomento'), +(47,'CLP','$','152','Chilean Peso'), +(48,'CNY','元','156','Chinese Yuan Renminbi'), +(49,'COP','$','170','Colombian Peso'), +(50,'COU',NULL,'970','Unidad de Valor Real'), +(51,'CRC','₡','188','Costa Rican Colon'), +(52,'RSD','Дин.','941','Serbian Dinar'), +(53,'CUP','₱','192','Cuban Peso'), +(54,'CVE',NULL,'132','Cape Verde Escudo'), +(56,'CZK','Kč','203','Czech Koruna'), +(57,'DJF',NULL,'262','Djibouti Franc'), +(58,'DKK','kr','208','Danish Krone'), +(59,'DOP','RD$','214','Dominican Peso'), +(60,'DZD',NULL,'012','Algerian Dinar'), +(62,'EGP','£','818','Egyptian Pound'), +(63,'ERN',NULL,'232','Eritrean Nakfa'), +(64,'ETB',NULL,'230','Ethiopian Birr'), +(65,'FJD','$','242','Fiji Dollar'), +(66,'FKP','£','238','Falkland Islands Pound'), +(67,'GEL',NULL,'981','Georgian Lari'), +(68,'GHS','¢','288','Ghanaian Cedi'), +(69,'GIP','£','292','Gibraltar Pound'), +(70,'GMD',NULL,'270','Gambian Dalasi'), +(71,'GNF',NULL,'324','Guinea Franc'), +(72,'GTQ','Q','320','Guatemalan Quetzal'), +(74,'GYD','$','328','Guyana Dollar'), +(75,'HKD','HK$','344','Hong Kong Dollar'), +(76,'HNL','L','340','Honduran Lempira'), +(77,'HRK','kn','191','Croatian Kuna'), +(78,'HTG',NULL,'332','Haitian Gourde'), +(79,'HUF','Ft','348','Hungarian Forint'), +(80,'IDR','Rp','360','Indonesian Rupiah'), +(81,'IQD',NULL,'368','Iraqi Dinar'), +(82,'IRR','﷼','364','Iranian Rial'), +(83,'ISK','kr','352','Iceland Krona'), +(84,'JMD','J$','388','Jamaican Dollar'), +(85,'JOD',NULL,'400','Jordanian Dinar'), +(86,'KES',NULL,'404','Kenyan Shilling'), +(87,'KGS','лв','417','Kyrgyzstan Som'), +(88,'KHR','៛','116','Cambodian Riel'), +(89,'KMF',NULL,'174','Comoro Franc'), +(90,'KPW','₩','408','North Korean Won'), +(91,'KWD',NULL,'414','Kuwaiti Dinar'), +(92,'KYD','$','136','Cayman Islands Dollar'), +(93,'KZT','лв','398','Kazakhstan Tenge'), +(94,'LBP','£','422','Lebanese Pound'), +(95,'LKR','₨','144','Sri Lanka Rupee'), +(96,'LRD','$','430','Liberian Dollar'), +(97,'LSL',NULL,'426','Lesotho Loti'), +(100,'LYD',NULL,'434','Libyan Dinar'), +(101,'MAD',NULL,'504','Moroccan Dirham'), +(102,'MDL',NULL,'498','Moldovan Leu'), +(103,'MGA',NULL,'969','Malagascy Ariary'), +(104,'MKD','ден','807','Macedonian Denar'), +(105,'MMK',NULL,'104','Myanmar Kyat'), +(106,'MOP',NULL,'446','Macao Pataca'), +(107,'MRO',NULL,'478','Mauritanian Ouguiya'), +(109,'MUR','₨','480','Mauritius Rupee'), +(110,'MVR',NULL,'462','Maldive Rufiyaa'), +(111,'MWK',NULL,'454','Malawi Kwacha'), +(112,'MXN','$','484','Mexican Peso'), +(113,'MXV',NULL,'979','Mexican Unidad de Inversion (UID)'), +(114,'MYR','RM','458','Malaysian Ringgit'), +(115,'MZN','MT','943','Mozambique Metical'), +(116,'NAD','N$','516','Namibian Dollar'), +(117,'NIO','C$','558','Nicaraguan Cordoba Oro'), +(118,'NOK','kr','578','Norwegian Krone'), +(119,'NPR','₨','524','Nepalese Rupee'), +(120,'NZD','$','554','New Zealand Dollar'), +(121,'OMR','﷼','512','Rial Omani'), +(122,'PAB','B/.','590','Panamanian Balboa'), +(123,'PEN','S/.','604','Peruvian Nuevo Sol'), +(124,'PGK',NULL,'598','Papua New Guinea Kina'), +(125,'PHP','Php','608','Philippine Peso'), +(126,'PKR','₨','586','Pakistan Rupee'), +(127,'PYG','Gs','600','Paraguay Guarani'), +(128,'QAR','﷼','634','Qatari Rial'), +(130,'RON','lei','946','Romanian New Leu'), +(131,'RUB','руб','643','Russian Rouble'), +(132,'RWF',NULL,'646','Rwanda Franc'), +(133,'SAR','﷼','682','Saudi Riyal'), +(134,'SBD','$','090','Solomon Islands Dollar'), +(135,'SCR','₨','690','Seychelles Rupee'), +(137,'SEK','kr','752','Swedish Krona'), +(138,'SGD','$','702','Singapore Dollar'), +(139,'SHP','£','654','Saint Helena Pound'), +(142,'SLL',NULL,'694','Leone'), +(143,'SOS','S','706','Somali Shilling'), +(144,'SRD','$','968','Surinam Dollar'), +(145,'STD',NULL,'678','São Tome and Principe Dobra'), +(146,'SVC','$','222','El Salvador Colon'), +(147,'SYP','£','760','Syrian Pound'), +(148,'SZL',NULL,'748','Eswatini Lilangeni'), +(149,'TJS',NULL,'972','Tajik Somoni'), +(151,'TND',NULL,'788','Tunisian Dinar'), +(152,'TOP',NULL,'776','Tongan Pa\'anga'), +(153,'TRY','YTL','949','New Turkish Lira'), +(154,'TTD','TT$','780','Trinidad and Tobago Dollar'), +(155,'TWD','NT$','901','New Taiwan Dollar'), +(156,'TZS',NULL,'834','Tanzanian Shilling'), +(157,'UAH','₴','980','Ukrainian Hryvnia'), +(158,'UGX',NULL,'800','Ugandan Shilling'), +(159,'USN',NULL,'997','US Dollar (Next day)'), +(160,'USS',NULL,'998','US Dollar (Same day)'), +(161,'UYU','$U','858','Peso Uruguayo'), +(162,'UZS','лв','860','Uzbekistan Sum'), +(163,'VEF','Bs','937','Venezuela Bolivar'), +(164,'VUV',NULL,'548','Vanuatu Vatu'), +(165,'WST',NULL,'882','Samoan Tala'), +(166,'XAF',NULL,'950','CFA Franc BEAC'), +(167,'XAG',NULL,'961','Silver'), +(168,'XAU',NULL,'959','Gold'), +(169,'XBA',NULL,'955','Bond Markets Units European Composite Unit (EURCO)'), +(170,'XBB',NULL,'956','European Monetary Unit (E.M.U.-6)'), +(171,'XBC',NULL,'957','European Unit of Account 9 (E.U.A.-9)'), +(172,'XBD',NULL,'958','European Unit of Account 17 (E.U.A.-17)'), +(173,'XCD','$','951','East Caribbean Dollar'), +(174,'XDR',NULL,'960','Special Drawing Right'), +(175,'XFO',NULL,NULL,'Gold-Franc'), +(176,'XFU',NULL,NULL,'UIC-Franc'), +(177,'XOF',NULL,'952','CFA Franc BCEAO'), +(178,'XPD',NULL,'964','Palladium'), +(179,'XPF',NULL,'953','CFP Franc'), +(180,'XPT',NULL,'962','Platinum'), +(181,'XTS',NULL,'963','Code for testing purposes'), +(182,'XXX',NULL,'999','No currency involved'), +(183,'YER','﷼','886','Yemeni Rial'), +(184,'ZMK',NULL,'894','Zambian Kwacha'), +(185,'ZWD','Z$','716','Zimbabwe Dollar'); /*!40000 ALTER TABLE `civicrm_currency` ENABLE KEYS */; UNLOCK TABLES; @@ -2859,15 +2870,15 @@ LOCK TABLES `civicrm_dashboard` WRITE; /*!40000 ALTER TABLE `civicrm_dashboard` DISABLE KEYS */; INSERT INTO `civicrm_dashboard` (`id`, `domain_id`, `name`, `label`, `url`, `permission`, `permission_operator`, `fullscreen_url`, `is_active`, `is_reserved`, `cache_minutes`, `directive`) VALUES (1,1,'blog','CiviCRM News','civicrm/dashlet/blog?reset=1','access CiviCRM',NULL,'civicrm/dashlet/blog?reset=1&context=dashletFullscreen',1,1,1440,NULL), - (2,1,'getting-started','CiviCRM Resources','civicrm/dashlet/getting-started?reset=1','access CiviCRM',NULL,'civicrm/dashlet/getting-started?reset=1&context=dashletFullscreen',1,1,7200,NULL), - (3,1,'activity','Activities','civicrm/dashlet/activity?reset=1','access CiviCRM',NULL,'civicrm/dashlet/activity?reset=1&context=dashletFullscreen',1,1,7200,NULL), - (4,1,'myCases','My Cases','civicrm/dashlet/myCases?reset=1','access my cases and activities',NULL,'civicrm/dashlet/myCases?reset=1&context=dashletFullscreen',1,1,60,NULL), - (5,1,'allCases','All Cases','civicrm/dashlet/allCases?reset=1','access all cases and activities',NULL,'civicrm/dashlet/allCases?reset=1&context=dashletFullscreen',1,1,60,NULL), - (6,1,'casedashboard','Case Dashboard Dashlet','civicrm/dashlet/casedashboard?reset=1','access my cases and activities,access all cases and activities','OR','civicrm/dashlet/casedashboard?reset=1&context=dashletFullscreen',1,1,60,NULL), - (7,1,'report/7','Donor Summary','civicrm/report/instance/7?reset=1§ion=1&charts=barChart','access CiviContribute','AND','civicrm/report/instance/7?reset=1§ion=1&charts=barChart&context=dashletFullscreen',1,0,60,NULL), - (8,1,'report/14','Top Donors','civicrm/report/instance/14?reset=1§ion=2','access CiviContribute','AND','civicrm/report/instance/14?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL), - (9,1,'report/27','Event Income Summary','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart','access CiviEvent','AND','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart&context=dashletFullscreen',1,0,60,NULL), - (10,1,'report/22','Membership Summary','civicrm/report/instance/22?reset=1§ion=2','access CiviMember','AND','civicrm/report/instance/22?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL); +(2,1,'getting-started','CiviCRM Resources','civicrm/dashlet/getting-started?reset=1','access CiviCRM',NULL,'civicrm/dashlet/getting-started?reset=1&context=dashletFullscreen',1,1,7200,NULL), +(3,1,'activity','Activities','civicrm/dashlet/activity?reset=1','access CiviCRM',NULL,'civicrm/dashlet/activity?reset=1&context=dashletFullscreen',1,1,7200,NULL), +(4,1,'myCases','My Cases','civicrm/dashlet/myCases?reset=1','access my cases and activities',NULL,'civicrm/dashlet/myCases?reset=1&context=dashletFullscreen',1,1,60,NULL), +(5,1,'allCases','All Cases','civicrm/dashlet/allCases?reset=1','access all cases and activities',NULL,'civicrm/dashlet/allCases?reset=1&context=dashletFullscreen',1,1,60,NULL), +(6,1,'casedashboard','Case Dashboard Dashlet','civicrm/dashlet/casedashboard?reset=1','access my cases and activities,access all cases and activities','OR','civicrm/dashlet/casedashboard?reset=1&context=dashletFullscreen',1,1,60,NULL), +(7,1,'report/7','Donor Summary','civicrm/report/instance/7?reset=1§ion=1&charts=barChart','access CiviContribute','AND','civicrm/report/instance/7?reset=1§ion=1&charts=barChart&context=dashletFullscreen',1,0,60,NULL), +(8,1,'report/14','Top Donors','civicrm/report/instance/14?reset=1§ion=2','access CiviContribute','AND','civicrm/report/instance/14?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL), +(9,1,'report/27','Event Income Summary','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart','access CiviEvent','AND','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart&context=dashletFullscreen',1,0,60,NULL), +(10,1,'report/22','Membership Summary','civicrm/report/instance/22?reset=1§ion=2','access CiviMember','AND','civicrm/report/instance/22?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL); /*!40000 ALTER TABLE `civicrm_dashboard` ENABLE KEYS */; UNLOCK TABLES; @@ -2897,22 +2908,22 @@ LOCK TABLES `civicrm_dedupe_rule` WRITE; /*!40000 ALTER TABLE `civicrm_dedupe_rule` DISABLE KEYS */; INSERT INTO `civicrm_dedupe_rule` (`id`, `dedupe_rule_group_id`, `rule_table`, `rule_field`, `rule_length`, `rule_weight`) VALUES (1,1,'civicrm_contact','first_name',NULL,5), - (2,1,'civicrm_contact','last_name',NULL,7), - (3,1,'civicrm_email','email',NULL,10), - (4,2,'civicrm_contact','organization_name',NULL,10), - (5,2,'civicrm_email','email',NULL,10), - (6,3,'civicrm_contact','household_name',NULL,10), - (7,3,'civicrm_email','email',NULL,10), - (8,4,'civicrm_email','email',NULL,10), - (9,5,'civicrm_contact','organization_name',NULL,10), - (10,5,'civicrm_email','email',NULL,10), - (11,6,'civicrm_contact','household_name',NULL,10), - (12,6,'civicrm_email','email',NULL,10), - (13,7,'civicrm_contact','first_name',NULL,5), - (14,7,'civicrm_contact','last_name',NULL,5), - (15,7,'civicrm_address','street_address',NULL,5), - (16,7,'civicrm_contact','middle_name',NULL,1), - (17,7,'civicrm_contact','suffix_id',NULL,1); +(2,1,'civicrm_contact','last_name',NULL,7), +(3,1,'civicrm_email','email',NULL,10), +(4,2,'civicrm_contact','organization_name',NULL,10), +(5,2,'civicrm_email','email',NULL,10), +(6,3,'civicrm_contact','household_name',NULL,10), +(7,3,'civicrm_email','email',NULL,10), +(8,4,'civicrm_email','email',NULL,10), +(9,5,'civicrm_contact','organization_name',NULL,10), +(10,5,'civicrm_email','email',NULL,10), +(11,6,'civicrm_contact','household_name',NULL,10), +(12,6,'civicrm_email','email',NULL,10), +(13,7,'civicrm_contact','first_name',NULL,5), +(14,7,'civicrm_contact','last_name',NULL,5), +(15,7,'civicrm_address','street_address',NULL,5), +(16,7,'civicrm_contact','middle_name',NULL,1), +(17,7,'civicrm_contact','suffix_id',NULL,1); /*!40000 ALTER TABLE `civicrm_dedupe_rule` ENABLE KEYS */; UNLOCK TABLES; @@ -2924,12 +2935,12 @@ LOCK TABLES `civicrm_dedupe_rule_group` WRITE; /*!40000 ALTER TABLE `civicrm_dedupe_rule_group` DISABLE KEYS */; INSERT INTO `civicrm_dedupe_rule_group` (`id`, `contact_type`, `threshold`, `used`, `name`, `title`, `is_reserved`) VALUES (1,'Individual',20,'Supervised','IndividualSupervised','First Name, Last Name and Email (reserved)',1), - (2,'Organization',10,'Supervised','OrganizationSupervised','Organization Name or Email',0), - (3,'Household',10,'Supervised','HouseholdSupervised','Household Name or Email',0), - (4,'Individual',10,'Unsupervised','IndividualUnsupervised','Email (reserved)',1), - (5,'Organization',10,'Unsupervised','OrganizationUnsupervised','Organization Name or Email',0), - (6,'Household',10,'Unsupervised','HouseholdUnsupervised','Household Name or Email',0), - (7,'Individual',15,'General','IndividualGeneral','First Name, Last Name and Street Address (reserved)',1); +(2,'Organization',10,'Supervised','OrganizationSupervised','Organization Name or Email',0), +(3,'Household',10,'Supervised','HouseholdSupervised','Household Name or Email',0), +(4,'Individual',10,'Unsupervised','IndividualUnsupervised','Email (reserved)',1), +(5,'Organization',10,'Unsupervised','OrganizationUnsupervised','Organization Name or Email',0), +(6,'Household',10,'Unsupervised','HouseholdUnsupervised','Household Name or Email',0), +(7,'Individual',15,'General','IndividualGeneral','First Name, Last Name and Street Address (reserved)',1); /*!40000 ALTER TABLE `civicrm_dedupe_rule_group` ENABLE KEYS */; UNLOCK TABLES; @@ -2961,194 +2972,211 @@ LOCK TABLES `civicrm_email` WRITE; /*!40000 ALTER TABLE `civicrm_email` DISABLE KEYS */; INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (2,153,1,'elinas@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (3,11,1,'prentices@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (4,147,1,'damarisc@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), - (5,147,1,'cruz.damaris87@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (6,181,1,'gonzlez.u.tanya@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), - (7,181,1,'gonzlezt@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (8,182,1,'wagnerm@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (9,182,1,'wagner.megan71@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (10,53,1,'zope.scarlet@example.info',1,0,0,0,NULL,NULL,NULL,NULL), - (11,98,1,'yadav.a.ivey40@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (12,195,1,'terrya38@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (13,109,1,'robertse60@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (14,109,1,'estar89@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (15,136,1,'tjensen@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (16,136,1,'tjensen13@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (17,108,1,'hwagner@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (18,95,1,'herminiar27@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (19,58,1,'fjones69@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (20,21,1,'alee@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (21,5,1,'dd.parker87@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (22,5,1,'parkerd6@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (23,76,1,'rwattson@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (24,7,1,'jk.blackwell@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (25,106,1,'olsen.teddy@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (26,43,1,'zopea58@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (27,43,1,'ashliez@testing.com',0,0,0,0,NULL,NULL,NULL,NULL), - (28,179,1,'valenep94@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (29,10,1,'adams.troy@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (30,10,1,'adamst@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (31,51,1,'di.roberts@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (32,134,1,'margaretterrell@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (33,134,1,'terrell.p.margaret@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (34,128,1,'jones.t.iris@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (35,128,1,'it.jones51@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (36,158,1,'princessterrell42@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (37,158,1,'princesst32@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (38,19,1,'robertson.mei@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (39,143,1,'bachman.b.teddy46@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (40,114,1,'dimitrovl@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), - (41,114,1,'lashawndad@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (42,70,1,'nielsen.k.bryon@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (43,70,1,'bk.nielsen@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (44,164,1,'daz.jackson64@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (45,186,1,'wagner.merrie@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (46,186,1,'merriew22@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (47,52,1,'jamesonn2@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (48,138,1,'aroberts@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (49,138,1,'aroberts@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (50,14,1,'ssmith@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (51,196,1,'lsamuels86@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (52,156,1,'brentd@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (53,156,1,'dimitrov.brent@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (54,73,1,'adams.nicole@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), - (55,149,1,'mllerl@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (56,113,1,'russella@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (57,113,1,'adamsr32@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (58,93,1,'bettybachman2@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (59,175,1,'jedyadav54@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (60,175,1,'yadav.jed83@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (61,13,1,'samsonb@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (62,155,1,'kandacebarkley@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), - (63,80,1,'tk.cooper@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), - (64,80,1,'coopert94@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (65,130,1,'alidag@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), - (66,130,1,'alidagrant@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (67,2,1,'mller.elina34@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (68,2,1,'elinam@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (69,145,1,'ex.yadav@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), - (70,120,1,'yadav.princess@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), - (71,103,1,'estachowski30@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (72,125,1,'allenb@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (73,125,1,'ah.barkley9@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (74,137,1,'mariay@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (75,90,1,'kathlync@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (76,187,1,'merriecooper5@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (77,187,1,'cooper.f.merrie@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (78,35,1,'cooper.esta@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (79,77,1,'jg.wilson@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (80,77,1,'wilsonj@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (81,165,1,'bettywilson@lol.net',1,0,0,0,NULL,NULL,NULL,NULL), - (82,167,1,'wilsont31@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (83,118,1,'bprentice27@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (84,41,1,'fo.bachman-prentice@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (85,41,1,'bachman-prenticef@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (86,115,1,'wprentice@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), - (87,193,1,'roberts.o.jacob@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (88,193,1,'jacobroberts@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (89,135,1,'santinar@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (90,107,1,'gonzlez.ashley65@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (91,107,1,'gonzleza@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (92,27,1,'mx.gonzlez59@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (93,27,1,'merriegonzlez76@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (94,157,1,'nicolegonzlez46@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), - (95,16,1,'bryong@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (96,104,1,'robertson-cruz.iris99@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (97,104,1,'robertson-cruzi4@example.info',0,0,0,0,NULL,NULL,NULL,NULL), - (98,177,1,'bcooper@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (99,63,1,'gonzlez-cooper.rosario@sample.net',1,0,0,0,NULL,NULL,NULL,NULL), - (100,122,1,'by.robertson@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (101,122,1,'bobrobertson@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (102,144,1,'prentice-jensen.bernadette@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (103,100,1,'sjensen@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), - (104,20,1,'jacobst@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (105,8,1,'jacobs.jina94@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (106,8,1,'jacobs.jina@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (107,198,1,'jacobs.y.ashley@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (108,97,1,'olsen.claudio67@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (109,97,1,'olsenc5@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), - (110,75,1,'olsen.daren45@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (111,45,1,'omarsmith63@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), - (112,30,1,'smitha33@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (113,188,1,'wilson.irvin@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (114,188,1,'irvinwilson59@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (115,83,1,'jinaw@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), - (116,83,1,'wilson-deforest.z.jina@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (117,132,1,'lawerencew74@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (118,102,1,'wagners@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (119,102,1,'wagner.shad@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), - (120,111,1,'sanfordj26@example.info',1,0,0,0,NULL,NULL,NULL,NULL), - (121,111,1,'jensen.z.sanford24@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (122,66,1,'ee.jensen77@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (123,173,1,'darenjensen@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (124,173,1,'jensen.daren@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (125,169,1,'jjensen4@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (126,169,1,'jensenj19@example.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (127,44,1,'louterry14@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (128,201,1,'adams.lincoln91@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (129,201,1,'adams.r.lincoln@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (130,59,1,'delanawilson@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (131,112,1,'jedadams-wilson@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (132,112,1,'jx.adams-wilson@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (133,56,1,'samsonj@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (134,56,1,'samsonj@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (135,160,1,'samsonp@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (136,36,1,'terrella@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (137,36,1,'andrewt@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), - (138,18,1,'terrell.laree@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (139,18,1,'terrell.laree18@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (140,163,1,'craigterrell@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (141,163,1,'terrellc31@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (142,33,1,'miguelt26@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (143,79,1,'jensenj@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (144,79,1,'jensen.v.jacob@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (145,9,1,'bettyzope-jensen93@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (146,9,1,'bzope-jensen80@testing.com',0,0,0,0,NULL,NULL,NULL,NULL), - (147,34,1,'cm.zope-jensen76@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (148,34,1,'clintz13@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (149,126,1,'zope-jensenb@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (150,126,1,'be.zope-jensen@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (151,62,3,'feedback@birchwoodschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (152,9,2,'bettyz@birchwoodschool.org',0,0,0,0,NULL,NULL,NULL,NULL), - (153,96,3,'contact@sierrasolutions.org',1,0,0,0,NULL,NULL,NULL,NULL), - (154,173,2,'du.jensen5@sierrasolutions.org',0,0,0,0,NULL,NULL,NULL,NULL), - (155,3,3,'feedback@northpointeducationpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), - (156,106,2,'teddyo@northpointeducationpartnership.org',0,0,0,0,NULL,NULL,NULL,NULL), - (157,50,3,'contact@sierrapoetry.org',1,0,0,0,NULL,NULL,NULL,NULL), - (158,23,2,'bterry@sierrapoetry.org',1,0,0,0,NULL,NULL,NULL,NULL), - (159,12,3,'feedback@globalpoetrypartners.org',1,0,0,0,NULL,NULL,NULL,NULL), - (160,130,2,'smith.magan28@globalpoetrypartners.org',0,0,0,0,NULL,NULL,NULL,NULL), - (161,6,3,'contact@creativeempowermentnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), - (162,200,3,'sales@baysustainabilityfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (163,162,2,'wattson.scarlet@baysustainabilityfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (164,148,3,'service@montanadevelopmentfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (165,167,2,'beulajameson30@montanadevelopmentfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL), - (166,116,3,'info@creativefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (167,48,2,'omarsamson57@creativefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (168,49,3,'feedback@sierrahealthtrust.org',1,0,0,0,NULL,NULL,NULL,NULL), - (169,63,2,'terryt@sierrahealthtrust.org',0,0,0,0,NULL,NULL,NULL,NULL), - (170,123,3,'feedback@localpartners.org',1,0,0,0,NULL,NULL,NULL,NULL), - (171,35,2,'coopere11@localpartners.org',0,0,0,0,NULL,NULL,NULL,NULL), - (172,46,3,'service@lincolnenvironmentalfund.org',1,0,0,0,NULL,NULL,NULL,NULL), - (173,191,2,'robertsb@lincolnenvironmentalfund.org',1,0,0,0,NULL,NULL,NULL,NULL), - (174,161,3,'info@peapacksoftware.org',1,0,0,0,NULL,NULL,NULL,NULL), - (175,95,2,'herminiarobertson2@peapacksoftware.org',0,0,0,0,NULL,NULL,NULL,NULL), - (176,67,3,'info@wveducationassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), - (177,110,2,'mx.olsen@wveducationassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), - (178,17,3,'sales@elmaliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (179,146,2,'jacobsl3@elmaliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (180,168,3,'info@sradvocacyfund.org',1,0,0,0,NULL,NULL,NULL,NULL), - (181,164,2,'jacksond@sradvocacyfund.org',0,0,0,0,NULL,NULL,NULL,NULL), - (182,82,3,'feedback@alaskahealthfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (183,105,2,'smith.v.kacey39@alaskahealthfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (184,140,3,'service@woodbridgenetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), - (185,121,2,'adams.l.magan@woodbridgenetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), - (186,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (187,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (188,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (189,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); +(2,147,1,'chowskia@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(3,147,1,'chowskia@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), +(4,198,1,'dazm24@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(5,198,1,'daz.margaret11@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(6,182,1,'nielsen.ashlie@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), +(7,182,1,'ashlien@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(8,123,1,'barkley.i.lincoln@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(9,123,1,'lincolnbarkley@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(10,72,1,'samson.clint61@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(11,72,1,'samson.clint@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(12,96,1,'omarn60@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(13,96,1,'omarnielsen92@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), +(14,18,1,'jameson.troy@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(15,18,1,'ts.jameson7@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL), +(16,159,1,'claudiow@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), +(17,13,1,'princessb58@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(18,24,1,'maxwellprentice@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(19,24,1,'prenticem@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(20,66,1,'santinaw@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(21,66,1,'santinaw@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(22,4,1,'jjensen@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(23,4,1,'jjensen52@sample.com',0,0,0,0,NULL,NULL,NULL,NULL), +(24,154,1,'wagnera@example.net',1,0,0,0,NULL,NULL,NULL,NULL), +(25,154,1,'wagnera@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(26,17,1,'mw.barkley@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(27,17,1,'barkley.w.maxwell@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), +(28,64,1,'cruz.juliann75@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), +(29,64,1,'cruz.juliann@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(30,172,1,'landonbachman57@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(31,61,1,'delanaolsen54@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(32,61,1,'olsend26@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), +(33,151,1,'patell@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(34,121,1,'lee.s.ray@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(35,121,1,'lee.s.ray@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(36,7,1,'wagner.b.heidi@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(37,7,1,'wagner.heidi@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(38,25,1,'sterrell@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(39,9,1,'rnielsen77@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(40,9,1,'rosarion@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), +(41,95,1,'bobrobertson57@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), +(42,189,1,'tobyb@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), +(43,189,1,'tbachman@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(44,146,1,'chowskij@example.info',1,0,0,0,NULL,NULL,NULL,NULL), +(45,145,1,'heidir81@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(46,145,1,'hreynolds@example.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(47,186,1,'lincolnjameson43@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(48,185,1,'jacobr22@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(49,125,1,'terrell.kacey60@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(50,132,1,'nielsenm@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), +(51,184,1,'samuels.truman80@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(52,184,1,'trumansamuels6@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(53,86,1,'ba.deforest@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(54,86,1,'deforest.a.brigette65@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(55,163,1,'mllerm@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(56,107,1,'beulaw@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(57,107,1,'beulawattson@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(58,10,1,'omarivanov47@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), +(59,93,1,'jacobs.kathleen@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), +(60,93,1,'jacobs.kathleen@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(61,62,1,'jameson.damaris16@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(62,62,1,'jameson.damaris45@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), +(63,81,1,'smith.rodrigo64@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(64,45,1,'cruz.iris@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(65,45,1,'cruz.iris@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(66,148,1,'cooper.princess45@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(67,128,1,'grant.scott@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), +(68,128,1,'grant.scott85@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(69,179,1,'ms.cooper72@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(70,179,1,'maxwellcooper@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(71,85,1,'gonzlez.sanford89@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(72,5,1,'samson.p.andrew@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(73,5,1,'andrewsamson@example.net',0,0,0,0,NULL,NULL,NULL,NULL), +(74,63,1,'elbertj21@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(75,150,1,'loul88@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(76,150,1,'leel@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(77,177,1,'chowskin@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), +(78,166,1,'bettyb@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(79,39,1,'jacobs.josefa@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), +(80,39,1,'jacobsj93@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(81,143,1,'irvind@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(82,143,1,'dazi18@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(83,52,1,'alexiap@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(84,52,1,'parker.alexia@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(85,77,1,'terrellt80@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(86,139,1,'gonzlez.elbert@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), +(87,139,1,'elbertg@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(88,32,1,'smith.brent24@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(89,116,1,'lawerencewattson@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), +(90,116,1,'lawerencewattson@sample.info',0,0,0,0,NULL,NULL,NULL,NULL), +(91,174,1,'emller13@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), +(92,12,1,'blackwell.l.juliann7@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(93,12,1,'jl.blackwell@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(94,94,1,'parker.x.allen31@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(95,94,1,'parkera@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), +(96,118,1,'nicoler@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(97,118,1,'nicoleroberts@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(98,67,1,'wattson.princess7@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(99,31,1,'eleonorwattson@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(100,31,1,'eleonorwattson3@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(101,6,1,'grant.nicole@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(102,6,1,'grant.e.nicole70@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(103,102,1,'megann90@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(104,102,1,'megann@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(105,44,1,'bryonnielsen80@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), +(106,44,1,'nielsen.bryon@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(107,91,1,'marialee78@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(108,91,1,'marial@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), +(109,74,1,'leek@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(110,152,1,'dr.lee@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(111,152,1,'lee.r.delana@testing.info',0,0,0,0,NULL,NULL,NULL,NULL), +(112,142,1,'lees44@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(113,142,1,'sh.lee@example.org',0,0,0,0,NULL,NULL,NULL,NULL), +(114,201,1,'rayw@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(115,201,1,'wilson.b.ray39@sample.net',0,0,0,0,NULL,NULL,NULL,NULL), +(116,56,1,'nbarkley-wilson@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(117,98,1,'wilson.miguel@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), +(118,98,1,'wilsonm91@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(119,60,1,'robertson.kenny@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(120,60,1,'robertson.kenny96@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL), +(121,11,1,'kq.robertson58@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), +(122,141,1,'robertson.lou@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(123,141,1,'robertson.lou@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(124,82,1,'robertson.j.ashley@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(125,112,1,'jensen-bachman.z.josefa@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(126,178,1,'terryb@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(127,113,1,'arlyneyadav-terry11@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), +(128,110,1,'allanterry@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(129,49,1,'terry.e.beula54@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(130,115,1,'troybarkley@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(131,122,1,'barkley.s.jay58@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), +(132,68,1,'samson.magan@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), +(133,75,1,'russells@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(134,103,1,'ashleysamson84@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(135,103,1,'samson.ashley@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(136,14,1,'carlosblackwell@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), +(137,14,1,'blackwell.carlos@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL), +(138,157,1,'iveyb@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(139,130,1,'blackwell.k.lincoln@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(140,130,1,'lincolnb@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), +(141,164,1,'roberts.maxwell@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(142,164,1,'maxwellroberts@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL), +(143,16,1,'cwilson77@example.org',1,0,0,0,NULL,NULL,NULL,NULL), +(144,16,1,'carylonwilson89@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(145,114,1,'roberts-wilson.josefa@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(146,76,1,'maxwellivanov@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(147,76,1,'maxwellivanov@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(148,30,1,'ashleyi49@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), +(149,100,1,'eivanov@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(150,100,1,'ivanove71@lol.org',0,0,0,0,NULL,NULL,NULL,NULL), +(151,120,1,'ivanov.eleonor30@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), +(152,120,1,'ivanov.eleonor2@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), +(153,90,1,'tobyt@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(154,21,1,'terrell.troy@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(155,65,1,'terrell.alida@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(156,65,1,'aterrell@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), +(157,117,1,'raym@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(158,117,1,'mcreynolds.ray@lol.net',0,0,0,0,NULL,NULL,NULL,NULL), +(159,173,1,'princessmcreynolds@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), +(160,162,1,'hv.mcreynolds5@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), +(161,162,1,'mcreynolds.v.herminia@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(162,180,1,'mcreynolds.kathlyn9@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(163,175,1,'grant.shad@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(164,175,1,'grants5@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), +(165,57,1,'jinapatel73@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), +(166,29,1,'patelk66@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), +(167,160,1,'jaypatel@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(168,160,1,'patel.jay54@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), +(169,171,1,'wattsonk51@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), +(170,92,1,'meganw@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), +(171,48,1,'rebekahwattson@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), +(172,138,1,'grant.claudio73@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), +(173,161,1,'jgrant47@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), +(174,161,1,'jedg87@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL), +(175,34,3,'sales@valliantcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), +(176,87,2,'rp.samson@valliantcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), +(177,156,3,'info@beechdevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL), +(178,39,2,'jjacobs40@beechdevelopment.org',0,0,0,0,NULL,NULL,NULL,NULL), +(179,22,3,'feedback@alabamafoodnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), +(180,195,3,'feedback@jacksonhealth.org',1,0,0,0,NULL,NULL,NULL,NULL), +(181,169,3,'info@mlkingfamily.org',1,0,0,0,NULL,NULL,NULL,NULL), +(182,46,3,'info@globalliteracyinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL), +(183,91,2,'marial@globalliteracyinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL), +(184,40,3,'info@rurallegal.org',1,0,0,0,NULL,NULL,NULL,NULL), +(185,136,3,'sales@friendsdevelopmentnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), +(186,143,2,'daz.irvin@friendsdevelopmentnetwork.org',0,0,0,0,NULL,NULL,NULL,NULL), +(187,33,3,'sales@jacksonadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL), +(188,131,3,'feedback@oklahomasports.org',1,0,0,0,NULL,NULL,NULL,NULL), +(189,162,2,'mcreynolds.herminia@oklahomasports.org',0,0,0,0,NULL,NULL,NULL,NULL), +(190,181,3,'service@sierrasports.org',1,0,0,0,NULL,NULL,NULL,NULL), +(191,56,2,'nicolebarkley-wilson@sierrasports.org',0,0,0,0,NULL,NULL,NULL,NULL), +(192,149,3,'sales@kentuckyassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), +(193,68,2,'samson.magan@kentuckyassociation.org',0,0,0,0,NULL,NULL,NULL,NULL), +(194,196,3,'sales@indianaaction.org',1,0,0,0,NULL,NULL,NULL,NULL), +(195,27,2,'md.terrell@indianaaction.org',1,0,0,0,NULL,NULL,NULL,NULL), +(196,155,3,'service@chatsworthfund.org',1,0,0,0,NULL,NULL,NULL,NULL), +(197,58,2,'aroberts-wilson@chatsworthfund.org',1,0,0,0,NULL,NULL,NULL,NULL), +(198,83,3,'service@harmantechnologysystems.org',1,0,0,0,NULL,NULL,NULL,NULL), +(199,158,3,'info@progressiveempowermentsolutions.org',1,0,0,0,NULL,NULL,NULL,NULL), +(200,60,2,'kennyr@progressiveempowermentsolutions.org',0,0,0,0,NULL,NULL,NULL,NULL), +(201,191,3,'info@secondtechnologyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), +(202,125,2,'terrell.kacey@secondtechnologyfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL), +(203,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), +(204,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), +(205,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), +(206,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -3178,28 +3206,28 @@ LOCK TABLES `civicrm_entity_financial_account` WRITE; /*!40000 ALTER TABLE `civicrm_entity_financial_account` DISABLE KEYS */; INSERT INTO `civicrm_entity_financial_account` (`id`, `entity_table`, `entity_id`, `account_relationship`, `financial_account_id`) VALUES (1,'civicrm_financial_type',1,1,1), - (2,'civicrm_financial_type',1,5,5), - (3,'civicrm_financial_type',1,3,7), - (4,'civicrm_financial_type',1,7,9), - (5,'civicrm_financial_type',2,1,2), - (6,'civicrm_financial_type',2,5,5), - (7,'civicrm_financial_type',2,3,7), - (8,'civicrm_financial_type',2,7,9), - (9,'civicrm_financial_type',2,12,14), - (10,'civicrm_financial_type',3,1,3), - (11,'civicrm_financial_type',3,5,5), - (12,'civicrm_financial_type',3,3,7), - (13,'civicrm_financial_type',3,7,9), - (14,'civicrm_financial_type',4,5,5), - (15,'civicrm_financial_type',4,3,7), - (16,'civicrm_financial_type',4,1,4), - (17,'civicrm_financial_type',4,12,13), - (18,'civicrm_financial_type',4,7,9), - (19,'civicrm_option_value',92,6,6), - (20,'civicrm_option_value',93,6,6), - (21,'civicrm_option_value',94,6,6), - (22,'civicrm_option_value',90,6,12), - (23,'civicrm_option_value',91,6,12); +(2,'civicrm_financial_type',1,5,5), +(3,'civicrm_financial_type',1,3,7), +(4,'civicrm_financial_type',1,7,9), +(5,'civicrm_financial_type',2,1,2), +(6,'civicrm_financial_type',2,5,5), +(7,'civicrm_financial_type',2,3,7), +(8,'civicrm_financial_type',2,7,9), +(9,'civicrm_financial_type',2,12,14), +(10,'civicrm_financial_type',3,1,3), +(11,'civicrm_financial_type',3,5,5), +(12,'civicrm_financial_type',3,3,7), +(13,'civicrm_financial_type',3,7,9), +(14,'civicrm_financial_type',4,5,5), +(15,'civicrm_financial_type',4,3,7), +(16,'civicrm_financial_type',4,1,4), +(17,'civicrm_financial_type',4,12,13), +(18,'civicrm_financial_type',4,7,9), +(19,'civicrm_option_value',92,6,6), +(20,'civicrm_option_value',93,6,6), +(21,'civicrm_option_value',94,6,6), +(22,'civicrm_option_value',90,6,12), +(23,'civicrm_option_value',91,6,12); /*!40000 ALTER TABLE `civicrm_entity_financial_account` ENABLE KEYS */; UNLOCK TABLES; @@ -3211,227 +3239,227 @@ LOCK TABLES `civicrm_entity_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00), - (2,'civicrm_financial_item',1,1,125.00), - (3,'civicrm_contribution',2,2,50.00), - (4,'civicrm_financial_item',2,2,50.00), - (5,'civicrm_contribution',3,3,25.00), - (6,'civicrm_financial_item',3,3,25.00), - (7,'civicrm_contribution',4,4,50.00), - (8,'civicrm_financial_item',4,4,50.00), - (9,'civicrm_contribution',5,5,50.00), - (10,'civicrm_financial_item',5,5,50.00), - (11,'civicrm_contribution',6,6,500.00), - (12,'civicrm_financial_item',6,6,500.00), - (13,'civicrm_contribution',7,7,1750.00), - (14,'civicrm_financial_item',7,7,1750.00), - (15,'civicrm_contribution',8,8,50.00), - (16,'civicrm_financial_item',8,8,50.00), - (17,'civicrm_contribution',9,9,10.00), - (18,'civicrm_financial_item',9,9,10.00), - (19,'civicrm_contribution',10,10,250.00), - (20,'civicrm_financial_item',10,10,250.00), - (21,'civicrm_contribution',11,11,500.00), - (22,'civicrm_financial_item',11,11,500.00), - (23,'civicrm_contribution',12,12,50.00), - (24,'civicrm_financial_item',12,12,50.00), - (25,'civicrm_contribution',13,13,50.00), - (26,'civicrm_financial_item',13,13,50.00), - (27,'civicrm_contribution',14,14,50.00), - (28,'civicrm_financial_item',14,14,50.00), - (29,'civicrm_contribution',15,15,25.00), - (30,'civicrm_financial_item',15,15,25.00), - (31,'civicrm_contribution',16,16,25.00), - (32,'civicrm_financial_item',16,16,25.00), - (33,'civicrm_contribution',17,17,25.00), - (34,'civicrm_financial_item',17,17,25.00), - (35,'civicrm_contribution',18,18,25.00), - (36,'civicrm_financial_item',18,18,25.00), - (37,'civicrm_contribution',19,19,25.00), - (38,'civicrm_financial_item',19,19,25.00), - (39,'civicrm_contribution',20,20,25.00), - (40,'civicrm_financial_item',20,20,25.00), - (41,'civicrm_contribution',21,21,25.00), - (42,'civicrm_financial_item',21,21,25.00), - (43,'civicrm_contribution',22,22,25.00), - (44,'civicrm_financial_item',22,22,25.00), - (45,'civicrm_contribution',23,23,25.00), - (46,'civicrm_financial_item',23,23,25.00), - (47,'civicrm_contribution',24,24,25.00), - (48,'civicrm_financial_item',24,24,25.00), - (49,'civicrm_contribution',25,25,25.00), - (50,'civicrm_financial_item',25,25,25.00), - (51,'civicrm_contribution',26,26,10.00), - (52,'civicrm_financial_item',26,26,10.00), - (53,'civicrm_contribution',27,27,10.00), - (54,'civicrm_financial_item',27,27,10.00), - (55,'civicrm_contribution',28,28,10.00), - (56,'civicrm_financial_item',28,28,10.00), - (57,'civicrm_contribution',29,29,10.00), - (58,'civicrm_financial_item',29,29,10.00), - (59,'civicrm_contribution',30,30,10.00), - (60,'civicrm_financial_item',30,30,10.00), - (61,'civicrm_contribution',31,31,5.00), - (62,'civicrm_financial_item',31,31,5.00), - (63,'civicrm_contribution',42,32,100.00), - (64,'civicrm_financial_item',32,32,100.00), - (65,'civicrm_contribution',61,33,1200.00), - (66,'civicrm_financial_item',33,33,1200.00), - (67,'civicrm_contribution',40,34,100.00), - (68,'civicrm_financial_item',34,34,100.00), - (69,'civicrm_contribution',37,35,100.00), - (70,'civicrm_financial_item',35,35,100.00), - (71,'civicrm_contribution',39,36,100.00), - (72,'civicrm_financial_item',36,36,100.00), - (73,'civicrm_contribution',43,37,100.00), - (74,'civicrm_financial_item',37,37,100.00), - (75,'civicrm_contribution',35,38,100.00), - (76,'civicrm_financial_item',38,38,100.00), - (77,'civicrm_contribution',54,39,50.00), - (78,'civicrm_financial_item',39,39,50.00), - (79,'civicrm_contribution',47,40,50.00), - (80,'civicrm_financial_item',40,40,50.00), - (81,'civicrm_contribution',57,41,50.00), - (82,'civicrm_financial_item',41,41,50.00), - (83,'civicrm_contribution',34,42,100.00), - (84,'civicrm_financial_item',42,42,100.00), - (85,'civicrm_contribution',33,43,100.00), - (86,'civicrm_financial_item',43,43,100.00), - (87,'civicrm_contribution',55,44,50.00), - (88,'civicrm_financial_item',44,44,50.00), - (89,'civicrm_contribution',32,45,100.00), - (90,'civicrm_financial_item',45,45,100.00), - (91,'civicrm_contribution',50,46,50.00), - (92,'civicrm_financial_item',46,46,50.00), - (93,'civicrm_contribution',48,47,50.00), - (94,'civicrm_financial_item',47,47,50.00), - (95,'civicrm_contribution',49,48,50.00), - (96,'civicrm_financial_item',48,48,50.00), - (97,'civicrm_contribution',51,49,50.00), - (98,'civicrm_financial_item',49,49,50.00), - (99,'civicrm_contribution',46,50,100.00), - (100,'civicrm_financial_item',50,50,100.00), - (101,'civicrm_contribution',56,51,50.00), - (102,'civicrm_financial_item',51,51,50.00), - (103,'civicrm_contribution',60,52,1200.00), - (104,'civicrm_financial_item',52,52,1200.00), - (105,'civicrm_contribution',38,53,100.00), - (106,'civicrm_financial_item',53,53,100.00), - (107,'civicrm_contribution',44,54,100.00), - (108,'civicrm_financial_item',54,54,100.00), - (109,'civicrm_contribution',52,55,50.00), - (110,'civicrm_financial_item',55,55,50.00), - (111,'civicrm_contribution',45,56,100.00), - (112,'civicrm_financial_item',56,56,100.00), - (113,'civicrm_contribution',41,57,100.00), - (114,'civicrm_financial_item',57,57,100.00), - (115,'civicrm_contribution',53,58,50.00), - (116,'civicrm_financial_item',58,58,50.00), - (117,'civicrm_contribution',36,59,100.00), - (118,'civicrm_financial_item',59,59,100.00), - (119,'civicrm_contribution',59,60,50.00), - (120,'civicrm_financial_item',60,60,50.00), - (121,'civicrm_contribution',58,61,50.00), - (122,'civicrm_financial_item',61,61,50.00), - (123,'civicrm_contribution',100,62,50.00), - (124,'civicrm_financial_item',62,62,50.00), - (125,'civicrm_contribution',74,63,50.00), - (126,'civicrm_financial_item',63,63,50.00), - (127,'civicrm_contribution',103,64,50.00), - (128,'civicrm_financial_item',64,64,50.00), - (129,'civicrm_contribution',69,65,50.00), - (130,'civicrm_financial_item',65,65,50.00), - (131,'civicrm_contribution',71,66,50.00), - (132,'civicrm_financial_item',66,66,50.00), - (133,'civicrm_contribution',109,67,50.00), - (134,'civicrm_financial_item',67,67,50.00), - (135,'civicrm_contribution',92,68,50.00), - (136,'civicrm_financial_item',68,68,50.00), - (137,'civicrm_contribution',106,69,50.00), - (138,'civicrm_financial_item',69,69,50.00), - (139,'civicrm_contribution',78,70,50.00), - (140,'civicrm_financial_item',70,70,50.00), - (141,'civicrm_contribution',72,71,50.00), - (142,'civicrm_financial_item',71,71,50.00), - (143,'civicrm_contribution',111,72,50.00), - (144,'civicrm_financial_item',72,72,50.00), - (145,'civicrm_contribution',64,73,50.00), - (146,'civicrm_financial_item',73,73,50.00), - (147,'civicrm_contribution',82,74,50.00), - (148,'civicrm_financial_item',74,74,50.00), - (149,'civicrm_contribution',105,75,50.00), - (150,'civicrm_financial_item',75,75,50.00), - (151,'civicrm_contribution',63,76,50.00), - (152,'civicrm_financial_item',76,76,50.00), - (153,'civicrm_contribution',79,77,50.00), - (154,'civicrm_financial_item',77,77,50.00), - (155,'civicrm_contribution',68,78,800.00), - (156,'civicrm_financial_item',78,78,800.00), - (157,'civicrm_contribution',67,79,800.00), - (158,'civicrm_financial_item',79,79,800.00), - (159,'civicrm_contribution',110,80,800.00), - (160,'civicrm_financial_item',80,80,800.00), - (161,'civicrm_contribution',87,81,800.00), - (162,'civicrm_financial_item',81,81,800.00), - (163,'civicrm_contribution',99,82,800.00), - (164,'civicrm_financial_item',82,82,800.00), - (165,'civicrm_contribution',85,83,800.00), - (166,'civicrm_financial_item',83,83,800.00), - (167,'civicrm_contribution',76,84,800.00), - (168,'civicrm_financial_item',84,84,800.00), - (169,'civicrm_contribution',83,85,800.00), - (170,'civicrm_financial_item',85,85,800.00), - (171,'civicrm_contribution',98,86,800.00), - (172,'civicrm_financial_item',86,86,800.00), - (173,'civicrm_contribution',73,87,800.00), - (174,'civicrm_financial_item',87,87,800.00), - (175,'civicrm_contribution',108,88,800.00), - (176,'civicrm_financial_item',88,88,800.00), - (177,'civicrm_contribution',86,89,800.00), - (178,'civicrm_financial_item',89,89,800.00), - (179,'civicrm_contribution',77,90,800.00), - (180,'civicrm_financial_item',90,90,800.00), - (181,'civicrm_contribution',84,91,800.00), - (182,'civicrm_financial_item',91,91,800.00), - (183,'civicrm_contribution',107,92,800.00), - (184,'civicrm_financial_item',92,92,800.00), - (185,'civicrm_contribution',104,93,800.00), - (186,'civicrm_financial_item',93,93,800.00), - (187,'civicrm_contribution',89,94,800.00), - (188,'civicrm_financial_item',94,94,800.00), - (189,'civicrm_contribution',96,95,800.00), - (190,'civicrm_financial_item',95,95,800.00), - (191,'civicrm_contribution',90,96,50.00), - (192,'civicrm_financial_item',96,96,50.00), - (193,'civicrm_contribution',75,97,50.00), - (194,'civicrm_financial_item',97,97,50.00), - (195,'civicrm_contribution',93,98,50.00), - (196,'civicrm_financial_item',98,98,50.00), - (197,'civicrm_contribution',97,99,50.00), - (198,'civicrm_financial_item',99,99,50.00), - (199,'civicrm_contribution',91,100,50.00), - (200,'civicrm_financial_item',100,100,50.00), - (201,'civicrm_contribution',65,101,50.00), - (202,'civicrm_financial_item',101,101,50.00), - (203,'civicrm_contribution',112,102,50.00), - (204,'civicrm_financial_item',102,102,50.00), - (205,'civicrm_contribution',66,103,50.00), - (206,'civicrm_financial_item',103,103,50.00), - (207,'civicrm_contribution',70,104,50.00), - (208,'civicrm_financial_item',104,104,50.00), - (209,'civicrm_contribution',101,105,50.00), - (210,'civicrm_financial_item',105,105,50.00), - (211,'civicrm_contribution',95,106,50.00), - (212,'civicrm_financial_item',106,106,50.00), - (213,'civicrm_contribution',102,107,50.00), - (214,'civicrm_financial_item',107,107,50.00), - (215,'civicrm_contribution',94,108,50.00), - (216,'civicrm_financial_item',108,108,50.00), - (217,'civicrm_contribution',80,109,50.00), - (218,'civicrm_financial_item',109,109,50.00), - (219,'civicrm_contribution',88,110,50.00), - (220,'civicrm_financial_item',110,110,50.00), - (221,'civicrm_contribution',81,111,50.00), - (222,'civicrm_financial_item',111,111,50.00); +(2,'civicrm_financial_item',1,1,125.00), +(3,'civicrm_contribution',2,2,50.00), +(4,'civicrm_financial_item',2,2,50.00), +(5,'civicrm_contribution',3,3,25.00), +(6,'civicrm_financial_item',3,3,25.00), +(7,'civicrm_contribution',4,4,50.00), +(8,'civicrm_financial_item',4,4,50.00), +(9,'civicrm_contribution',5,5,50.00), +(10,'civicrm_financial_item',5,5,50.00), +(11,'civicrm_contribution',6,6,500.00), +(12,'civicrm_financial_item',6,6,500.00), +(13,'civicrm_contribution',7,7,1750.00), +(14,'civicrm_financial_item',7,7,1750.00), +(15,'civicrm_contribution',8,8,50.00), +(16,'civicrm_financial_item',8,8,50.00), +(17,'civicrm_contribution',9,9,10.00), +(18,'civicrm_financial_item',9,9,10.00), +(19,'civicrm_contribution',10,10,250.00), +(20,'civicrm_financial_item',10,10,250.00), +(21,'civicrm_contribution',11,11,500.00), +(22,'civicrm_financial_item',11,11,500.00), +(23,'civicrm_contribution',12,12,50.00), +(24,'civicrm_financial_item',12,12,50.00), +(25,'civicrm_contribution',13,13,50.00), +(26,'civicrm_financial_item',13,13,50.00), +(27,'civicrm_contribution',14,14,50.00), +(28,'civicrm_financial_item',14,14,50.00), +(29,'civicrm_contribution',15,15,25.00), +(30,'civicrm_financial_item',15,15,25.00), +(31,'civicrm_contribution',16,16,25.00), +(32,'civicrm_financial_item',16,16,25.00), +(33,'civicrm_contribution',17,17,25.00), +(34,'civicrm_financial_item',17,17,25.00), +(35,'civicrm_contribution',18,18,25.00), +(36,'civicrm_financial_item',18,18,25.00), +(37,'civicrm_contribution',19,19,25.00), +(38,'civicrm_financial_item',19,19,25.00), +(39,'civicrm_contribution',20,20,25.00), +(40,'civicrm_financial_item',20,20,25.00), +(41,'civicrm_contribution',21,21,25.00), +(42,'civicrm_financial_item',21,21,25.00), +(43,'civicrm_contribution',22,22,25.00), +(44,'civicrm_financial_item',22,22,25.00), +(45,'civicrm_contribution',23,23,25.00), +(46,'civicrm_financial_item',23,23,25.00), +(47,'civicrm_contribution',24,24,25.00), +(48,'civicrm_financial_item',24,24,25.00), +(49,'civicrm_contribution',25,25,25.00), +(50,'civicrm_financial_item',25,25,25.00), +(51,'civicrm_contribution',26,26,10.00), +(52,'civicrm_financial_item',26,26,10.00), +(53,'civicrm_contribution',27,27,10.00), +(54,'civicrm_financial_item',27,27,10.00), +(55,'civicrm_contribution',28,28,10.00), +(56,'civicrm_financial_item',28,28,10.00), +(57,'civicrm_contribution',29,29,10.00), +(58,'civicrm_financial_item',29,29,10.00), +(59,'civicrm_contribution',30,30,10.00), +(60,'civicrm_financial_item',30,30,10.00), +(61,'civicrm_contribution',31,31,5.00), +(62,'civicrm_financial_item',31,31,5.00), +(63,'civicrm_contribution',32,32,100.00), +(64,'civicrm_financial_item',32,32,100.00), +(65,'civicrm_contribution',34,33,100.00), +(66,'civicrm_financial_item',33,33,100.00), +(67,'civicrm_contribution',36,34,100.00), +(68,'civicrm_financial_item',34,34,100.00), +(69,'civicrm_contribution',38,35,100.00), +(70,'civicrm_financial_item',35,35,100.00), +(71,'civicrm_contribution',40,36,100.00), +(72,'civicrm_financial_item',36,36,100.00), +(73,'civicrm_contribution',41,37,100.00), +(74,'civicrm_financial_item',37,37,100.00), +(75,'civicrm_contribution',44,38,100.00), +(76,'civicrm_financial_item',38,38,100.00), +(77,'civicrm_contribution',46,39,100.00), +(78,'civicrm_financial_item',39,39,100.00), +(79,'civicrm_contribution',48,40,100.00), +(80,'civicrm_financial_item',40,40,100.00), +(81,'civicrm_contribution',50,41,100.00), +(82,'civicrm_financial_item',41,41,100.00), +(83,'civicrm_contribution',51,42,100.00), +(84,'civicrm_financial_item',42,42,100.00), +(85,'civicrm_contribution',52,43,100.00), +(86,'civicrm_financial_item',43,43,100.00), +(87,'civicrm_contribution',54,44,100.00), +(88,'civicrm_financial_item',44,44,100.00), +(89,'civicrm_contribution',58,45,100.00), +(90,'civicrm_financial_item',45,45,100.00), +(91,'civicrm_contribution',60,46,100.00), +(92,'civicrm_financial_item',46,46,100.00), +(93,'civicrm_contribution',61,47,100.00), +(94,'civicrm_financial_item',47,47,100.00), +(95,'civicrm_contribution',33,48,50.00), +(96,'civicrm_financial_item',48,48,50.00), +(97,'civicrm_contribution',35,49,50.00), +(98,'civicrm_financial_item',49,49,50.00), +(99,'civicrm_contribution',37,50,50.00), +(100,'civicrm_financial_item',50,50,50.00), +(101,'civicrm_contribution',39,51,50.00), +(102,'civicrm_financial_item',51,51,50.00), +(103,'civicrm_contribution',43,52,50.00), +(104,'civicrm_financial_item',52,52,50.00), +(105,'civicrm_contribution',45,53,50.00), +(106,'civicrm_financial_item',53,53,50.00), +(107,'civicrm_contribution',47,54,50.00), +(108,'civicrm_financial_item',54,54,50.00), +(109,'civicrm_contribution',49,55,50.00), +(110,'civicrm_financial_item',55,55,50.00), +(111,'civicrm_contribution',55,56,50.00), +(112,'civicrm_financial_item',56,56,50.00), +(113,'civicrm_contribution',56,57,50.00), +(114,'civicrm_financial_item',57,57,50.00), +(115,'civicrm_contribution',57,58,50.00), +(116,'civicrm_financial_item',58,58,50.00), +(117,'civicrm_contribution',59,59,50.00), +(118,'civicrm_financial_item',59,59,50.00), +(119,'civicrm_contribution',42,60,1200.00), +(120,'civicrm_financial_item',60,60,1200.00), +(121,'civicrm_contribution',53,61,1200.00), +(122,'civicrm_financial_item',61,61,1200.00), +(123,'civicrm_contribution',104,62,50.00), +(124,'civicrm_financial_item',62,62,50.00), +(125,'civicrm_contribution',100,63,50.00), +(126,'civicrm_financial_item',63,63,50.00), +(127,'civicrm_contribution',95,64,50.00), +(128,'civicrm_financial_item',64,64,50.00), +(129,'civicrm_contribution',83,65,50.00), +(130,'civicrm_financial_item',65,65,50.00), +(131,'civicrm_contribution',89,66,50.00), +(132,'civicrm_financial_item',66,66,50.00), +(133,'civicrm_contribution',108,67,50.00), +(134,'civicrm_financial_item',67,67,50.00), +(135,'civicrm_contribution',74,68,50.00), +(136,'civicrm_financial_item',68,68,50.00), +(137,'civicrm_contribution',70,69,50.00), +(138,'civicrm_financial_item',69,69,50.00), +(139,'civicrm_contribution',81,70,50.00), +(140,'civicrm_financial_item',70,70,50.00), +(141,'civicrm_contribution',109,71,50.00), +(142,'civicrm_financial_item',71,71,50.00), +(143,'civicrm_contribution',77,72,50.00), +(144,'civicrm_financial_item',72,72,50.00), +(145,'civicrm_contribution',71,73,50.00), +(146,'civicrm_financial_item',73,73,50.00), +(147,'civicrm_contribution',67,74,50.00), +(148,'civicrm_financial_item',74,74,50.00), +(149,'civicrm_contribution',99,75,50.00), +(150,'civicrm_financial_item',75,75,50.00), +(151,'civicrm_contribution',97,76,50.00), +(152,'civicrm_financial_item',76,76,50.00), +(153,'civicrm_contribution',72,77,50.00), +(154,'civicrm_financial_item',77,77,50.00), +(155,'civicrm_contribution',75,78,800.00), +(156,'civicrm_financial_item',78,78,800.00), +(157,'civicrm_contribution',88,79,800.00), +(158,'civicrm_financial_item',79,79,800.00), +(159,'civicrm_contribution',69,80,800.00), +(160,'civicrm_financial_item',80,80,800.00), +(161,'civicrm_contribution',103,81,800.00), +(162,'civicrm_financial_item',81,81,800.00), +(163,'civicrm_contribution',82,82,800.00), +(164,'civicrm_financial_item',82,82,800.00), +(165,'civicrm_contribution',73,83,800.00), +(166,'civicrm_financial_item',83,83,800.00), +(167,'civicrm_contribution',65,84,800.00), +(168,'civicrm_financial_item',84,84,800.00), +(169,'civicrm_contribution',101,85,800.00), +(170,'civicrm_financial_item',85,85,800.00), +(171,'civicrm_contribution',112,86,800.00), +(172,'civicrm_financial_item',86,86,800.00), +(173,'civicrm_contribution',107,87,800.00), +(174,'civicrm_financial_item',87,87,800.00), +(175,'civicrm_contribution',79,88,800.00), +(176,'civicrm_financial_item',88,88,800.00), +(177,'civicrm_contribution',63,89,800.00), +(178,'civicrm_financial_item',89,89,800.00), +(179,'civicrm_contribution',102,90,800.00), +(180,'civicrm_financial_item',90,90,800.00), +(181,'civicrm_contribution',85,91,800.00), +(182,'civicrm_financial_item',91,91,800.00), +(183,'civicrm_contribution',90,92,800.00), +(184,'civicrm_financial_item',92,92,800.00), +(185,'civicrm_contribution',106,93,800.00), +(186,'civicrm_financial_item',93,93,800.00), +(187,'civicrm_contribution',110,94,800.00), +(188,'civicrm_financial_item',94,94,800.00), +(189,'civicrm_contribution',64,95,800.00), +(190,'civicrm_financial_item',95,95,800.00), +(191,'civicrm_contribution',91,96,50.00), +(192,'civicrm_financial_item',96,96,50.00), +(193,'civicrm_contribution',92,97,50.00), +(194,'civicrm_financial_item',97,97,50.00), +(195,'civicrm_contribution',96,98,50.00), +(196,'civicrm_financial_item',98,98,50.00), +(197,'civicrm_contribution',94,99,50.00), +(198,'civicrm_financial_item',99,99,50.00), +(199,'civicrm_contribution',80,100,50.00), +(200,'civicrm_financial_item',100,100,50.00), +(201,'civicrm_contribution',68,101,50.00), +(202,'civicrm_financial_item',101,101,50.00), +(203,'civicrm_contribution',76,102,50.00), +(204,'civicrm_financial_item',102,102,50.00), +(205,'civicrm_contribution',105,103,50.00), +(206,'civicrm_financial_item',103,103,50.00), +(207,'civicrm_contribution',84,104,50.00), +(208,'civicrm_financial_item',104,104,50.00), +(209,'civicrm_contribution',111,105,50.00), +(210,'civicrm_financial_item',105,105,50.00), +(211,'civicrm_contribution',87,106,50.00), +(212,'civicrm_financial_item',106,106,50.00), +(213,'civicrm_contribution',66,107,50.00), +(214,'civicrm_financial_item',107,107,50.00), +(215,'civicrm_contribution',98,108,50.00), +(216,'civicrm_financial_item',108,108,50.00), +(217,'civicrm_contribution',78,109,50.00), +(218,'civicrm_financial_item',109,109,50.00), +(219,'civicrm_contribution',93,110,50.00), +(220,'civicrm_financial_item',110,110,50.00), +(221,'civicrm_contribution',86,111,50.00), +(222,'civicrm_financial_item',111,111,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -3442,120 +3470,121 @@ UNLOCK TABLES; LOCK TABLES `civicrm_entity_tag` WRITE; /*!40000 ALTER TABLE `civicrm_entity_tag` DISABLE KEYS */; INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES - (2,'civicrm_contact',3,3), - (17,'civicrm_contact',4,5), - (24,'civicrm_contact',5,5), - (85,'civicrm_contact',8,5), - (14,'civicrm_contact',11,5), - (3,'civicrm_contact',12,3), - (49,'civicrm_contact',13,4), - (43,'civicrm_contact',14,4), - (9,'civicrm_contact',17,3), - (33,'civicrm_contact',19,5), - (84,'civicrm_contact',20,5), - (54,'civicrm_contact',23,5), - (41,'civicrm_contact',24,4), - (42,'civicrm_contact',24,5), - (68,'civicrm_contact',32,5), - (114,'civicrm_contact',34,4), - (110,'civicrm_contact',36,4), - (111,'civicrm_contact',36,5), - (28,'civicrm_contact',39,4), - (29,'civicrm_contact',39,5), - (11,'civicrm_contact',40,4), - (4,'civicrm_contact',42,3), - (101,'civicrm_contact',44,4), - (88,'civicrm_contact',45,4), - (89,'civicrm_contact',45,5), - (70,'civicrm_contact',47,4), - (107,'civicrm_contact',48,4), - (108,'civicrm_contact',48,5), - (6,'civicrm_contact',49,1), - (55,'civicrm_contact',54,4), - (56,'civicrm_contact',54,5), - (109,'civicrm_contact',56,5), - (23,'civicrm_contact',58,5), - (1,'civicrm_contact',62,1), - (52,'civicrm_contact',64,4), - (87,'civicrm_contact',65,5), - (57,'civicrm_contact',69,4), - (58,'civicrm_contact',69,5), - (36,'civicrm_contact',70,4), - (45,'civicrm_contact',73,5), - (25,'civicrm_contact',76,4), - (65,'civicrm_contact',77,4), - (113,'civicrm_contact',79,4), - (79,'civicrm_contact',81,4), - (80,'civicrm_contact',81,5), - (10,'civicrm_contact',82,1), - (93,'civicrm_contact',83,4), - (16,'civicrm_contact',86,4), - (73,'civicrm_contact',88,4), - (61,'civicrm_contact',94,5), - (86,'civicrm_contact',97,4), - (39,'civicrm_contact',99,4), - (40,'civicrm_contact',99,5), - (83,'civicrm_contact',100,4), - (96,'civicrm_contact',102,4), - (97,'civicrm_contact',102,5), - (62,'civicrm_contact',103,4), - (74,'civicrm_contact',104,5), - (31,'civicrm_contact',105,4), - (32,'civicrm_contact',105,5), - (26,'civicrm_contact',106,5), - (71,'civicrm_contact',107,5), - (21,'civicrm_contact',108,4), - (22,'civicrm_contact',108,5), - (20,'civicrm_contact',109,4), - (53,'civicrm_contact',110,5), - (98,'civicrm_contact',111,4), - (99,'civicrm_contact',111,5), - (106,'civicrm_contact',112,5), - (46,'civicrm_contact',113,5), - (34,'civicrm_contact',114,4), - (35,'civicrm_contact',114,5), - (50,'civicrm_contact',117,4), - (51,'civicrm_contact',117,5), - (67,'civicrm_contact',118,5), - (13,'civicrm_contact',121,4), - (7,'civicrm_contact',123,2), - (78,'civicrm_contact',127,5), - (81,'civicrm_contact',129,4), - (82,'civicrm_contact',129,5), - (48,'civicrm_contact',131,4), - (94,'civicrm_contact',132,4), - (95,'civicrm_contact',132,5), - (30,'civicrm_contact',134,5), - (63,'civicrm_contact',137,5), - (90,'civicrm_contact',141,4), - (91,'civicrm_contact',141,5), - (5,'civicrm_contact',148,1), - (72,'civicrm_contact',157,4), - (8,'civicrm_contact',161,3), - (59,'civicrm_contact',162,4), - (60,'civicrm_contact',162,5), - (112,'civicrm_contact',163,4), - (44,'civicrm_contact',166,5), - (66,'civicrm_contact',167,5), - (100,'civicrm_contact',173,5), - (37,'civicrm_contact',174,4), - (38,'civicrm_contact',174,5), - (47,'civicrm_contact',175,5), - (75,'civicrm_contact',177,4), - (76,'civicrm_contact',177,5), - (27,'civicrm_contact',179,4), - (15,'civicrm_contact',181,4), - (64,'civicrm_contact',187,4), - (92,'civicrm_contact',188,4), - (102,'civicrm_contact',189,4), - (103,'civicrm_contact',189,5), - (12,'civicrm_contact',191,5), - (69,'civicrm_contact',193,4), - (18,'civicrm_contact',195,4), - (19,'civicrm_contact',195,5), - (77,'civicrm_contact',197,4), - (104,'civicrm_contact',201,4), - (105,'civicrm_contact',201,5); + (22,'civicrm_contact',4,5), +(69,'civicrm_contact',6,4), +(70,'civicrm_contact',6,5), +(109,'civicrm_contact',8,4), +(41,'civicrm_contact',10,5), +(64,'civicrm_contact',12,4), +(65,'civicrm_contact',12,5), +(19,'civicrm_contact',13,4), +(92,'civicrm_contact',14,4), +(82,'civicrm_contact',19,5), +(83,'civicrm_contact',20,5), +(2,'civicrm_contact',22,2), +(23,'civicrm_contact',23,4), +(20,'civicrm_contact',24,4), +(21,'civicrm_contact',24,5), +(31,'civicrm_contact',25,5), +(72,'civicrm_contact',26,5), +(108,'civicrm_contact',29,4), +(67,'civicrm_contact',31,4), +(61,'civicrm_contact',32,4), +(5,'civicrm_contact',33,2), +(1,'civicrm_contact',34,3), +(4,'civicrm_contact',40,3), +(100,'civicrm_contact',55,4), +(95,'civicrm_contact',58,4), +(26,'civicrm_contact',59,4), +(78,'civicrm_contact',60,4), +(79,'civicrm_contact',60,5), +(52,'civicrm_contact',63,4), +(53,'civicrm_contact',63,5), +(24,'civicrm_contact',64,5), +(44,'civicrm_contact',71,5), +(90,'civicrm_contact',75,4), +(91,'civicrm_contact',75,5), +(96,'civicrm_contact',76,4), +(60,'civicrm_contact',77,5), +(28,'civicrm_contact',79,4), +(47,'civicrm_contact',81,4), +(48,'civicrm_contact',81,5), +(8,'civicrm_contact',83,2), +(51,'civicrm_contact',85,4), +(88,'civicrm_contact',87,4), +(89,'civicrm_contact',87,5), +(114,'civicrm_contact',88,4), +(98,'civicrm_contact',90,4), +(99,'civicrm_contact',90,5), +(73,'civicrm_contact',91,5), +(110,'civicrm_contact',92,5), +(42,'civicrm_contact',93,4), +(43,'civicrm_contact',93,5), +(32,'civicrm_contact',95,4), +(16,'civicrm_contact',96,4), +(17,'civicrm_contact',96,5), +(18,'civicrm_contact',97,4), +(77,'civicrm_contact',98,4), +(97,'civicrm_contact',100,4), +(71,'civicrm_contact',101,4), +(107,'civicrm_contact',104,5), +(45,'civicrm_contact',108,4), +(46,'civicrm_contact',108,5), +(10,'civicrm_contact',109,1), +(85,'civicrm_contact',110,5), +(86,'civicrm_contact',115,5), +(101,'civicrm_contact',117,4), +(102,'civicrm_contact',117,5), +(66,'civicrm_contact',118,5), +(27,'civicrm_contact',121,4), +(87,'civicrm_contact',122,4), +(93,'civicrm_contact',130,5), +(37,'civicrm_contact',132,4), +(38,'civicrm_contact',132,5), +(111,'civicrm_contact',138,4), +(112,'civicrm_contact',138,5), +(68,'civicrm_contact',140,5), +(80,'civicrm_contact',141,4), +(81,'civicrm_contact',141,5), +(59,'civicrm_contact',143,4), +(33,'civicrm_contact',146,4), +(11,'civicrm_contact',147,4), +(12,'civicrm_contact',147,5), +(49,'civicrm_contact',148,5), +(54,'civicrm_contact',150,4), +(55,'civicrm_contact',150,5), +(74,'civicrm_contact',152,5), +(29,'civicrm_contact',153,4), +(30,'civicrm_contact',153,5), +(113,'civicrm_contact',161,4), +(103,'civicrm_contact',162,4), +(104,'civicrm_contact',162,5), +(40,'civicrm_contact',163,4), +(94,'civicrm_contact',164,4), +(115,'civicrm_contact',167,5), +(3,'civicrm_contact',169,3), +(25,'civicrm_contact',172,5), +(62,'civicrm_contact',174,4), +(63,'civicrm_contact',174,5), +(106,'civicrm_contact',175,5), +(56,'civicrm_contact',177,4), +(57,'civicrm_contact',177,5), +(84,'civicrm_contact',178,4), +(50,'civicrm_contact',179,4), +(6,'civicrm_contact',181,1), +(13,'civicrm_contact',182,5), +(39,'civicrm_contact',184,5), +(36,'civicrm_contact',185,5), +(34,'civicrm_contact',186,4), +(35,'civicrm_contact',186,5), +(9,'civicrm_contact',191,1), +(14,'civicrm_contact',192,4), +(15,'civicrm_contact',192,5), +(58,'civicrm_contact',193,5), +(7,'civicrm_contact',196,2), +(105,'civicrm_contact',199,5), +(75,'civicrm_contact',201,4), +(76,'civicrm_contact',201,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -3566,12 +3595,12 @@ UNLOCK TABLES; LOCK TABLES `civicrm_event` WRITE; /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */; INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`, `is_show_calendar_links`) VALUES - (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2025-08-06 17:00:00','2025-08-08 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), - (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2025-02-05 12:00:00','2025-02-05 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), - (3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2025-09-06 07:00:00','2025-09-09 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), - (4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), - (5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), - (6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1); + (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2025-08-11 17:00:00','2025-08-13 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), +(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2025-02-10 12:00:00','2025-02-10 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), +(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2025-09-11 07:00:00','2025-09-14 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), +(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), +(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), +(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */; UNLOCK TABLES; @@ -3583,18 +3612,18 @@ LOCK TABLES `civicrm_extension` WRITE; /*!40000 ALTER TABLE `civicrm_extension` DISABLE KEYS */; INSERT INTO `civicrm_extension` (`id`, `type`, `full_name`, `name`, `label`, `file`, `schema_version`, `is_active`) VALUES (1,'module','sequentialcreditnotes','Sequential credit notes','Sequential credit notes','sequentialcreditnotes',NULL,1), - (2,'module','greenwich','Theme: Greenwich','Theme: Greenwich','greenwich',NULL,1), - (3,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1), - (4,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1), - (5,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1), - (6,'module','civi_campaign','CiviCampaign','CiviCampaign','civi_campaign',NULL,1), - (7,'module','civi_case','CiviCase','CiviCase','civi_case',NULL,1), - (8,'module','civi_contribute','CiviContribute','CiviContribute','civi_contribute',NULL,1), - (9,'module','civi_event','CiviEvent','CiviEvent','civi_event',NULL,1), - (10,'module','civi_mail','CiviMail','CiviMail','civi_mail',NULL,1), - (11,'module','civi_member','CiviMember','CiviMember','civi_member',NULL,1), - (12,'module','civi_pledge','CiviPledge','CiviPledge','civi_pledge',NULL,1), - (13,'module','civi_report','CiviReport','CiviReport','civi_report',NULL,1); +(2,'module','greenwich','Theme: Greenwich','Theme: Greenwich','greenwich',NULL,1), +(3,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1), +(4,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1), +(5,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1), +(6,'module','civi_campaign','CiviCampaign','CiviCampaign','civi_campaign',NULL,1), +(7,'module','civi_case','CiviCase','CiviCase','civi_case',NULL,1), +(8,'module','civi_contribute','CiviContribute','CiviContribute','civi_contribute',NULL,1), +(9,'module','civi_event','CiviEvent','CiviEvent','civi_event',NULL,1), +(10,'module','civi_mail','CiviMail','CiviMail','civi_mail',NULL,1), +(11,'module','civi_member','CiviMember','CiviMember','civi_member',NULL,1), +(12,'module','civi_pledge','CiviPledge','CiviPledge','civi_pledge',NULL,1), +(13,'module','civi_report','CiviReport','CiviReport','civi_report',NULL,1); /*!40000 ALTER TABLE `civicrm_extension` ENABLE KEYS */; UNLOCK TABLES; @@ -3615,19 +3644,19 @@ LOCK TABLES `civicrm_financial_account` WRITE; /*!40000 ALTER TABLE `civicrm_financial_account` DISABLE KEYS */; INSERT INTO `civicrm_financial_account` (`id`, `name`, `label`, `contact_id`, `financial_account_type_id`, `accounting_code`, `account_type_code`, `description`, `parent_id`, `is_header_account`, `is_deductible`, `is_tax`, `tax_rate`, `is_reserved`, `is_active`, `is_default`) VALUES (1,'Donation','Donation',1,3,'4200','INC','Default account for donations',NULL,0,1,0,NULL,0,1,1), - (2,'Member Dues','Member Dues',1,3,'4400','INC','Default account for membership sales',NULL,0,1,0,NULL,0,1,0), - (3,'Campaign Contribution','Campaign Contribution',1,3,'4100','INC','Sample account for recording payments to a campaign',NULL,0,0,0,NULL,0,1,0), - (4,'Event Fee','Event Fee',1,3,'4300','INC','Default account for event ticket sales',NULL,0,0,0,NULL,0,1,0), - (5,'Banking Fees','Banking Fees',1,5,'5200','EXP','Payment processor fees and manually recorded banking fees',NULL,0,0,0,NULL,0,1,1), - (6,'Deposit Bank Account','Deposit Bank Account',1,1,'1100','BANK','All manually recorded cash and cheques go to this account',NULL,0,0,0,NULL,0,1,1), - (7,'Accounts Receivable','Accounts Receivable',1,1,'1200','AR','Amounts to be received later (eg pay later event revenues)',NULL,0,0,0,NULL,0,1,0), - (8,'Accounts Payable','Accounts Payable',1,2,'2200','AP','Amounts to be paid out such as grants and refunds',NULL,0,0,0,NULL,0,1,1), - (9,'Premiums','Premiums',1,4,'5100','COGS','Account to record cost of premiums provided to payors',NULL,0,0,0,NULL,0,1,1), - (10,'Premiums inventory','Premiums inventory',1,1,'1375','OCASSET','Account representing value of premiums inventory',NULL,0,0,0,NULL,0,1,0), - (11,'Discounts','Discounts',1,3,'4900','INC','Contra-revenue account for amounts discounted from sales',NULL,0,0,0,NULL,0,1,0), - (12,'Payment Processor Account','Payment Processor Account',1,1,'1150','BANK','Account to record payments into a payment processor merchant account',NULL,0,0,0,NULL,0,1,0), - (13,'Deferred Revenue - Event Fee','Deferred Revenue - Event Fee',1,2,'2730','OCLIAB','Event revenue to be recognized in future months when the events occur',NULL,0,0,0,NULL,0,1,0), - (14,'Deferred Revenue - Member Dues','Deferred Revenue - Member Dues',1,2,'2740','OCLIAB','Membership revenue to be recognized in future months',NULL,0,0,0,NULL,0,1,0); +(2,'Member Dues','Member Dues',1,3,'4400','INC','Default account for membership sales',NULL,0,1,0,NULL,0,1,0), +(3,'Campaign Contribution','Campaign Contribution',1,3,'4100','INC','Sample account for recording payments to a campaign',NULL,0,0,0,NULL,0,1,0), +(4,'Event Fee','Event Fee',1,3,'4300','INC','Default account for event ticket sales',NULL,0,0,0,NULL,0,1,0), +(5,'Banking Fees','Banking Fees',1,5,'5200','EXP','Payment processor fees and manually recorded banking fees',NULL,0,0,0,NULL,0,1,1), +(6,'Deposit Bank Account','Deposit Bank Account',1,1,'1100','BANK','All manually recorded cash and cheques go to this account',NULL,0,0,0,NULL,0,1,1), +(7,'Accounts Receivable','Accounts Receivable',1,1,'1200','AR','Amounts to be received later (eg pay later event revenues)',NULL,0,0,0,NULL,0,1,0), +(8,'Accounts Payable','Accounts Payable',1,2,'2200','AP','Amounts to be paid out such as grants and refunds',NULL,0,0,0,NULL,0,1,1), +(9,'Premiums','Premiums',1,4,'5100','COGS','Account to record cost of premiums provided to payors',NULL,0,0,0,NULL,0,1,1), +(10,'Premiums inventory','Premiums inventory',1,1,'1375','OCASSET','Account representing value of premiums inventory',NULL,0,0,0,NULL,0,1,0), +(11,'Discounts','Discounts',1,3,'4900','INC','Contra-revenue account for amounts discounted from sales',NULL,0,0,0,NULL,0,1,0), +(12,'Payment Processor Account','Payment Processor Account',1,1,'1150','BANK','Account to record payments into a payment processor merchant account',NULL,0,0,0,NULL,0,1,0), +(13,'Deferred Revenue - Event Fee','Deferred Revenue - Event Fee',1,2,'2730','OCLIAB','Event revenue to be recognized in future months when the events occur',NULL,0,0,0,NULL,0,1,0), +(14,'Deferred Revenue - Member Dues','Deferred Revenue - Member Dues',1,2,'2740','OCLIAB','Membership revenue to be recognized in future months',NULL,0,0,0,NULL,0,1,0); /*!40000 ALTER TABLE `civicrm_financial_account` ENABLE KEYS */; UNLOCK TABLES; @@ -3638,117 +3667,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_item` WRITE; /*!40000 ALTER TABLE `civicrm_financial_item` DISABLE KEYS */; INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES - (1,'2025-02-07 04:13:17','2015-02-06 20:13:17',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), - (2,'2025-02-07 04:13:17','2022-11-06 20:13:17',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), - (3,'2025-02-07 04:13:17','2019-01-12 07:13:17',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), - (4,'2025-02-07 04:13:17','2022-11-06 20:13:17',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), - (5,'2025-02-07 04:13:17','2022-11-06 20:13:17',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), - (6,'2025-02-07 04:13:17','2024-11-13 19:31:17',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), - (7,'2025-02-07 04:13:17','2025-02-04 20:13:17',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), - (8,'2025-02-07 04:13:17','2024-06-15 04:24:17',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), - (9,'2025-02-07 04:13:17','2024-03-06 20:13:17',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), - (10,'2025-02-07 04:13:17','2020-09-13 22:13:17',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), - (11,'2025-02-07 04:13:17','2025-02-05 16:13:17',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), - (12,'2025-02-07 04:13:17','2023-11-06 09:39:57',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), - (13,'2025-02-07 04:13:17','2024-11-06 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), - (14,'2025-02-07 04:13:17','2024-12-06 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), - (15,'2025-02-07 04:13:17','2023-11-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), - (16,'2025-02-07 04:13:17','2023-12-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), - (17,'2025-02-07 04:13:17','2024-01-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), - (18,'2025-02-07 04:13:17','2024-02-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), - (19,'2025-02-07 04:13:17','2024-03-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), - (20,'2025-02-07 04:13:17','2024-04-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), - (21,'2025-02-07 04:13:17','2024-05-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), - (22,'2025-02-07 04:13:17','2024-06-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), - (23,'2025-02-07 04:13:17','2024-07-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), - (24,'2025-02-07 04:13:17','2024-08-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), - (25,'2025-02-07 04:13:17','2024-09-06 20:13:17',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), - (26,'2025-02-07 04:13:17','2024-06-06 20:13:17',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), - (27,'2025-02-07 04:13:17','2024-07-06 20:13:17',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), - (28,'2025-02-07 04:13:17','2024-08-06 20:13:17',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), - (29,'2025-02-07 04:13:17','2024-09-06 20:13:17',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), - (30,'2025-02-07 04:13:17','2024-10-06 20:13:17',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), - (31,'2025-02-07 04:13:17','2025-01-06 20:13:17',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), - (32,'2025-02-07 04:13:17','2025-02-06 20:13:17',10,'General',100.00,'USD',2,1,'civicrm_line_item',42), - (33,'2025-02-07 04:13:17','2025-02-06 20:13:17',14,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), - (34,'2025-02-07 04:13:17','2025-02-06 20:13:17',23,'General',100.00,'USD',2,1,'civicrm_line_item',40), - (35,'2025-02-07 04:13:17','2025-02-06 20:13:17',33,'General',100.00,'USD',2,1,'civicrm_line_item',37), - (36,'2025-02-07 04:13:17','2025-02-06 20:13:17',35,'General',100.00,'USD',2,1,'civicrm_line_item',39), - (37,'2025-02-07 04:13:17','2025-02-06 20:13:17',36,'General',100.00,'USD',2,1,'civicrm_line_item',43), - (38,'2025-02-07 04:13:17','2025-02-06 20:13:17',44,'General',100.00,'USD',2,1,'civicrm_line_item',35), - (39,'2025-02-07 04:13:17','2025-02-06 20:13:17',48,'Student',50.00,'USD',2,1,'civicrm_line_item',54), - (40,'2025-02-07 04:13:17','2025-02-06 20:13:17',51,'Student',50.00,'USD',2,1,'civicrm_line_item',47), - (41,'2025-02-07 04:13:17','2025-02-06 20:13:17',65,'Student',50.00,'USD',2,1,'civicrm_line_item',57), - (42,'2025-02-07 04:13:17','2025-02-06 20:13:17',69,'General',100.00,'USD',2,1,'civicrm_line_item',34), - (43,'2025-02-07 04:13:17','2025-02-06 20:13:17',70,'General',100.00,'USD',2,1,'civicrm_line_item',33), - (44,'2025-02-07 04:13:17','2025-02-06 20:13:17',78,'Student',50.00,'USD',2,1,'civicrm_line_item',55), - (45,'2025-02-07 04:13:17','2025-02-06 20:13:17',97,'General',100.00,'USD',2,1,'civicrm_line_item',32), - (46,'2025-02-07 04:13:17','2025-02-06 20:13:17',107,'Student',50.00,'USD',2,1,'civicrm_line_item',50), - (47,'2025-02-07 04:13:17','2025-02-06 20:13:17',110,'Student',50.00,'USD',2,1,'civicrm_line_item',48), - (48,'2025-02-07 04:13:17','2025-02-06 20:13:17',111,'Student',50.00,'USD',2,1,'civicrm_line_item',49), - (49,'2025-02-07 04:13:17','2025-02-06 20:13:17',125,'Student',50.00,'USD',2,1,'civicrm_line_item',51), - (50,'2025-02-07 04:13:17','2025-02-06 20:13:17',127,'General',100.00,'USD',2,1,'civicrm_line_item',46), - (51,'2025-02-07 04:13:17','2025-02-06 20:13:17',138,'Student',50.00,'USD',2,1,'civicrm_line_item',56), - (52,'2025-02-07 04:13:17','2025-02-06 20:13:17',153,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), - (53,'2025-02-07 04:13:17','2025-02-06 20:13:17',156,'General',100.00,'USD',2,1,'civicrm_line_item',38), - (54,'2025-02-07 04:13:17','2025-02-06 20:13:17',157,'General',100.00,'USD',2,1,'civicrm_line_item',44), - (55,'2025-02-07 04:13:17','2025-02-06 20:13:17',177,'Student',50.00,'USD',2,1,'civicrm_line_item',52), - (56,'2025-02-07 04:13:17','2025-02-06 20:13:17',187,'General',100.00,'USD',2,1,'civicrm_line_item',45), - (57,'2025-02-07 04:13:17','2025-02-06 20:13:17',193,'General',100.00,'USD',2,1,'civicrm_line_item',41), - (58,'2025-02-07 04:13:17','2025-02-06 20:13:17',195,'Student',50.00,'USD',2,1,'civicrm_line_item',53), - (59,'2025-02-07 04:13:17','2025-02-06 20:13:17',197,'General',100.00,'USD',2,1,'civicrm_line_item',36), - (60,'2025-02-07 04:13:17','2025-02-06 20:13:17',199,'Student',50.00,'USD',2,1,'civicrm_line_item',59), - (61,'2025-02-07 04:13:17','2025-02-06 20:13:17',202,'Student',50.00,'USD',2,1,'civicrm_line_item',58), - (62,'2025-02-07 04:13:17','2025-02-06 20:13:17',166,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), - (63,'2025-02-07 04:13:17','2025-02-06 20:13:17',49,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), - (64,'2025-02-07 04:13:17','2025-02-06 20:13:17',170,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), - (65,'2025-02-07 04:13:17','2025-02-06 20:13:17',29,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), - (66,'2025-02-07 04:13:17','2025-02-06 20:13:17',32,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), - (67,'2025-02-07 04:13:17','2025-02-06 20:13:17',189,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), - (68,'2025-02-07 04:13:17','2025-02-06 20:13:17',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), - (69,'2025-02-07 04:13:17','2025-02-06 20:13:17',183,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), - (70,'2025-02-07 04:13:17','2025-02-06 20:13:17',70,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), - (71,'2025-02-07 04:13:17','2025-02-06 20:13:17',42,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), - (72,'2025-02-07 04:13:17','2025-02-06 20:13:17',193,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), - (73,'2025-02-07 04:13:17','2025-02-06 20:13:17',7,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), - (74,'2025-02-07 04:13:17','2025-02-06 20:13:17',84,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), - (75,'2025-02-07 04:13:17','2025-02-06 20:13:17',179,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), - (76,'2025-02-07 04:13:17','2025-02-06 20:13:17',1,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), - (77,'2025-02-07 04:13:17','2025-02-06 20:13:17',72,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), - (78,'2025-02-07 04:13:17','2025-02-06 20:13:17',25,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), - (79,'2025-02-07 04:13:17','2025-02-06 20:13:17',22,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), - (80,'2025-02-07 04:13:17','2025-02-06 20:13:17',191,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), - (81,'2025-02-07 04:13:17','2025-02-06 20:13:17',112,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), - (82,'2025-02-07 04:13:17','2025-02-06 20:13:17',164,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), - (83,'2025-02-07 04:13:17','2025-02-06 20:13:17',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), - (84,'2025-02-07 04:13:17','2025-02-06 20:13:17',60,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), - (85,'2025-02-07 04:13:17','2025-02-06 20:13:17',86,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), - (86,'2025-02-07 04:13:17','2025-02-06 20:13:17',161,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), - (87,'2025-02-07 04:13:17','2025-02-06 20:13:17',47,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), - (88,'2025-02-07 04:13:17','2025-02-06 20:13:17',186,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), - (89,'2025-02-07 04:13:17','2025-02-06 20:13:17',110,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), - (90,'2025-02-07 04:13:17','2025-02-06 20:13:17',64,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), - (91,'2025-02-07 04:13:17','2025-02-06 20:13:17',103,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), - (92,'2025-02-07 04:13:17','2025-02-06 20:13:17',184,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), - (93,'2025-02-07 04:13:17','2025-02-06 20:13:17',173,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), - (94,'2025-02-07 04:13:17','2025-02-06 20:13:17',132,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), - (95,'2025-02-07 04:13:17','2025-02-06 20:13:17',151,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), - (96,'2025-02-07 04:13:17','2025-02-06 20:13:17',134,'Single',50.00,'USD',4,1,'civicrm_line_item',81), - (97,'2025-02-07 04:13:17','2025-02-06 20:13:17',51,'Single',50.00,'USD',4,1,'civicrm_line_item',82), - (98,'2025-02-07 04:13:17','2025-02-06 20:13:17',144,'Single',50.00,'USD',4,1,'civicrm_line_item',83), - (99,'2025-02-07 04:13:17','2025-02-06 20:13:17',159,'Single',50.00,'USD',4,1,'civicrm_line_item',84), - (100,'2025-02-07 04:13:17','2025-02-06 20:13:17',136,'Single',50.00,'USD',4,1,'civicrm_line_item',85), - (101,'2025-02-07 04:13:17','2025-02-06 20:13:17',13,'Single',50.00,'USD',4,1,'civicrm_line_item',86), - (102,'2025-02-07 04:13:17','2025-02-06 20:13:17',198,'Single',50.00,'USD',4,1,'civicrm_line_item',87), - (103,'2025-02-07 04:13:17','2025-02-06 20:13:17',14,'Single',50.00,'USD',4,1,'civicrm_line_item',88), - (104,'2025-02-07 04:13:17','2025-02-06 20:13:17',30,'Single',50.00,'USD',4,1,'civicrm_line_item',89), - (105,'2025-02-07 04:13:17','2025-02-06 20:13:17',167,'Single',50.00,'USD',4,1,'civicrm_line_item',90), - (106,'2025-02-07 04:13:17','2025-02-06 20:13:17',150,'Single',50.00,'USD',4,1,'civicrm_line_item',91), - (107,'2025-02-07 04:13:17','2025-02-06 20:13:17',168,'Single',50.00,'USD',4,1,'civicrm_line_item',92), - (108,'2025-02-07 04:13:17','2025-02-06 20:13:17',149,'Single',50.00,'USD',4,1,'civicrm_line_item',93), - (109,'2025-02-07 04:13:17','2025-02-06 20:13:17',76,'Single',50.00,'USD',4,1,'civicrm_line_item',94), - (110,'2025-02-07 04:13:17','2025-02-06 20:13:17',127,'Single',50.00,'USD',4,1,'civicrm_line_item',95), - (111,'2025-02-07 04:13:17','2025-02-06 20:13:17',82,'Single',50.00,'USD',4,1,'civicrm_line_item',96); + (1,'2025-02-11 21:14:14','2015-02-11 21:14:13',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), +(2,'2025-02-11 21:14:14','2022-11-11 21:14:13',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), +(3,'2025-02-11 21:14:14','2019-01-17 08:14:13',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), +(4,'2025-02-11 21:14:14','2022-11-11 21:14:13',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), +(5,'2025-02-11 21:14:14','2022-11-11 21:14:13',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), +(6,'2025-02-11 21:14:14','2024-11-18 20:32:13',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), +(7,'2025-02-11 21:14:14','2025-02-09 21:14:13',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), +(8,'2025-02-11 21:14:14','2024-06-20 05:25:13',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), +(9,'2025-02-11 21:14:14','2024-03-11 21:14:13',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), +(10,'2025-02-11 21:14:14','2020-09-18 23:14:13',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), +(11,'2025-02-11 21:14:14','2025-02-10 17:14:13',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), +(12,'2025-02-11 21:14:14','2023-11-11 10:40:53',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), +(13,'2025-02-11 21:14:14','2024-11-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), +(14,'2025-02-11 21:14:14','2024-12-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), +(15,'2025-02-11 21:14:14','2023-11-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), +(16,'2025-02-11 21:14:14','2023-12-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), +(17,'2025-02-11 21:14:14','2024-01-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), +(18,'2025-02-11 21:14:14','2024-02-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), +(19,'2025-02-11 21:14:14','2024-03-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), +(20,'2025-02-11 21:14:14','2024-04-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), +(21,'2025-02-11 21:14:15','2024-05-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), +(22,'2025-02-11 21:14:15','2024-06-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), +(23,'2025-02-11 21:14:15','2024-07-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), +(24,'2025-02-11 21:14:15','2024-08-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), +(25,'2025-02-11 21:14:15','2024-09-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), +(26,'2025-02-11 21:14:15','2024-06-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), +(27,'2025-02-11 21:14:15','2024-07-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), +(28,'2025-02-11 21:14:15','2024-08-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), +(29,'2025-02-11 21:14:15','2024-09-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), +(30,'2025-02-11 21:14:15','2024-10-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), +(31,'2025-02-11 21:14:15','2025-01-11 21:14:13',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), +(32,'2025-02-11 21:14:15','2025-02-11 21:14:14',92,'General',100.00,'USD',2,1,'civicrm_line_item',32), +(33,'2025-02-11 21:14:15','2025-02-11 21:14:14',84,'General',100.00,'USD',2,1,'civicrm_line_item',33), +(34,'2025-02-11 21:14:15','2025-02-11 21:14:14',69,'General',100.00,'USD',2,1,'civicrm_line_item',34), +(35,'2025-02-11 21:14:15','2025-02-11 21:14:14',172,'General',100.00,'USD',2,1,'civicrm_line_item',35), +(36,'2025-02-11 21:14:15','2025-02-11 21:14:14',116,'General',100.00,'USD',2,1,'civicrm_line_item',36), +(37,'2025-02-11 21:14:15','2025-02-11 21:14:14',185,'General',100.00,'USD',2,1,'civicrm_line_item',37), +(38,'2025-02-11 21:14:15','2025-02-11 21:14:14',180,'General',100.00,'USD',2,1,'civicrm_line_item',38), +(39,'2025-02-11 21:14:15','2025-02-11 21:14:14',174,'General',100.00,'USD',2,1,'civicrm_line_item',39), +(40,'2025-02-11 21:14:15','2025-02-11 21:14:14',54,'General',100.00,'USD',2,1,'civicrm_line_item',40), +(41,'2025-02-11 21:14:15','2025-02-11 21:14:14',77,'General',100.00,'USD',2,1,'civicrm_line_item',41), +(42,'2025-02-11 21:14:15','2025-02-11 21:14:14',26,'General',100.00,'USD',2,1,'civicrm_line_item',42), +(43,'2025-02-11 21:14:15','2025-02-11 21:14:14',81,'General',100.00,'USD',2,1,'civicrm_line_item',43), +(44,'2025-02-11 21:14:15','2025-02-11 21:14:14',115,'General',100.00,'USD',2,1,'civicrm_line_item',44), +(45,'2025-02-11 21:14:15','2025-02-11 21:14:14',13,'General',100.00,'USD',2,1,'civicrm_line_item',45), +(46,'2025-02-11 21:14:15','2025-02-11 21:14:14',27,'General',100.00,'USD',2,1,'civicrm_line_item',46), +(47,'2025-02-11 21:14:15','2025-02-11 21:14:14',130,'General',100.00,'USD',2,1,'civicrm_line_item',47), +(48,'2025-02-11 21:14:15','2025-02-11 21:14:14',99,'Student',50.00,'USD',2,1,'civicrm_line_item',48), +(49,'2025-02-11 21:14:15','2025-02-11 21:14:14',160,'Student',50.00,'USD',2,1,'civicrm_line_item',49), +(50,'2025-02-11 21:14:15','2025-02-11 21:14:14',82,'Student',50.00,'USD',2,1,'civicrm_line_item',50), +(51,'2025-02-11 21:14:15','2025-02-11 21:14:14',189,'Student',50.00,'USD',2,1,'civicrm_line_item',51), +(52,'2025-02-11 21:14:15','2025-02-11 21:14:14',148,'Student',50.00,'USD',2,1,'civicrm_line_item',52), +(53,'2025-02-11 21:14:16','2025-02-11 21:14:14',117,'Student',50.00,'USD',2,1,'civicrm_line_item',53), +(54,'2025-02-11 21:14:16','2025-02-11 21:14:14',11,'Student',50.00,'USD',2,1,'civicrm_line_item',54), +(55,'2025-02-11 21:14:16','2025-02-11 21:14:14',100,'Student',50.00,'USD',2,1,'civicrm_line_item',55), +(56,'2025-02-11 21:14:16','2025-02-11 21:14:14',113,'Student',50.00,'USD',2,1,'civicrm_line_item',56), +(57,'2025-02-11 21:14:16','2025-02-11 21:14:14',88,'Student',50.00,'USD',2,1,'civicrm_line_item',57), +(58,'2025-02-11 21:14:16','2025-02-11 21:14:14',159,'Student',50.00,'USD',2,1,'civicrm_line_item',58), +(59,'2025-02-11 21:14:16','2025-02-11 21:14:14',141,'Student',50.00,'USD',2,1,'civicrm_line_item',59), +(60,'2025-02-11 21:14:16','2025-02-11 21:14:14',152,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), +(61,'2025-02-11 21:14:16','2025-02-11 21:14:14',19,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), +(62,'2025-02-11 21:14:16','2025-02-11 21:14:14',167,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), +(63,'2025-02-11 21:14:16','2025-02-11 21:14:14',149,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), +(64,'2025-02-11 21:14:16','2025-02-11 21:14:14',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), +(65,'2025-02-11 21:14:16','2025-02-11 21:14:14',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), +(66,'2025-02-11 21:14:16','2025-02-11 21:14:14',117,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), +(67,'2025-02-11 21:14:16','2025-02-11 21:14:14',186,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), +(68,'2025-02-11 21:14:16','2025-02-11 21:14:14',49,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), +(69,'2025-02-11 21:14:16','2025-02-11 21:14:14',30,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), +(70,'2025-02-11 21:14:16','2025-02-11 21:14:14',78,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), +(71,'2025-02-11 21:14:16','2025-02-11 21:14:14',190,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), +(72,'2025-02-11 21:14:16','2025-02-11 21:14:14',60,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), +(73,'2025-02-11 21:14:16','2025-02-11 21:14:14',34,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), +(74,'2025-02-11 21:14:16','2025-02-11 21:14:14',17,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), +(75,'2025-02-11 21:14:16','2025-02-11 21:14:14',148,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), +(76,'2025-02-11 21:14:16','2025-02-11 21:14:14',146,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), +(77,'2025-02-11 21:14:16','2025-02-11 21:14:14',37,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), +(78,'2025-02-11 21:14:16','2025-02-11 21:14:14',54,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), +(79,'2025-02-11 21:14:16','2025-02-11 21:14:14',113,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), +(80,'2025-02-11 21:14:16','2025-02-11 21:14:14',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), +(81,'2025-02-11 21:14:16','2025-02-11 21:14:14',163,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), +(82,'2025-02-11 21:14:16','2025-02-11 21:14:14',79,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), +(83,'2025-02-11 21:14:16','2025-02-11 21:14:14',45,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), +(84,'2025-02-11 21:14:16','2025-02-11 21:14:14',11,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), +(85,'2025-02-11 21:14:17','2025-02-11 21:14:14',152,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), +(86,'2025-02-11 21:14:17','2025-02-11 21:14:14',197,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), +(87,'2025-02-11 21:14:17','2025-02-11 21:14:14',184,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), +(88,'2025-02-11 21:14:17','2025-02-11 21:14:14',65,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), +(89,'2025-02-11 21:14:17','2025-02-11 21:14:14',5,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), +(90,'2025-02-11 21:14:17','2025-02-11 21:14:14',162,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), +(91,'2025-02-11 21:14:17','2025-02-11 21:14:14',87,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), +(92,'2025-02-11 21:14:17','2025-02-11 21:14:14',118,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), +(93,'2025-02-11 21:14:17','2025-02-11 21:14:14',181,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), +(94,'2025-02-11 21:14:17','2025-02-11 21:14:14',192,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), +(95,'2025-02-11 21:14:17','2025-02-11 21:14:14',6,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), +(96,'2025-02-11 21:14:17','2025-02-11 21:14:14',125,'Single',50.00,'USD',4,1,'civicrm_line_item',81), +(97,'2025-02-11 21:14:17','2025-02-11 21:14:14',129,'Single',50.00,'USD',4,1,'civicrm_line_item',82), +(98,'2025-02-11 21:14:17','2025-02-11 21:14:14',140,'Single',50.00,'USD',4,1,'civicrm_line_item',83), +(99,'2025-02-11 21:14:17','2025-02-11 21:14:14',137,'Single',50.00,'USD',4,1,'civicrm_line_item',84), +(100,'2025-02-11 21:14:17','2025-02-11 21:14:14',76,'Single',50.00,'USD',4,1,'civicrm_line_item',85), +(101,'2025-02-11 21:14:17','2025-02-11 21:14:14',20,'Single',50.00,'USD',4,1,'civicrm_line_item',86), +(102,'2025-02-11 21:14:17','2025-02-11 21:14:14',55,'Single',50.00,'USD',4,1,'civicrm_line_item',87), +(103,'2025-02-11 21:14:17','2025-02-11 21:14:14',180,'Single',50.00,'USD',4,1,'civicrm_line_item',88), +(104,'2025-02-11 21:14:17','2025-02-11 21:14:14',84,'Single',50.00,'USD',4,1,'civicrm_line_item',89), +(105,'2025-02-11 21:14:17','2025-02-11 21:14:14',194,'Single',50.00,'USD',4,1,'civicrm_line_item',90), +(106,'2025-02-11 21:14:17','2025-02-11 21:14:14',111,'Single',50.00,'USD',4,1,'civicrm_line_item',91), +(107,'2025-02-11 21:14:17','2025-02-11 21:14:14',13,'Single',50.00,'USD',4,1,'civicrm_line_item',92), +(108,'2025-02-11 21:14:17','2025-02-11 21:14:14',147,'Single',50.00,'USD',4,1,'civicrm_line_item',93), +(109,'2025-02-11 21:14:17','2025-02-11 21:14:14',64,'Single',50.00,'USD',4,1,'civicrm_line_item',94), +(110,'2025-02-11 21:14:17','2025-02-11 21:14:14',134,'Single',50.00,'USD',4,1,'civicrm_line_item',95), +(111,'2025-02-11 21:14:17','2025-02-11 21:14:14',110,'Single',50.00,'USD',4,1,'civicrm_line_item',96); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -3759,117 +3788,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`, `order_reference`) VALUES - (1,NULL,6,'2015-02-06 20:13:17',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), - (2,NULL,6,'2022-11-06 20:13:17',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (3,NULL,6,'2019-01-12 07:13:17',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), - (4,NULL,6,'2022-11-06 20:13:17',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), - (5,NULL,6,'2022-11-06 20:13:17',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (6,NULL,6,'2024-11-13 19:31:17',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), - (7,NULL,6,'2025-02-04 20:13:17',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), - (8,NULL,6,'2024-06-15 04:24:17',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (9,NULL,6,'2024-03-06 20:13:17',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (10,NULL,6,'2020-09-13 22:13:17',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (11,NULL,6,'2025-02-05 16:13:17',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (12,NULL,6,'2023-11-06 09:39:57',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (13,NULL,6,'2024-11-06 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (14,NULL,6,'2024-12-06 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (15,NULL,6,'2023-11-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (16,NULL,6,'2023-12-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (17,NULL,6,'2024-01-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (18,NULL,6,'2024-02-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (19,NULL,6,'2024-03-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (20,NULL,6,'2024-04-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (21,NULL,6,'2024-05-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (22,NULL,6,'2024-06-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (23,NULL,6,'2024-07-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (24,NULL,6,'2024-08-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (25,NULL,6,'2024-09-06 20:13:17',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (26,NULL,6,'2024-06-06 20:13:17',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (27,NULL,6,'2024-07-06 20:13:17',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (28,NULL,6,'2024-08-06 20:13:17',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (29,NULL,6,'2024-09-06 20:13:17',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (30,NULL,6,'2024-10-06 20:13:17',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (31,NULL,6,'2025-01-06 20:13:17',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (32,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'49878470ac123aa9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (33,NULL,6,'2025-02-06 20:13:17',1200.00,NULL,NULL,'USD',1,'d98248fa9a2aab2d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (34,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'8a518f8cde34c49c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (35,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'8f0054a232c7106e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (36,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'f658e9ff127fb049',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (37,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'04938feab9f03451',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (38,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'3efa96a6cec008d1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (39,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'e17965ec225fb03b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (40,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'56b4265aa7d54a7b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (41,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f7deacf00b4d6df2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (42,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'6e36caab13df46dc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (43,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'34d0652244affce1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (44,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'2df457b0bf0a5b60',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (45,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'872a75b9923d8c1d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (46,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f66ec5cd0d9a0fbc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (47,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'19f65c2e0105f78c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (48,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'e824488038f56075',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (49,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'fb07645011d4557b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (50,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'46b35710bfbd01e8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (51,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'3ce897d758ac181b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (52,NULL,6,'2025-02-06 20:13:17',1200.00,NULL,NULL,'USD',1,'f7b1dcc48300da38',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (53,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'9757353f6f019609',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (54,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'b47fb4cc038d6d6b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (55,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f19b40ba52023023',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (56,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'784d5a0d7a1b71ab',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (57,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'90f26225e705e509',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (58,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'3e501ab832d8637f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (59,NULL,6,'2025-02-06 20:13:17',100.00,NULL,NULL,'USD',1,'38aad2fb5d1b3c52',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (60,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'9866eed4625a2161',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (61,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'1080c9989d4ec02d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (62,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'90d682827677b0cf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (63,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'bb80398084ba5f7b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (64,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f04fbebb92681b29',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (65,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'9cfc6d00c2fe08e8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (66,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'b6720d7e09e82046',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (67,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'2f86ca454e8367b8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (68,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'87c6a8cf0098e3cd',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (69,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'e9ed805a3dce6b67',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (70,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'b34aec2b3cf29dd9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (71,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'9bbb954a34da447b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (72,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'7a8c3e678327008e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (73,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'6dcc00c2b85e3bd7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (74,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'3f27ff9e2c5d2d52',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (75,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'471684875d6ececf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (76,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f9509813b437e3d4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (77,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'e2d360f51e958944',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (78,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'bd07f14fa0a0e395',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (79,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'1a1fa2bf4b653373',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (80,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'e5a3bb6a7c7d94c4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (81,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'181a64155745e6d3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (82,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'2b0bc8f31de023b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (83,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'0dd4af0d0f3c95c4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (84,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'8090584051f6b5cd',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (85,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'c33e3b0136a2cca0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (86,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'0fe80f8a4e51ac35',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (87,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'95287e700e2f2a5a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (88,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'3b75a1c680be88f6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (89,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'cb3efcc0f6ecca45',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (90,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'fa942ee6214e9c8a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (91,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'d856f380cdeed8be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (92,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'ea80081cda10b046',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (93,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'176f1017ddf9eed7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (94,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'c31d01b410455349',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (95,NULL,6,'2025-02-06 20:13:17',800.00,NULL,NULL,'USD',1,'39f796dc7f237e53',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (96,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'720d7036088c768d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (97,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'2205e23d98e213eb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (98,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'642761ab9b1533c3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (99,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'05a9aefaabf3b0ef',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (100,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'7b3d76fe13424cb1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (101,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'8049bafecd510bb9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (102,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'40693f2083221d57',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (103,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'803407b62085da29',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (104,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'96c8a45568d19bd2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (105,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'8a58b47489afe8ed',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (106,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'9d4810381af95a96',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (107,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'f1f4f5263ee4741e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (108,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'c55a0b92b300ddbb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (109,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'8c362709d740c03b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (110,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'b426d5c25debecfb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (111,NULL,6,'2025-02-06 20:13:17',50.00,NULL,NULL,'USD',1,'1d82b44366dc8aec',NULL,1,NULL,1,NULL,NULL,NULL,NULL); + (1,NULL,6,'2015-02-11 21:14:13',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), +(2,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(3,NULL,6,'2019-01-17 08:14:13',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), +(4,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), +(5,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(6,NULL,6,'2024-11-18 20:32:13',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), +(7,NULL,6,'2025-02-09 21:14:13',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), +(8,NULL,6,'2024-06-20 05:25:13',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(9,NULL,6,'2024-03-11 21:14:13',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(10,NULL,6,'2020-09-18 23:14:13',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(11,NULL,6,'2025-02-10 17:14:13',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(12,NULL,6,'2023-11-11 10:40:53',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(13,NULL,6,'2024-11-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(14,NULL,6,'2024-12-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(15,NULL,6,'2023-11-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(16,NULL,6,'2023-12-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(17,NULL,6,'2024-01-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(18,NULL,6,'2024-02-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(19,NULL,6,'2024-03-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(20,NULL,6,'2024-04-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(21,NULL,6,'2024-05-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(22,NULL,6,'2024-06-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(23,NULL,6,'2024-07-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(24,NULL,6,'2024-08-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(25,NULL,6,'2024-09-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(26,NULL,6,'2024-06-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(27,NULL,6,'2024-07-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(28,NULL,6,'2024-08-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(29,NULL,6,'2024-09-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(30,NULL,6,'2024-10-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(31,NULL,6,'2025-01-11 21:14:13',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(32,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'30b21218d4f608be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(33,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'574b9165dd1b2b08',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(34,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'023af7d0c7f31b8a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(35,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'62d9ef9ccc062221',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(36,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'7d6fcd38d448304e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(37,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'f5358baca286095a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(38,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'1d0bcce5e3098071',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(39,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'54ef2704f518b5f4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(40,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'525936f76eaded41',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(41,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'5c82b9195bb60c1c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(42,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'aba9c3f3571c72df',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(43,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'70a25e1a224d8953',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(44,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'89c796b13ba0d28a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(45,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'c4bb26bafd34a7ec',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(46,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'f8ea0147caf88d9e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(47,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'76a4f2862289bedc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(48,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'0dedfa09e891438f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(49,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2a38f7756033f606',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(50,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'33d7025c877837f5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(51,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'02389d9d955ce089',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(52,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c9e18530302548b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(53,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'202a92329ecef77e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(54,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2f4c60965320af89',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(55,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c9863526e83a76ec',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(56,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'062f7ed8d280446a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(57,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'380fc034c1ac7e2b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(58,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'6c1d7a100734c442',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(59,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'56d62e4b8de9e019',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(60,NULL,6,'2025-02-11 21:14:14',1200.00,NULL,NULL,'USD',1,'e62ae07fa55fd663',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(61,NULL,6,'2025-02-11 21:14:14',1200.00,NULL,NULL,'USD',1,'7709afa3e698eda0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(62,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'ccf97b109357b8f2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(63,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c133f13ab6e644aa',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(64,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'e5221b71be93c59f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(65,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3cddfd1a376b75ce',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(66,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c307954cba953250',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(67,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3b8c6753e607caae',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(68,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'f03674f7ee9a296a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(69,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'992368ca700244de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(70,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'38500eff4fe4f408',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(71,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3f6751e063aad61c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(72,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'256b383f905d7f60',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(73,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'629be821c1050c28',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(74,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'4b07755fa1f5b062',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(75,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'74f57f05ebb364d9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(76,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'82bfc16353bc11d8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(77,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'5e96e6ad3e4d7931',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(78,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'2fcbf2346f509f8c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(79,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'ec883bafea47f002',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(80,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'d469814944d49bf7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(81,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'0778baf13b378795',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(82,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'c5cf79c1a1a9724a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(83,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'275ea22fdba62972',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(84,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'2f9e0ac0e64b7838',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(85,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'80ad0bf6b7a42de0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(86,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'65cf28ebef7101d8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(87,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'6465ecbfbea93628',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(88,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'c4495379ed6eb080',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(89,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'6d6c3146a0f2ca2c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(90,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'1f351b2a90f13441',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(91,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'94e75bfe88b77a1e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(92,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'a04031766e066125',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(93,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'36a0f24d2a86c4be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(94,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'5d53c4a3409d0fb3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(95,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'f4718d011de18df0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(96,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'ef4386a7d7349d5b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(97,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'0991cc36c28c5183',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(98,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7b1b12afc904a2bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(99,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'25efeb195a2226c5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(100,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'634616b413dda509',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(101,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'fe91541ab3ac36bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(102,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7cfc64c19ce2e710',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(103,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7c4356899190cbe5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(104,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'4448ab608fdcf5b8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(105,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'8d80f80d5f271482',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(106,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'968db382c346785b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(107,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7d686602d215ef51',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(108,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'8e591a74e7bfcc1b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(109,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2630868a771db2c8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(110,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'27547f8765679bba',NULL,1,NULL,1,NULL,NULL,NULL,NULL), +(111,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'e9e138a2d12808b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -3881,9 +3910,9 @@ LOCK TABLES `civicrm_financial_type` WRITE; /*!40000 ALTER TABLE `civicrm_financial_type` DISABLE KEYS */; INSERT INTO `civicrm_financial_type` (`id`, `name`, `label`, `description`, `is_deductible`, `is_reserved`, `is_active`) VALUES (1,'Donation','Donation',NULL,1,0,1), - (2,'Member Dues','Member Dues',NULL,1,0,1), - (3,'Campaign Contribution','Campaign Contribution',NULL,0,0,1), - (4,'Event Fee','Event Fee',NULL,0,0,1); +(2,'Member Dues','Member Dues',NULL,1,0,1), +(3,'Campaign Contribution','Campaign Contribution',NULL,0,0,1), +(4,'Event Fee','Event Fee',NULL,0,0,1); /*!40000 ALTER TABLE `civicrm_financial_type` ENABLE KEYS */; UNLOCK TABLES; @@ -3895,9 +3924,9 @@ LOCK TABLES `civicrm_group` WRITE; /*!40000 ALTER TABLE `civicrm_group` DISABLE KEYS */; INSERT INTO `civicrm_group` (`id`, `name`, `title`, `description`, `source`, `saved_search_id`, `is_active`, `visibility`, `where_clause`, `select_tables`, `where_tables`, `group_type`, `cache_date`, `cache_fill_took`, `refresh_date`, `parents`, `children`, `is_hidden`, `is_reserved`, `created_id`, `modified_id`, `frontend_title`, `frontend_description`) VALUES (1,'Administrators','Administrators','Contacts in this group are assigned Administrator role permissions.',NULL,NULL,1,'User and User Admin Only',NULL,NULL,NULL,'1',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Administrators',''), - (2,'Newsletter Subscribers','Newsletter Subscribers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Newsletter Subscribers',NULL), - (3,'Summer Program Volunteers','Summer Program Volunteers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Summer Program Volunteers',NULL), - (4,'Advisory Board','Advisory Board',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Advisory Board',NULL); +(2,'Newsletter Subscribers','Newsletter Subscribers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Newsletter Subscribers',NULL), +(3,'Summer Program Volunteers','Summer Program Volunteers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Summer Program Volunteers',NULL), +(4,'Advisory Board','Advisory Board',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Advisory Board',NULL); /*!40000 ALTER TABLE `civicrm_group` ENABLE KEYS */; UNLOCK TABLES; @@ -3908,90 +3937,90 @@ UNLOCK TABLES; LOCK TABLES `civicrm_group_contact` WRITE; /*!40000 ALTER TABLE `civicrm_group_contact` DISABLE KEYS */; INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES - (1,2,40,'Added',NULL,NULL), - (2,2,84,'Added',NULL,NULL), - (3,2,191,'Added',NULL,NULL), - (4,2,101,'Added',NULL,NULL), - (5,2,121,'Added',NULL,NULL), - (6,2,153,'Added',NULL,NULL), - (7,2,11,'Added',NULL,NULL), - (8,2,147,'Added',NULL,NULL), - (9,2,181,'Added',NULL,NULL), - (10,2,182,'Added',NULL,NULL), - (11,2,86,'Added',NULL,NULL), - (12,2,53,'Added',NULL,NULL), - (13,2,4,'Added',NULL,NULL), - (14,2,98,'Added',NULL,NULL), - (15,2,195,'Added',NULL,NULL), - (16,2,172,'Added',NULL,NULL), - (17,2,109,'Added',NULL,NULL), - (18,2,136,'Added',NULL,NULL), - (19,2,108,'Added',NULL,NULL), - (20,2,95,'Added',NULL,NULL), - (21,2,58,'Added',NULL,NULL), - (22,2,21,'Added',NULL,NULL), - (23,2,5,'Added',NULL,NULL), - (24,2,139,'Added',NULL,NULL), - (25,2,76,'Added',NULL,NULL), - (26,2,7,'Added',NULL,NULL), - (27,2,106,'Added',NULL,NULL), - (28,2,43,'Added',NULL,NULL), - (29,2,179,'Added',NULL,NULL), - (30,2,10,'Added',NULL,NULL), - (31,2,39,'Added',NULL,NULL), - (32,2,51,'Added',NULL,NULL), - (33,2,134,'Added',NULL,NULL), - (34,2,128,'Added',NULL,NULL), - (35,2,105,'Added',NULL,NULL), - (36,2,158,'Added',NULL,NULL), - (37,2,19,'Added',NULL,NULL), - (38,2,143,'Added',NULL,NULL), - (39,2,114,'Added',NULL,NULL), - (40,2,92,'Added',NULL,NULL), - (41,2,70,'Added',NULL,NULL), - (42,2,164,'Added',NULL,NULL), - (43,2,174,'Added',NULL,NULL), - (44,2,186,'Added',NULL,NULL), - (45,2,99,'Added',NULL,NULL), - (46,2,52,'Added',NULL,NULL), - (47,2,24,'Added',NULL,NULL), - (48,2,138,'Added',NULL,NULL), - (49,2,14,'Added',NULL,NULL), - (50,2,196,'Added',NULL,NULL), - (51,2,166,'Added',NULL,NULL), - (52,2,156,'Added',NULL,NULL), - (53,2,73,'Added',NULL,NULL), - (54,2,149,'Added',NULL,NULL), - (55,2,113,'Added',NULL,NULL), - (56,2,93,'Added',NULL,NULL), - (57,2,175,'Added',NULL,NULL), - (58,2,152,'Added',NULL,NULL), - (59,2,131,'Added',NULL,NULL), - (60,2,72,'Added',NULL,NULL), - (61,3,13,'Added',NULL,NULL), - (62,3,155,'Added',NULL,NULL), - (63,3,117,'Added',NULL,NULL), - (64,3,37,'Added',NULL,NULL), - (65,3,64,'Added',NULL,NULL), - (66,3,80,'Added',NULL,NULL), - (67,3,110,'Added',NULL,NULL), - (68,3,130,'Added',NULL,NULL), - (69,3,23,'Added',NULL,NULL), - (70,3,2,'Added',NULL,NULL), - (71,3,54,'Added',NULL,NULL), - (72,3,78,'Added',NULL,NULL), - (73,3,69,'Added',NULL,NULL), - (74,3,145,'Added',NULL,NULL), - (75,3,162,'Added',NULL,NULL), - (76,4,40,'Added',NULL,NULL), - (77,4,147,'Added',NULL,NULL), - (78,4,195,'Added',NULL,NULL), - (79,4,21,'Added',NULL,NULL), - (80,4,179,'Added',NULL,NULL), - (81,4,158,'Added',NULL,NULL), - (82,4,174,'Added',NULL,NULL), - (83,4,196,'Added',NULL,NULL), - (84,4,202,'Added',NULL,NULL); + (1,2,147,'Added',NULL,NULL), +(2,2,198,'Added',NULL,NULL), +(3,2,182,'Added',NULL,NULL), +(4,2,123,'Added',NULL,NULL), +(5,2,192,'Added',NULL,NULL), +(6,2,72,'Added',NULL,NULL), +(7,2,96,'Added',NULL,NULL), +(8,2,18,'Added',NULL,NULL), +(9,2,97,'Added',NULL,NULL), +(10,2,159,'Added',NULL,NULL), +(11,2,13,'Added',NULL,NULL), +(12,2,84,'Added',NULL,NULL), +(13,2,24,'Added',NULL,NULL), +(14,2,66,'Added',NULL,NULL), +(15,2,4,'Added',NULL,NULL), +(16,2,154,'Added',NULL,NULL), +(17,2,23,'Added',NULL,NULL), +(18,2,17,'Added',NULL,NULL), +(19,2,64,'Added',NULL,NULL), +(20,2,133,'Added',NULL,NULL), +(21,2,172,'Added',NULL,NULL), +(22,2,61,'Added',NULL,NULL), +(23,2,59,'Added',NULL,NULL), +(24,2,151,'Added',NULL,NULL), +(25,2,121,'Added',NULL,NULL), +(26,2,70,'Added',NULL,NULL), +(27,2,79,'Added',NULL,NULL), +(28,2,187,'Added',NULL,NULL), +(29,2,153,'Added',NULL,NULL), +(30,2,7,'Added',NULL,NULL), +(31,2,25,'Added',NULL,NULL), +(32,2,9,'Added',NULL,NULL), +(33,2,95,'Added',NULL,NULL), +(34,2,189,'Added',NULL,NULL), +(35,2,146,'Added',NULL,NULL), +(36,2,145,'Added',NULL,NULL), +(37,2,186,'Added',NULL,NULL), +(38,2,99,'Added',NULL,NULL), +(39,2,185,'Added',NULL,NULL), +(40,2,125,'Added',NULL,NULL), +(41,2,132,'Added',NULL,NULL), +(42,2,170,'Added',NULL,NULL), +(43,2,184,'Added',NULL,NULL), +(44,2,86,'Added',NULL,NULL), +(45,2,163,'Added',NULL,NULL), +(46,2,107,'Added',NULL,NULL), +(47,2,10,'Added',NULL,NULL), +(48,2,126,'Added',NULL,NULL), +(49,2,93,'Added',NULL,NULL), +(50,2,27,'Added',NULL,NULL), +(51,2,71,'Added',NULL,NULL), +(52,2,69,'Added',NULL,NULL), +(53,2,108,'Added',NULL,NULL), +(54,2,62,'Added',NULL,NULL), +(55,2,81,'Added',NULL,NULL), +(56,2,45,'Added',NULL,NULL), +(57,2,148,'Added',NULL,NULL), +(58,2,128,'Added',NULL,NULL), +(59,2,179,'Added',NULL,NULL), +(60,2,37,'Added',NULL,NULL), +(61,3,85,'Added',NULL,NULL), +(62,3,5,'Added',NULL,NULL), +(63,3,63,'Added',NULL,NULL), +(64,3,106,'Added',NULL,NULL), +(65,3,150,'Added',NULL,NULL), +(66,3,200,'Added',NULL,NULL), +(67,3,177,'Added',NULL,NULL), +(68,3,166,'Added',NULL,NULL), +(69,3,193,'Added',NULL,NULL), +(70,3,39,'Added',NULL,NULL), +(71,3,143,'Added',NULL,NULL), +(72,3,52,'Added',NULL,NULL), +(73,3,77,'Added',NULL,NULL), +(74,3,139,'Added',NULL,NULL), +(75,3,32,'Added',NULL,NULL), +(76,4,147,'Added',NULL,NULL), +(77,4,18,'Added',NULL,NULL), +(78,4,4,'Added',NULL,NULL), +(79,4,61,'Added',NULL,NULL), +(80,4,153,'Added',NULL,NULL), +(81,4,145,'Added',NULL,NULL), +(82,4,184,'Added',NULL,NULL), +(83,4,27,'Added',NULL,NULL), +(84,4,202,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -4039,26 +4068,26 @@ LOCK TABLES `civicrm_job` WRITE; /*!40000 ALTER TABLE `civicrm_job` DISABLE KEYS */; INSERT INTO `civicrm_job` (`id`, `domain_id`, `run_frequency`, `last_run`, `last_run_end`, `scheduled_run_date`, `name`, `description`, `api_entity`, `api_action`, `parameters`, `is_active`) VALUES (1,1,'Daily',NULL,NULL,NULL,'CiviCRM Update Check','Checks for version updates. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_version_check','Job','version_check',NULL,1), - (2,1,'Always',NULL,NULL,NULL,'Send Scheduled Mailings','Sends out scheduled mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_mailing','Job','process_mailing',NULL,0), - (3,1,'Hourly',NULL,NULL,NULL,'Fetch Bounces','Fetches bounces from mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_bounces','Job','fetch_bounces','is_create_activities=0',0), - (4,1,'Hourly',NULL,NULL,NULL,'Process Inbound Emails','Inserts activity for a contact or a case by retrieving inbound emails. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_activities','Job','fetch_activities',NULL,0), - (5,1,'Daily',NULL,NULL,NULL,'Process Pledges','Updates pledge records and sends out reminders. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_pledge','Job','process_pledge','send_reminders=0',0), - (6,1,'Daily',NULL,NULL,NULL,'Geocode and Parse Addresses','Geocodes and/or parses street addresses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_geocode','Job','geocode','geocoding=1\n parse=0\n throttle=0',0), - (7,1,'Daily',NULL,NULL,NULL,'Update Individual Email Greeting','Update Individual Email Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=email_greeting',0), - (8,1,'Daily',NULL,NULL,NULL,'Update Individual Postal Greeting','Update Individual Postal Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=postal_greeting',0), - (9,1,'Daily',NULL,NULL,NULL,'Update Individual Addressee','Update Individual Addressee. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=addressee',0), - (10,1,'Daily',NULL,NULL,NULL,'Mail Reports','Generates and sends out reports via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_mail_report','Job','mail_report','',0), - (11,1,'Hourly',NULL,NULL,NULL,'Send Scheduled Reminders','Sends out scheduled reminders via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_send_reminder','Job','send_reminder',NULL,0), - (12,1,'Always',NULL,NULL,NULL,'Update Participant Statuses','Updates pending event participant statuses based on time. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_participant','Job','process_participant',NULL,0), - (13,1,'Daily',NULL,NULL,NULL,'Update Membership Statuses','Updates membership statuses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_membership','Job','process_membership',NULL,0), - (14,1,'Always',NULL,NULL,NULL,'Process Survey Respondents','Releases reserved survey respondents. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_respondent','Job','process_respondent',NULL,0), - (15,1,'Monthly',NULL,NULL,NULL,'Clean-up Temporary Data and Files','Removes temporary data and files. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_cleanup','Job','cleanup','session=0',0), - (16,1,'Always',NULL,NULL,NULL,'Send Scheduled SMS','Sends out scheduled SMS. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_sms','Job','process_sms',NULL,0), - (17,1,'Hourly',NULL,NULL,NULL,'Rebuild Smart Group Cache','Rebuilds the smart group cache. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_rebuild','Job','group_rebuild','limit=0',0), - (18,1,'Hourly',NULL,NULL,NULL,'Group Cache Flush','Purges aged smart group cache data. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_cache_flush','Job','group_cache_flush','',0), - (19,1,'Daily',NULL,NULL,NULL,'Disable expired relationships','Disables relationships that have expired. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_disable_expired_relationships','Job','disable_expired_relationships',NULL,0), - (20,1,'Daily',NULL,NULL,NULL,'Validate Email Address from Mailings.','Updates the reset_date on an email address. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#mailing_update_email_resetdate','Mailing','update_email_resetdate','minDays=5\n maxDays=60',0), - (21,1,'Daily',NULL,NULL,NULL,'Dedupe Contacts','Executes the Individual, Unsupervised redupe rule. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_batch_merge','Job','process_batch_merge',NULL,0); +(2,1,'Always',NULL,NULL,NULL,'Send Scheduled Mailings','Sends out scheduled mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_mailing','Job','process_mailing',NULL,0), +(3,1,'Hourly',NULL,NULL,NULL,'Fetch Bounces','Fetches bounces from mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_bounces','Job','fetch_bounces','is_create_activities=0',0), +(4,1,'Hourly',NULL,NULL,NULL,'Process Inbound Emails','Inserts activity for a contact or a case by retrieving inbound emails. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_activities','Job','fetch_activities',NULL,0), +(5,1,'Daily',NULL,NULL,NULL,'Process Pledges','Updates pledge records and sends out reminders. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_pledge','Job','process_pledge','send_reminders=0',0), +(6,1,'Daily',NULL,NULL,NULL,'Geocode and Parse Addresses','Geocodes and/or parses street addresses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_geocode','Job','geocode','geocoding=1\n parse=0\n throttle=0',0), +(7,1,'Daily',NULL,NULL,NULL,'Update Individual Email Greeting','Update Individual Email Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=email_greeting',0), +(8,1,'Daily',NULL,NULL,NULL,'Update Individual Postal Greeting','Update Individual Postal Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=postal_greeting',0), +(9,1,'Daily',NULL,NULL,NULL,'Update Individual Addressee','Update Individual Addressee. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=addressee',0), +(10,1,'Daily',NULL,NULL,NULL,'Mail Reports','Generates and sends out reports via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_mail_report','Job','mail_report','',0), +(11,1,'Hourly',NULL,NULL,NULL,'Send Scheduled Reminders','Sends out scheduled reminders via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_send_reminder','Job','send_reminder',NULL,0), +(12,1,'Always',NULL,NULL,NULL,'Update Participant Statuses','Updates pending event participant statuses based on time. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_participant','Job','process_participant',NULL,0), +(13,1,'Daily',NULL,NULL,NULL,'Update Membership Statuses','Updates membership statuses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_membership','Job','process_membership',NULL,0), +(14,1,'Always',NULL,NULL,NULL,'Process Survey Respondents','Releases reserved survey respondents. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_respondent','Job','process_respondent',NULL,0), +(15,1,'Monthly',NULL,NULL,NULL,'Clean-up Temporary Data and Files','Removes temporary data and files. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_cleanup','Job','cleanup','session=0',0), +(16,1,'Always',NULL,NULL,NULL,'Send Scheduled SMS','Sends out scheduled SMS. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_sms','Job','process_sms',NULL,0), +(17,1,'Hourly',NULL,NULL,NULL,'Rebuild Smart Group Cache','Rebuilds the smart group cache. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_rebuild','Job','group_rebuild','limit=0',0), +(18,1,'Hourly',NULL,NULL,NULL,'Group Cache Flush','Purges aged smart group cache data. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_cache_flush','Job','group_cache_flush','',0), +(19,1,'Daily',NULL,NULL,NULL,'Disable expired relationships','Disables relationships that have expired. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_disable_expired_relationships','Job','disable_expired_relationships',NULL,0), +(20,1,'Daily',NULL,NULL,NULL,'Validate Email Address from Mailings.','Updates the reset_date on an email address. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#mailing_update_email_resetdate','Mailing','update_email_resetdate','minDays=5\n maxDays=60',0), +(21,1,'Daily',NULL,NULL,NULL,'Dedupe Contacts','Executes the Individual, Unsupervised redupe rule. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_batch_merge','Job','process_batch_merge',NULL,0); /*!40000 ALTER TABLE `civicrm_job` ENABLE KEYS */; UNLOCK TABLES; @@ -4079,116 +4108,116 @@ LOCK TABLES `civicrm_line_item` WRITE; /*!40000 ALTER TABLE `civicrm_line_item` DISABLE KEYS */; INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `non_deductible_amount`, `tax_amount`, `membership_num_terms`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,0.00,NULL), - (2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), - (7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,1750.00,1750.00,0,1,1,0.00,0.00,NULL), - (8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,0.00,NULL), - (11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), - (12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (14,'civicrm_contribution',14,14,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), - (15,'civicrm_contribution',15,15,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (16,'civicrm_contribution',16,16,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (17,'civicrm_contribution',17,17,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (18,'civicrm_contribution',18,18,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (19,'civicrm_contribution',19,19,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (20,'civicrm_contribution',20,20,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (21,'civicrm_contribution',21,21,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (22,'civicrm_contribution',22,22,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (23,'civicrm_contribution',23,23,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (24,'civicrm_contribution',24,24,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (25,'civicrm_contribution',25,25,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), - (26,'civicrm_contribution',26,26,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (27,'civicrm_contribution',27,27,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (28,'civicrm_contribution',28,28,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (29,'civicrm_contribution',29,29,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (30,'civicrm_contribution',30,30,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), - (31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,0.00,NULL), - (32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (33,'civicrm_membership',3,33,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (34,'civicrm_membership',7,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (35,'civicrm_membership',9,35,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (36,'civicrm_membership',10,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (37,'civicrm_membership',13,37,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (38,'civicrm_membership',15,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (39,'civicrm_membership',17,39,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (40,'civicrm_membership',19,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (41,'civicrm_membership',20,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (42,'civicrm_membership',21,42,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (43,'civicrm_membership',23,43,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (44,'civicrm_membership',25,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (45,'civicrm_membership',27,45,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (46,'civicrm_membership',29,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), - (47,'civicrm_membership',2,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (48,'civicrm_membership',4,48,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (49,'civicrm_membership',5,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (50,'civicrm_membership',6,50,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (51,'civicrm_membership',8,51,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (52,'civicrm_membership',12,52,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (53,'civicrm_membership',14,53,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (54,'civicrm_membership',16,54,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (55,'civicrm_membership',18,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (56,'civicrm_membership',24,56,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (57,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (58,'civicrm_membership',28,58,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (59,'civicrm_membership',30,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), - (60,'civicrm_membership',11,60,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), - (61,'civicrm_membership',22,61,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), - (63,'civicrm_participant',3,68,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (64,'civicrm_participant',6,67,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (65,'civicrm_participant',9,110,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (66,'civicrm_participant',12,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (67,'civicrm_participant',15,99,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (68,'civicrm_participant',18,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (69,'civicrm_participant',21,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (70,'civicrm_participant',24,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (71,'civicrm_participant',25,98,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (72,'civicrm_participant',28,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (73,'civicrm_participant',31,108,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (74,'civicrm_participant',34,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (75,'civicrm_participant',37,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (76,'civicrm_participant',40,84,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (77,'civicrm_participant',43,107,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (78,'civicrm_participant',46,104,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (79,'civicrm_participant',49,89,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (80,'civicrm_participant',50,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), - (81,'civicrm_participant',1,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (82,'civicrm_participant',4,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (83,'civicrm_participant',7,93,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (84,'civicrm_participant',10,97,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (85,'civicrm_participant',13,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (86,'civicrm_participant',16,65,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (87,'civicrm_participant',19,112,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (88,'civicrm_participant',22,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (89,'civicrm_participant',26,70,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (90,'civicrm_participant',29,101,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (91,'civicrm_participant',32,95,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (92,'civicrm_participant',35,102,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (93,'civicrm_participant',38,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (94,'civicrm_participant',41,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (95,'civicrm_participant',44,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (96,'civicrm_participant',47,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), - (97,'civicrm_participant',2,100,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (98,'civicrm_participant',5,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (99,'civicrm_participant',8,103,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (100,'civicrm_participant',11,69,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (101,'civicrm_participant',14,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (102,'civicrm_participant',17,109,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (103,'civicrm_participant',20,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (104,'civicrm_participant',23,106,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (105,'civicrm_participant',27,78,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (106,'civicrm_participant',30,72,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (107,'civicrm_participant',33,111,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (108,'civicrm_participant',36,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (109,'civicrm_participant',39,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (110,'civicrm_participant',42,105,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (111,'civicrm_participant',45,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), - (112,'civicrm_participant',48,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL); +(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), +(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,1750.00,1750.00,0,1,1,0.00,0.00,NULL), +(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,0.00,NULL), +(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), +(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(14,'civicrm_contribution',14,14,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), +(15,'civicrm_contribution',15,15,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(16,'civicrm_contribution',16,16,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(17,'civicrm_contribution',17,17,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(18,'civicrm_contribution',18,18,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(19,'civicrm_contribution',19,19,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(20,'civicrm_contribution',20,20,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(21,'civicrm_contribution',21,21,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(22,'civicrm_contribution',22,22,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(23,'civicrm_contribution',23,23,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(24,'civicrm_contribution',24,24,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(25,'civicrm_contribution',25,25,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), +(26,'civicrm_contribution',26,26,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(27,'civicrm_contribution',27,27,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(28,'civicrm_contribution',28,28,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(29,'civicrm_contribution',29,29,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(30,'civicrm_contribution',30,30,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), +(31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,0.00,NULL), +(32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(33,'civicrm_membership',3,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(34,'civicrm_membership',5,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(35,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(36,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(37,'civicrm_membership',10,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(38,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(39,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(40,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(41,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(42,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(43,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(44,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(45,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(46,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(47,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), +(48,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(49,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(50,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(51,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(52,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(53,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(54,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(55,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(56,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(57,'civicrm_membership',25,56,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(58,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(59,'civicrm_membership',28,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), +(60,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), +(61,'civicrm_membership',22,53,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), +(63,'civicrm_participant',3,75,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(64,'civicrm_participant',6,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(65,'civicrm_participant',9,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(66,'civicrm_participant',12,103,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(67,'civicrm_participant',15,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(68,'civicrm_participant',18,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(69,'civicrm_participant',21,65,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(70,'civicrm_participant',24,101,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(71,'civicrm_participant',25,112,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(72,'civicrm_participant',28,107,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(73,'civicrm_participant',31,79,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(74,'civicrm_participant',34,63,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(75,'civicrm_participant',37,102,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(76,'civicrm_participant',40,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(77,'civicrm_participant',43,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(78,'civicrm_participant',46,106,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(79,'civicrm_participant',49,110,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(80,'civicrm_participant',50,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), +(81,'civicrm_participant',1,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(82,'civicrm_participant',4,92,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(83,'civicrm_participant',7,96,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(84,'civicrm_participant',10,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(85,'civicrm_participant',13,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(86,'civicrm_participant',16,68,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(87,'civicrm_participant',19,76,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(88,'civicrm_participant',22,105,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(89,'civicrm_participant',26,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(90,'civicrm_participant',29,111,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(91,'civicrm_participant',32,87,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(92,'civicrm_participant',35,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(93,'civicrm_participant',38,98,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(94,'civicrm_participant',41,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(95,'civicrm_participant',44,93,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(96,'civicrm_participant',47,86,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), +(97,'civicrm_participant',2,104,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(98,'civicrm_participant',5,100,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(99,'civicrm_participant',8,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(100,'civicrm_participant',11,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(101,'civicrm_participant',14,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(102,'civicrm_participant',17,108,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(103,'civicrm_participant',20,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(104,'civicrm_participant',23,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(105,'civicrm_participant',27,81,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(106,'civicrm_participant',30,109,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(107,'civicrm_participant',33,77,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(108,'civicrm_participant',36,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(109,'civicrm_participant',39,67,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(110,'civicrm_participant',42,99,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(111,'civicrm_participant',45,97,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), +(112,'civicrm_participant',48,72,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -4199,9 +4228,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_loc_block` WRITE; /*!40000 ALTER TABLE `civicrm_loc_block` DISABLE KEYS */; INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES - (1,187,187,143,NULL,NULL,NULL,NULL,NULL), - (2,188,188,144,NULL,NULL,NULL,NULL,NULL), - (3,189,189,145,NULL,NULL,NULL,NULL,NULL); + (1,180,204,162,NULL,NULL,NULL,NULL,NULL), +(2,181,205,163,NULL,NULL,NULL,NULL,NULL), +(3,182,206,164,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -4213,10 +4242,10 @@ LOCK TABLES `civicrm_location_type` WRITE; /*!40000 ALTER TABLE `civicrm_location_type` DISABLE KEYS */; INSERT INTO `civicrm_location_type` (`id`, `name`, `display_name`, `vcard_name`, `description`, `is_reserved`, `is_active`, `is_default`) VALUES (1,'Home','Home','HOME','Place of residence',0,1,1), - (2,'Work','Work','WORK','Work location',0,1,0), - (3,'Main','Main',NULL,'Main office location',0,1,0), - (4,'Other','Other',NULL,'Other location',0,1,0), - (5,'Billing','Billing',NULL,'Billing Address location',1,1,0); +(2,'Work','Work','WORK','Work location',0,1,0), +(3,'Main','Main',NULL,'Main office location',0,1,0), +(4,'Other','Other',NULL,'Other location',0,1,0), +(5,'Billing','Billing',NULL,'Billing Address location',1,1,0); /*!40000 ALTER TABLE `civicrm_location_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4227,7 +4256,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_log` WRITE; /*!40000 ALTER TABLE `civicrm_log` DISABLE KEYS */; INSERT INTO `civicrm_log` (`id`, `entity_table`, `entity_id`, `data`, `modified_id`, `modified_date`) VALUES - (1,'civicrm_contact',202,'civicrm_contact,202',202,'2025-02-06 20:13:16'); + (1,'civicrm_contact',202,'civicrm_contact,202',202,'2025-02-11 21:14:07'); /*!40000 ALTER TABLE `civicrm_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4268,170 +4297,170 @@ LOCK TABLES `civicrm_mailing_bounce_pattern` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_bounce_pattern` DISABLE KEYS */; INSERT INTO `civicrm_mailing_bounce_pattern` (`id`, `bounce_type_id`, `pattern`) VALUES (1,1,'Client TOS Notification'), - (2,2,'(be|am)? (out of|away from) (the|my)? (office|computer|town)'), - (3,2,'i am on vacation'), - (4,3,'name(server entry| lookup failure)'), - (5,3,'no (mail server|matches to nameserver query|dns entries)'), - (6,3,'reverse dns entry'), - (7,3,'Host or domain name not found'), - (8,3,'Unable to resolve MX record for'), - (9,4,'(unknown|not local) host'), - (10,4,'all hosts have been failing'), - (11,4,'allowed rcpthosts'), - (12,4,'connection (refused|timed out)'), - (13,4,'not connected'), - (14,4,'couldn\'t find any host named'), - (15,4,'error involving remote host'), - (16,4,'host unknown'), - (17,4,'invalid host name'), - (18,4,'isn\'t in my control/locals file'), - (19,4,'local configuration error'), - (20,4,'not a gateway'), - (21,4,'server is (down or unreachable|not responding)'), - (22,4,'too many connections'), - (23,4,'unable to connect'), - (24,4,'lost connection'), - (25,4,'conversation with [^ ]* timed out while'), - (26,4,'server requires authentication'), - (27,4,'authentication (is )?required'), - (28,5,'(my )?e-?mail( address)? has changed'), - (29,5,'account (inactive|expired|deactivated)'), - (30,5,'account is locked'), - (31,5,'changed w+( e-?mail)? address'), - (32,5,'deactivated mailbox'), - (33,5,'disabled or discontinued'), - (34,5,'inactive user'), - (35,5,'is inactive on this domain'), - (36,5,'mail receiving disabled'), - (37,5,'mail( ?)address is administrative?ly disabled'), - (38,5,'mailbox (temporarily disabled|currently suspended)'), - (39,5,'no longer (accepting mail|on server|in use|with|employed|on staff|works for|using this account)'), - (40,5,'not accepting (mail|messages)'), - (41,5,'please use my new e-?mail address'), - (42,5,'this address no longer accepts mail'), - (43,5,'user account suspended'), - (44,5,'account that you tried to reach is disabled'), - (45,5,'User banned'), - (46,6,'(user|recipient( name)?) is not recognized'), - (47,6,'554 delivery error'), - (48,6,'address does not exist'), - (49,6,'address(es)?( you (entered|specified))? (could|was)( not|n.t)( be)? found'), - (50,6,'address(ee)? (unknown|invalid)'), - (51,6,'bad destination'), - (52,6,'badly formatted address'), - (53,6,'can\'t open mailbox for'), - (54,6,'cannot deliver'), - (55,6,'delivery to the following recipient(s)? failed'), - (56,6,'destination addresses were unknown'), - (57,6,'did not reach the following recipient'), - (58,6,'does not exist'), - (59,6,'does not like recipient'), - (60,6,'does not specify a valid notes mail file'), - (61,6,'illegal alias'), - (62,6,'invalid (mailbox|(e-?mail )?address|recipient|final delivery)'), - (63,6,'invalid( or unknown)?( virtual)? user'), - (64,6,'(mail )?delivery (to this user )?is not allowed'), - (65,6,'mailbox (not found|unavailable|name not allowed)'), - (66,6,'message could not be forwarded'), - (67,6,'missing or malformed local(-| )part'), - (68,6,'no e-?mail address registered'), - (69,6,'no such (mail drop|mailbox( \\w+)?|(e-?mail )?address|recipient|(local )?user|person)( here)?'), - (70,6,'no mailbox (here )?by that name'), - (71,6,'not (listed in|found in directory|known at this site|our customer)'), - (72,6,'not a valid( (user|mailbox))?'), - (73,6,'not present in directory entry'), - (74,6,'recipient (does not exist|(is )?unknown|rejected|denied|not found)'), - (75,6,'this user doesn\'t have a yahoo.com address'), - (76,6,'unavailable to take delivery of the message'), - (77,6,'unavailable mailbox'), - (78,6,'unknown (local( |-)part|recipient|address error)'), - (79,6,'unknown( or illegal)? user( account)?'), - (80,6,'unrecognized recipient'), - (81,6,'unregistered address'), - (82,6,'user (unknown|(does not|doesn\'t) exist)'), - (83,6,'user doesn\'t have an? w+ account'), - (84,6,'user(\'s e-?mail name is)? not found'), - (85,6,'^Validation failed for:'), - (86,6,'5.1.0 Address rejected'), - (87,6,'no valid recipients?'), - (88,6,'RecipNotFound'), - (89,6,'no one at this address'), - (90,6,'misconfigured forwarding address'), - (91,6,'account is not allowed'), - (92,6,'Address .<[^>]*>. not known here'), - (93,6,'Recipient address rejected: ([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}'), - (94,6,'Non sono riuscito a trovare l.indirizzo e-mail'), - (95,6,'nadie con esta direcci..?n'), - (96,6,'ni bilo mogo..?e najti prejemnikovega e-po..?tnega naslova'), - (97,6,'Elektronski naslov (je ukinjen|ne obstaja)'), - (98,6,'nepravilno nastavljen predal'), - (99,7,'(mail( forwarding)?|routing).loop'), - (100,7,'excessive recursion'), - (101,7,'loop detected'), - (102,7,'maximum hop count exceeded'), - (103,7,'message was forwarded more than the maximum allowed times'), - (104,7,'too many (hops|recursive forwards)'), - (105,8,'(disk(space)?|over the allowed|exceed(ed|s)?|storage) quota'), - (106,8,'522_mailbox_full'), - (107,8,'exceeds allowed message count'), - (108,8,'file too large'), - (109,8,'full mailbox'), - (110,8,'(mail|in)(box|folder) ((for user \\w+ )?is )?full'), - (111,8,'mailbox (has exceeded|is over) the limit'), - (112,8,'mailbox( exceeds allowed)? size'), - (113,8,'no space left for this user'), - (114,8,'over\\s?quota'), - (115,8,'quota (for the mailbox )?has been exceeded'), - (116,8,'quota ?(usage|violation|exceeded)'), - (117,8,'recipient storage full'), - (118,8,'not able to receive more mail'), - (119,8,'doesn.t have enough disk space left'), - (120,8,'exceeded storage allocation'), - (121,8,'running out of disk space'), - (122,9,'cannot find your hostname'), - (123,9,'ip name lookup'), - (124,9,'not configured to relay mail'), - (125,9,'relay(ing)? (not permitted|(access )?denied)'), - (126,9,'relayed mail to .+? not allowed'), - (127,9,'sender ip must resolve'), - (128,9,'unable to relay'), - (129,9,'No route to host'), - (130,9,'Network is unreachable'), - (131,9,'unrouteable address'), - (132,9,'We don.t handle mail for'), - (133,9,'we do not relay'), - (134,9,'Rejected by next-hop'), - (135,9,'not permitted to( *550)? relay through this server'), - (136,10,'(bulk( e-?mail)|content|attachment blocking|virus|mail system) filters?'), - (137,10,'(hostile|questionable|unacceptable) content'), - (138,10,'address .+? has not been verified'), - (139,10,'anti-?spam (policw+|software)'), - (140,10,'anti-?virus gateway has detected'), - (141,10,'blacklisted'), - (142,10,'blocked message'), - (143,10,'content control'), - (144,10,'delivery not authorized'), - (145,10,'does not conform to our e-?mail policy'), - (146,10,'excessive spam content'), - (147,10,'message looks suspicious'), - (148,10,'open relay'), - (149,10,'sender was rejected'), - (150,10,'spam(check| reduction software| filters?)'), - (151,10,'blocked by a user configured filter'), - (152,10,'(detected|rejected) (as|due to) spam'), - (153,10,'X-HmXmrOriginalRecipient'), - (154,10,'Client host .[^ ]*. blocked'), - (155,10,'automatic(ally-generated)? messages are not accepted'), - (156,10,'denied by policy'), - (157,10,'has no corresponding reverse \\(PTR\\) address'), - (158,10,'has a policy that( [^ ]*)? prohibited the mail that you sent'), - (159,10,'is likely unsolicited mail'), - (160,10,'Local Policy Violation'), - (161,10,'ni bilo mogo..?e dostaviti zaradi varnostnega pravilnika'), - (162,10,'abuse report'), - (163,11,'nonstandard smtp line terminator'), - (164,11,'syntax error in from address'), - (165,11,'unknown smtp code'); +(2,2,'(be|am)? (out of|away from) (the|my)? (office|computer|town)'), +(3,2,'i am on vacation'), +(4,3,'name(server entry| lookup failure)'), +(5,3,'no (mail server|matches to nameserver query|dns entries)'), +(6,3,'reverse dns entry'), +(7,3,'Host or domain name not found'), +(8,3,'Unable to resolve MX record for'), +(9,4,'(unknown|not local) host'), +(10,4,'all hosts have been failing'), +(11,4,'allowed rcpthosts'), +(12,4,'connection (refused|timed out)'), +(13,4,'not connected'), +(14,4,'couldn\'t find any host named'), +(15,4,'error involving remote host'), +(16,4,'host unknown'), +(17,4,'invalid host name'), +(18,4,'isn\'t in my control/locals file'), +(19,4,'local configuration error'), +(20,4,'not a gateway'), +(21,4,'server is (down or unreachable|not responding)'), +(22,4,'too many connections'), +(23,4,'unable to connect'), +(24,4,'lost connection'), +(25,4,'conversation with [^ ]* timed out while'), +(26,4,'server requires authentication'), +(27,4,'authentication (is )?required'), +(28,5,'(my )?e-?mail( address)? has changed'), +(29,5,'account (inactive|expired|deactivated)'), +(30,5,'account is locked'), +(31,5,'changed w+( e-?mail)? address'), +(32,5,'deactivated mailbox'), +(33,5,'disabled or discontinued'), +(34,5,'inactive user'), +(35,5,'is inactive on this domain'), +(36,5,'mail receiving disabled'), +(37,5,'mail( ?)address is administrative?ly disabled'), +(38,5,'mailbox (temporarily disabled|currently suspended)'), +(39,5,'no longer (accepting mail|on server|in use|with|employed|on staff|works for|using this account)'), +(40,5,'not accepting (mail|messages)'), +(41,5,'please use my new e-?mail address'), +(42,5,'this address no longer accepts mail'), +(43,5,'user account suspended'), +(44,5,'account that you tried to reach is disabled'), +(45,5,'User banned'), +(46,6,'(user|recipient( name)?) is not recognized'), +(47,6,'554 delivery error'), +(48,6,'address does not exist'), +(49,6,'address(es)?( you (entered|specified))? (could|was)( not|n.t)( be)? found'), +(50,6,'address(ee)? (unknown|invalid)'), +(51,6,'bad destination'), +(52,6,'badly formatted address'), +(53,6,'can\'t open mailbox for'), +(54,6,'cannot deliver'), +(55,6,'delivery to the following recipient(s)? failed'), +(56,6,'destination addresses were unknown'), +(57,6,'did not reach the following recipient'), +(58,6,'does not exist'), +(59,6,'does not like recipient'), +(60,6,'does not specify a valid notes mail file'), +(61,6,'illegal alias'), +(62,6,'invalid (mailbox|(e-?mail )?address|recipient|final delivery)'), +(63,6,'invalid( or unknown)?( virtual)? user'), +(64,6,'(mail )?delivery (to this user )?is not allowed'), +(65,6,'mailbox (not found|unavailable|name not allowed)'), +(66,6,'message could not be forwarded'), +(67,6,'missing or malformed local(-| )part'), +(68,6,'no e-?mail address registered'), +(69,6,'no such (mail drop|mailbox( \\w+)?|(e-?mail )?address|recipient|(local )?user|person)( here)?'), +(70,6,'no mailbox (here )?by that name'), +(71,6,'not (listed in|found in directory|known at this site|our customer)'), +(72,6,'not a valid( (user|mailbox))?'), +(73,6,'not present in directory entry'), +(74,6,'recipient (does not exist|(is )?unknown|rejected|denied|not found)'), +(75,6,'this user doesn\'t have a yahoo.com address'), +(76,6,'unavailable to take delivery of the message'), +(77,6,'unavailable mailbox'), +(78,6,'unknown (local( |-)part|recipient|address error)'), +(79,6,'unknown( or illegal)? user( account)?'), +(80,6,'unrecognized recipient'), +(81,6,'unregistered address'), +(82,6,'user (unknown|(does not|doesn\'t) exist)'), +(83,6,'user doesn\'t have an? w+ account'), +(84,6,'user(\'s e-?mail name is)? not found'), +(85,6,'^Validation failed for:'), +(86,6,'5.1.0 Address rejected'), +(87,6,'no valid recipients?'), +(88,6,'RecipNotFound'), +(89,6,'no one at this address'), +(90,6,'misconfigured forwarding address'), +(91,6,'account is not allowed'), +(92,6,'Address .<[^>]*>. not known here'), +(93,6,'Recipient address rejected: ([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}'), +(94,6,'Non sono riuscito a trovare l.indirizzo e-mail'), +(95,6,'nadie con esta direcci..?n'), +(96,6,'ni bilo mogo..?e najti prejemnikovega e-po..?tnega naslova'), +(97,6,'Elektronski naslov (je ukinjen|ne obstaja)'), +(98,6,'nepravilno nastavljen predal'), +(99,7,'(mail( forwarding)?|routing).loop'), +(100,7,'excessive recursion'), +(101,7,'loop detected'), +(102,7,'maximum hop count exceeded'), +(103,7,'message was forwarded more than the maximum allowed times'), +(104,7,'too many (hops|recursive forwards)'), +(105,8,'(disk(space)?|over the allowed|exceed(ed|s)?|storage) quota'), +(106,8,'522_mailbox_full'), +(107,8,'exceeds allowed message count'), +(108,8,'file too large'), +(109,8,'full mailbox'), +(110,8,'(mail|in)(box|folder) ((for user \\w+ )?is )?full'), +(111,8,'mailbox (has exceeded|is over) the limit'), +(112,8,'mailbox( exceeds allowed)? size'), +(113,8,'no space left for this user'), +(114,8,'over\\s?quota'), +(115,8,'quota (for the mailbox )?has been exceeded'), +(116,8,'quota ?(usage|violation|exceeded)'), +(117,8,'recipient storage full'), +(118,8,'not able to receive more mail'), +(119,8,'doesn.t have enough disk space left'), +(120,8,'exceeded storage allocation'), +(121,8,'running out of disk space'), +(122,9,'cannot find your hostname'), +(123,9,'ip name lookup'), +(124,9,'not configured to relay mail'), +(125,9,'relay(ing)? (not permitted|(access )?denied)'), +(126,9,'relayed mail to .+? not allowed'), +(127,9,'sender ip must resolve'), +(128,9,'unable to relay'), +(129,9,'No route to host'), +(130,9,'Network is unreachable'), +(131,9,'unrouteable address'), +(132,9,'We don.t handle mail for'), +(133,9,'we do not relay'), +(134,9,'Rejected by next-hop'), +(135,9,'not permitted to( *550)? relay through this server'), +(136,10,'(bulk( e-?mail)|content|attachment blocking|virus|mail system) filters?'), +(137,10,'(hostile|questionable|unacceptable) content'), +(138,10,'address .+? has not been verified'), +(139,10,'anti-?spam (policw+|software)'), +(140,10,'anti-?virus gateway has detected'), +(141,10,'blacklisted'), +(142,10,'blocked message'), +(143,10,'content control'), +(144,10,'delivery not authorized'), +(145,10,'does not conform to our e-?mail policy'), +(146,10,'excessive spam content'), +(147,10,'message looks suspicious'), +(148,10,'open relay'), +(149,10,'sender was rejected'), +(150,10,'spam(check| reduction software| filters?)'), +(151,10,'blocked by a user configured filter'), +(152,10,'(detected|rejected) (as|due to) spam'), +(153,10,'X-HmXmrOriginalRecipient'), +(154,10,'Client host .[^ ]*. blocked'), +(155,10,'automatic(ally-generated)? messages are not accepted'), +(156,10,'denied by policy'), +(157,10,'has no corresponding reverse \\(PTR\\) address'), +(158,10,'has a policy that( [^ ]*)? prohibited the mail that you sent'), +(159,10,'is likely unsolicited mail'), +(160,10,'Local Policy Violation'), +(161,10,'ni bilo mogo..?e dostaviti zaradi varnostnega pravilnika'), +(162,10,'abuse report'), +(163,11,'nonstandard smtp line terminator'), +(164,11,'syntax error in from address'), +(165,11,'unknown smtp code'); /*!40000 ALTER TABLE `civicrm_mailing_bounce_pattern` ENABLE KEYS */; UNLOCK TABLES; @@ -4443,16 +4472,16 @@ LOCK TABLES `civicrm_mailing_bounce_type` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_bounce_type` DISABLE KEYS */; INSERT INTO `civicrm_mailing_bounce_type` (`id`, `name`, `description`, `hold_threshold`) VALUES (1,'AOL','AOL Terms of Service complaint',1), - (2,'Away','Recipient is on vacation',30), - (3,'Dns','Unable to resolve recipient domain',3), - (4,'Host','Unable to deliver to destintation mail server',3), - (5,'Inactive','User account is no longer active',1), - (6,'Invalid','Email address is not valid',1), - (7,'Loop','Mail routing error',3), - (8,'Quota','User inbox is full',3), - (9,'Relay','Unable to reach destination mail server',3), - (10,'Spam','Message caught by a content filter',1), - (11,'Syntax','Error in SMTP transaction',3); +(2,'Away','Recipient is on vacation',30), +(3,'Dns','Unable to resolve recipient domain',3), +(4,'Host','Unable to deliver to destintation mail server',3), +(5,'Inactive','User account is no longer active',1), +(6,'Invalid','Email address is not valid',1), +(7,'Loop','Mail routing error',3), +(8,'Quota','User inbox is full',3), +(9,'Relay','Unable to reach destination mail server',3), +(10,'Spam','Message caught by a content filter',1), +(11,'Syntax','Error in SMTP transaction',3); /*!40000 ALTER TABLE `civicrm_mailing_bounce_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4464,13 +4493,13 @@ LOCK TABLES `civicrm_mailing_component` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_component` DISABLE KEYS */; INSERT INTO `civicrm_mailing_component` (`id`, `name`, `component_type`, `subject`, `body_html`, `body_text`, `is_default`, `is_active`) VALUES (1,'Mailing Header','Header','Descriptive Title for this Header','Sample Header for HTML formatted content.','Sample Header for TEXT formatted content.',1,1), - (2,'Mailing Footer','Footer','Descriptive Title for this Footer.','Sample Footer for HTML formatted content
Opt out of any future emails
{domain.address}','Opt out of any future emails: {action.optOutUrl}\n{domain.address}',1,1), - (3,'Subscribe Message','Subscribe','Subscription Confirmation Request','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click here.','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click on this link: {subscribe.url}',1,1), - (4,'Welcome Message','Welcome','Your Subscription has been Activated','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.',1,1), - (5,'Unsubscribe Message','Unsubscribe','Un-subscribe Confirmation','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking here.','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking {action.resubscribeUrl}',1,1), - (6,'Resubscribe Message','Resubscribe','Re-subscribe Confirmation','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking here.','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking {action.unsubscribeUrl}',1,1), - (7,'Opt-out Message','OptOut','Opt-out Confirmation','Your email address has been removed from {domain.name} mailing lists.','Your email address has been removed from {domain.name} mailing lists.',1,1), - (8,'Auto-responder','Reply','Please Send Inquiries to Our Contact Email Address','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.',1,1); +(2,'Mailing Footer','Footer','Descriptive Title for this Footer.','Sample Footer for HTML formatted content
Opt out of any future emails
{domain.address}','Opt out of any future emails: {action.optOutUrl}\n{domain.address}',1,1), +(3,'Subscribe Message','Subscribe','Subscription Confirmation Request','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click here.','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click on this link: {subscribe.url}',1,1), +(4,'Welcome Message','Welcome','Your Subscription has been Activated','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.',1,1), +(5,'Unsubscribe Message','Unsubscribe','Un-subscribe Confirmation','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking here.','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking {action.resubscribeUrl}',1,1), +(6,'Resubscribe Message','Resubscribe','Re-subscribe Confirmation','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking here.','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking {action.unsubscribeUrl}',1,1), +(7,'Opt-out Message','OptOut','Opt-out Confirmation','Your email address has been removed from {domain.name} mailing lists.','Your email address has been removed from {domain.name} mailing lists.',1,1), +(8,'Auto-responder','Reply','Please Send Inquiries to Our Contact Email Address','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.',1,1); /*!40000 ALTER TABLE `civicrm_mailing_component` ENABLE KEYS */; UNLOCK TABLES; @@ -4617,15 +4646,15 @@ LOCK TABLES `civicrm_managed` WRITE; /*!40000 ALTER TABLE `civicrm_managed` DISABLE KEYS */; INSERT INTO `civicrm_managed` (`id`, `module`, `name`, `entity_type`, `entity_id`, `cleanup`, `entity_modified_date`) VALUES (1,'civi_campaign','SavedSearch_Administer_Campaigns','SavedSearch',1,'always',NULL), - (2,'civi_campaign','SavedSearch_Administer_Petitions','SavedSearch',2,'always',NULL), - (3,'civi_campaign','SavedSearch_Administer_Survey_Options','SavedSearch',3,'always',NULL), - (4,'civi_campaign','SavedSearch_Administer_Surveys','SavedSearch',4,'always',NULL), - (5,'civi_contribute','cg_extend_objects:ContributionPage','OptionValue',860,'always',NULL), - (6,'civi_mail','SavedSearch_Email_Bounce_History','SavedSearch',5,'always',NULL), - (7,'civicrm','SavedSearch_Site_Email_Addresses','SavedSearch',6,'unused',NULL), - (8,'civicrm','SavedSearch_Contact_Summary_Notes','SavedSearch',7,'always',NULL), - (9,'civicrm','SavedSearch_Contact_Summary_Relationships','SavedSearch',8,'unused',NULL), - (10,'civicrm','SavedSearch_Administer_Site_Tokens','SavedSearch',9,'always',NULL); +(2,'civi_campaign','SavedSearch_Administer_Petitions','SavedSearch',2,'always',NULL), +(3,'civi_campaign','SavedSearch_Administer_Survey_Options','SavedSearch',3,'always',NULL), +(4,'civi_campaign','SavedSearch_Administer_Surveys','SavedSearch',4,'always',NULL), +(5,'civi_contribute','cg_extend_objects:ContributionPage','OptionValue',860,'always',NULL), +(6,'civi_mail','SavedSearch_Email_Bounce_History','SavedSearch',5,'always',NULL), +(7,'civicrm','SavedSearch_Site_Email_Addresses','SavedSearch',6,'unused',NULL), +(8,'civicrm','SavedSearch_Contact_Summary_Notes','SavedSearch',7,'always',NULL), +(9,'civicrm','SavedSearch_Contact_Summary_Relationships','SavedSearch',8,'unused',NULL), +(10,'civicrm','SavedSearch_Administer_Site_Tokens','SavedSearch',9,'always',NULL); /*!40000 ALTER TABLE `civicrm_managed` ENABLE KEYS */; UNLOCK TABLES; @@ -4654,36 +4683,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership` WRITE; /*!40000 ALTER TABLE `civicrm_membership` DISABLE KEYS */; INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES - (1,97,1,'2025-02-06','2025-02-06','2027-02-05','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (2,51,2,'2025-02-05','2025-02-05','2026-02-04','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (3,70,1,'2025-02-04','2025-02-04','2027-02-03','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (4,110,2,'2025-02-03','2025-02-03','2026-02-02','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (5,111,2,'2024-02-02','2024-02-02','2025-02-01','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL), - (6,107,2,'2025-02-01','2025-02-01','2026-01-31','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (7,69,1,'2025-01-31','2025-01-31','2027-01-30','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (8,125,2,'2025-01-30','2025-01-30','2026-01-29','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (9,44,1,'2025-01-29','2025-01-29','2027-01-28','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (10,197,1,'2022-11-26','2022-11-26','2024-11-25','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (11,153,3,'2025-01-27','2025-01-27',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (12,177,2,'2025-01-26','2025-01-26','2026-01-25','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (13,33,1,'2025-01-25','2025-01-25','2027-01-24','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (14,195,2,'2025-01-24','2025-01-24','2026-01-23','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (15,156,1,'2022-10-17','2022-10-17','2024-10-16','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (16,48,2,'2025-01-22','2025-01-22','2026-01-21','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (17,35,1,'2025-01-21','2025-01-21','2027-01-20','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (18,78,2,'2025-01-20','2025-01-20','2026-01-19','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (19,23,1,'2025-01-19','2025-01-19','2027-01-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (20,193,1,'2022-09-07','2022-09-07','2024-09-06','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (21,10,1,'2025-01-17','2025-01-17','2027-01-16','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (22,14,3,'2025-01-16','2025-01-16',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (23,36,1,'2025-01-15','2025-01-15','2027-01-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (24,138,2,'2025-01-14','2025-01-14','2026-01-13','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (25,157,1,'2022-07-29','2022-07-29','2024-07-28','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (26,65,2,'2025-01-12','2025-01-12','2026-01-11','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (27,187,1,'2025-01-11','2025-01-11','2027-01-10','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (28,202,2,'2025-01-10','2025-01-10','2026-01-09','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (29,127,1,'2025-01-09','2025-01-09','2027-01-08','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (30,199,2,'2024-01-08','2024-01-08','2025-01-07','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL); + (1,92,1,'2025-02-11','2025-02-11','2027-02-10','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(2,99,2,'2025-02-10','2025-02-10','2026-02-09','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(3,84,1,'2025-02-09','2025-02-09','2027-02-08','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(4,160,2,'2025-02-08','2025-02-08','2026-02-07','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(5,69,1,'2023-01-10','2023-01-10','2025-01-09','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), +(6,82,2,'2025-02-06','2025-02-06','2026-02-05','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(7,172,1,'2025-02-05','2025-02-05','2027-02-04','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(8,189,2,'2025-02-04','2025-02-04','2026-02-03','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(9,116,1,'2025-02-03','2025-02-03','2027-02-02','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(10,185,1,'2022-12-01','2022-12-01','2024-11-30','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), +(11,152,3,'2025-02-01','2025-02-01',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(12,148,2,'2025-01-31','2025-01-31','2026-01-30','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(13,180,1,'2025-01-30','2025-01-30','2027-01-29','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(14,117,2,'2025-01-29','2025-01-29','2026-01-28','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(15,174,1,'2022-10-22','2022-10-22','2024-10-21','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), +(16,11,2,'2025-01-27','2025-01-27','2026-01-26','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(17,54,1,'2025-01-26','2025-01-26','2027-01-25','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(18,100,2,'2025-01-25','2025-01-25','2026-01-24','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(19,77,1,'2025-01-24','2025-01-24','2027-01-23','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(20,26,1,'2022-09-12','2022-09-12','2024-09-11','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), +(21,81,1,'2025-01-22','2025-01-22','2027-01-21','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(22,19,3,'2025-01-21','2025-01-21',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(23,115,1,'2025-01-20','2025-01-20','2027-01-19','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(24,113,2,'2025-01-19','2025-01-19','2026-01-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(25,88,2,'2024-01-18','2024-01-18','2025-01-17','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), +(26,159,2,'2025-01-17','2025-01-17','2026-01-16','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(27,13,1,'2025-01-16','2025-01-16','2027-01-15','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(28,141,2,'2025-01-15','2025-01-15','2026-01-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(29,27,1,'2025-01-14','2025-01-14','2027-01-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), +(30,130,1,'2022-06-24','2022-06-24','2024-06-23','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -4705,36 +4734,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_log` WRITE; /*!40000 ALTER TABLE `civicrm_membership_log` DISABLE KEYS */; INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES - (1,21,1,'2025-01-17','2027-01-16',10,'2025-02-06 08:00:00',1,NULL), - (2,22,1,'2025-01-16',NULL,14,'2025-02-06 08:00:00',3,NULL), - (3,19,1,'2025-01-19','2027-01-18',23,'2025-02-06 08:00:00',1,NULL), - (4,13,1,'2025-01-25','2027-01-24',33,'2025-02-06 08:00:00',1,NULL), - (5,17,1,'2025-01-21','2027-01-20',35,'2025-02-06 08:00:00',1,NULL), - (6,23,1,'2025-01-15','2027-01-14',36,'2025-02-06 08:00:00',1,NULL), - (7,9,1,'2025-01-29','2027-01-28',44,'2025-02-06 08:00:00',1,NULL), - (8,16,1,'2025-01-22','2026-01-21',48,'2025-02-06 08:00:00',2,NULL), - (9,2,1,'2025-02-05','2026-02-04',51,'2025-02-06 08:00:00',2,NULL), - (10,26,1,'2025-01-12','2026-01-11',65,'2025-02-06 08:00:00',2,NULL), - (11,7,1,'2025-01-31','2027-01-30',69,'2025-02-06 08:00:00',1,NULL), - (12,3,1,'2025-02-04','2027-02-03',70,'2025-02-06 08:00:00',1,NULL), - (13,18,1,'2025-01-20','2026-01-19',78,'2025-02-06 08:00:00',2,NULL), - (14,1,1,'2025-02-06','2027-02-05',97,'2025-02-06 08:00:00',1,NULL), - (15,6,1,'2025-02-01','2026-01-31',107,'2025-02-06 08:00:00',2,NULL), - (16,4,1,'2025-02-03','2026-02-02',110,'2025-02-06 08:00:00',2,NULL), - (17,5,4,'2024-02-02','2025-02-01',111,'2025-02-06 08:00:00',2,NULL), - (18,8,1,'2025-01-30','2026-01-29',125,'2025-02-06 08:00:00',2,NULL), - (19,29,1,'2025-01-09','2027-01-08',127,'2025-02-06 08:00:00',1,NULL), - (20,24,1,'2025-01-14','2026-01-13',138,'2025-02-06 08:00:00',2,NULL), - (21,11,1,'2025-01-27',NULL,153,'2025-02-06 08:00:00',3,NULL), - (22,15,3,'2022-10-17','2024-10-16',156,'2025-02-06 08:00:00',1,NULL), - (23,25,3,'2022-07-29','2024-07-28',157,'2025-02-06 08:00:00',1,NULL), - (24,12,1,'2025-01-26','2026-01-25',177,'2025-02-06 08:00:00',2,NULL), - (25,27,1,'2025-01-11','2027-01-10',187,'2025-02-06 08:00:00',1,NULL), - (26,20,3,'2022-09-07','2024-09-06',193,'2025-02-06 08:00:00',1,NULL), - (27,14,1,'2025-01-24','2026-01-23',195,'2025-02-06 08:00:00',2,NULL), - (28,10,3,'2022-11-26','2024-11-25',197,'2025-02-06 08:00:00',1,NULL), - (29,30,4,'2024-01-08','2025-01-07',199,'2025-02-06 08:00:00',2,NULL), - (30,28,1,'2025-01-10','2026-01-09',202,'2025-02-06 08:00:00',2,NULL); + (1,16,1,'2025-01-27','2026-01-26',11,'2025-02-11 00:00:00',2,NULL), +(2,27,1,'2025-01-16','2027-01-15',13,'2025-02-11 00:00:00',1,NULL), +(3,22,1,'2025-01-21',NULL,19,'2025-02-11 00:00:00',3,NULL), +(4,20,3,'2022-09-12','2024-09-11',26,'2025-02-11 00:00:00',1,NULL), +(5,29,1,'2025-01-14','2027-01-13',27,'2025-02-11 00:00:00',1,NULL), +(6,17,1,'2025-01-26','2027-01-25',54,'2025-02-11 00:00:00',1,NULL), +(7,5,3,'2023-01-10','2025-01-09',69,'2025-02-11 00:00:00',1,NULL), +(8,19,1,'2025-01-24','2027-01-23',77,'2025-02-11 00:00:00',1,NULL), +(9,21,1,'2025-01-22','2027-01-21',81,'2025-02-11 00:00:00',1,NULL), +(10,6,1,'2025-02-06','2026-02-05',82,'2025-02-11 00:00:00',2,NULL), +(11,3,1,'2025-02-09','2027-02-08',84,'2025-02-11 00:00:00',1,NULL), +(12,25,4,'2024-01-18','2025-01-17',88,'2025-02-11 00:00:00',2,NULL), +(13,1,1,'2025-02-11','2027-02-10',92,'2025-02-11 00:00:00',1,NULL), +(14,2,1,'2025-02-10','2026-02-09',99,'2025-02-11 00:00:00',2,NULL), +(15,18,1,'2025-01-25','2026-01-24',100,'2025-02-11 00:00:00',2,NULL), +(16,24,1,'2025-01-19','2026-01-18',113,'2025-02-11 00:00:00',2,NULL), +(17,23,1,'2025-01-20','2027-01-19',115,'2025-02-11 00:00:00',1,NULL), +(18,9,1,'2025-02-03','2027-02-02',116,'2025-02-11 00:00:00',1,NULL), +(19,14,1,'2025-01-29','2026-01-28',117,'2025-02-11 00:00:00',2,NULL), +(20,30,3,'2022-06-24','2024-06-23',130,'2025-02-11 00:00:00',1,NULL), +(21,28,1,'2025-01-15','2026-01-14',141,'2025-02-11 00:00:00',2,NULL), +(22,12,1,'2025-01-31','2026-01-30',148,'2025-02-11 00:00:00',2,NULL), +(23,11,1,'2025-02-01',NULL,152,'2025-02-11 00:00:00',3,NULL), +(24,26,1,'2025-01-17','2026-01-16',159,'2025-02-11 00:00:00',2,NULL), +(25,4,1,'2025-02-08','2026-02-07',160,'2025-02-11 00:00:00',2,NULL), +(26,7,1,'2025-02-05','2027-02-04',172,'2025-02-11 00:00:00',1,NULL), +(27,15,3,'2022-10-22','2024-10-21',174,'2025-02-11 00:00:00',1,NULL), +(28,13,1,'2025-01-30','2027-01-29',180,'2025-02-11 00:00:00',1,NULL), +(29,10,3,'2022-12-01','2024-11-30',185,'2025-02-11 00:00:00',1,NULL), +(30,8,1,'2025-02-04','2026-02-03',189,'2025-02-11 00:00:00',2,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4745,36 +4774,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_payment` WRITE; /*!40000 ALTER TABLE `civicrm_membership_payment` DISABLE KEYS */; INSERT INTO `civicrm_membership_payment` (`id`, `membership_id`, `contribution_id`) VALUES - (1,1,32), - (2,3,33), - (3,7,34), - (4,9,35), - (5,10,36), - (6,13,37), - (7,15,38), - (8,17,39), - (9,19,40), - (10,20,41), - (11,21,42), - (12,23,43), - (13,25,44), - (14,27,45), - (15,29,46), - (16,2,47), - (17,4,48), - (18,5,49), - (19,6,50), - (20,8,51), - (21,12,52), - (22,14,53), - (23,16,54), - (24,18,55), - (25,24,56), - (26,26,57), - (27,28,58), - (28,30,59), - (29,11,60), - (30,22,61); + (13,1,32), +(14,2,33), +(11,3,34), +(25,4,35), +(7,5,36), +(10,6,37), +(26,7,38), +(30,8,39), +(18,9,40), +(29,10,41), +(23,11,42), +(22,12,43), +(28,13,44), +(19,14,45), +(27,15,46), +(1,16,47), +(6,17,48), +(15,18,49), +(8,19,50), +(4,20,51), +(9,21,52), +(3,22,53), +(17,23,54), +(16,24,55), +(12,25,56), +(24,26,57), +(2,27,58), +(21,28,59), +(5,29,60), +(20,30,61); /*!40000 ALTER TABLE `civicrm_membership_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -4786,12 +4815,12 @@ LOCK TABLES `civicrm_membership_status` WRITE; /*!40000 ALTER TABLE `civicrm_membership_status` DISABLE KEYS */; INSERT INTO `civicrm_membership_status` (`id`, `name`, `label`, `start_event`, `start_event_adjust_unit`, `start_event_adjust_interval`, `end_event`, `end_event_adjust_unit`, `end_event_adjust_interval`, `is_current_member`, `is_admin`, `weight`, `is_default`, `is_active`, `is_reserved`) VALUES (1,'New','New','join_date',NULL,NULL,'join_date','month',3,1,0,1,0,1,0), - (2,'Current','Current','start_date',NULL,NULL,'end_date',NULL,NULL,1,0,2,1,1,0), - (3,'Grace','Grace','end_date',NULL,NULL,'end_date','month',1,1,0,3,0,1,0), - (4,'Expired','Expired','end_date','month',1,NULL,NULL,NULL,0,0,4,0,1,0), - (5,'Pending','Pending','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,5,0,1,1), - (6,'Cancelled','Cancelled','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,6,0,1,1), - (7,'Deceased','Deceased',NULL,NULL,NULL,NULL,NULL,NULL,0,1,7,0,1,1); +(2,'Current','Current','start_date',NULL,NULL,'end_date',NULL,NULL,1,0,2,1,1,0), +(3,'Grace','Grace','end_date',NULL,NULL,'end_date','month',1,1,0,3,0,1,0), +(4,'Expired','Expired','end_date','month',1,NULL,NULL,NULL,0,0,4,0,1,0), +(5,'Pending','Pending','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,5,0,1,1), +(6,'Cancelled','Cancelled','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,6,0,1,1), +(7,'Deceased','Deceased',NULL,NULL,NULL,NULL,NULL,NULL,0,1,7,0,1,1); /*!40000 ALTER TABLE `civicrm_membership_status` ENABLE KEYS */; UNLOCK TABLES; @@ -4803,8 +4832,8 @@ LOCK TABLES `civicrm_membership_type` WRITE; /*!40000 ALTER TABLE `civicrm_membership_type` DISABLE KEYS */; INSERT INTO `civicrm_membership_type` (`id`, `domain_id`, `name`, `description`, `member_of_contact_id`, `financial_type_id`, `minimum_fee`, `duration_unit`, `duration_interval`, `period_type`, `fixed_period_start_day`, `fixed_period_rollover_day`, `relationship_type_id`, `relationship_direction`, `max_related`, `visibility`, `weight`, `receipt_text_signup`, `receipt_text_renewal`, `auto_renew`, `is_active`) VALUES (1,1,'General','Regular annual membership.',1,2,100.000000000,'year',2,'rolling',NULL,NULL,'7','b_a',NULL,'Public',1,NULL,NULL,0,1), - (2,1,'Student','Discount membership for full-time students.',1,2,50.000000000,'year',1,'rolling',NULL,NULL,NULL,NULL,NULL,'Public',2,NULL,NULL,0,1), - (3,1,'Lifetime','Lifetime membership.',1,2,1200.000000000,'lifetime',1,'rolling',NULL,NULL,'7','b_a',NULL,'Admin',3,NULL,NULL,0,1); +(2,1,'Student','Discount membership for full-time students.',1,2,50.000000000,'year',1,'rolling',NULL,NULL,NULL,NULL,NULL,'Public',2,NULL,NULL,0,1), +(3,1,'Lifetime','Lifetime membership.',1,2,1200.000000000,'lifetime',1,'rolling',NULL,NULL,'7','b_a',NULL,'Admin',3,NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_membership_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4815,467 +4844,467 @@ UNLOCK TABLES; LOCK TABLES `civicrm_menu` WRITE; /*!40000 ALTER TABLE `civicrm_menu` DISABLE KEYS */; INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`, `module_data`) VALUES - (1,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (2,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (3,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (4,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (5,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (6,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (7,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (8,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (9,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (10,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (11,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), - (12,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (13,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (14,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (15,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (16,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (17,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (18,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (19,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), - (20,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), - (21,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), - (22,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), - (23,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), - (24,1,'civicrm/admin/uf/group/copy',NULL,'Profile Copy','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,26,1,0,0,'a:0:{}'), - (25,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), - (26,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (27,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (28,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (29,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (30,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (31,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (32,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (33,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (34,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (35,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (36,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (37,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (38,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (39,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (40,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (41,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (42,1,'civicrm/admin/setting/preferences/date/edit',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_PreferencesDate\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Date Preferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (43,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (44,1,'civicrm/admin/menu/item',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Navigation\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Navigation Menu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (45,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (46,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (47,1,'civicrm/admin/options/from_email_address',NULL,'Site Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:44:\"url=civicrm/admin/options/site_email_address\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (48,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (49,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), - (50,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (51,1,'civicrm/admin/scheduleReminders/edit',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Form_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Schedule Reminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (52,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (53,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (54,1,'civicrm/admin/labelFormats',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (55,1,'civicrm/admin/labelFormats/edit',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Label Page Formats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (56,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (57,1,'civicrm/admin/pdfFormats/edit',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (58,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (59,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (60,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (61,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (62,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (63,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (64,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (65,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), - (66,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (67,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), - (68,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (69,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (70,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (71,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (72,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (73,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (74,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (75,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (76,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (77,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (78,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (79,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (80,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (81,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (82,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (83,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (84,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (85,1,'civicrm/admin/mapping/edit',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Mapping\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,111,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (86,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (87,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (88,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (89,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (90,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (91,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), - (92,1,'civicrm/admin/setting/preferences/date',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,97,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (93,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), - (94,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (95,1,'civicrm/admin/job/add',NULL,'Add Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Form_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:31:\"Add a periodially running task.\";}'), - (96,1,'civicrm/admin/job/edit',NULL,'Edit Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1372,1,0,0,'a:2:{s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (97,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (98,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), - (99,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), - (100,1,'civicrm/admin',NULL,'Administer','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), - (101,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (102,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (103,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (104,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), - (105,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), - (106,1,'civicrm/admin/price/edit',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (107,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (108,1,'civicrm/admin/price/field/edit',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (109,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (110,1,'civicrm/admin/price/field/option/edit',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}i:3;a:2:{s:5:\"title\";s:19:\"Price Field Options\";s:3:\"url\";s:41:\"/civicrm/admin/price/field/option?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (111,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (112,1,'civicrm/admin/sms/provider/edit',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Form_Provider\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Sms Providers\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,501,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (113,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), - (114,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (115,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (116,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (117,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), - (118,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (119,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (120,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (121,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (122,1,'civicrm/import/contribution',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,520,1,1,0,'a:0:{}'), - (123,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:30:\"class_prefix=CRM_Custom_Import\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (124,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (125,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), - (126,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (127,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (128,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (129,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), - (130,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), - (131,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (132,1,'civicrm/group/edit',NULL,'Edit Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:19:\"CRM_Group_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (133,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (134,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (135,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (136,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (137,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (138,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (139,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (140,1,'civicrm/acl/edit',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (141,1,'civicrm/acl/delete',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (142,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (143,1,'civicrm/acl/entityrole/edit',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Form_EntityRole\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Assign Users to ACL Roles\";s:3:\"url\";s:31:\"/civicrm/acl/entityrole?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (144,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (145,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (146,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), - (147,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (148,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (149,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (150,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (151,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (152,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (153,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (154,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (155,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (156,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (157,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (158,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), - (159,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (160,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (161,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (162,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (163,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (164,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (165,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (166,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (167,1,'civicrm/dev/rtf',NULL,'Remote Test Function','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:32:\"CRM_Core_Page_RemoteTestFunction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (168,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (169,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (170,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (171,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (172,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (173,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (174,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (175,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (176,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (177,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (178,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (179,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (180,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (181,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (182,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (183,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (184,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (185,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (186,1,'civicrm/note',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Note_Form_Note\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (187,1,'civicrm/task/delete-permanently',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"access deleted contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (188,1,'civicrm/task/restore-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (189,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (190,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (191,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (192,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (193,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (194,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), - (195,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), - (196,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (197,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (198,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (199,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), - (200,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), - (201,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (202,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (203,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (204,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (205,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (206,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (207,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (208,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (209,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (210,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (211,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (212,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (213,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (214,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (215,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (216,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (217,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (218,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (219,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (220,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (221,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (222,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (223,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (224,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (225,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (226,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (227,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (228,1,'civicrm/dashlet/getting-started',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (229,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (230,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (231,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (232,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (233,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (234,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (235,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (236,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (237,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (238,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (239,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (240,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (241,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (242,1,'civicrm/contact/deduperules',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (243,1,'civicrm/contact/dedupefind',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (244,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (245,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (246,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), - (247,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (248,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (249,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (250,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (251,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (252,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (253,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (254,1,'civicrm/ajax/api4',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (255,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (256,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (257,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (258,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (259,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (260,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (261,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (262,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (263,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (264,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (265,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (266,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (267,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (268,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (269,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (270,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (271,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (272,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), - (273,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), - (274,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (275,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), - (276,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), - (277,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), - (278,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), - (279,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), - (280,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (281,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (282,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (283,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (284,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (285,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (286,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (287,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (288,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (289,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), - (290,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), - (291,1,'civicrm/event/participant/print',NULL,'ts(\'PDF letter - print for participants\')','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:23:\"CRM_Event_Form_Task_PDF\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), - (292,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), - (293,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), - (294,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), - (295,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), - (296,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), - (297,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), - (298,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), - (299,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), - (300,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), - (301,1,'civicrm/import/participant',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,840,1,1,0,'a:0:{}'), - (302,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), - (303,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), - (304,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), - (305,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), - (306,1,'civicrm/participant/delete',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"delete in CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_Participant_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), - (307,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (308,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (309,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), - (310,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), - (311,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (312,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (313,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (314,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (315,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), - (316,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (317,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), - (318,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), - (319,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), - (320,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), - (321,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), - (322,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), - (323,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), - (324,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), - (325,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), - (326,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (327,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (328,1,'civicrm/admin/contribute/managePremiums/edit',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_ManagePremiums\";','s:13:\"imageUpload=1\";','a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}i:3;a:2:{s:5:\"title\";s:15:\"Manage Premiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (329,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (330,1,'civicrm/admin/financial/financialType/edit',NULL,'Edit Financial Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Form_FinancialType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (331,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (332,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (333,1,'civicrm/admin/financial/financialAccount/edit',NULL,'Edit Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Form_FinancialAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Financial Accounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (334,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (335,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (336,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (337,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (338,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (339,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (340,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), - (341,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), - (342,1,'civicrm/admin/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,530,1,1,0,'a:0:{}'), - (343,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), - (344,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (345,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (346,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (347,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (348,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (349,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (350,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), - (351,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), - (352,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), - (353,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), - (354,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), - (355,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (356,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (357,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (358,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (359,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (360,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (361,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (362,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (363,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (364,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,1,0,1,0,700,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), - (365,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), - (366,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), - (367,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), - (368,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,2,1,0,0,'a:0:{}'), - (369,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,390,1,0,0,'a:0:{}'), - (370,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,710,1,1,0,'a:0:{}'), - (371,1,'civicrm/import/membership',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:20:\"entity_prefix=Member\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,720,1,1,0,'a:0:{}'), - (372,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (373,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (374,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,1,0,1,0,600,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'), - (375,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (376,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (377,1,'civicrm/admin/component/edit',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Component\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,411,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (378,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:20:\"List email accounts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (379,1,'civicrm/admin/mailSettings/edit',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_MailSettings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Mail Accounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), - (380,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,610,1,1,0,'a:0:{}'), - (381,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), - (382,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), - (383,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,625,1,1,0,'a:0:{}'), - (384,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,630,1,1,0,'a:0:{}'), - (385,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,640,1,0,0,'a:0:{}'), - (386,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,645,1,0,0,'a:0:{}'), - (387,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,650,1,0,0,'a:0:{}'), - (388,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), - (389,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), - (390,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,680,1,0,0,'a:0:{}'), - (391,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,685,1,0,0,'a:0:{}'), - (392,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&mid=%%mid%%\";}}',NULL,NULL,4,1,0,1,0,695,1,0,0,'a:0:{}'), - (393,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (394,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,800,1,0,0,'a:0:{}'), - (395,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,850,1,0,0,'a:0:{}'), - (396,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (397,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (398,1,'civicrm/ajax/setupMailAccount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:5:\"setup\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (399,1,'civicrm/mailing/url',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:20:\"CRM_Mailing_Page_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), - (400,1,'civicrm/mailing/open',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:21:\"CRM_Mailing_Page_Open\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), - (401,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,1,0,1,0,550,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), - (402,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,560,1,1,0,'a:0:{}'), - (403,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,570,1,0,0,'a:0:{}'), - (404,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), - (405,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,580,1,0,0,'a:0:{}'), - (406,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (407,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,1,0,1,0,900,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), - (408,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), - (409,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,910,1,1,0,'a:0:{}'), - (410,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (411,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (412,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (413,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (414,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (415,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (416,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (417,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (418,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:1:{s:10:\"adminGroup\";s:8:\"CiviCase\";}'), - (419,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), - (420,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), - (421,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), - (422,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), - (423,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (424,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (425,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,3,0,'a:0:{}'), - (426,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (427,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (428,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (429,1,'civicrm/case/email/add','action=add,task=email','Email','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_Task_Email\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), - (430,1,'civicrm/contact/view/case/deleteClient',NULL,'Remove Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Case_Form_DeleteClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (431,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,1,0,1,0,1200,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'), - (432,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), - (433,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1220,1,1,0,'a:0:{}'), - (434,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1241,1,1,0,'a:0:{}'), - (435,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'), - (436,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), - (437,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), - (438,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), - (439,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), - (440,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), - (441,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), - (442,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), - (443,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (444,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,2,1,0,0,'a:3:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (445,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,3,1,0,0,'a:3:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (446,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,4,1,0,0,'a:3:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (447,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), - (448,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), - (449,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (450,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (451,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (452,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (453,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (454,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (455,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (456,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (457,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (458,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (459,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor 4','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Ckeditor4_Form_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (460,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:20:\"administer recaptcha\";}i:1;s:2:\"or\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";}'), - (461,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Date Preferences\";a:6:{s:5:\"title\";s:16:\"Date Preferences\";s:4:\"desc\";N;s:2:\"id\";s:15:\"DatePreferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.Site Email Addresses\";a:6:{s:5:\"title\";s:20:\"Site Email Addresses\";s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"SiteEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Label Page Formats\";a:6:{s:5:\"title\";s:18:\"Label Page Formats\";s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:2:\"id\";s:16:\"LabelPageFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:20:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:35:\"/civicrm/admin/mapping/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Edit Scheduled Job\";a:6:{s:5:\"title\";s:18:\"Edit Scheduled Job\";s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:2:\"id\";s:16:\"EditScheduledJob\";s:3:\"url\";s:31:\"/civicrm/admin/job/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:40:\"/civicrm/admin/sms/provider/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:8:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:37:\"/civicrm/admin/component/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:20:\"List email accounts.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Duplicates\";a:6:{s:5:\"title\";s:17:\"Manage Duplicates\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:16:\"ManageDuplicates\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); + (1,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), +(2,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), +(3,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), +(4,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(5,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(6,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(7,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), +(8,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), +(9,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(10,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(11,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(12,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(13,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(14,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(15,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(16,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(17,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(18,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(19,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(20,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(21,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(22,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(23,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(24,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(25,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(26,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(27,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(28,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(29,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(30,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(31,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(32,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(33,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), +(34,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(35,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(36,1,'civicrm/dashlet/getting-started',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(37,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), +(38,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(39,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), +(40,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(41,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(42,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(43,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(44,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(45,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(46,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(47,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(48,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(49,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(50,1,'civicrm/contact/deduperules',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), +(51,1,'civicrm/contact/dedupefind',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(52,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(53,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(54,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), +(55,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(56,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(57,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(58,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(59,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(60,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(61,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(62,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(63,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(64,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(65,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(66,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(67,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(68,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(69,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(70,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), +(71,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(72,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(73,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(74,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(75,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(76,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(77,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(78,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), +(79,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), +(80,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), +(81,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), +(82,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), +(83,1,'civicrm/admin/uf/group/copy',NULL,'Profile Copy','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,26,1,0,0,'a:0:{}'), +(84,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), +(85,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(86,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(87,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(88,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(89,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(90,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(91,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(92,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(93,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(94,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(95,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(96,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(97,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(98,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(99,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(100,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(101,1,'civicrm/admin/setting/preferences/date/edit',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_PreferencesDate\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Date Preferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(102,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(103,1,'civicrm/admin/menu/item',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Navigation\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Navigation Menu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(104,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(105,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(106,1,'civicrm/admin/options/from_email_address',NULL,'Site Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:44:\"url=civicrm/admin/options/site_email_address\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(107,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(108,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), +(109,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(110,1,'civicrm/admin/scheduleReminders/edit',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Form_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Schedule Reminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(111,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(112,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(113,1,'civicrm/admin/labelFormats',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(114,1,'civicrm/admin/labelFormats/edit',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Label Page Formats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(115,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(116,1,'civicrm/admin/pdfFormats/edit',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(117,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(118,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(119,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(120,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), +(121,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), +(122,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), +(123,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), +(124,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), +(125,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), +(126,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), +(127,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), +(128,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(129,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(130,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(131,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(132,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(133,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(134,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(135,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(136,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(137,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(138,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(139,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(140,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(141,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(142,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(143,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(144,1,'civicrm/admin/mapping/edit',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Mapping\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,111,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(145,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(146,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(147,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), +(148,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(149,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), +(150,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), +(151,1,'civicrm/admin/setting/preferences/date',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,97,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(152,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), +(153,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(154,1,'civicrm/admin/job/add',NULL,'Add Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Form_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:31:\"Add a periodially running task.\";}'), +(155,1,'civicrm/admin/job/edit',NULL,'Edit Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1372,1,0,0,'a:2:{s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(156,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), +(157,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), +(158,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), +(159,1,'civicrm/admin',NULL,'Administer','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), +(160,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(161,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), +(162,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(163,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), +(164,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), +(165,1,'civicrm/admin/price/edit',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(166,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(167,1,'civicrm/admin/price/field/edit',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(168,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(169,1,'civicrm/admin/price/field/option/edit',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}i:3;a:2:{s:5:\"title\";s:19:\"Price Field Options\";s:3:\"url\";s:41:\"/civicrm/admin/price/field/option?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(170,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(171,1,'civicrm/admin/sms/provider/edit',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Form_Provider\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Sms Providers\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,501,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), +(172,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), +(173,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(174,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(175,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(176,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(177,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(178,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(179,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(180,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(181,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(182,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(183,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), +(184,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(185,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), +(186,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), +(187,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(188,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(189,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(190,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), +(191,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(192,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(193,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(194,1,'civicrm/acl/edit',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(195,1,'civicrm/acl/delete',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(196,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(197,1,'civicrm/acl/entityrole/edit',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Form_EntityRole\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Assign Users to ACL Roles\";s:3:\"url\";s:31:\"/civicrm/acl/entityrole?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(198,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(199,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(200,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), +(201,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(202,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(203,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(204,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(205,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(206,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(207,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(208,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(209,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(210,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(211,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(212,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), +(213,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(214,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(215,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(216,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(217,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(218,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(219,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(220,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(221,1,'civicrm/dev/rtf',NULL,'Remote Test Function','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:32:\"CRM_Core_Page_RemoteTestFunction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(222,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(223,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(224,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(225,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(226,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(227,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(228,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(229,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(230,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(231,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(232,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(233,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(234,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(235,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(236,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(237,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(238,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(239,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(240,1,'civicrm/note',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Note_Form_Note\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(241,1,'civicrm/task/delete-permanently',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"access deleted contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(242,1,'civicrm/task/restore-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(243,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), +(244,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(245,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(246,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(247,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), +(248,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), +(249,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), +(250,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(251,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), +(252,1,'civicrm/import/contribution',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,520,1,1,0,'a:0:{}'), +(253,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:30:\"class_prefix=CRM_Custom_Import\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), +(254,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(255,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), +(256,1,'civicrm/ajax/api4',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(257,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(258,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), +(259,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), +(260,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(261,1,'civicrm/group/edit',NULL,'Edit Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:19:\"CRM_Group_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(262,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(263,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), +(264,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(265,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(266,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(267,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(268,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(269,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), +(270,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(271,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(272,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), +(273,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), +(274,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), +(275,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), +(276,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), +(277,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), +(278,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), +(279,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), +(280,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), +(281,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), +(282,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), +(283,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(284,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(285,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(286,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(287,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(288,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), +(289,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), +(290,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), +(291,1,'civicrm/event/participant/print',NULL,'ts(\'PDF letter - print for participants\')','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:23:\"CRM_Event_Form_Task_PDF\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), +(292,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), +(293,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), +(294,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), +(295,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), +(296,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), +(297,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), +(298,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), +(299,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), +(300,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), +(301,1,'civicrm/import/participant',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,840,1,1,0,'a:0:{}'), +(302,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), +(303,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), +(304,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), +(305,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), +(306,1,'civicrm/participant/delete',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"delete in CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_Participant_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), +(307,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(308,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(309,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), +(310,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), +(311,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), +(312,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(313,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(314,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(315,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), +(316,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(317,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), +(318,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), +(319,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), +(320,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), +(321,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), +(322,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), +(323,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), +(324,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), +(325,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), +(326,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(327,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(328,1,'civicrm/admin/contribute/managePremiums/edit',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_ManagePremiums\";','s:13:\"imageUpload=1\";','a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}i:3;a:2:{s:5:\"title\";s:15:\"Manage Premiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(329,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(330,1,'civicrm/admin/financial/financialType/edit',NULL,'Edit Financial Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Form_FinancialType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(331,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(332,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(333,1,'civicrm/admin/financial/financialAccount/edit',NULL,'Edit Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Form_FinancialAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Financial Accounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(334,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(335,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(336,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(337,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(338,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(339,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(340,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), +(341,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), +(342,1,'civicrm/admin/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,530,1,1,0,'a:0:{}'), +(343,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), +(344,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(345,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(346,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(347,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(348,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(349,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(350,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), +(351,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), +(352,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), +(353,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), +(354,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), +(355,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(356,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), +(357,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(358,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), +(359,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(360,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(361,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(362,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), +(363,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), +(364,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,1,0,1,0,700,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), +(365,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), +(366,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), +(367,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), +(368,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,2,1,0,0,'a:0:{}'), +(369,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,390,1,0,0,'a:0:{}'), +(370,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,710,1,1,0,'a:0:{}'), +(371,1,'civicrm/import/membership',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:20:\"entity_prefix=Member\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,720,1,1,0,'a:0:{}'), +(372,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(373,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(374,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,1,0,1,0,600,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'), +(375,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), +(376,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), +(377,1,'civicrm/admin/component/edit',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Component\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,411,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), +(378,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:20:\"List email accounts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), +(379,1,'civicrm/admin/mailSettings/edit',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_MailSettings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Mail Accounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), +(380,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,610,1,1,0,'a:0:{}'), +(381,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), +(382,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), +(383,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,625,1,1,0,'a:0:{}'), +(384,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,630,1,1,0,'a:0:{}'), +(385,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,640,1,0,0,'a:0:{}'), +(386,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,645,1,0,0,'a:0:{}'), +(387,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,650,1,0,0,'a:0:{}'), +(388,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), +(389,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), +(390,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,680,1,0,0,'a:0:{}'), +(391,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,685,1,0,0,'a:0:{}'), +(392,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&mid=%%mid%%\";}}',NULL,NULL,4,1,0,1,0,695,1,0,0,'a:0:{}'), +(393,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(394,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,800,1,0,0,'a:0:{}'), +(395,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,850,1,0,0,'a:0:{}'), +(396,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(397,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(398,1,'civicrm/ajax/setupMailAccount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:5:\"setup\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(399,1,'civicrm/mailing/url',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:20:\"CRM_Mailing_Page_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), +(400,1,'civicrm/mailing/open',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:21:\"CRM_Mailing_Page_Open\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), +(401,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,1,0,1,0,550,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), +(402,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,560,1,1,0,'a:0:{}'), +(403,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,570,1,0,0,'a:0:{}'), +(404,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), +(405,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,580,1,0,0,'a:0:{}'), +(406,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(407,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,1,0,1,0,900,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), +(408,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), +(409,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,910,1,1,0,'a:0:{}'), +(410,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(411,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(412,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(413,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(414,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(415,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(416,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(417,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(418,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:1:{s:10:\"adminGroup\";s:8:\"CiviCase\";}'), +(419,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), +(420,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), +(421,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), +(422,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), +(423,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(424,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(425,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,3,0,'a:0:{}'), +(426,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(427,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(428,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(429,1,'civicrm/case/email/add','action=add,task=email','Email','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_Task_Email\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), +(430,1,'civicrm/contact/view/case/deleteClient',NULL,'Remove Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Case_Form_DeleteClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(431,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,1,0,1,0,1200,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'), +(432,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), +(433,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1220,1,1,0,'a:0:{}'), +(434,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1241,1,1,0,'a:0:{}'), +(435,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'), +(436,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), +(437,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), +(438,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), +(439,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), +(440,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), +(441,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), +(442,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), +(443,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), +(444,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,2,1,0,0,'a:3:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), +(445,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,3,1,0,0,'a:3:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), +(446,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,4,1,0,0,'a:3:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), +(447,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), +(448,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), +(449,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(450,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(451,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(452,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(453,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), +(454,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(455,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(456,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(457,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(458,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), +(459,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor 4','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Ckeditor4_Form_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), +(460,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:20:\"administer recaptcha\";}i:1;s:2:\"or\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";}'), +(461,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:26:\"{weight}.Manage Duplicates\";a:6:{s:5:\"title\";s:17:\"Manage Duplicates\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:16:\"ManageDuplicates\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Date Preferences\";a:6:{s:5:\"title\";s:16:\"Date Preferences\";s:4:\"desc\";N;s:2:\"id\";s:15:\"DatePreferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.Site Email Addresses\";a:6:{s:5:\"title\";s:20:\"Site Email Addresses\";s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"SiteEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Label Page Formats\";a:6:{s:5:\"title\";s:18:\"Label Page Formats\";s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:2:\"id\";s:16:\"LabelPageFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:20:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:35:\"/civicrm/admin/mapping/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Edit Scheduled Job\";a:6:{s:5:\"title\";s:18:\"Edit Scheduled Job\";s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:2:\"id\";s:16:\"EditScheduledJob\";s:3:\"url\";s:31:\"/civicrm/admin/job/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:40:\"/civicrm/admin/sms/provider/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:8:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:37:\"/civicrm/admin/component/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:20:\"List email accounts.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); /*!40000 ALTER TABLE `civicrm_menu` ENABLE KEYS */; UNLOCK TABLES; @@ -5287,70 +5316,70 @@ LOCK TABLES `civicrm_msg_template` WRITE; /*!40000 ALTER TABLE `civicrm_msg_template` DISABLE KEYS */; INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `workflow_name`, `is_default`, `is_reserved`, `is_sms`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',1,0,0,NULL), - (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',0,1,0,NULL), - (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',1,0,0,NULL), - (4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',0,1,0,NULL), - (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',1,0,0,NULL), - (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',0,1,0,NULL), - (7,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',1,0,0,NULL), - (8,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',0,1,0,NULL), - (9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',1,0,0,NULL), - (10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',0,1,0,NULL), - (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',1,0,0,NULL), - (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',0,1,0,NULL), - (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',1,0,0,NULL), - (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',0,1,0,NULL), - (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',1,0,0,NULL), - (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',0,1,0,NULL), - (17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',1,0,0,NULL), - (18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',0,1,0,NULL), - (19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',1,0,0,NULL), - (20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',0,1,0,NULL), - (21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',1,0,0,NULL), - (22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',0,1,0,NULL), - (23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',1,0,0,NULL), - (24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',0,1,0,NULL), - (25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',1,0,0,NULL), - (26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',0,1,0,NULL), - (27,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',1,0,0,NULL), - (28,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',0,1,0,NULL), - (29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',1,0,0,NULL), - (30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',0,1,0,NULL), - (31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',1,0,0,NULL), - (32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',0,1,0,NULL), - (33,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',1,0,0,NULL), - (34,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',0,1,0,NULL), - (35,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',1,0,0,NULL), - (36,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',0,1,0,NULL), - (37,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',1,0,0,NULL), - (38,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',0,1,0,NULL), - (39,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',1,0,0,NULL), - (40,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',0,1,0,NULL), - (41,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',1,0,0,NULL), - (42,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',0,1,0,NULL), - (43,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',1,0,0,NULL), - (44,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',0,1,0,NULL), - (45,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',1,0,0,NULL), - (46,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',0,1,0,NULL), - (47,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',1,0,0,NULL), - (48,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',0,1,0,NULL), - (49,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',1,0,0,NULL), - (50,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',0,1,0,NULL), - (51,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',1,0,0,NULL), - (52,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',0,1,0,NULL), - (53,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',1,0,0,NULL), - (54,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',0,1,0,NULL), - (55,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',1,0,0,NULL), - (56,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',0,1,0,NULL), - (57,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',1,0,0,NULL), - (58,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',0,1,0,NULL), - (59,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',1,0,0,NULL), - (60,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',0,1,0,NULL), - (61,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',1,0,0,NULL), - (62,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',0,1,0,NULL), - (63,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), - (64,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting_display},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), - (65,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,NULL,1,0,0,NULL); +(2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',0,1,0,NULL), +(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',1,0,0,NULL), +(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',0,1,0,NULL), +(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',1,0,0,NULL), +(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',0,1,0,NULL), +(7,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',1,0,0,NULL), +(8,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',0,1,0,NULL), +(9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',1,0,0,NULL), +(10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',0,1,0,NULL), +(11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',1,0,0,NULL), +(12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',0,1,0,NULL), +(13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',1,0,0,NULL), +(14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',0,1,0,NULL), +(15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',1,0,0,NULL), +(16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',0,1,0,NULL), +(17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',1,0,0,NULL), +(18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',0,1,0,NULL), +(19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',1,0,0,NULL), +(20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',0,1,0,NULL), +(21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',1,0,0,NULL), +(22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',0,1,0,NULL), +(23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',1,0,0,NULL), +(24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',0,1,0,NULL), +(25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',1,0,0,NULL), +(26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',0,1,0,NULL), +(27,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',1,0,0,NULL), +(28,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',0,1,0,NULL), +(29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',1,0,0,NULL), +(30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',0,1,0,NULL), +(31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',1,0,0,NULL), +(32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',0,1,0,NULL), +(33,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',1,0,0,NULL), +(34,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',0,1,0,NULL), +(35,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',1,0,0,NULL), +(36,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',0,1,0,NULL), +(37,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',1,0,0,NULL), +(38,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',0,1,0,NULL), +(39,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',1,0,0,NULL), +(40,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',0,1,0,NULL), +(41,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',1,0,0,NULL), +(42,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',0,1,0,NULL), +(43,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',1,0,0,NULL), +(44,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',0,1,0,NULL), +(45,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',1,0,0,NULL), +(46,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',0,1,0,NULL), +(47,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',1,0,0,NULL), +(48,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',0,1,0,NULL), +(49,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',1,0,0,NULL), +(50,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',0,1,0,NULL), +(51,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',1,0,0,NULL), +(52,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',0,1,0,NULL), +(53,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',1,0,0,NULL), +(54,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',0,1,0,NULL), +(55,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',1,0,0,NULL), +(56,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',0,1,0,NULL), +(57,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',1,0,0,NULL), +(58,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',0,1,0,NULL), +(59,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',1,0,0,NULL), +(60,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',0,1,0,NULL), +(61,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',1,0,0,NULL), +(62,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',0,1,0,NULL), +(63,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), +(64,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting_display},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), +(65,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,NULL,1,0,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -5362,250 +5391,250 @@ LOCK TABLES `civicrm_navigation` WRITE; /*!40000 ALTER TABLE `civicrm_navigation` DISABLE KEYS */; INSERT INTO `civicrm_navigation` (`id`, `domain_id`, `label`, `name`, `url`, `icon`, `permission`, `permission_operator`, `parent_id`, `is_active`, `has_separator`, `weight`) VALUES (1,1,'Home','Home','civicrm/dashboard?reset=1',NULL,NULL,'',NULL,1,NULL,0), - (2,1,'Search','Search',NULL,'crm-i fa-search',NULL,'',NULL,1,NULL,10), - (3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,NULL,'',2,1,NULL,1), - (4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,NULL,'',2,1,NULL,2), - (5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,NULL,'',2,1,NULL,3), - (6,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',2,1,NULL,5), - (7,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',2,1,NULL,6), - (8,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1',NULL,'access CiviMail','',2,1,NULL,7), - (9,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',2,1,NULL,8), - (10,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',2,1,NULL,9), - (11,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',2,1,NULL,10), - (12,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,NULL,'',2,1,1,11), - (13,1,'Contacts','Contacts',NULL,'crm-i fa-address-book-o',NULL,'',NULL,1,NULL,20), - (14,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual',NULL,'add contacts','',13,1,NULL,1), - (15,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household',NULL,'add contacts','',13,1,NULL,2), - (16,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization',NULL,'add contacts','',13,1,1,3), - (17,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',13,1,1,4), - (18,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,NULL,'',13,1,NULL,5), - (19,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,NULL,'',13,1,1,6), - (20,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1',NULL,'import contacts','',13,1,NULL,7), - (21,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1',NULL,'import contacts','',13,1,NULL,8), - (22,1,'Import Custom Data','Import MultiValued Custom','civicrm/import/custom?reset=1',NULL,'import contacts','',13,1,1,9), - (23,1,'New Group','New Group','civicrm/group/add?reset=1',NULL,'edit groups','',13,0,NULL,10), - (24,1,'Manage Groups','Manage Groups','civicrm/group?reset=1',NULL,'access CiviCRM','',13,1,1,11), - (25,1,'Manage Tags','Manage Tags (Categories)','civicrm/tag?reset=1',NULL,'manage tags','',13,1,1,12), - (26,1,'Manage Duplicates','Manage Duplicates','civicrm/contact/deduperules?reset=1',NULL,'administer dedupe rules,merge duplicate contacts','OR',13,1,NULL,13), - (27,1,'Contributions','Contributions',NULL,'crm-i fa-credit-card','access CiviContribute','',NULL,1,NULL,30), - (28,1,'Dashboard','Dashboard','civicrm/contribute?reset=1',NULL,'access CiviContribute','',27,1,NULL,1), - (29,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone',NULL,'access CiviContribute,edit contributions','AND',27,1,NULL,2), - (30,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',27,1,NULL,3), - (31,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',27,1,1,4), - (32,1,'Import Contributions','Import Contributions','civicrm/import/contribution?reset=1',NULL,'access CiviContribute,edit contributions','AND',27,1,1,5), - (33,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',27,1,NULL,7), - (34,1,'Pledges','Pledges',NULL,NULL,'access CiviPledge','',27,1,1,6), - (35,1,'Accounting Batches','Accounting Batches',NULL,NULL,'view own manual batches,view all manual batches','OR',27,1,1,8), - (36,1,'Dashboard','Dashboard','civicrm/pledge?reset=1',NULL,'access CiviPledge','',34,1,NULL,1), - (37,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone',NULL,'access CiviPledge,edit pledges','AND',34,1,NULL,2), - (38,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',34,1,NULL,3), - (39,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',34,1,0,4), - (40,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,9), - (41,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,10), - (42,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,NULL,11), - (43,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,12), - (44,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,13), - (45,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,14), - (46,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add',NULL,'create manual batch','AND',35,1,NULL,1), - (47,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,2), - (48,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,3), - (49,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,4), - (50,1,'Events','Events',NULL,'crm-i fa-calendar','access CiviEvent','',NULL,1,NULL,40), - (51,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1',NULL,'access CiviEvent','',50,1,NULL,1), - (52,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone',NULL,'access CiviEvent,edit event participants','AND',50,1,NULL,2), - (53,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',50,1,NULL,3), - (54,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',50,1,1,4), - (55,1,'Import Participants','Import Participants','civicrm/import/participant?reset=1',NULL,'access CiviEvent,edit event participants','AND',50,1,1,5), - (56,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,6), - (57,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,7), - (58,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',50,1,1,8), - (59,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,9), - (60,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,10), - (61,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,NULL,11), - (62,1,'Mailings','Mailings',NULL,'crm-i fa-envelope-o','access CiviMail,create mailings,approve mailings,schedule mailings,send SMS','OR',NULL,1,NULL,50), - (63,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,1), - (64,1,'Draft Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false',NULL,'access CiviMail,create mailings,schedule mailings','OR',62,1,NULL,2), - (65,1,'Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true',NULL,'access CiviMail,approve mailings,create mailings,schedule mailings','OR',62,1,NULL,3), - (66,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,4), - (67,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',62,1,1,5), - (68,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',62,1,NULL,6), - (69,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'edit message templates,edit user-driven message templates,edit system workflow message templates','OR',62,1,NULL,7), - (70,1,'Site Email Addresses','CiviMail Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',62,1,1,8), - (71,1,'New SMS','New SMS','civicrm/sms/send?reset=1',NULL,'send SMS',NULL,62,1,NULL,9), - (72,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1',NULL,'send SMS',NULL,62,1,1,10), - (73,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new',NULL,'access CiviMail','',62,1,NULL,15), - (74,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest',NULL,'access CiviMail','',62,1,1,16), - (75,1,'Memberships','Memberships',NULL,'crm-i fa-id-badge','access CiviMember','',NULL,1,NULL,60), - (76,1,'Dashboard','Dashboard','civicrm/member?reset=1',NULL,'access CiviMember','',75,1,NULL,1), - (77,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone',NULL,'access CiviMember,edit memberships','AND',75,0,NULL,2), - (78,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',75,1,NULL,3), - (79,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',75,1,1,4), - (80,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',75,1,NULL,5), - (81,1,'Import Memberships','Import Members','civicrm/import/membership?reset=1',NULL,'access CiviMember,edit memberships','AND',75,1,1,6), - (82,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',75,0,NULL,7), - (83,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',75,1,NULL,8), - (84,1,'Campaigns','Campaigns',NULL,'crm-i fa-bullhorn','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70), - (85,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,2), - (86,1,'New Survey','New Survey','civicrm/survey/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,3), - (87,1,'New Petition','New Petition','civicrm/petition/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,4), - (88,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts','OR',84,1,NULL,5), - (89,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview',NULL,'administer CiviCampaign,manage campaign,interview campaign contacts','OR',84,1,NULL,6), - (90,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release',NULL,'administer CiviCampaign,manage campaign,release campaign contacts','OR',84,1,NULL,7), - (91,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',84,1,1,8), - (92,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',84,1,NULL,9), - (93,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1',NULL,'administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',84,1,NULL,10), - (94,1,'Cases','Cases',NULL,'crm-i fa-folder-open-o','access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80), - (95,1,'Dashboard','Dashboard','civicrm/case?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,NULL,1), - (96,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone',NULL,'add cases,access all cases and activities','OR',94,1,NULL,2), - (97,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,1,3), - (98,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',94,1,0,4), - (99,1,'Administer','Administer',NULL,'crm-i fa-gears','administer CiviCRM','',NULL,1,NULL,100), - (100,1,'Administration Console','Administration Console','civicrm/admin?reset=1',NULL,'administer CiviCRM','',99,1,NULL,1), - (101,1,'System Status','System Status','civicrm/a/#/status',NULL,'administer CiviCRM','',100,1,NULL,0), - (102,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1',NULL,'administer CiviCRM','',100,1,NULL,1), - (103,1,'Customize Data and Screens','Customize Data and Screens',NULL,NULL,'administer CiviCRM','',99,1,NULL,3), - (104,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,1), - (105,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,2), - (106,1,'Tags','Tags (Categories)','civicrm/tag?reset=1',NULL,'administer CiviCRM','',103,1,NULL,3), - (107,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1',NULL,'administer CiviCRM','',103,1,NULL,4), - (108,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,5), - (109,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,6), - (110,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1',NULL,'administer CiviCRM','',103,1,NULL,9), - (111,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1',NULL,'administer CiviCRM','',103,1,NULL,10), - (112,1,'Date Preferences','Date Preferences','civicrm/admin/setting/preferences/date?reset=1',NULL,'administer CiviCRM','',103,1,NULL,11), - (113,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1',NULL,'administer CiviCRM','',103,1,NULL,12), - (114,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1',NULL,'administer CiviCRM','',103,1,NULL,13), - (115,1,'Dropdown Options','Dropdown Options','civicrm/admin/options?action=browse&reset=1',NULL,'administer CiviCRM','',103,1,NULL,8), - (116,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1',NULL,'administer CiviCRM','',115,1,NULL,1), - (117,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,2), - (118,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,3), - (119,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1',NULL,'administer CiviCRM','',115,1,NULL,4), - (120,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1',NULL,'administer CiviCRM','',115,1,NULL,5), - (121,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1',NULL,'administer CiviCRM','',115,1,NULL,6), - (122,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,7), - (123,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,8), - (124,1,'Communications','Communications',NULL,NULL,'administer CiviCRM','',99,1,NULL,4), - (125,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1',NULL,'administer CiviCRM','',124,1,NULL,1), - (126,1,'Site Email Addresses','Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',124,1,NULL,2), - (127,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',124,1,NULL,3), - (128,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1',NULL,'administer CiviCRM','',124,1,NULL,4), - (129,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1',NULL,'administer CiviCRM','',124,1,NULL,5), - (130,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,6), - (131,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,7), - (132,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1',NULL,'administer CiviCRM','',124,1,NULL,8), - (133,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,9), - (134,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,10), - (135,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1',NULL,'administer CiviCRM','',124,1,NULL,11), - (136,1,'Localization','Localization',NULL,NULL,'administer CiviCRM','',99,1,NULL,6), - (137,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1',NULL,'administer CiviCRM','',136,1,NULL,1), - (138,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1',NULL,'administer CiviCRM','',136,1,NULL,2), - (139,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1',NULL,'administer CiviCRM','',136,1,NULL,3), - (140,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1',NULL,'administer CiviCRM','',136,1,NULL,4), - (141,1,'Users and Permissions','Users and Permissions',NULL,NULL,'administer CiviCRM','',99,1,NULL,7), - (142,1,'Access Control Lists','Permissions (Access Control)','civicrm/admin/access?reset=1',NULL,'administer CiviCRM','',141,1,NULL,5), - (143,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1',NULL,'administer CiviCRM','',141,1,NULL,10), - (144,1,'System Settings','System Settings',NULL,NULL,'administer CiviCRM','',99,1,NULL,8), - (145,1,'Components','Enable Components','civicrm/admin/setting/component?reset=1',NULL,'administer CiviCRM','',144,1,NULL,1), - (146,1,'Extensions','Manage Extensions','civicrm/admin/extensions?reset=1',NULL,'administer CiviCRM','',144,1,1,3), - (147,1,'Cleanup Caches and Update Paths','Cleanup Caches and Update Paths','civicrm/admin/setting/updateConfigBackend?reset=1',NULL,'administer CiviCRM','',144,1,NULL,4), - (148,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1',NULL,'administer CiviCRM','',144,1,NULL,5), - (149,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1',NULL,'administer CiviCRM','',144,1,NULL,6), - (150,1,'Directories','Directories','civicrm/admin/setting/path?reset=1',NULL,'administer CiviCRM','',144,1,NULL,7), - (151,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,8), - (152,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,9), - (153,1,'Misc (Undelete, PDFs, Limits, Logging, etc.)','misc_admin_settings','civicrm/admin/setting/misc?reset=1',NULL,'administer CiviCRM','',144,1,NULL,10), - (154,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1',NULL,'administer CiviCRM','',144,1,NULL,11), - (155,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1',NULL,'administer CiviCRM','',144,1,NULL,12), - (156,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1',NULL,'administer CiviCRM','',144,1,NULL,13), - (157,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',144,1,NULL,14), - (158,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1',NULL,'administer CiviCRM','',144,1,NULL,15), - (159,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1',NULL,'administer CiviCRM','',144,1,NULL,16), - (160,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1',NULL,'administer CiviCRM','',144,1,NULL,17), - (161,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1',NULL,'administer CiviCRM','',144,1,NULL,18), - (162,1,'CiviCampaign','CiviCampaign',NULL,NULL,'administer CiviCampaign,administer CiviCRM','AND',99,1,NULL,9), - (163,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,1), - (164,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,2), - (165,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,3), - (166,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,4), - (167,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,5), - (168,1,'CiviCase','CiviCase',NULL,NULL,'administer CiviCase',NULL,99,1,NULL,10), - (169,1,'CiviCase Settings','CiviCase Settings','civicrm/admin/setting/case?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,1), - (170,1,'Case Types','Case Types','civicrm/a/#/caseType',NULL,'administer CiviCase',NULL,168,1,NULL,2), - (171,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,3), - (172,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,4), - (173,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,5), - (174,1,'CiviContribute','CiviContribute',NULL,NULL,'access CiviContribute,administer CiviCRM','AND',99,1,NULL,11), - (175,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,6), - (176,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,7), - (177,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,8), - (178,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,9), - (179,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,10), - (180,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,11), - (181,1,'Payment Methods','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,12), - (182,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,13), - (183,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,14), - (184,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,0,NULL,15), - (185,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,16), - (186,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',174,1,NULL,17), - (187,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1',NULL,'administer CiviCRM','',174,1,NULL,18), - (188,1,'CiviEvent','CiviEvent',NULL,NULL,'access CiviEvent,administer CiviCRM','AND',99,1,NULL,12), - (189,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,1), - (190,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,2), - (191,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,3), - (192,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,4), - (193,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,0,NULL,5), - (194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,6), - (195,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,7), - (196,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,8), - (197,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,9), - (198,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,10), - (199,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,11), - (200,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',188,1,NULL,12), - (201,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,13), - (202,1,'CiviMail','CiviMail',NULL,NULL,'access CiviMail,administer CiviCRM','AND',99,1,NULL,14), - (203,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,1), - (204,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',202,1,NULL,2), - (205,1,'Site Email Addresses','CiviMail Admin Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',202,1,NULL,3), - (206,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,4), - (207,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,5), - (208,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,6), - (209,1,'CiviMember','CiviMember',NULL,NULL,'access CiviMember,administer CiviCRM','AND',99,1,NULL,15), - (210,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,1), - (211,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,1,2), - (212,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,3), - (213,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,4), - (214,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,5), - (215,1,'CiviReport','CiviReport',NULL,NULL,'access CiviReport,administer CiviCRM','AND',99,1,NULL,16), - (216,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',215,1,NULL,1), - (217,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1',NULL,'administer Reports','',215,1,NULL,2), - (218,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1',NULL,'administer Reports','',215,1,NULL,3), - (219,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1',NULL,'administer Reports','',215,1,NULL,4), - (220,1,'Support','Support',NULL,'crm-i fa-life-ring',NULL,'',NULL,1,NULL,110), - (221,1,'User Guide','User Guide','https://docs.civicrm.org/user/?src=iam',NULL,NULL,'AND',220,1,NULL,1), - (222,1,'Get Help','Get Help','https://civicrm.org/help?src=iam',NULL,NULL,'AND',220,1,NULL,2), - (223,1,'About CiviCRM','About CiviCRM','https://civicrm.org/about?src=iam',NULL,NULL,'AND',220,1,1,3), - (224,1,'Register Your Site','Register Your Site','https://civicrm.org/register-your-site?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,4), - (225,1,'Join CiviCRM','Join CiviCRM','https://civicrm.org/become-a-member?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,5), - (226,1,'Developer','Developer',NULL,NULL,'administer CiviCRM','',220,1,1,6), - (227,1,'Api Explorer v3','API Explorer','civicrm/api3',NULL,'administer CiviCRM','',226,1,NULL,1), - (228,1,'Api Explorer v4','Api Explorer v4','civicrm/api4#/explorer',NULL,'administer CiviCRM','',226,1,NULL,2), - (229,1,'Developer Docs','Developer Docs','https://civicrm.org/developer-documentation?src=iam',NULL,'administer CiviCRM','',226,1,NULL,3), - (230,1,'Reports','Reports',NULL,'crm-i fa-bar-chart','access CiviReport','',NULL,1,NULL,95), - (231,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',230,1,0,1), - (232,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',230,1,0,2), - (233,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',230,1,0,3), - (234,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',230,1,0,4), - (235,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',230,1,0,5), - (236,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',230,1,0,6), - (237,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',230,1,0,7), - (238,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',230,1,0,8), - (239,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',230,1,1,10), - (240,1,'My Reports','My Reports','civicrm/report/list?myreports=1&reset=1',NULL,'access CiviReport','',230,1,1,11), - (241,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1',NULL,'add contacts','',14,1,NULL,1), - (242,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1',NULL,'add contacts','',14,1,NULL,2), - (243,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1',NULL,'add contacts','',14,1,NULL,3), - (244,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1',NULL,'add contacts','',16,1,NULL,1), - (245,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1',NULL,'add contacts','',16,1,NULL,2); +(2,1,'Search','Search',NULL,'crm-i fa-search',NULL,'',NULL,1,NULL,10), +(3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,NULL,'',2,1,NULL,1), +(4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,NULL,'',2,1,NULL,2), +(5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,NULL,'',2,1,NULL,3), +(6,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',2,1,NULL,5), +(7,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',2,1,NULL,6), +(8,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1',NULL,'access CiviMail','',2,1,NULL,7), +(9,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',2,1,NULL,8), +(10,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',2,1,NULL,9), +(11,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',2,1,NULL,10), +(12,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,NULL,'',2,1,1,11), +(13,1,'Contacts','Contacts',NULL,'crm-i fa-address-book-o',NULL,'',NULL,1,NULL,20), +(14,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual',NULL,'add contacts','',13,1,NULL,1), +(15,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household',NULL,'add contacts','',13,1,NULL,2), +(16,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization',NULL,'add contacts','',13,1,1,3), +(17,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',13,1,1,4), +(18,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,NULL,'',13,1,NULL,5), +(19,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,NULL,'',13,1,1,6), +(20,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1',NULL,'import contacts','',13,1,NULL,7), +(21,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1',NULL,'import contacts','',13,1,NULL,8), +(22,1,'Import Custom Data','Import MultiValued Custom','civicrm/import/custom?reset=1',NULL,'import contacts','',13,1,1,9), +(23,1,'New Group','New Group','civicrm/group/add?reset=1',NULL,'edit groups','',13,0,NULL,10), +(24,1,'Manage Groups','Manage Groups','civicrm/group?reset=1',NULL,'access CiviCRM','',13,1,1,11), +(25,1,'Manage Tags','Manage Tags (Categories)','civicrm/tag?reset=1',NULL,'manage tags','',13,1,1,12), +(26,1,'Manage Duplicates','Manage Duplicates','civicrm/contact/deduperules?reset=1',NULL,'administer dedupe rules,merge duplicate contacts','OR',13,1,NULL,13), +(27,1,'Contributions','Contributions',NULL,'crm-i fa-credit-card','access CiviContribute','',NULL,1,NULL,30), +(28,1,'Dashboard','Dashboard','civicrm/contribute?reset=1',NULL,'access CiviContribute','',27,1,NULL,1), +(29,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone',NULL,'access CiviContribute,edit contributions','AND',27,1,NULL,2), +(30,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',27,1,NULL,3), +(31,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',27,1,1,4), +(32,1,'Import Contributions','Import Contributions','civicrm/import/contribution?reset=1',NULL,'access CiviContribute,edit contributions','AND',27,1,1,5), +(33,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',27,1,NULL,7), +(34,1,'Pledges','Pledges',NULL,NULL,'access CiviPledge','',27,1,1,6), +(35,1,'Accounting Batches','Accounting Batches',NULL,NULL,'view own manual batches,view all manual batches','OR',27,1,1,8), +(36,1,'Dashboard','Dashboard','civicrm/pledge?reset=1',NULL,'access CiviPledge','',34,1,NULL,1), +(37,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone',NULL,'access CiviPledge,edit pledges','AND',34,1,NULL,2), +(38,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',34,1,NULL,3), +(39,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',34,1,0,4), +(40,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,9), +(41,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,10), +(42,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,NULL,11), +(43,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,12), +(44,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,13), +(45,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,14), +(46,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add',NULL,'create manual batch','AND',35,1,NULL,1), +(47,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,2), +(48,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,3), +(49,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,4), +(50,1,'Events','Events',NULL,'crm-i fa-calendar','access CiviEvent','',NULL,1,NULL,40), +(51,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1',NULL,'access CiviEvent','',50,1,NULL,1), +(52,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone',NULL,'access CiviEvent,edit event participants','AND',50,1,NULL,2), +(53,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',50,1,NULL,3), +(54,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',50,1,1,4), +(55,1,'Import Participants','Import Participants','civicrm/import/participant?reset=1',NULL,'access CiviEvent,edit event participants','AND',50,1,1,5), +(56,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,6), +(57,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,7), +(58,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',50,1,1,8), +(59,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,9), +(60,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,10), +(61,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,NULL,11), +(62,1,'Mailings','Mailings',NULL,'crm-i fa-envelope-o','access CiviMail,create mailings,approve mailings,schedule mailings,send SMS','OR',NULL,1,NULL,50), +(63,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,1), +(64,1,'Draft Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false',NULL,'access CiviMail,create mailings,schedule mailings','OR',62,1,NULL,2), +(65,1,'Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true',NULL,'access CiviMail,approve mailings,create mailings,schedule mailings','OR',62,1,NULL,3), +(66,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,4), +(67,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',62,1,1,5), +(68,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',62,1,NULL,6), +(69,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'edit message templates,edit user-driven message templates,edit system workflow message templates','OR',62,1,NULL,7), +(70,1,'Site Email Addresses','CiviMail Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',62,1,1,8), +(71,1,'New SMS','New SMS','civicrm/sms/send?reset=1',NULL,'send SMS',NULL,62,1,NULL,9), +(72,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1',NULL,'send SMS',NULL,62,1,1,10), +(73,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new',NULL,'access CiviMail','',62,1,NULL,15), +(74,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest',NULL,'access CiviMail','',62,1,1,16), +(75,1,'Memberships','Memberships',NULL,'crm-i fa-id-badge','access CiviMember','',NULL,1,NULL,60), +(76,1,'Dashboard','Dashboard','civicrm/member?reset=1',NULL,'access CiviMember','',75,1,NULL,1), +(77,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone',NULL,'access CiviMember,edit memberships','AND',75,0,NULL,2), +(78,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',75,1,NULL,3), +(79,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',75,1,1,4), +(80,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',75,1,NULL,5), +(81,1,'Import Memberships','Import Members','civicrm/import/membership?reset=1',NULL,'access CiviMember,edit memberships','AND',75,1,1,6), +(82,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',75,0,NULL,7), +(83,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',75,1,NULL,8), +(84,1,'Campaigns','Campaigns',NULL,'crm-i fa-bullhorn','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70), +(85,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,2), +(86,1,'New Survey','New Survey','civicrm/survey/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,3), +(87,1,'New Petition','New Petition','civicrm/petition/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,4), +(88,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts','OR',84,1,NULL,5), +(89,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview',NULL,'administer CiviCampaign,manage campaign,interview campaign contacts','OR',84,1,NULL,6), +(90,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release',NULL,'administer CiviCampaign,manage campaign,release campaign contacts','OR',84,1,NULL,7), +(91,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',84,1,1,8), +(92,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',84,1,NULL,9), +(93,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1',NULL,'administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',84,1,NULL,10), +(94,1,'Cases','Cases',NULL,'crm-i fa-folder-open-o','access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80), +(95,1,'Dashboard','Dashboard','civicrm/case?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,NULL,1), +(96,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone',NULL,'add cases,access all cases and activities','OR',94,1,NULL,2), +(97,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,1,3), +(98,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',94,1,0,4), +(99,1,'Administer','Administer',NULL,'crm-i fa-gears','administer CiviCRM','',NULL,1,NULL,100), +(100,1,'Administration Console','Administration Console','civicrm/admin?reset=1',NULL,'administer CiviCRM','',99,1,NULL,1), +(101,1,'System Status','System Status','civicrm/a/#/status',NULL,'administer CiviCRM','',100,1,NULL,0), +(102,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1',NULL,'administer CiviCRM','',100,1,NULL,1), +(103,1,'Customize Data and Screens','Customize Data and Screens',NULL,NULL,'administer CiviCRM','',99,1,NULL,3), +(104,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,1), +(105,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,2), +(106,1,'Tags','Tags (Categories)','civicrm/tag?reset=1',NULL,'administer CiviCRM','',103,1,NULL,3), +(107,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1',NULL,'administer CiviCRM','',103,1,NULL,4), +(108,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,5), +(109,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,6), +(110,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1',NULL,'administer CiviCRM','',103,1,NULL,9), +(111,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1',NULL,'administer CiviCRM','',103,1,NULL,10), +(112,1,'Date Preferences','Date Preferences','civicrm/admin/setting/preferences/date?reset=1',NULL,'administer CiviCRM','',103,1,NULL,11), +(113,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1',NULL,'administer CiviCRM','',103,1,NULL,12), +(114,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1',NULL,'administer CiviCRM','',103,1,NULL,13), +(115,1,'Dropdown Options','Dropdown Options','civicrm/admin/options?action=browse&reset=1',NULL,'administer CiviCRM','',103,1,NULL,8), +(116,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1',NULL,'administer CiviCRM','',115,1,NULL,1), +(117,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,2), +(118,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,3), +(119,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1',NULL,'administer CiviCRM','',115,1,NULL,4), +(120,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1',NULL,'administer CiviCRM','',115,1,NULL,5), +(121,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1',NULL,'administer CiviCRM','',115,1,NULL,6), +(122,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,7), +(123,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,8), +(124,1,'Communications','Communications',NULL,NULL,'administer CiviCRM','',99,1,NULL,4), +(125,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1',NULL,'administer CiviCRM','',124,1,NULL,1), +(126,1,'Site Email Addresses','Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',124,1,NULL,2), +(127,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',124,1,NULL,3), +(128,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1',NULL,'administer CiviCRM','',124,1,NULL,4), +(129,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1',NULL,'administer CiviCRM','',124,1,NULL,5), +(130,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,6), +(131,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,7), +(132,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1',NULL,'administer CiviCRM','',124,1,NULL,8), +(133,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,9), +(134,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,10), +(135,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1',NULL,'administer CiviCRM','',124,1,NULL,11), +(136,1,'Localization','Localization',NULL,NULL,'administer CiviCRM','',99,1,NULL,6), +(137,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1',NULL,'administer CiviCRM','',136,1,NULL,1), +(138,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1',NULL,'administer CiviCRM','',136,1,NULL,2), +(139,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1',NULL,'administer CiviCRM','',136,1,NULL,3), +(140,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1',NULL,'administer CiviCRM','',136,1,NULL,4), +(141,1,'Users and Permissions','Users and Permissions',NULL,NULL,'administer CiviCRM','',99,1,NULL,7), +(142,1,'Access Control Lists','Permissions (Access Control)','civicrm/admin/access?reset=1',NULL,'administer CiviCRM','',141,1,NULL,5), +(143,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1',NULL,'administer CiviCRM','',141,1,NULL,10), +(144,1,'System Settings','System Settings',NULL,NULL,'administer CiviCRM','',99,1,NULL,8), +(145,1,'Components','Enable Components','civicrm/admin/setting/component?reset=1',NULL,'administer CiviCRM','',144,1,NULL,1), +(146,1,'Extensions','Manage Extensions','civicrm/admin/extensions?reset=1',NULL,'administer CiviCRM','',144,1,1,3), +(147,1,'Cleanup Caches and Update Paths','Cleanup Caches and Update Paths','civicrm/admin/setting/updateConfigBackend?reset=1',NULL,'administer CiviCRM','',144,1,NULL,4), +(148,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1',NULL,'administer CiviCRM','',144,1,NULL,5), +(149,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1',NULL,'administer CiviCRM','',144,1,NULL,6), +(150,1,'Directories','Directories','civicrm/admin/setting/path?reset=1',NULL,'administer CiviCRM','',144,1,NULL,7), +(151,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,8), +(152,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,9), +(153,1,'Misc (Undelete, PDFs, Limits, Logging, etc.)','misc_admin_settings','civicrm/admin/setting/misc?reset=1',NULL,'administer CiviCRM','',144,1,NULL,10), +(154,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1',NULL,'administer CiviCRM','',144,1,NULL,11), +(155,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1',NULL,'administer CiviCRM','',144,1,NULL,12), +(156,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1',NULL,'administer CiviCRM','',144,1,NULL,13), +(157,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',144,1,NULL,14), +(158,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1',NULL,'administer CiviCRM','',144,1,NULL,15), +(159,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1',NULL,'administer CiviCRM','',144,1,NULL,16), +(160,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1',NULL,'administer CiviCRM','',144,1,NULL,17), +(161,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1',NULL,'administer CiviCRM','',144,1,NULL,18), +(162,1,'CiviCampaign','CiviCampaign',NULL,NULL,'administer CiviCampaign,administer CiviCRM','AND',99,1,NULL,9), +(163,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,1), +(164,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,2), +(165,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,3), +(166,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,4), +(167,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,5), +(168,1,'CiviCase','CiviCase',NULL,NULL,'administer CiviCase',NULL,99,1,NULL,10), +(169,1,'CiviCase Settings','CiviCase Settings','civicrm/admin/setting/case?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,1), +(170,1,'Case Types','Case Types','civicrm/a/#/caseType',NULL,'administer CiviCase',NULL,168,1,NULL,2), +(171,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,3), +(172,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,4), +(173,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,5), +(174,1,'CiviContribute','CiviContribute',NULL,NULL,'access CiviContribute,administer CiviCRM','AND',99,1,NULL,11), +(175,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,6), +(176,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,7), +(177,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,8), +(178,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,9), +(179,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,10), +(180,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,11), +(181,1,'Payment Methods','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,12), +(182,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,13), +(183,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,14), +(184,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,0,NULL,15), +(185,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,16), +(186,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',174,1,NULL,17), +(187,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1',NULL,'administer CiviCRM','',174,1,NULL,18), +(188,1,'CiviEvent','CiviEvent',NULL,NULL,'access CiviEvent,administer CiviCRM','AND',99,1,NULL,12), +(189,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,1), +(190,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,2), +(191,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,3), +(192,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,4), +(193,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,0,NULL,5), +(194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,6), +(195,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,7), +(196,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,8), +(197,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,9), +(198,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,10), +(199,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,11), +(200,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',188,1,NULL,12), +(201,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,13), +(202,1,'CiviMail','CiviMail',NULL,NULL,'access CiviMail,administer CiviCRM','AND',99,1,NULL,14), +(203,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,1), +(204,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',202,1,NULL,2), +(205,1,'Site Email Addresses','CiviMail Admin Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',202,1,NULL,3), +(206,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,4), +(207,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,5), +(208,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,6), +(209,1,'CiviMember','CiviMember',NULL,NULL,'access CiviMember,administer CiviCRM','AND',99,1,NULL,15), +(210,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,1), +(211,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,1,2), +(212,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,3), +(213,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,4), +(214,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,5), +(215,1,'CiviReport','CiviReport',NULL,NULL,'access CiviReport,administer CiviCRM','AND',99,1,NULL,16), +(216,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',215,1,NULL,1), +(217,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1',NULL,'administer Reports','',215,1,NULL,2), +(218,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1',NULL,'administer Reports','',215,1,NULL,3), +(219,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1',NULL,'administer Reports','',215,1,NULL,4), +(220,1,'Support','Support',NULL,'crm-i fa-life-ring',NULL,'',NULL,1,NULL,110), +(221,1,'User Guide','User Guide','https://docs.civicrm.org/user/?src=iam',NULL,NULL,'AND',220,1,NULL,1), +(222,1,'Get Help','Get Help','https://civicrm.org/help?src=iam',NULL,NULL,'AND',220,1,NULL,2), +(223,1,'About CiviCRM','About CiviCRM','https://civicrm.org/about?src=iam',NULL,NULL,'AND',220,1,1,3), +(224,1,'Register Your Site','Register Your Site','https://civicrm.org/register-your-site?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,4), +(225,1,'Join CiviCRM','Join CiviCRM','https://civicrm.org/become-a-member?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,5), +(226,1,'Developer','Developer',NULL,NULL,'administer CiviCRM','',220,1,1,6), +(227,1,'Api Explorer v3','API Explorer','civicrm/api3',NULL,'administer CiviCRM','',226,1,NULL,1), +(228,1,'Api Explorer v4','Api Explorer v4','civicrm/api4#/explorer',NULL,'administer CiviCRM','',226,1,NULL,2), +(229,1,'Developer Docs','Developer Docs','https://civicrm.org/developer-documentation?src=iam',NULL,'administer CiviCRM','',226,1,NULL,3), +(230,1,'Reports','Reports',NULL,'crm-i fa-bar-chart','access CiviReport','',NULL,1,NULL,95), +(231,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',230,1,0,1), +(232,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',230,1,0,2), +(233,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',230,1,0,3), +(234,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',230,1,0,4), +(235,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',230,1,0,5), +(236,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',230,1,0,6), +(237,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',230,1,0,7), +(238,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',230,1,0,8), +(239,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',230,1,1,10), +(240,1,'My Reports','My Reports','civicrm/report/list?myreports=1&reset=1',NULL,'access CiviReport','',230,1,1,11), +(241,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1',NULL,'add contacts','',14,1,NULL,1), +(242,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1',NULL,'add contacts','',14,1,NULL,2), +(243,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1',NULL,'add contacts','',14,1,NULL,3), +(244,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1',NULL,'add contacts','',16,1,NULL,1), +(245,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1',NULL,'add contacts','',16,1,NULL,2); /*!40000 ALTER TABLE `civicrm_navigation` ENABLE KEYS */; UNLOCK TABLES; @@ -5616,26 +5645,26 @@ UNLOCK TABLES; LOCK TABLES `civicrm_note` WRITE; /*!40000 ALTER TABLE `civicrm_note` DISABLE KEYS */; INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `note_date`, `created_date`, `modified_date`, `subject`, `privacy`) VALUES - (1,'civicrm_contact',144,'Arrange for cricket match with Sunil Gavaskar',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2025-01-03 01:57:00',NULL,'0'), - (2,'civicrm_contact',198,'Arrange for cricket match with Sunil Gavaskar',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2025-01-22 11:09:06',NULL,'0'), - (3,'civicrm_contact',184,'Reminder screening of \"Black\" on next Friday',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-03-30 08:57:51',NULL,'0'), - (4,'civicrm_contact',2,'Send newsletter for April 2005',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-06-24 10:29:10',NULL,'0'), - (5,'civicrm_contact',121,'Arrange collection of funds from members',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-09-30 21:13:32',NULL,'0'), - (6,'civicrm_contact',91,'Send newsletter for April 2005',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-06-16 19:05:17',NULL,'0'), - (7,'civicrm_contact',118,'Organize the Terry Fox run',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-11-21 22:34:41',NULL,'0'), - (8,'civicrm_contact',159,'Arrange collection of funds from members',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-03 14:30:42',NULL,'0'), - (9,'civicrm_contact',190,'Reminder screening of \"Black\" on next Friday',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-14 21:20:57',NULL,'0'), - (10,'civicrm_contact',50,'Organize the Terry Fox run',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-07 09:53:17',NULL,'0'), - (11,'civicrm_contact',127,'Arrange collection of funds from members',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2025-01-21 18:46:57',NULL,'0'), - (12,'civicrm_contact',105,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-03-04 23:41:09',NULL,'0'), - (13,'civicrm_contact',47,'Send newsletter for April 2005',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-03-15 03:19:32',NULL,'0'), - (14,'civicrm_contact',4,'Reminder screening of \"Black\" on next Friday',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-06-13 14:37:53',NULL,'0'), - (15,'civicrm_contact',169,'Get the registration done for NGO status',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-05-07 03:55:26',NULL,'0'), - (16,'civicrm_contact',165,'Reminder screening of \"Black\" on next Friday',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-04 13:17:05',NULL,'0'), - (17,'civicrm_contact',119,'Connect for presentation',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2025-01-06 21:03:17',NULL,'0'), - (18,'civicrm_contact',188,'Reminder screening of \"Black\" on next Friday',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-03-13 05:54:30',NULL,'0'), - (19,'civicrm_contact',12,'Get the registration done for NGO status',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-06 20:32:24',NULL,'0'), - (20,'civicrm_contact',94,'Connect for presentation',1,'2025-02-07 04:13:17','2025-02-07 04:13:17','2024-07-08 11:57:31',NULL,'0'); + (1,'civicrm_contact',131,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-12-07 20:21:04',NULL,'0'), +(2,'civicrm_contact',103,'Connect for presentation',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2025-02-01 11:18:05',NULL,'0'), +(3,'civicrm_contact',132,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-07-18 18:05:36',NULL,'0'), +(4,'civicrm_contact',119,'Connect for presentation',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-29 00:51:18',NULL,'0'), +(5,'civicrm_contact',161,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-08-16 08:00:53',NULL,'0'), +(6,'civicrm_contact',196,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-14 16:53:04',NULL,'0'), +(7,'civicrm_contact',194,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-03-24 15:06:39',NULL,'0'), +(8,'civicrm_contact',22,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-04-03 22:28:50',NULL,'0'), +(9,'civicrm_contact',16,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-16 05:36:08',NULL,'0'), +(10,'civicrm_contact',136,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-04-30 20:27:52',NULL,'0'), +(11,'civicrm_contact',185,'Organize the Terry Fox run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-05 21:44:23',NULL,'0'), +(12,'civicrm_contact',128,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-11-11 05:59:29',NULL,'0'), +(13,'civicrm_contact',93,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-06-21 22:58:13',NULL,'0'), +(14,'civicrm_contact',159,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-08-22 02:57:03',NULL,'0'), +(15,'civicrm_contact',172,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-03-18 06:57:34',NULL,'0'), +(16,'civicrm_contact',185,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-29 18:36:01',NULL,'0'), +(17,'civicrm_contact',152,'Organize the Terry Fox run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2025-02-06 16:22:37',NULL,'0'), +(18,'civicrm_contact',188,'Arrange collection of funds from members',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-07-25 00:07:38',NULL,'0'), +(19,'civicrm_contact',168,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-18 21:06:34',NULL,'0'), +(20,'civicrm_contact',166,'Arrange collection of funds from members',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-04 16:53:13',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -5656,101 +5685,101 @@ LOCK TABLES `civicrm_option_group` WRITE; /*!40000 ALTER TABLE `civicrm_option_group` DISABLE KEYS */; INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `data_type`, `is_reserved`, `is_active`, `is_locked`, `option_value_fields`) VALUES (1,'preferred_communication_method','Preferred Communication Method',NULL,NULL,1,1,0,'name,label,description'), - (2,'activity_type','Activity Type','Activities track interactions with contacts. Some activity types are reserved for use by automated processes, others can be freely configured.','Integer',1,1,0,'name,label,description,icon'), - (3,'gender','Gender','CiviCRM is pre-configured with standard options for individual gender (Male, Female, Other). Modify these options as needed for your installation.','Integer',1,1,0,'name,label,description'), - (4,'instant_messenger_service','Instant Messenger (IM) screen-names','Commonly-used messaging apps are listed here. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), - (5,'mobile_provider','Mobile Phone Providers','When recording mobile phone numbers for contacts, it may be useful to include the Mobile Phone Service Provider (e.g. Cingular, Sprint, etc.). CiviCRM is installed with the most commonly encountered service providers. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), - (6,'individual_prefix','Individual contact prefixes','CiviCRM is pre-configured with standard options for individual contact prefixes (Ms., Mr., Dr. etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), - (7,'individual_suffix','Individual contact suffixes','CiviCRM is pre-configured with standard options for individual contact name suffixes (Jr., Sr., II etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), - (8,'acl_role','ACL Role',NULL,NULL,1,1,0,'name,label,description'), - (9,'accept_creditcard','Accepted Credit Cards','The following credit card options will be offered to contributors using Online Contribution pages. You will need to verify which cards are accepted by your chosen Payment Processor and update these entries accordingly.IMPORTANT: These options do not control credit card/payment method choices for sites and/or contributors using the PayPal Express service (e.g. where billing information is collected on the Payment Processor\\\'s website).',NULL,1,1,0,'name,label,description'), - (10,'payment_instrument','Payment Methods','You may choose to record the payment method used for each contribution and fee. Reserved payment methods are required - you may modify their labels but they can not be deleted (e.g. Check, Credit Card, Debit Card). If your site requires additional payment methods, you can add them here. You can associate each payment method with a Financial Account which specifies where the payment is going (e.g. a bank account for checks and cash).','Integer',1,1,0,'name,label,description'), - (11,'contribution_status','Contribution Status',NULL,NULL,1,1,1,'name,label,description'), - (12,'pcp_status','PCP Status',NULL,NULL,1,1,1,'name,label,description'), - (13,'pcp_owner_notify','PCP owner notifications',NULL,NULL,1,1,1,'name,label,description'), - (14,'participant_role','Participant Role','Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.','Integer',1,1,0,'name,label,description'), - (15,'event_type','Event Type','Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.','Integer',1,1,0,'name,label,description'), - (16,'contact_view_options','Contact View Options',NULL,NULL,1,1,1,'name,label,description'), - (17,'contact_smart_group_display','Contact Smart Group View Options',NULL,NULL,1,1,1,'name,label,description'), - (18,'contact_edit_options','Contact Edit Options',NULL,NULL,1,1,1,'name,label,description'), - (19,'advanced_search_options','Advanced Search Options',NULL,NULL,1,1,1,'name,label,description'), - (20,'user_dashboard_options','User Dashboard Options',NULL,NULL,1,1,1,'name,label,description'), - (21,'address_options','Addressing Options',NULL,NULL,1,1,0,'name,label,description'), - (22,'group_type','Group Type',NULL,NULL,1,1,0,'name,label,description'), - (23,'custom_search','Custom Search',NULL,NULL,1,1,0,'name,label,description'), - (24,'activity_status','Activity Status',NULL,'Integer',1,1,0,'name,label,description,color'), - (25,'case_type','Case Type',NULL,NULL,1,1,0,'name,label,description'), - (26,'case_status','Case Status',NULL,NULL,1,1,0,'name,label,description,color'), - (27,'participant_listing','Participant Listing',NULL,NULL,1,1,0,'name,label,description'), - (28,'safe_file_extension','Safe File Extension',NULL,NULL,1,1,0,'name,label,description'), - (29,'mapping_type','Mapping Type',NULL,NULL,1,1,1,'name,label,description'), - (30,'wysiwyg_editor','WYSIWYG Editor',NULL,NULL,1,1,0,'name,label,description'), - (31,'recur_frequency_units','Recurring Frequency Units',NULL,NULL,1,1,0,'name,label,description'), - (32,'phone_type','Phone Type',NULL,NULL,1,1,0,'name,label,description'), - (33,'custom_data_type','Custom Data Type',NULL,NULL,1,1,0,'name,label,description'), - (34,'visibility','Visibility',NULL,NULL,1,1,0,'name,label,description'), - (35,'mail_protocol','Mail Protocol',NULL,NULL,1,1,0,'name,label,description'), - (36,'priority','Priority',NULL,NULL,1,1,0,'name,label,description'), - (37,'redaction_rule','Redaction Rule',NULL,NULL,1,1,0,'name,label,description'), - (38,'report_template','Report Template',NULL,NULL,1,1,0,'name,label,description'), - (39,'email_greeting','Email Greeting Type',NULL,NULL,1,1,0,'name,label,description'), - (40,'postal_greeting','Postal Greeting Type',NULL,NULL,1,1,0,'name,label,description'), - (41,'addressee','Addressee Type',NULL,NULL,1,1,0,'name,label,description'), - (42,'contact_autocomplete_options','Autocomplete Contact Search',NULL,NULL,1,1,1,'name,label,description'), - (43,'contact_reference_options','Contact Reference Autocomplete Options',NULL,NULL,1,1,1,'name,label,description'), - (44,'website_type','Website Type',NULL,NULL,1,1,0,'name,label,description'), - (45,'tag_used_for','Tag Used For',NULL,NULL,1,1,1,'name,label,description'), - (46,'note_used_for','Note Used For',NULL,NULL,1,1,1,'name,label,description'), - (47,'currencies_enabled','Currencies Enabled',NULL,NULL,1,1,0,'name,label,description'), - (48,'event_badge','Event Name Badge',NULL,NULL,1,1,0,'name,label,description'), - (49,'note_privacy','Privacy levels for notes',NULL,NULL,1,1,0,'name,label,description'), - (50,'campaign_type','Campaign Type',NULL,NULL,1,1,0,'name,label,description'), - (51,'campaign_status','Campaign Status',NULL,NULL,1,1,0,'name,label,description'), - (52,'system_extensions','CiviCRM Extensions',NULL,NULL,1,1,0,'name,label,description'), - (53,'mail_approval_status','CiviMail Approval Status',NULL,NULL,1,1,0,'name,label,description'), - (54,'engagement_index','Engagement Index',NULL,NULL,1,1,0,'name,label,description'), - (55,'cg_extend_objects','Objects a custom group extends to',NULL,NULL,1,1,0,'name,label,description'), - (56,'paper_size','Paper Size',NULL,NULL,1,1,0,'name,label,description'), - (57,'pdf_format','PDF Page Format',NULL,NULL,1,1,0,'name,label,description'), - (58,'label_format','Mailing Label Format',NULL,NULL,1,1,0,'name,label,description'), - (59,'activity_contacts','Activity Contacts',NULL,NULL,1,1,1,'name,label,description'), - (60,'account_relationship','Account Relationship',NULL,NULL,1,1,0,'name,label,description'), - (61,'event_contacts','Event Recipients',NULL,NULL,1,1,0,'name,label,description'), - (62,'conference_slot','Conference Slot',NULL,NULL,1,1,0,'name,label,description'), - (63,'batch_type','Batch Type',NULL,NULL,1,1,1,'name,label,description'), - (64,'batch_mode','Batch Mode',NULL,NULL,1,1,1,'name,label,description'), - (65,'batch_status','Batch Status',NULL,NULL,1,1,1,'name,label,description'), - (66,'sms_api_type','Api Type',NULL,NULL,1,1,0,'name,label,description'), - (67,'sms_provider_name','Sms Provider Internal Name',NULL,NULL,1,1,0,'name,label,description'), - (68,'auto_renew_options','Auto Renew Options',NULL,NULL,1,1,1,'name,label,description'), - (69,'financial_account_type','Financial Account Type',NULL,NULL,1,1,0,'name,label,description'), - (70,'financial_item_status','Financial Item Status',NULL,NULL,1,1,1,'name,label,description'), - (71,'label_type','Label Type',NULL,NULL,1,1,0,'name,label,description'), - (72,'name_badge','Name Badge Format',NULL,NULL,1,1,0,'name,label,description'), - (73,'communication_style','Communication Style',NULL,NULL,1,1,0,'name,label,description'), - (74,'msg_mode','Message Mode',NULL,NULL,1,1,0,'name,label,description'), - (75,'contact_date_reminder_options','Contact Date Reminder Options',NULL,NULL,1,1,1,'name,label,description'), - (76,'wysiwyg_presets','WYSIWYG Editor Presets',NULL,NULL,1,1,0,'name,label,description'), - (77,'relative_date_filters','Relative Date Filters',NULL,NULL,1,1,0,'name,label,description'), - (78,'pledge_status','Pledge Status',NULL,NULL,1,1,1,'name,label,description'), - (79,'contribution_recur_status','Recurring Contribution Status',NULL,NULL,1,1,1,'name,label,description'), - (80,'environment','Environment',NULL,NULL,1,1,0,'name,label,description'), - (81,'activity_default_assignee','Activity default assignee',NULL,NULL,1,1,0,'name,label,description'), - (82,'entity_batch_extends','Entity Batch Extends',NULL,NULL,1,1,0,'name,label,description'), - (83,'file_type','File Type',NULL,'Integer',1,1,0,'name,label,description'), - (84,'languages','Languages','List of Languages',NULL,1,1,0,'name,label,description'), - (85,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',NULL,1,1,0,'name,label,description'), - (86,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',NULL,1,1,0,'name,label,description'), - (87,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',NULL,1,1,0,'name,label,description'), - (88,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',NULL,1,1,0,'name,label,description'), - (89,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',NULL,1,1,0,'name,label,description'), - (90,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',NULL,1,1,0,'name,label,description'), - (91,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',NULL,1,1,0,'name,label,description'), - (92,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',NULL,1,1,0,'name,label,description'), - (93,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',NULL,1,1,0,'name,label,description'), - (94,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',NULL,1,1,0,'name,label,description'), - (95,'soft_credit_type','Soft Credit Types',NULL,NULL,1,1,0,'name,label,description'), - (96,'recent_items_providers','Recent Items Providers',NULL,NULL,1,1,0,'name,label,description'); +(2,'activity_type','Activity Type','Activities track interactions with contacts. Some activity types are reserved for use by automated processes, others can be freely configured.','Integer',1,1,0,'name,label,description,icon'), +(3,'gender','Gender','CiviCRM is pre-configured with standard options for individual gender (Male, Female, Other). Modify these options as needed for your installation.','Integer',1,1,0,'name,label,description'), +(4,'instant_messenger_service','Instant Messenger (IM) screen-names','Commonly-used messaging apps are listed here. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), +(5,'mobile_provider','Mobile Phone Providers','When recording mobile phone numbers for contacts, it may be useful to include the Mobile Phone Service Provider (e.g. Cingular, Sprint, etc.). CiviCRM is installed with the most commonly encountered service providers. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), +(6,'individual_prefix','Individual contact prefixes','CiviCRM is pre-configured with standard options for individual contact prefixes (Ms., Mr., Dr. etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), +(7,'individual_suffix','Individual contact suffixes','CiviCRM is pre-configured with standard options for individual contact name suffixes (Jr., Sr., II etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), +(8,'acl_role','ACL Role',NULL,NULL,1,1,0,'name,label,description'), +(9,'accept_creditcard','Accepted Credit Cards','The following credit card options will be offered to contributors using Online Contribution pages. You will need to verify which cards are accepted by your chosen Payment Processor and update these entries accordingly.IMPORTANT: These options do not control credit card/payment method choices for sites and/or contributors using the PayPal Express service (e.g. where billing information is collected on the Payment Processor\\\'s website).',NULL,1,1,0,'name,label,description'), +(10,'payment_instrument','Payment Methods','You may choose to record the payment method used for each contribution and fee. Reserved payment methods are required - you may modify their labels but they can not be deleted (e.g. Check, Credit Card, Debit Card). If your site requires additional payment methods, you can add them here. You can associate each payment method with a Financial Account which specifies where the payment is going (e.g. a bank account for checks and cash).','Integer',1,1,0,'name,label,description'), +(11,'contribution_status','Contribution Status',NULL,NULL,1,1,1,'name,label,description'), +(12,'pcp_status','PCP Status',NULL,NULL,1,1,1,'name,label,description'), +(13,'pcp_owner_notify','PCP owner notifications',NULL,NULL,1,1,1,'name,label,description'), +(14,'participant_role','Participant Role','Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.','Integer',1,1,0,'name,label,description'), +(15,'event_type','Event Type','Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.','Integer',1,1,0,'name,label,description'), +(16,'contact_view_options','Contact View Options',NULL,NULL,1,1,1,'name,label,description'), +(17,'contact_smart_group_display','Contact Smart Group View Options',NULL,NULL,1,1,1,'name,label,description'), +(18,'contact_edit_options','Contact Edit Options',NULL,NULL,1,1,1,'name,label,description'), +(19,'advanced_search_options','Advanced Search Options',NULL,NULL,1,1,1,'name,label,description'), +(20,'user_dashboard_options','User Dashboard Options',NULL,NULL,1,1,1,'name,label,description'), +(21,'address_options','Addressing Options',NULL,NULL,1,1,0,'name,label,description'), +(22,'group_type','Group Type',NULL,NULL,1,1,0,'name,label,description'), +(23,'custom_search','Custom Search',NULL,NULL,1,1,0,'name,label,description'), +(24,'activity_status','Activity Status',NULL,'Integer',1,1,0,'name,label,description,color'), +(25,'case_type','Case Type',NULL,NULL,1,1,0,'name,label,description'), +(26,'case_status','Case Status',NULL,NULL,1,1,0,'name,label,description,color'), +(27,'participant_listing','Participant Listing',NULL,NULL,1,1,0,'name,label,description'), +(28,'safe_file_extension','Safe File Extension',NULL,NULL,1,1,0,'name,label,description'), +(29,'mapping_type','Mapping Type',NULL,NULL,1,1,1,'name,label,description'), +(30,'wysiwyg_editor','WYSIWYG Editor',NULL,NULL,1,1,0,'name,label,description'), +(31,'recur_frequency_units','Recurring Frequency Units',NULL,NULL,1,1,0,'name,label,description'), +(32,'phone_type','Phone Type',NULL,NULL,1,1,0,'name,label,description'), +(33,'custom_data_type','Custom Data Type',NULL,NULL,1,1,0,'name,label,description'), +(34,'visibility','Visibility',NULL,NULL,1,1,0,'name,label,description'), +(35,'mail_protocol','Mail Protocol',NULL,NULL,1,1,0,'name,label,description'), +(36,'priority','Priority',NULL,NULL,1,1,0,'name,label,description'), +(37,'redaction_rule','Redaction Rule',NULL,NULL,1,1,0,'name,label,description'), +(38,'report_template','Report Template',NULL,NULL,1,1,0,'name,label,description'), +(39,'email_greeting','Email Greeting Type',NULL,NULL,1,1,0,'name,label,description'), +(40,'postal_greeting','Postal Greeting Type',NULL,NULL,1,1,0,'name,label,description'), +(41,'addressee','Addressee Type',NULL,NULL,1,1,0,'name,label,description'), +(42,'contact_autocomplete_options','Autocomplete Contact Search',NULL,NULL,1,1,1,'name,label,description'), +(43,'contact_reference_options','Contact Reference Autocomplete Options',NULL,NULL,1,1,1,'name,label,description'), +(44,'website_type','Website Type',NULL,NULL,1,1,0,'name,label,description'), +(45,'tag_used_for','Tag Used For',NULL,NULL,1,1,1,'name,label,description'), +(46,'note_used_for','Note Used For',NULL,NULL,1,1,1,'name,label,description'), +(47,'currencies_enabled','Currencies Enabled',NULL,NULL,1,1,0,'name,label,description'), +(48,'event_badge','Event Name Badge',NULL,NULL,1,1,0,'name,label,description'), +(49,'note_privacy','Privacy levels for notes',NULL,NULL,1,1,0,'name,label,description'), +(50,'campaign_type','Campaign Type',NULL,NULL,1,1,0,'name,label,description'), +(51,'campaign_status','Campaign Status',NULL,NULL,1,1,0,'name,label,description'), +(52,'system_extensions','CiviCRM Extensions',NULL,NULL,1,1,0,'name,label,description'), +(53,'mail_approval_status','CiviMail Approval Status',NULL,NULL,1,1,0,'name,label,description'), +(54,'engagement_index','Engagement Index',NULL,NULL,1,1,0,'name,label,description'), +(55,'cg_extend_objects','Objects a custom group extends to',NULL,NULL,1,1,0,'name,label,description'), +(56,'paper_size','Paper Size',NULL,NULL,1,1,0,'name,label,description'), +(57,'pdf_format','PDF Page Format',NULL,NULL,1,1,0,'name,label,description'), +(58,'label_format','Mailing Label Format',NULL,NULL,1,1,0,'name,label,description'), +(59,'activity_contacts','Activity Contacts',NULL,NULL,1,1,1,'name,label,description'), +(60,'account_relationship','Account Relationship',NULL,NULL,1,1,0,'name,label,description'), +(61,'event_contacts','Event Recipients',NULL,NULL,1,1,0,'name,label,description'), +(62,'conference_slot','Conference Slot',NULL,NULL,1,1,0,'name,label,description'), +(63,'batch_type','Batch Type',NULL,NULL,1,1,1,'name,label,description'), +(64,'batch_mode','Batch Mode',NULL,NULL,1,1,1,'name,label,description'), +(65,'batch_status','Batch Status',NULL,NULL,1,1,1,'name,label,description'), +(66,'sms_api_type','Api Type',NULL,NULL,1,1,0,'name,label,description'), +(67,'sms_provider_name','Sms Provider Internal Name',NULL,NULL,1,1,0,'name,label,description'), +(68,'auto_renew_options','Auto Renew Options',NULL,NULL,1,1,1,'name,label,description'), +(69,'financial_account_type','Financial Account Type',NULL,NULL,1,1,0,'name,label,description'), +(70,'financial_item_status','Financial Item Status',NULL,NULL,1,1,1,'name,label,description'), +(71,'label_type','Label Type',NULL,NULL,1,1,0,'name,label,description'), +(72,'name_badge','Name Badge Format',NULL,NULL,1,1,0,'name,label,description'), +(73,'communication_style','Communication Style',NULL,NULL,1,1,0,'name,label,description'), +(74,'msg_mode','Message Mode',NULL,NULL,1,1,0,'name,label,description'), +(75,'contact_date_reminder_options','Contact Date Reminder Options',NULL,NULL,1,1,1,'name,label,description'), +(76,'wysiwyg_presets','WYSIWYG Editor Presets',NULL,NULL,1,1,0,'name,label,description'), +(77,'relative_date_filters','Relative Date Filters',NULL,NULL,1,1,0,'name,label,description'), +(78,'pledge_status','Pledge Status',NULL,NULL,1,1,1,'name,label,description'), +(79,'contribution_recur_status','Recurring Contribution Status',NULL,NULL,1,1,1,'name,label,description'), +(80,'environment','Environment',NULL,NULL,1,1,0,'name,label,description'), +(81,'activity_default_assignee','Activity default assignee',NULL,NULL,1,1,0,'name,label,description'), +(82,'entity_batch_extends','Entity Batch Extends',NULL,NULL,1,1,0,'name,label,description'), +(83,'file_type','File Type',NULL,'Integer',1,1,0,'name,label,description'), +(84,'languages','Languages','List of Languages',NULL,1,1,0,'name,label,description'), +(85,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',NULL,1,1,0,'name,label,description'), +(86,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',NULL,1,1,0,'name,label,description'), +(87,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',NULL,1,1,0,'name,label,description'), +(88,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',NULL,1,1,0,'name,label,description'), +(89,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',NULL,1,1,0,'name,label,description'), +(90,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',NULL,1,1,0,'name,label,description'), +(91,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',NULL,1,1,0,'name,label,description'), +(92,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',NULL,1,1,0,'name,label,description'), +(93,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',NULL,1,1,0,'name,label,description'), +(94,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',NULL,1,1,0,'name,label,description'), +(95,'soft_credit_type','Soft Credit Types',NULL,NULL,1,1,0,'name,label,description'), +(96,'recent_items_providers','Recent Items Providers',NULL,NULL,1,1,0,'name,label,description'); /*!40000 ALTER TABLE `civicrm_option_group` ENABLE KEYS */; UNLOCK TABLES; @@ -5762,866 +5791,866 @@ LOCK TABLES `civicrm_option_value` WRITE; /*!40000 ALTER TABLE `civicrm_option_value` DISABLE KEYS */; INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`, `icon`, `color`) VALUES (1,1,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (2,1,'Email','2','Email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (3,1,'Postal Mail','3','Postal Mail',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (4,1,'SMS','4','SMS',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (5,1,'Fax','5','Fax',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (6,2,'Meeting','1','Meeting',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,'fa-slideshare',NULL), - (7,2,'Phone Call','2','Phone Call',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,'fa-phone',NULL), - (8,2,'Email','3','Email',NULL,1,0,3,'Email sent.',0,1,1,NULL,NULL,NULL,'fa-envelope-o',NULL), - (9,2,'Outbound SMS','4','SMS',NULL,1,0,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL,'fa-mobile',NULL), - (10,2,'Event Registration','5','Event Registration',NULL,1,0,5,'Online or offline event registration.',0,1,1,1,NULL,NULL,NULL,NULL), - (11,2,'Contribution','6','Contribution',NULL,1,0,6,'Online or offline contribution.',0,1,1,2,NULL,NULL,NULL,NULL), - (12,2,'Membership Signup','7','Membership Signup',NULL,1,0,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL,NULL,NULL), - (13,2,'Membership Renewal','8','Membership Renewal',NULL,1,0,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL,NULL,NULL), - (14,2,'Tell a Friend','9','Tell a Friend',NULL,1,0,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,0,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL,NULL,NULL), - (16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,0,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL,NULL,NULL), - (17,2,'Inbound Email','12','Inbound Email',NULL,1,0,12,'Inbound Email.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL,'fa-folder-open-o',NULL), - (19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL,'fa-share-square-o',NULL), - (20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL,'fa-random',NULL), - (21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), - (22,2,'Change Case Subject','53','Change Case Subject',NULL,0,0,53,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), - (23,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL,'fa-table',NULL), - (24,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,0,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL,NULL,NULL), - (25,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL,'fa-calendar',NULL), - (26,2,'Bulk Email','19','Bulk Email',NULL,1,0,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (27,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL,'fa-user-plus',NULL), - (28,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL,'fa-user-times',NULL), - (29,2,'Print/Merge Document','22','Print PDF Letter',NULL,0,0,22,'Export letters and other printable documents.',0,1,1,NULL,NULL,NULL,'fa-file-pdf-o',NULL), - (30,2,'Merge Case','23','Merge Case',NULL,0,0,23,'',0,1,1,7,NULL,NULL,'fa-compress',NULL), - (31,2,'Reassigned Case','24','Reassigned Case',NULL,0,0,24,'',0,1,1,7,NULL,NULL,'fa-user-circle-o',NULL), - (32,2,'Link Cases','25','Link Cases',NULL,0,0,25,'',0,1,1,7,NULL,NULL,'fa-link',NULL), - (33,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-tags',NULL), - (34,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-users',NULL), - (35,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL,NULL,NULL), - (36,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL,NULL,NULL), - (37,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL,NULL,NULL), - (38,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL,NULL,NULL), - (39,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL,NULL,NULL), - (40,2,'Mass SMS','34','Mass SMS',NULL,1,0,34,'Mass SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), - (41,2,'Change Membership Status','35','Change Membership Status',NULL,1,0,35,'Change Membership Status.',0,1,1,3,NULL,NULL,NULL,NULL), - (42,2,'Change Membership Type','36','Change Membership Type',NULL,1,0,36,'Change Membership Type.',0,1,1,3,NULL,NULL,NULL,NULL), - (43,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,2,NULL,NULL,NULL,NULL), - (44,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,2,NULL,NULL,NULL,NULL), - (45,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,2,NULL,NULL,NULL,NULL), - (46,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (47,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL,NULL,NULL), - (48,2,'SMS delivery','44','SMS delivery',NULL,1,0,44,'SMS delivery',0,1,1,NULL,NULL,NULL,NULL,NULL), - (49,2,'Inbound SMS','45','Inbound SMS',NULL,1,0,45,'Inbound SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), - (50,2,'Payment','46','Payment',NULL,1,0,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), - (51,2,'Refund','47','Refund',NULL,1,0,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), - (52,2,'Change Registration','48','Change Registration',NULL,1,0,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL,NULL,NULL), - (53,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,0,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (54,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,0,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (55,2,'Contact Merged','51','Contact Merged',NULL,1,0,51,'Contact Merged',0,1,1,NULL,NULL,NULL,NULL,NULL), - (56,2,'Contact Deleted by Merge','52','Contact Deleted by Merge',NULL,1,0,52,'Contact was merged into another contact',0,1,1,NULL,NULL,NULL,NULL,NULL), - (57,2,'Failed Payment','54','Failed Payment',NULL,1,0,54,'Failed Payment',0,1,1,2,NULL,NULL,NULL,NULL), - (58,2,'Case Client was removed from Case','55','Case Client Removed',NULL,0,0,55,'Case client was removed from a case',0,0,1,7,NULL,NULL,'fa-trash',NULL), - (59,3,'Female','1','Female',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (60,3,'Male','2','Male',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (61,3,'Other','3','Other',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (62,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (63,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (64,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (65,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (66,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (67,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (68,5,'Sprint','1','Sprint',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (69,5,'Verizon','2','Verizon',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (70,5,'Cingular','3','Cingular',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (71,6,'Mrs.','1','Mrs.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (72,6,'Ms.','2','Ms.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (73,6,'Mr.','3','Mr.',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (74,6,'Dr.','4','Dr.',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (75,7,'Jr.','1','Jr.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (76,7,'Sr.','2','Sr.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (77,7,'II','3','II',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (78,7,'III','4','III',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (79,7,'IV','5','IV',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (80,7,'V','6','V',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (81,7,'VI','7','VI',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (82,7,'VII','8','VII',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (83,8,'Everyone','0','Everyone',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (84,8,'Administrator','1','Admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (85,8,'Authenticated','2','Auth',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (86,9,'Visa','1','Visa',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (87,9,'MasterCard','2','MasterCard',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (88,9,'Amex','3','Amex',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (89,9,'Discover','4','Discover',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (90,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (91,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (92,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (93,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (94,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (95,11,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (96,11,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (97,11,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (98,11,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (99,11,'Refunded','7','Refunded',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (100,11,'Partially paid','8','Partially paid',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (101,11,'Pending refund','9','Pending refund',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (102,11,'Chargeback','10','Chargeback',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (103,11,'Template','11','Template',NULL,0,0,11,'Status for contribution records which represent a template for a recurring contribution rather than an actual contribution. This status is transitional, to ensure that said contributions don\\\'t appear in reports. The is_template field is the preferred way to find and filter these contributions.',0,1,1,NULL,NULL,NULL,NULL,NULL), - (104,12,'Waiting Review','1','Waiting Review',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (105,12,'Approved','2','Approved',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (106,12,'Not Approved','3','Not Approved',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (107,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (108,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (109,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (110,14,'Attendee','1','Attendee',NULL,1,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (111,14,'Volunteer','2','Volunteer',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (112,14,'Host','3','Host',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (113,14,'Speaker','4','Speaker',NULL,1,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (114,15,'Conference','1','Conference',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (115,15,'Exhibition','2','Exhibition',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (116,15,'Fundraiser','3','Fundraiser',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (117,15,'Meeting','4','Meeting',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (118,15,'Performance','5','Performance',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (119,15,'Workshop','6','Workshop',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (120,16,'Activities','1','activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (121,16,'Relationships','2','rel',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (122,16,'Groups','3','group',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (123,16,'Notes','4','note',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (124,16,'Tags','5','tag',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (125,16,'Change Log','6','log',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (126,16,'Contributions','7','CiviContribute',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (127,16,'Memberships','8','CiviMember',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (128,16,'Events','9','CiviEvent',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (129,16,'Cases','10','CiviCase',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (130,16,'Pledges','13','CiviPledge',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (131,16,'Mailings','14','CiviMail',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (132,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (133,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (134,17,'Hide Smart Groups','3','hide',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (135,18,'Custom Data','1','CustomData',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (136,18,'Address','2','Address',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (137,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (138,18,'Notes','4','Notes',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (139,18,'Demographics','5','Demographics',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (140,18,'Tags and Groups','6','TagsAndGroups',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (141,18,'Email','7','Email',NULL,1,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (142,18,'Phone','8','Phone',NULL,1,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (143,18,'Instant Messenger','9','IM',NULL,1,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (144,18,'Open ID','10','OpenID',NULL,1,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (145,18,'Website','11','Website',NULL,1,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (146,18,'Prefix','12','Prefix',NULL,2,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (147,18,'Formal Title','13','Formal Title',NULL,2,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (148,18,'First Name','14','First Name',NULL,2,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (149,18,'Middle Name','15','Middle Name',NULL,2,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (150,18,'Last Name','16','Last Name',NULL,2,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (151,18,'Suffix','17','Suffix',NULL,2,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (152,19,'Address Fields','1','location',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (153,19,'Custom Fields','2','custom',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (154,19,'Activities','3','activity',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (155,19,'Relationships','4','relationship',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (156,19,'Notes','5','notes',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (157,19,'Change Log','6','changeLog',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (158,19,'Contributions','7','CiviContribute',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (159,19,'Memberships','8','CiviMember',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (160,19,'Events','9','CiviEvent',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (161,19,'Cases','10','CiviCase',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (162,19,'Demographics','13','demographics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (163,19,'Pledges','15','CiviPledge',NULL,0,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (164,19,'Contact Type','16','contactType',NULL,0,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (165,19,'Groups','17','groups',NULL,0,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (166,19,'Tags','18','tags',NULL,0,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (167,19,'Mailing','19','CiviMail',NULL,0,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (168,20,'Groups','1','Groups',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (169,20,'Contributions','2','CiviContribute',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (170,20,'Memberships','3','CiviMember',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (171,20,'Events','4','CiviEvent',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (172,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (173,20,'Pledges','7','CiviPledge',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (174,20,'Personal Campaign Pages','8','PCP',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (175,20,'Assigned Activities','9','Assigned Activities',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (176,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (177,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (178,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (179,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (180,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (181,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (182,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (183,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (184,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (185,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (186,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (187,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (188,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (189,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (190,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (191,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (192,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (193,23,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,0,1,'Household Name and State',0,0,1,NULL,NULL,NULL,NULL,NULL), - (194,23,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,0,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), - (195,23,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,0,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL,NULL,NULL), - (196,23,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,0,5,'Postal Mailing',0,0,1,NULL,NULL,NULL,NULL,NULL), - (197,23,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,0,6,'Proximity Search',0,0,1,NULL,NULL,NULL,NULL,NULL), - (198,23,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,0,7,'Event Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), - (199,23,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,0,8,'Activity Search',0,0,0,NULL,NULL,NULL,NULL,NULL), - (200,23,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,0,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL,NULL,NULL), - (201,23,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,0,10,'Zip Code Range',0,0,1,NULL,NULL,NULL,NULL,NULL), - (202,23,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,0,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL,NULL,NULL), - (203,23,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,0,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL,NULL,NULL), - (204,23,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,0,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL,NULL,NULL), - (205,23,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,0,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL,NULL,NULL), - (206,23,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,0,15,'Full-text Search',0,0,1,NULL,NULL,NULL,NULL,NULL), - (207,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (208,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (209,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (210,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (211,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (212,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (213,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (214,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (215,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (216,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (217,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (218,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL), - (219,27,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL,NULL,NULL), - (220,27,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL,NULL,NULL), - (221,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (222,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (223,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (224,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (225,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (226,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (227,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (228,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (229,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (230,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (231,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (232,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (233,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (234,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (235,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (236,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (237,29,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (238,29,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (239,29,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (240,29,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (241,29,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (242,29,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (243,29,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (244,29,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (245,29,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (246,29,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (247,29,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (248,29,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (249,29,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (250,30,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (251,30,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (252,31,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (253,31,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (254,31,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (255,31,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (256,32,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (257,32,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (258,32,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (259,32,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (260,32,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (261,33,'Role','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (262,33,'Event Name','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (263,33,'Event Type','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (264,34,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (265,34,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (266,35,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (267,35,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (268,35,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (269,35,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (270,36,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (271,36,'Normal','2','Normal',NULL,0,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (272,36,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (273,37,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (274,37,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_','date_',NULL,1,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (275,38,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,0,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL,NULL,NULL), - (276,38,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,0,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL,NULL,NULL), - (277,38,'Activity Details Report','activity','CRM_Report_Form_Activity',NULL,0,0,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL,NULL,NULL), - (278,38,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,0,4,'Provides a detailed report for your walk/phonelist for targeted contacts',0,0,0,NULL,NULL,NULL,NULL,NULL), - (279,38,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,0,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL,NULL,NULL), - (280,38,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,0,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL,NULL,NULL), - (281,38,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,0,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL,NULL,NULL), - (282,38,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,0,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL,NULL,NULL), - (283,38,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,0,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL,NULL,NULL), - (284,38,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,0,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL,NULL,NULL), - (285,38,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,0,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL,NULL,NULL), - (286,38,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,0,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL,NULL,NULL), - (287,38,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,0,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL,NULL,NULL), - (288,38,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,0,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL,NULL,NULL), - (289,38,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and Member Since.',0,0,1,3,NULL,NULL,NULL,NULL), - (290,38,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,0,16,'Provides a list of members along with their membership status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL), - (291,38,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,0,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL,NULL,NULL), - (292,38,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,0,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL,NULL,NULL), - (293,38,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,0,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL,NULL,NULL), - (294,38,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,0,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL,NULL,NULL), - (295,38,'Pledge Detail Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,0,21,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL,NULL,NULL), - (296,38,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,0,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL,NULL,NULL), - (297,38,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL), - (298,38,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,0,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL,NULL,NULL), - (299,38,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,0,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL,NULL,NULL), - (300,38,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,0,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL,NULL,NULL), - (301,38,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,0,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL,NULL,NULL), - (302,38,'Activity Summary Report','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,0,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL,NULL,NULL), - (303,38,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL,NULL,NULL), - (304,38,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL,NULL,NULL), - (305,38,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL,NULL,NULL), - (306,38,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL), - (307,38,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,0,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL,NULL,NULL), - (308,38,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,0,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL,NULL,NULL), - (309,38,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,0,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL,NULL,NULL), - (310,38,'Mail Click-Through Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,0,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL,NULL,NULL), - (311,38,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,0,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL,NULL,NULL), - (312,38,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,0,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL,NULL,NULL), - (313,38,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,0,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL,NULL,NULL), - (314,38,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,0,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL,NULL,NULL), - (315,38,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,0,45,'Groups and totals pledges by criteria including contact, time period, pledge status, location, etc.',0,0,1,6,NULL,NULL,NULL,NULL), - (316,38,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,0,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL,NULL,NULL), - (317,38,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,0,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL,NULL,NULL), - (318,38,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,0,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL,NULL,NULL), - (319,38,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,0,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL,NULL,NULL), - (320,38,'Recurring Contributions Summary','contribute/recursummary','CRM_Report_Form_Contribute_RecurSummary',NULL,0,0,49,'Provides simple summary for each payment instrument for which there are recurring contributions (e.g. Credit Card, Standing Order, Direct Debit, etc., NULL), showing within a given date range.',0,0,1,2,NULL,NULL,NULL,NULL), - (321,38,'Deferred Revenue Details','contribute/deferredrevenue','CRM_Report_Form_Contribute_DeferredRevenue',NULL,0,0,50,'Deferred Revenue Details Report',0,0,1,2,NULL,NULL,NULL,NULL), - (322,39,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (323,39,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (324,39,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (325,39,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (326,39,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (327,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (328,40,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (329,40,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (330,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (331,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (332,41,'{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}','1','{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (333,41,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (334,41,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (335,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (336,42,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (337,42,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (338,42,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (339,42,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (340,42,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (341,42,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (342,42,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (343,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (344,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (345,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (346,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (347,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (348,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (349,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (350,44,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (351,44,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (352,44,'Social','3','Social',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (353,45,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (354,45,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (355,45,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (356,45,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (357,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (358,46,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (359,46,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (360,46,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (361,46,'Notes','civicrm_note','Note',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (362,47,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (363,47,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (364,47,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (365,47,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (366,47,'JPY (¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (367,48,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL), - (368,48,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL), - (369,48,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL,NULL,NULL), - (370,48,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL,NULL,NULL), - (371,49,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (372,49,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (373,50,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (374,50,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (375,50,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (376,51,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (377,51,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (378,51,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (379,51,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (380,53,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), - (381,53,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), - (382,53,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), - (383,54,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (384,54,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (385,54,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (386,54,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (387,54,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (388,55,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (389,55,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (390,56,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (391,56,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (392,56,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (393,56,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (394,56,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (395,56,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (396,56,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (397,56,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (398,56,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (399,56,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (400,56,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (401,56,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (402,56,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (403,56,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (404,56,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (405,56,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (406,56,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (407,56,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (408,56,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (409,56,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (410,56,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (411,56,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (412,56,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (413,56,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (414,56,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (415,56,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (416,56,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (417,56,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (418,56,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (419,56,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (420,56,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (421,56,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (422,56,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (423,56,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (424,56,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (425,56,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (426,56,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (427,56,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (428,56,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (429,56,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (430,56,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (431,56,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (432,56,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (433,56,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (434,56,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (435,56,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (436,56,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (437,56,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (438,56,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (439,56,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (440,56,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (441,56,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (442,56,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (443,56,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (444,56,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (445,56,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (446,56,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (447,56,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (448,56,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (449,56,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (450,56,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (451,56,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (452,57,'Invoice PDF Format','{\"metric\":\"px\",\"margin_top\":10,\"margin_bottom\":0,\"margin_left\":65,\"margin_right\":0}','default_invoice_pdf_format',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (453,58,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (454,58,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (455,58,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (456,58,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (457,58,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (458,58,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (459,58,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (460,58,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (461,58,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (462,58,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (463,58,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (464,59,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (465,59,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (466,59,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (467,60,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (468,60,'Credit/Contra Revenue Account is','2','Credit/Contra Revenue Account is',NULL,0,0,2,'Credit/Contra Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (469,60,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (470,60,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL,NULL,NULL), - (471,60,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (472,60,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (473,60,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (474,60,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (475,60,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (476,60,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (477,60,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (478,60,'Deferred Revenue Account is','12','Deferred Revenue Account is',NULL,0,0,12,'Deferred Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), - (479,61,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (480,62,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (481,62,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (482,63,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (483,63,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (484,63,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (485,64,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL), - (486,64,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL), - (487,65,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (488,65,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (489,65,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (490,65,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (491,65,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (492,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (493,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (494,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (495,68,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (496,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (497,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (498,69,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL), - (499,69,'Liability','2','Liability',NULL,0,0,2,'Things you owe, like a grant still to be disbursed',0,1,1,2,NULL,NULL,NULL,NULL), - (500,69,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL), - (501,69,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL,NULL,NULL), - (502,69,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL,NULL,NULL), - (503,70,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL), - (504,70,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL), - (505,70,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL), - (506,71,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (507,72,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (508,72,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (509,72,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (510,72,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (511,73,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (512,73,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (513,74,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (514,74,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (515,74,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (516,75,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (517,75,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (518,76,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (519,76,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL), - (520,76,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL), - (521,77,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (522,77,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (523,77,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (524,77,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (525,77,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (526,77,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (527,77,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (528,77,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (529,77,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (530,77,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (531,77,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (532,77,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (533,77,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (534,77,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (535,77,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (536,77,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (537,77,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (538,77,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (539,77,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (540,77,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (541,77,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (542,77,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (543,77,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (544,77,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (545,77,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (546,77,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (547,77,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (548,77,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (549,77,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (550,77,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (551,77,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (552,77,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (553,77,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (554,77,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (555,77,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (556,77,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (557,77,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (558,77,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (559,77,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (560,77,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (561,77,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (562,77,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (563,77,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (564,77,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (565,77,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (566,77,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (567,77,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (568,77,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (569,77,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (570,77,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (571,77,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (572,77,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (573,77,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (574,77,'Previous 2 fiscal years','previous_2.fiscal_year','previous_2.fiscal_year',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (575,77,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (576,77,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (577,77,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (578,77,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (579,77,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (580,77,'Fiscal year prior to previous fiscal year','previous_before.fiscal_year','previous_before.fiscal_year',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (581,77,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (582,77,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (583,77,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,63,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (584,77,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (585,78,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (586,78,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (587,78,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (588,78,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (589,78,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (590,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (591,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (592,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (593,79,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (594,79,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (595,79,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (596,79,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (597,79,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (598,80,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), - (599,80,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), - (600,80,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), - (601,81,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (602,81,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (603,81,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (604,81,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (605,82,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), - (606,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (607,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (608,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (609,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (610,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (611,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (612,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (613,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (614,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (615,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (616,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (617,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (618,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (619,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (620,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (621,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (622,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (623,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (624,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (625,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (626,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (627,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (628,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (629,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (630,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (631,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (632,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (633,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (634,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (635,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (636,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (637,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (638,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (639,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (640,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (641,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (642,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (643,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (644,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (645,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (646,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (647,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (648,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (649,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (650,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (651,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (652,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (653,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (654,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (655,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (656,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (657,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (658,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (659,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (660,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (661,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (662,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (663,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (664,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (665,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (666,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (667,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (668,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (669,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (670,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (671,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (672,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (673,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (674,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (675,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (676,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (677,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (678,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (679,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (680,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (681,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (682,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (683,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (684,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (685,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (686,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (687,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (688,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (689,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (690,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (691,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (692,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (693,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (694,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (695,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (696,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (697,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (698,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (699,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (700,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (701,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (702,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (703,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (704,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (705,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (706,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (707,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (708,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (709,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (710,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (711,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (712,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (713,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (714,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (715,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (716,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (717,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (718,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (719,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (720,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (721,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (722,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (723,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (724,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (725,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (726,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (727,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (728,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (729,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (730,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (731,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (732,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (733,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (734,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (735,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (736,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (737,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (738,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (739,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (740,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (741,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (742,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (743,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (744,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (745,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (746,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (747,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (748,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (749,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (750,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (751,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (752,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (753,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (754,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (755,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (756,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (757,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (758,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (759,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (760,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (761,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (762,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (763,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (764,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (765,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (766,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (767,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (768,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (769,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (770,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (771,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (772,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (773,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (774,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (775,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (776,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (777,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (778,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (779,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (780,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (781,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (782,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (783,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (784,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (785,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (786,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (787,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (788,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (789,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (790,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (791,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (792,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (793,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (794,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (795,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (796,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (797,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (798,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (799,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (800,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (801,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (802,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (803,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (804,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (805,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (806,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (807,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (808,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (809,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (810,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (811,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (812,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (813,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (814,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (815,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (816,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (817,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (818,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (819,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (820,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (821,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (822,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (823,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (824,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (825,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (826,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (827,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (828,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (829,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (830,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (831,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (832,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (833,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (834,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (835,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (836,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (837,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (838,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (839,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (840,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (841,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (842,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (843,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (844,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (845,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (846,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (847,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (848,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (849,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (850,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (851,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (852,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (853,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (854,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (855,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (856,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (857,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (858,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (859,2,'Interview','56','Interview',NULL,0,NULL,56,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), - (860,55,'Contribution Page','ContributionPage','civicrm_contribution_page','financial_type_id',0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (861,8,'Advisory Board','3','Advisory Board',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); +(2,1,'Email','2','Email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(3,1,'Postal Mail','3','Postal Mail',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(4,1,'SMS','4','SMS',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(5,1,'Fax','5','Fax',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(6,2,'Meeting','1','Meeting',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,'fa-slideshare',NULL), +(7,2,'Phone Call','2','Phone Call',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,'fa-phone',NULL), +(8,2,'Email','3','Email',NULL,1,0,3,'Email sent.',0,1,1,NULL,NULL,NULL,'fa-envelope-o',NULL), +(9,2,'Outbound SMS','4','SMS',NULL,1,0,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL,'fa-mobile',NULL), +(10,2,'Event Registration','5','Event Registration',NULL,1,0,5,'Online or offline event registration.',0,1,1,1,NULL,NULL,NULL,NULL), +(11,2,'Contribution','6','Contribution',NULL,1,0,6,'Online or offline contribution.',0,1,1,2,NULL,NULL,NULL,NULL), +(12,2,'Membership Signup','7','Membership Signup',NULL,1,0,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL,NULL,NULL), +(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,0,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL,NULL,NULL), +(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,0,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,0,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL,NULL,NULL), +(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,0,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL,NULL,NULL), +(17,2,'Inbound Email','12','Inbound Email',NULL,1,0,12,'Inbound Email.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL,'fa-folder-open-o',NULL), +(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL,'fa-share-square-o',NULL), +(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL,'fa-random',NULL), +(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), +(22,2,'Change Case Subject','53','Change Case Subject',NULL,0,0,53,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), +(23,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL,'fa-table',NULL), +(24,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,0,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL,NULL,NULL), +(25,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL,'fa-calendar',NULL), +(26,2,'Bulk Email','19','Bulk Email',NULL,1,0,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(27,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL,'fa-user-plus',NULL), +(28,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL,'fa-user-times',NULL), +(29,2,'Print/Merge Document','22','Print PDF Letter',NULL,0,0,22,'Export letters and other printable documents.',0,1,1,NULL,NULL,NULL,'fa-file-pdf-o',NULL), +(30,2,'Merge Case','23','Merge Case',NULL,0,0,23,'',0,1,1,7,NULL,NULL,'fa-compress',NULL), +(31,2,'Reassigned Case','24','Reassigned Case',NULL,0,0,24,'',0,1,1,7,NULL,NULL,'fa-user-circle-o',NULL), +(32,2,'Link Cases','25','Link Cases',NULL,0,0,25,'',0,1,1,7,NULL,NULL,'fa-link',NULL), +(33,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-tags',NULL), +(34,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-users',NULL), +(35,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL,NULL,NULL), +(36,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL,NULL,NULL), +(37,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL,NULL,NULL), +(38,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL,NULL,NULL), +(39,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL,NULL,NULL), +(40,2,'Mass SMS','34','Mass SMS',NULL,1,0,34,'Mass SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), +(41,2,'Change Membership Status','35','Change Membership Status',NULL,1,0,35,'Change Membership Status.',0,1,1,3,NULL,NULL,NULL,NULL), +(42,2,'Change Membership Type','36','Change Membership Type',NULL,1,0,36,'Change Membership Type.',0,1,1,3,NULL,NULL,NULL,NULL), +(43,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,2,NULL,NULL,NULL,NULL), +(44,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,2,NULL,NULL,NULL,NULL), +(45,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,2,NULL,NULL,NULL,NULL), +(46,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(47,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL,NULL,NULL), +(48,2,'SMS delivery','44','SMS delivery',NULL,1,0,44,'SMS delivery',0,1,1,NULL,NULL,NULL,NULL,NULL), +(49,2,'Inbound SMS','45','Inbound SMS',NULL,1,0,45,'Inbound SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), +(50,2,'Payment','46','Payment',NULL,1,0,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), +(51,2,'Refund','47','Refund',NULL,1,0,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), +(52,2,'Change Registration','48','Change Registration',NULL,1,0,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL,NULL,NULL), +(53,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,0,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(54,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,0,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(55,2,'Contact Merged','51','Contact Merged',NULL,1,0,51,'Contact Merged',0,1,1,NULL,NULL,NULL,NULL,NULL), +(56,2,'Contact Deleted by Merge','52','Contact Deleted by Merge',NULL,1,0,52,'Contact was merged into another contact',0,1,1,NULL,NULL,NULL,NULL,NULL), +(57,2,'Failed Payment','54','Failed Payment',NULL,1,0,54,'Failed Payment',0,1,1,2,NULL,NULL,NULL,NULL), +(58,2,'Case Client was removed from Case','55','Case Client Removed',NULL,0,0,55,'Case client was removed from a case',0,0,1,7,NULL,NULL,'fa-trash',NULL), +(59,3,'Female','1','Female',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(60,3,'Male','2','Male',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(61,3,'Other','3','Other',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(62,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(63,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(64,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(65,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(66,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(67,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(68,5,'Sprint','1','Sprint',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(69,5,'Verizon','2','Verizon',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(70,5,'Cingular','3','Cingular',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(71,6,'Mrs.','1','Mrs.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(72,6,'Ms.','2','Ms.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(73,6,'Mr.','3','Mr.',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(74,6,'Dr.','4','Dr.',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(75,7,'Jr.','1','Jr.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(76,7,'Sr.','2','Sr.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(77,7,'II','3','II',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(78,7,'III','4','III',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(79,7,'IV','5','IV',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(80,7,'V','6','V',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(81,7,'VI','7','VI',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(82,7,'VII','8','VII',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(83,8,'Everyone','0','Everyone',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(84,8,'Administrator','1','Admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(85,8,'Authenticated','2','Auth',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(86,9,'Visa','1','Visa',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(87,9,'MasterCard','2','MasterCard',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(88,9,'Amex','3','Amex',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(89,9,'Discover','4','Discover',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(90,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(91,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(92,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(93,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(94,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(95,11,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(96,11,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(97,11,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(98,11,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(99,11,'Refunded','7','Refunded',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(100,11,'Partially paid','8','Partially paid',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(101,11,'Pending refund','9','Pending refund',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(102,11,'Chargeback','10','Chargeback',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(103,11,'Template','11','Template',NULL,0,0,11,'Status for contribution records which represent a template for a recurring contribution rather than an actual contribution. This status is transitional, to ensure that said contributions don\\\'t appear in reports. The is_template field is the preferred way to find and filter these contributions.',0,1,1,NULL,NULL,NULL,NULL,NULL), +(104,12,'Waiting Review','1','Waiting Review',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(105,12,'Approved','2','Approved',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(106,12,'Not Approved','3','Not Approved',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(107,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(108,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(109,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(110,14,'Attendee','1','Attendee',NULL,1,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(111,14,'Volunteer','2','Volunteer',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(112,14,'Host','3','Host',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(113,14,'Speaker','4','Speaker',NULL,1,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(114,15,'Conference','1','Conference',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(115,15,'Exhibition','2','Exhibition',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(116,15,'Fundraiser','3','Fundraiser',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(117,15,'Meeting','4','Meeting',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(118,15,'Performance','5','Performance',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(119,15,'Workshop','6','Workshop',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(120,16,'Activities','1','activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(121,16,'Relationships','2','rel',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(122,16,'Groups','3','group',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(123,16,'Notes','4','note',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(124,16,'Tags','5','tag',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(125,16,'Change Log','6','log',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(126,16,'Contributions','7','CiviContribute',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(127,16,'Memberships','8','CiviMember',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(128,16,'Events','9','CiviEvent',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(129,16,'Cases','10','CiviCase',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(130,16,'Pledges','13','CiviPledge',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(131,16,'Mailings','14','CiviMail',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(132,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(133,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(134,17,'Hide Smart Groups','3','hide',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(135,18,'Custom Data','1','CustomData',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(136,18,'Address','2','Address',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(137,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(138,18,'Notes','4','Notes',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(139,18,'Demographics','5','Demographics',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(140,18,'Tags and Groups','6','TagsAndGroups',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(141,18,'Email','7','Email',NULL,1,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(142,18,'Phone','8','Phone',NULL,1,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(143,18,'Instant Messenger','9','IM',NULL,1,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(144,18,'Open ID','10','OpenID',NULL,1,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(145,18,'Website','11','Website',NULL,1,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(146,18,'Prefix','12','Prefix',NULL,2,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(147,18,'Formal Title','13','Formal Title',NULL,2,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(148,18,'First Name','14','First Name',NULL,2,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(149,18,'Middle Name','15','Middle Name',NULL,2,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(150,18,'Last Name','16','Last Name',NULL,2,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(151,18,'Suffix','17','Suffix',NULL,2,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(152,19,'Address Fields','1','location',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(153,19,'Custom Fields','2','custom',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(154,19,'Activities','3','activity',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(155,19,'Relationships','4','relationship',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(156,19,'Notes','5','notes',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(157,19,'Change Log','6','changeLog',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(158,19,'Contributions','7','CiviContribute',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(159,19,'Memberships','8','CiviMember',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(160,19,'Events','9','CiviEvent',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(161,19,'Cases','10','CiviCase',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(162,19,'Demographics','13','demographics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(163,19,'Pledges','15','CiviPledge',NULL,0,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(164,19,'Contact Type','16','contactType',NULL,0,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(165,19,'Groups','17','groups',NULL,0,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(166,19,'Tags','18','tags',NULL,0,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(167,19,'Mailing','19','CiviMail',NULL,0,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(168,20,'Groups','1','Groups',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(169,20,'Contributions','2','CiviContribute',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(170,20,'Memberships','3','CiviMember',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(171,20,'Events','4','CiviEvent',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(172,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(173,20,'Pledges','7','CiviPledge',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(174,20,'Personal Campaign Pages','8','PCP',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(175,20,'Assigned Activities','9','Assigned Activities',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(176,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(177,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(178,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(179,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(180,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(181,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(182,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(183,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(184,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(185,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(186,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(187,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(188,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(189,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(190,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(191,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(192,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(193,23,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,0,1,'Household Name and State',0,0,1,NULL,NULL,NULL,NULL,NULL), +(194,23,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,0,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), +(195,23,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,0,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL,NULL,NULL), +(196,23,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,0,5,'Postal Mailing',0,0,1,NULL,NULL,NULL,NULL,NULL), +(197,23,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,0,6,'Proximity Search',0,0,1,NULL,NULL,NULL,NULL,NULL), +(198,23,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,0,7,'Event Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), +(199,23,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,0,8,'Activity Search',0,0,0,NULL,NULL,NULL,NULL,NULL), +(200,23,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,0,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL,NULL,NULL), +(201,23,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,0,10,'Zip Code Range',0,0,1,NULL,NULL,NULL,NULL,NULL), +(202,23,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,0,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL,NULL,NULL), +(203,23,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,0,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL,NULL,NULL), +(204,23,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,0,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL,NULL,NULL), +(205,23,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,0,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL,NULL,NULL), +(206,23,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,0,15,'Full-text Search',0,0,1,NULL,NULL,NULL,NULL,NULL), +(207,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(208,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(209,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(210,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(211,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(212,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(213,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(214,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(215,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(216,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(217,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(218,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL), +(219,27,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL,NULL,NULL), +(220,27,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL,NULL,NULL), +(221,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(222,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(223,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(224,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(225,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(226,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(227,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(228,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(229,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(230,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(231,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(232,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(233,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(234,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(235,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(236,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(237,29,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(238,29,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(239,29,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(240,29,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(241,29,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(242,29,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(243,29,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(244,29,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(245,29,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(246,29,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(247,29,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(248,29,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(249,29,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(250,30,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(251,30,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(252,31,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(253,31,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(254,31,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(255,31,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(256,32,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(257,32,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(258,32,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(259,32,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(260,32,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(261,33,'Role','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(262,33,'Event Name','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(263,33,'Event Type','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(264,34,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(265,34,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(266,35,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(267,35,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(268,35,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(269,35,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(270,36,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(271,36,'Normal','2','Normal',NULL,0,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(272,36,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(273,37,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(274,37,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_','date_',NULL,1,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(275,38,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,0,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL,NULL,NULL), +(276,38,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,0,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL,NULL,NULL), +(277,38,'Activity Details Report','activity','CRM_Report_Form_Activity',NULL,0,0,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL,NULL,NULL), +(278,38,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,0,4,'Provides a detailed report for your walk/phonelist for targeted contacts',0,0,0,NULL,NULL,NULL,NULL,NULL), +(279,38,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,0,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL,NULL,NULL), +(280,38,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,0,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL,NULL,NULL), +(281,38,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,0,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL,NULL,NULL), +(282,38,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,0,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL,NULL,NULL), +(283,38,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,0,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL,NULL,NULL), +(284,38,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,0,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL,NULL,NULL), +(285,38,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,0,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL,NULL,NULL), +(286,38,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,0,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL,NULL,NULL), +(287,38,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,0,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL,NULL,NULL), +(288,38,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,0,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL,NULL,NULL), +(289,38,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and Member Since.',0,0,1,3,NULL,NULL,NULL,NULL), +(290,38,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,0,16,'Provides a list of members along with their membership status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL), +(291,38,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,0,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL,NULL,NULL), +(292,38,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,0,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL,NULL,NULL), +(293,38,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,0,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL,NULL,NULL), +(294,38,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,0,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL,NULL,NULL), +(295,38,'Pledge Detail Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,0,21,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL,NULL,NULL), +(296,38,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,0,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL,NULL,NULL), +(297,38,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL), +(298,38,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,0,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL,NULL,NULL), +(299,38,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,0,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL,NULL,NULL), +(300,38,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,0,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL,NULL,NULL), +(301,38,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,0,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL,NULL,NULL), +(302,38,'Activity Summary Report','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,0,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL,NULL,NULL), +(303,38,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL,NULL,NULL), +(304,38,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL,NULL,NULL), +(305,38,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL,NULL,NULL), +(306,38,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL), +(307,38,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,0,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL,NULL,NULL), +(308,38,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,0,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL,NULL,NULL), +(309,38,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,0,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL,NULL,NULL), +(310,38,'Mail Click-Through Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,0,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL,NULL,NULL), +(311,38,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,0,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL,NULL,NULL), +(312,38,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,0,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL,NULL,NULL), +(313,38,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,0,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL,NULL,NULL), +(314,38,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,0,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL,NULL,NULL), +(315,38,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,0,45,'Groups and totals pledges by criteria including contact, time period, pledge status, location, etc.',0,0,1,6,NULL,NULL,NULL,NULL), +(316,38,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,0,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL,NULL,NULL), +(317,38,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,0,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL,NULL,NULL), +(318,38,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,0,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL,NULL,NULL), +(319,38,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,0,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL,NULL,NULL), +(320,38,'Recurring Contributions Summary','contribute/recursummary','CRM_Report_Form_Contribute_RecurSummary',NULL,0,0,49,'Provides simple summary for each payment instrument for which there are recurring contributions (e.g. Credit Card, Standing Order, Direct Debit, etc., NULL), showing within a given date range.',0,0,1,2,NULL,NULL,NULL,NULL), +(321,38,'Deferred Revenue Details','contribute/deferredrevenue','CRM_Report_Form_Contribute_DeferredRevenue',NULL,0,0,50,'Deferred Revenue Details Report',0,0,1,2,NULL,NULL,NULL,NULL), +(322,39,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(323,39,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(324,39,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(325,39,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(326,39,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(327,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(328,40,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(329,40,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(330,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(331,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(332,41,'{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}','1','{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(333,41,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(334,41,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(335,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(336,42,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(337,42,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(338,42,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(339,42,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(340,42,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(341,42,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(342,42,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(343,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(344,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(345,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(346,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(347,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(348,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(349,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(350,44,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(351,44,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(352,44,'Social','3','Social',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(353,45,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(354,45,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(355,45,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(356,45,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(357,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(358,46,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(359,46,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(360,46,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(361,46,'Notes','civicrm_note','Note',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(362,47,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(363,47,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(364,47,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(365,47,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(366,47,'JPY (¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(367,48,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL), +(368,48,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL), +(369,48,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL,NULL,NULL), +(370,48,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL,NULL,NULL), +(371,49,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(372,49,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(373,50,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(374,50,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(375,50,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(376,51,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(377,51,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(378,51,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(379,51,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(380,53,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), +(381,53,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), +(382,53,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), +(383,54,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(384,54,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(385,54,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(386,54,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(387,54,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(388,55,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(389,55,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(390,56,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(391,56,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(392,56,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(393,56,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(394,56,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(395,56,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(396,56,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(397,56,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(398,56,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(399,56,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(400,56,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(401,56,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(402,56,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(403,56,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(404,56,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(405,56,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(406,56,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(407,56,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(408,56,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(409,56,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(410,56,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(411,56,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(412,56,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(413,56,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(414,56,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(415,56,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(416,56,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(417,56,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(418,56,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(419,56,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(420,56,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(421,56,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(422,56,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(423,56,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(424,56,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(425,56,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(426,56,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(427,56,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(428,56,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(429,56,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(430,56,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(431,56,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(432,56,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(433,56,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(434,56,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(435,56,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(436,56,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(437,56,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(438,56,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(439,56,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(440,56,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(441,56,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(442,56,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(443,56,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(444,56,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(445,56,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(446,56,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(447,56,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(448,56,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(449,56,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(450,56,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(451,56,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(452,57,'Invoice PDF Format','{\"metric\":\"px\",\"margin_top\":10,\"margin_bottom\":0,\"margin_left\":65,\"margin_right\":0}','default_invoice_pdf_format',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(453,58,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(454,58,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(455,58,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(456,58,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(457,58,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(458,58,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(459,58,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(460,58,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(461,58,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(462,58,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(463,58,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(464,59,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(465,59,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(466,59,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(467,60,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(468,60,'Credit/Contra Revenue Account is','2','Credit/Contra Revenue Account is',NULL,0,0,2,'Credit/Contra Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(469,60,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(470,60,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL,NULL,NULL), +(471,60,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(472,60,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(473,60,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(474,60,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(475,60,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(476,60,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(477,60,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(478,60,'Deferred Revenue Account is','12','Deferred Revenue Account is',NULL,0,0,12,'Deferred Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), +(479,61,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(480,62,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(481,62,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(482,63,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(483,63,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(484,63,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(485,64,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL), +(486,64,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL), +(487,65,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(488,65,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(489,65,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(490,65,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(491,65,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(492,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(493,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(494,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(495,68,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(496,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(497,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(498,69,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL), +(499,69,'Liability','2','Liability',NULL,0,0,2,'Things you owe, like a grant still to be disbursed',0,1,1,2,NULL,NULL,NULL,NULL), +(500,69,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL), +(501,69,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL,NULL,NULL), +(502,69,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL,NULL,NULL), +(503,70,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL), +(504,70,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL), +(505,70,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL), +(506,71,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(507,72,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(508,72,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(509,72,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(510,72,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(511,73,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(512,73,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(513,74,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(514,74,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(515,74,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(516,75,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(517,75,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(518,76,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(519,76,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL), +(520,76,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL), +(521,77,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(522,77,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(523,77,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(524,77,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(525,77,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(526,77,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(527,77,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(528,77,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(529,77,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(530,77,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(531,77,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(532,77,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(533,77,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(534,77,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(535,77,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(536,77,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(537,77,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(538,77,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(539,77,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(540,77,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(541,77,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(542,77,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(543,77,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(544,77,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(545,77,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(546,77,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(547,77,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(548,77,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(549,77,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(550,77,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(551,77,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(552,77,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(553,77,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(554,77,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(555,77,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(556,77,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(557,77,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(558,77,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(559,77,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(560,77,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(561,77,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(562,77,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(563,77,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(564,77,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(565,77,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(566,77,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(567,77,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(568,77,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(569,77,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(570,77,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(571,77,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(572,77,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(573,77,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(574,77,'Previous 2 fiscal years','previous_2.fiscal_year','previous_2.fiscal_year',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(575,77,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(576,77,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(577,77,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(578,77,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(579,77,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(580,77,'Fiscal year prior to previous fiscal year','previous_before.fiscal_year','previous_before.fiscal_year',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(581,77,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(582,77,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(583,77,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,63,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(584,77,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(585,78,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(586,78,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(587,78,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(588,78,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(589,78,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(590,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(591,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(592,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(593,79,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(594,79,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(595,79,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(596,79,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(597,79,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(598,80,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), +(599,80,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), +(600,80,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), +(601,81,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(602,81,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(603,81,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(604,81,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(605,82,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), +(606,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(607,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(608,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(609,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(610,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(611,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(612,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(613,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(614,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(615,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(616,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(617,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(618,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(619,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(620,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(621,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(622,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(623,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(624,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(625,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(626,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(627,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(628,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(629,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(630,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(631,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(632,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(633,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(634,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(635,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(636,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(637,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(638,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(639,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(640,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(641,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(642,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(643,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(644,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(645,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(646,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(647,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(648,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(649,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(650,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(651,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(652,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(653,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(654,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(655,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(656,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(657,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(658,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(659,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(660,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(661,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(662,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(663,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(664,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(665,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(666,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(667,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(668,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(669,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(670,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(671,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(672,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(673,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(674,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(675,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(676,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(677,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(678,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(679,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(680,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(681,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(682,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(683,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(684,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(685,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(686,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(687,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(688,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(689,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(690,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(691,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(692,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(693,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(694,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(695,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(696,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(697,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(698,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(699,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(700,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(701,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(702,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(703,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(704,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(705,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(706,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(707,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(708,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(709,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(710,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(711,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(712,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(713,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(714,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(715,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(716,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(717,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(718,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(719,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(720,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(721,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(722,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(723,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(724,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(725,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(726,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(727,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(728,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(729,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(730,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(731,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(732,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(733,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(734,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(735,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(736,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(737,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(738,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(739,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(740,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(741,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(742,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(743,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(744,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(745,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(746,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(747,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(748,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(749,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(750,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(751,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(752,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(753,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(754,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(755,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(756,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(757,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(758,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(759,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(760,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(761,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(762,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(763,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(764,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(765,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(766,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(767,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(768,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(769,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(770,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(771,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(772,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(773,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(774,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(775,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(776,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(777,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(778,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(779,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(780,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(781,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(782,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(783,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(784,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(785,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(786,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(787,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(788,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(789,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(790,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(791,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(792,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(793,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(794,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(795,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(796,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(797,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(798,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(799,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), +(800,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(801,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(802,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(803,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(804,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(805,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(806,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(807,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(808,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(809,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(810,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(811,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(812,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(813,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(814,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(815,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(816,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(817,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(818,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(819,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(820,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(821,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(822,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(823,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(824,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(825,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(826,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(827,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(828,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(829,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(830,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(831,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(832,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(833,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(834,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(835,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(836,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(837,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(838,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(839,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(840,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(841,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(842,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(843,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(844,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), +(845,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(846,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(847,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(848,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(849,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(850,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(851,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(852,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(853,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(854,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(855,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(856,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(857,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(858,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), +(859,2,'Interview','56','Interview',NULL,0,NULL,56,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), +(860,55,'Contribution Page','ContributionPage','civicrm_contribution_page','financial_type_id',0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), +(861,8,'Advisory Board','3','Advisory Board',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */; UNLOCK TABLES; @@ -6632,56 +6661,56 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant` WRITE; /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */; INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `must_wait`, `transferred_to_contact_id`, `created_id`) VALUES - (1,134,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (2,166,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (3,25,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (4,51,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (5,49,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (6,22,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (7,144,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (8,170,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (9,191,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (10,159,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (11,29,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (12,112,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (13,136,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (14,32,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (15,164,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (16,13,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (17,189,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (18,105,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (19,198,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (20,139,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (21,60,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (22,14,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (23,183,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (24,86,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (25,161,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (26,30,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (27,70,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (28,47,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (29,167,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (30,42,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (31,186,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (32,150,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (33,193,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (34,110,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (35,168,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (36,7,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (37,64,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (38,149,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (39,84,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (40,103,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (41,76,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (42,179,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (43,184,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (44,127,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (45,1,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (46,173,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (47,82,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (48,72,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (49,132,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), - (50,151,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); + (1,125,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(2,167,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(3,54,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(4,129,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(5,149,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(6,113,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(7,140,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(8,139,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(9,28,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(10,137,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(11,80,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(12,163,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(13,76,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(14,117,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(15,79,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(16,20,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(17,186,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(18,45,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(19,55,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(20,49,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(21,11,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(22,180,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(23,30,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(24,152,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(25,197,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(26,84,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(27,78,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(28,184,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(29,194,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(30,190,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(31,65,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(32,111,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(33,60,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(34,5,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(35,13,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(36,34,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(37,162,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(38,147,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(39,17,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(40,87,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(41,64,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(42,148,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(43,118,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(44,134,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(45,146,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(46,181,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(47,110,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(48,37,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(49,192,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), +(50,6,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -6692,56 +6721,56 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant_payment` WRITE; /*!40000 ALTER TABLE `civicrm_participant_payment` DISABLE KEYS */; INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES - (1,45,63), - (2,36,64), - (3,16,65), - (4,22,66), - (5,6,67), - (6,3,68), - (7,11,69), - (8,26,70), - (9,14,71), - (10,30,72), - (11,28,73), - (12,5,74), - (13,4,75), - (14,21,76), - (15,37,77), - (16,27,78), - (17,48,79), - (18,41,80), - (19,47,81), - (20,39,82), - (21,24,83), - (22,40,84), - (23,18,85), - (24,34,86), - (25,12,87), - (26,44,88), - (27,49,89), - (28,1,90), - (29,13,91), - (30,20,92), - (31,7,93), - (32,38,94), - (33,32,95), - (34,50,96), - (35,10,97), - (36,25,98), - (37,15,99), - (38,2,100), - (39,29,101), - (40,35,102), - (41,8,103), - (42,46,104), - (43,42,105), - (44,23,106), - (45,43,107), - (46,31,108), - (47,17,109), - (48,9,110), - (49,33,111), - (50,19,112); + (1,34,63), +(2,50,64), +(3,21,65), +(4,35,66), +(5,39,67), +(6,16,68), +(7,9,69), +(8,23,70), +(9,36,71), +(10,48,72), +(11,18,73), +(12,20,74), +(13,3,75), +(14,19,76), +(15,33,77), +(16,41,78), +(17,31,79), +(18,13,80), +(19,27,81), +(20,15,82), +(21,11,83), +(22,26,84), +(23,40,85), +(24,47,86), +(25,32,87), +(26,6,88), +(27,14,89), +(28,43,90), +(29,1,91), +(30,4,92), +(31,44,93), +(32,10,94), +(33,8,95), +(34,7,96), +(35,45,97), +(36,38,98), +(37,42,99), +(38,5,100), +(39,24,101), +(40,37,102), +(41,12,103), +(42,2,104), +(43,22,105), +(44,46,106), +(45,28,107), +(46,17,108), +(47,30,109), +(48,49,110), +(49,29,111), +(50,25,112); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -6753,20 +6782,20 @@ LOCK TABLES `civicrm_participant_status_type` WRITE; /*!40000 ALTER TABLE `civicrm_participant_status_type` DISABLE KEYS */; INSERT INTO `civicrm_participant_status_type` (`id`, `name`, `label`, `class`, `is_reserved`, `is_active`, `is_counted`, `weight`, `visibility_id`) VALUES (1,'Registered','Registered','Positive',1,1,1,1,1), - (2,'Attended','Attended','Positive',0,1,1,2,2), - (3,'No-show','No-show','Negative',0,1,0,3,2), - (4,'Cancelled','Cancelled','Negative',1,1,0,4,2), - (5,'Pending from pay later','Pending (pay later)','Pending',1,1,1,5,2), - (6,'Pending from incomplete transaction','Pending (incomplete transaction)','Pending',1,1,0,6,2), - (7,'On waitlist','On waitlist','Waiting',1,0,0,7,2), - (8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2), - (9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2), - (10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2), - (11,'Rejected','Rejected','Negative',1,0,0,11,2), - (12,'Expired','Expired','Negative',1,1,0,12,2), - (13,'Partially paid','Partially paid','Positive',1,1,1,14,2), - (14,'Pending refund','Pending refund','Positive',1,1,1,15,2), - (15,'Transferred','Transferred','Negative',1,1,0,16,2); +(2,'Attended','Attended','Positive',0,1,1,2,2), +(3,'No-show','No-show','Negative',0,1,0,3,2), +(4,'Cancelled','Cancelled','Negative',1,1,0,4,2), +(5,'Pending from pay later','Pending (pay later)','Pending',1,1,1,5,2), +(6,'Pending from incomplete transaction','Pending (incomplete transaction)','Pending',1,1,0,6,2), +(7,'On waitlist','On waitlist','Waiting',1,0,0,7,2), +(8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2), +(9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2), +(10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2), +(11,'Rejected','Rejected','Negative',1,0,0,11,2), +(12,'Expired','Expired','Negative',1,1,0,12,2), +(13,'Partially paid','Partially paid','Positive',1,1,1,14,2), +(14,'Pending refund','Pending refund','Positive',1,1,1,15,2), +(15,'Transferred','Transferred','Negative',1,1,0,16,2); /*!40000 ALTER TABLE `civicrm_participant_status_type` ENABLE KEYS */; UNLOCK TABLES; @@ -6787,13 +6816,13 @@ LOCK TABLES `civicrm_payment_processor_type` WRITE; /*!40000 ALTER TABLE `civicrm_payment_processor_type` DISABLE KEYS */; INSERT INTO `civicrm_payment_processor_type` (`id`, `name`, `title`, `description`, `is_active`, `is_default`, `user_name_label`, `password_label`, `signature_label`, `subject_label`, `class_name`, `url_site_default`, `url_api_default`, `url_recur_default`, `url_button_default`, `url_site_test_default`, `url_api_test_default`, `url_recur_test_default`, `url_button_test_default`, `billing_mode`, `is_recur`, `payment_type`, `payment_instrument_id`) VALUES (1,'PayPal_Standard','PayPal - Website Payments Standard',NULL,1,0,'Merchant Account Email',NULL,NULL,NULL,'Payment_PayPalImpl','https://www.paypal.com/',NULL,'https://www.paypal.com/',NULL,'https://www.sandbox.paypal.com/',NULL,'https://www.sandbox.paypal.com/',NULL,4,1,1,1), - (2,'PayPal','PayPal - Website Payments Pro',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/','https://www.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/','https://www.sandbox.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',3,1,1,1), - (3,'PayPal_Express','PayPal - Express',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',2,1,1,1), - (4,'AuthNet','Authorize.Net',NULL,1,0,'API Login','Payment Key','MD5 Hash',NULL,'Payment_AuthorizeNet','https://secure2.authorize.net/gateway/transact.dll',NULL,'https://api2.authorize.net/xml/v1/request.api',NULL,'https://test.authorize.net/gateway/transact.dll',NULL,'https://apitest.authorize.net/xml/v1/request.api',NULL,1,1,1,1), - (5,'PayJunction','PayJunction',NULL,0,0,'User Name','Password',NULL,NULL,'Payment_PayJunction','https://payjunction.com/quick_link',NULL,NULL,NULL,'https://www.payjunctionlabs.com/quick_link',NULL,NULL,NULL,1,1,1,1), - (6,'Dummy','Dummy Payment Processor',NULL,1,1,'User Name',NULL,NULL,NULL,'Payment_Dummy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,1), - (7,'Realex','Realex Payment',NULL,0,0,'Merchant ID','Password',NULL,'Account','Payment_Realex','https://epage.payandshop.com/epage.cgi',NULL,NULL,NULL,'https://epage.payandshop.com/epage-remote.cgi',NULL,NULL,NULL,1,0,1,1), - (8,'FirstData','FirstData (aka linkpoint)','FirstData (aka linkpoint)',0,0,'Store name','certificate path',NULL,NULL,'Payment_FirstData','https://secure.linkpt.net',NULL,NULL,NULL,'https://staging.linkpt.net',NULL,NULL,NULL,1,0,1,1); +(2,'PayPal','PayPal - Website Payments Pro',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/','https://www.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/','https://www.sandbox.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',3,1,1,1), +(3,'PayPal_Express','PayPal - Express',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',2,1,1,1), +(4,'AuthNet','Authorize.Net',NULL,1,0,'API Login','Payment Key','MD5 Hash',NULL,'Payment_AuthorizeNet','https://secure2.authorize.net/gateway/transact.dll',NULL,'https://api2.authorize.net/xml/v1/request.api',NULL,'https://test.authorize.net/gateway/transact.dll',NULL,'https://apitest.authorize.net/xml/v1/request.api',NULL,1,1,1,1), +(5,'PayJunction','PayJunction',NULL,0,0,'User Name','Password',NULL,NULL,'Payment_PayJunction','https://payjunction.com/quick_link',NULL,NULL,NULL,'https://www.payjunctionlabs.com/quick_link',NULL,NULL,NULL,1,1,1,1), +(6,'Dummy','Dummy Payment Processor',NULL,1,1,'User Name',NULL,NULL,NULL,'Payment_Dummy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,1), +(7,'Realex','Realex Payment',NULL,0,0,'Merchant ID','Password',NULL,'Account','Payment_Realex','https://epage.payandshop.com/epage.cgi',NULL,NULL,NULL,'https://epage.payandshop.com/epage-remote.cgi',NULL,NULL,NULL,1,0,1,1), +(8,'FirstData','FirstData (aka linkpoint)','FirstData (aka linkpoint)',0,0,'Store name','certificate path',NULL,NULL,'Payment_FirstData','https://secure.linkpt.net',NULL,NULL,NULL,'https://staging.linkpt.net',NULL,NULL,NULL,1,0,1,1); /*!40000 ALTER TABLE `civicrm_payment_processor_type` ENABLE KEYS */; UNLOCK TABLES; @@ -6813,7 +6842,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp` WRITE; /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */; INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES - (1,101,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); + (1,123,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -6835,151 +6864,170 @@ UNLOCK TABLES; LOCK TABLES `civicrm_phone` WRITE; /*!40000 ALTER TABLE `civicrm_phone` DISABLE KEYS */; INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES - (1,40,1,1,0,NULL,'(201) 343-6160',NULL,'2013436160',1), - (2,40,1,0,0,NULL,'575-4142',NULL,'5754142',1), - (3,191,1,1,0,NULL,'(572) 293-4963',NULL,'5722934963',2), - (4,121,1,1,0,NULL,'(623) 425-3920',NULL,'6234253920',1), - (5,121,1,0,0,NULL,'(799) 862-4967',NULL,'7998624967',2), - (6,181,1,1,0,NULL,'(516) 479-8486',NULL,'5164798486',2), - (7,181,1,0,0,NULL,'301-9595',NULL,'3019595',2), - (8,4,1,1,0,NULL,'(728) 745-5140',NULL,'7287455140',2), - (9,4,1,0,0,NULL,'(893) 809-1271',NULL,'8938091271',1), - (10,172,1,1,0,NULL,'592-6606',NULL,'5926606',2), - (11,109,1,1,0,NULL,'(215) 290-6442',NULL,'2152906442',1), - (12,136,1,1,0,NULL,'(653) 317-9784',NULL,'6533179784',1), - (13,108,1,1,0,NULL,'(221) 741-3364',NULL,'2217413364',2), - (14,108,1,0,0,NULL,'425-3590',NULL,'4253590',1), - (15,95,1,1,0,NULL,'507-9955',NULL,'5079955',2), - (16,95,1,0,0,NULL,'(706) 533-4779',NULL,'7065334779',2), - (17,21,1,1,0,NULL,'273-9945',NULL,'2739945',1), - (18,21,1,0,0,NULL,'(536) 501-3629',NULL,'5365013629',2), - (19,5,1,1,0,NULL,'(885) 615-7137',NULL,'8856157137',2), - (20,76,1,1,0,NULL,'(514) 409-1905',NULL,'5144091905',1), - (21,7,1,1,0,NULL,'476-5453',NULL,'4765453',2), - (22,7,1,0,0,NULL,'658-2324',NULL,'6582324',2), - (23,106,1,1,0,NULL,'853-1321',NULL,'8531321',2), - (24,106,1,0,0,NULL,'576-1024',NULL,'5761024',1), - (25,39,1,1,0,NULL,'236-5441',NULL,'2365441',2), - (26,51,1,1,0,NULL,'(231) 238-6920',NULL,'2312386920',1), - (27,134,1,1,0,NULL,'343-7876',NULL,'3437876',2), - (28,134,1,0,0,NULL,'(240) 212-4291',NULL,'2402124291',1), - (29,128,1,1,0,NULL,'536-5448',NULL,'5365448',1), - (30,105,1,1,0,NULL,'(250) 565-5784',NULL,'2505655784',1), - (31,158,1,1,0,NULL,'341-9944',NULL,'3419944',1), - (32,158,1,0,0,NULL,'(684) 478-7110',NULL,'6844787110',1), - (33,143,1,1,0,NULL,'(528) 337-8837',NULL,'5283378837',1), - (34,114,1,1,0,NULL,'(314) 507-2727',NULL,'3145072727',2), - (35,92,1,1,0,NULL,'(546) 473-2113',NULL,'5464732113',1), - (36,70,1,1,0,NULL,'(558) 421-7795',NULL,'5584217795',2), - (37,70,1,0,0,NULL,'(440) 508-9103',NULL,'4405089103',2), - (38,164,1,1,0,NULL,'301-5163',NULL,'3015163',1), - (39,174,1,1,0,NULL,'847-9062',NULL,'8479062',1), - (40,99,1,1,0,NULL,'(632) 480-5215',NULL,'6324805215',1), - (41,99,1,0,0,NULL,'(435) 728-2635',NULL,'4357282635',2), - (42,52,1,1,0,NULL,'(266) 416-3552',NULL,'2664163552',2), - (43,138,1,1,0,NULL,'356-1140',NULL,'3561140',2), - (44,14,1,1,0,NULL,'862-7254',NULL,'8627254',1), - (45,166,1,1,0,NULL,'622-4387',NULL,'6224387',2), - (46,166,1,0,0,NULL,'292-1095',NULL,'2921095',2), - (47,156,1,1,0,NULL,'632-9473',NULL,'6329473',1), - (48,149,1,1,0,NULL,'755-9217',NULL,'7559217',2), - (49,149,1,0,0,NULL,'380-5173',NULL,'3805173',1), - (50,113,1,1,0,NULL,'(313) 872-2111',NULL,'3138722111',2), - (51,113,1,0,0,NULL,'(649) 247-4556',NULL,'6492474556',1), - (52,93,1,1,0,NULL,'(382) 373-9618',NULL,'3823739618',2), - (53,93,1,0,0,NULL,'(895) 706-3828',NULL,'8957063828',1), - (54,175,1,1,0,NULL,'889-2509',NULL,'8892509',2), - (55,175,1,0,0,NULL,'(256) 637-2049',NULL,'2566372049',1), - (56,152,1,1,0,NULL,'379-8553',NULL,'3798553',2), - (57,131,1,1,0,NULL,'(460) 716-3501',NULL,'4607163501',1), - (58,72,1,1,0,NULL,'688-3707',NULL,'6883707',1), - (59,155,1,1,0,NULL,'856-8987',NULL,'8568987',2), - (60,155,1,0,0,NULL,'632-7763',NULL,'6327763',1), - (61,117,1,1,0,NULL,'469-8383',NULL,'4698383',1), - (62,110,1,1,0,NULL,'(811) 549-3368',NULL,'8115493368',2), - (63,130,1,1,0,NULL,'489-1241',NULL,'4891241',1), - (64,130,1,0,0,NULL,'(786) 820-5823',NULL,'7868205823',2), - (65,2,1,1,0,NULL,'569-7564',NULL,'5697564',2), - (66,78,1,1,0,NULL,'(771) 415-7057',NULL,'7714157057',2), - (67,69,1,1,0,NULL,'880-9005',NULL,'8809005',1), - (68,69,1,0,0,NULL,'680-1902',NULL,'6801902',2), - (69,162,1,1,0,NULL,'310-8375',NULL,'3108375',1), - (70,162,1,0,0,NULL,'577-2033',NULL,'5772033',1), - (71,120,1,1,0,NULL,'321-4817',NULL,'3214817',1), - (72,94,1,1,0,NULL,'(210) 744-7535',NULL,'2107447535',1), - (73,103,1,1,0,NULL,'(299) 438-5270',NULL,'2994385270',1), - (74,118,1,1,0,NULL,'(423) 276-8667',NULL,'4232768667',1), - (75,118,1,0,0,NULL,'403-8753',NULL,'4038753',1), - (76,41,1,1,0,NULL,'(872) 690-2155',NULL,'8726902155',2), - (77,41,1,0,0,NULL,'(756) 860-7100',NULL,'7568607100',2), - (78,32,1,1,0,NULL,'(477) 728-8843',NULL,'4777288843',1), - (79,115,1,1,0,NULL,'575-3390',NULL,'5753390',1), - (80,115,1,0,0,NULL,'(274) 432-5920',NULL,'2744325920',2), - (81,193,1,1,0,NULL,'(658) 361-5041',NULL,'6583615041',2), - (82,193,1,0,0,NULL,'(750) 729-3196',NULL,'7507293196',2), - (83,135,1,1,0,NULL,'(676) 464-9401',NULL,'6764649401',1), - (84,135,1,0,0,NULL,'597-3328',NULL,'5973328',1), - (85,47,1,1,0,NULL,'(668) 332-1694',NULL,'6683321694',2), - (86,192,1,1,0,NULL,'204-3647',NULL,'2043647',1), - (87,192,1,0,0,NULL,'(686) 852-4779',NULL,'6868524779',2), - (88,107,1,1,0,NULL,'(794) 235-1936',NULL,'7942351936',2), - (89,27,1,1,0,NULL,'578-9871',NULL,'5789871',1), - (90,157,1,1,0,NULL,'715-6599',NULL,'7156599',2), - (91,16,1,1,0,NULL,'(633) 719-7076',NULL,'6337197076',1), - (92,88,1,1,0,NULL,'(544) 774-8431',NULL,'5447748431',2), - (93,31,1,1,0,NULL,'(897) 748-7786',NULL,'8977487786',1), - (94,177,1,1,0,NULL,'(409) 391-9976',NULL,'4093919976',2), - (95,177,1,0,0,NULL,'320-8753',NULL,'3208753',1), - (96,63,1,1,0,NULL,'(303) 390-3898',NULL,'3033903898',2), - (97,197,1,1,0,NULL,'(475) 651-4009',NULL,'4756514009',1), - (98,197,1,0,0,NULL,'686-8966',NULL,'6868966',2), - (99,29,1,1,0,NULL,'742-1582',NULL,'7421582',1), - (100,81,1,1,0,NULL,'263-1359',NULL,'2631359',2), - (101,122,1,1,0,NULL,'(458) 434-5628',NULL,'4584345628',2), - (102,129,1,1,0,NULL,'(879) 469-7581',NULL,'8794697581',2), - (103,150,1,1,0,NULL,'(513) 272-4859',NULL,'5132724859',2), - (104,150,1,0,0,NULL,'383-4972',NULL,'3834972',2), - (105,146,1,1,0,NULL,'876-8457',NULL,'8768457',2), - (106,146,1,0,0,NULL,'227-8082',NULL,'2278082',2), - (107,97,1,1,0,NULL,'508-8339',NULL,'5088339',2), - (108,97,1,0,0,NULL,'(534) 787-7317',NULL,'5347877317',1), - (109,65,1,1,0,NULL,'(516) 805-5220',NULL,'5168055220',2), - (110,65,1,0,0,NULL,'(765) 281-4674',NULL,'7652814674',1), - (111,45,1,1,0,NULL,'884-5936',NULL,'8845936',2), - (112,124,1,1,0,NULL,'(620) 568-6261',NULL,'6205686261',2), - (113,30,1,1,0,NULL,'473-7652',NULL,'4737652',2), - (114,30,1,0,0,NULL,'786-2754',NULL,'7862754',2), - (115,188,1,1,0,NULL,'619-8305',NULL,'6198305',1), - (116,132,1,1,0,NULL,'(693) 746-1973',NULL,'6937461973',1), - (117,132,1,0,0,NULL,'(811) 439-9994',NULL,'8114399994',2), - (118,102,1,1,0,NULL,'(459) 293-7032',NULL,'4592937032',1), - (119,142,1,1,0,NULL,'(391) 835-3497',NULL,'3918353497',1), - (120,142,1,0,0,NULL,'645-6263',NULL,'6456263',2), - (121,111,1,1,0,NULL,'(271) 417-8680',NULL,'2714178680',2), - (122,111,1,0,0,NULL,'284-3111',NULL,'2843111',2), - (123,169,1,1,0,NULL,'(559) 692-6077',NULL,'5596926077',1), - (124,44,1,1,0,NULL,'392-8563',NULL,'3928563',2), - (125,44,1,0,0,NULL,'(367) 727-4610',NULL,'3677274610',1), - (126,87,1,1,0,NULL,'457-9508',NULL,'4579508',1), - (127,87,1,0,0,NULL,'791-7830',NULL,'7917830',1), - (128,201,1,1,0,NULL,'349-4321',NULL,'3494321',2), - (129,59,1,1,0,NULL,'602-3948',NULL,'6023948',1), - (130,112,1,1,0,NULL,'475-4662',NULL,'4754662',2), - (131,61,1,1,0,NULL,'345-3435',NULL,'3453435',1), - (132,36,1,1,0,NULL,'(581) 730-7893',NULL,'5817307893',2), - (133,18,1,1,0,NULL,'(573) 764-1373',NULL,'5737641373',1), - (134,163,1,1,0,NULL,'(611) 878-3237',NULL,'6118783237',1), - (135,163,1,0,0,NULL,'262-2219',NULL,'2622219',2), - (136,33,1,1,0,NULL,'359-9016',NULL,'3599016',1), - (137,79,1,1,0,NULL,'261-7797',NULL,'2617797',1), - (138,79,1,0,0,NULL,'877-2483',NULL,'8772483',2), - (139,9,1,1,0,NULL,'662-4260',NULL,'6624260',2), - (140,9,1,0,0,NULL,'749-9059',NULL,'7499059',2), - (141,34,1,1,0,NULL,'838-8638',NULL,'8388638',1), - (142,34,1,0,0,NULL,'(217) 862-3763',NULL,'2178623763',2), - (143,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), - (144,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), - (145,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); + (1,147,1,1,0,NULL,'355-6711',NULL,'3556711',1), +(2,198,1,1,0,NULL,'(353) 683-8877',NULL,'3536838877',1), +(3,198,1,0,0,NULL,'779-7520',NULL,'7797520',2), +(4,123,1,1,0,NULL,'(673) 684-6086',NULL,'6736846086',1), +(5,72,1,1,0,NULL,'839-9651',NULL,'8399651',2), +(6,72,1,0,0,NULL,'668-1942',NULL,'6681942',1), +(7,96,1,1,0,NULL,'(591) 425-4820',NULL,'5914254820',2), +(8,18,1,1,0,NULL,'667-6453',NULL,'6676453',1), +(9,97,1,1,0,NULL,'(497) 892-2865',NULL,'4978922865',2), +(10,159,1,1,0,NULL,'(206) 325-4817',NULL,'2063254817',2), +(11,159,1,0,0,NULL,'(628) 557-1129',NULL,'6285571129',1), +(12,13,1,1,0,NULL,'823-7126',NULL,'8237126',2), +(13,24,1,1,0,NULL,'404-8567',NULL,'4048567',2), +(14,24,1,0,0,NULL,'834-6947',NULL,'8346947',2), +(15,66,1,1,0,NULL,'(462) 555-7752',NULL,'4625557752',1), +(16,66,1,0,0,NULL,'(718) 549-3942',NULL,'7185493942',1), +(17,4,1,1,0,NULL,'671-4895',NULL,'6714895',2), +(18,4,1,0,0,NULL,'496-6943',NULL,'4966943',2), +(19,154,1,1,0,NULL,'(339) 564-5978',NULL,'3395645978',2), +(20,23,1,1,0,NULL,'(713) 572-5771',NULL,'7135725771',2), +(21,23,1,0,0,NULL,'(628) 394-7424',NULL,'6283947424',2), +(22,17,1,1,0,NULL,'727-8223',NULL,'7278223',2), +(23,17,1,0,0,NULL,'690-7809',NULL,'6907809',2), +(24,64,1,1,0,NULL,'848-4961',NULL,'8484961',1), +(25,64,1,0,0,NULL,'550-1480',NULL,'5501480',1), +(26,133,1,1,0,NULL,'(734) 354-3694',NULL,'7343543694',1), +(27,61,1,1,0,NULL,'(831) 598-3091',NULL,'8315983091',2), +(28,61,1,0,0,NULL,'(831) 201-5814',NULL,'8312015814',2), +(29,151,1,1,0,NULL,'(863) 728-1278',NULL,'8637281278',2), +(30,121,1,1,0,NULL,'(671) 753-4778',NULL,'6717534778',2), +(31,121,1,0,0,NULL,'(827) 795-7071',NULL,'8277957071',2), +(32,70,1,1,0,NULL,'704-9984',NULL,'7049984',1), +(33,70,1,0,0,NULL,'487-1947',NULL,'4871947',1), +(34,79,1,1,0,NULL,'(227) 598-2908',NULL,'2275982908',1), +(35,79,1,0,0,NULL,'839-7443',NULL,'8397443',2), +(36,187,1,1,0,NULL,'304-9721',NULL,'3049721',1), +(37,187,1,0,0,NULL,'(349) 677-5591',NULL,'3496775591',1), +(38,7,1,1,0,NULL,'(264) 413-1214',NULL,'2644131214',1), +(39,25,1,1,0,NULL,'670-9683',NULL,'6709683',2), +(40,146,1,1,0,NULL,'688-9937',NULL,'6889937',2), +(41,186,1,1,0,NULL,'872-4231',NULL,'8724231',2), +(42,99,1,1,0,NULL,'(321) 292-4107',NULL,'3212924107',1), +(43,99,1,0,0,NULL,'647-1002',NULL,'6471002',1), +(44,132,1,1,0,NULL,'(212) 233-3276',NULL,'2122333276',1), +(45,132,1,0,0,NULL,'(588) 392-7577',NULL,'5883927577',1), +(46,170,1,1,0,NULL,'563-8354',NULL,'5638354',1), +(47,170,1,0,0,NULL,'(460) 728-2074',NULL,'4607282074',2), +(48,184,1,1,0,NULL,'693-7546',NULL,'6937546',1), +(49,184,1,0,0,NULL,'(332) 821-1667',NULL,'3328211667',2), +(50,163,1,1,0,NULL,'217-4846',NULL,'2174846',2), +(51,163,1,0,0,NULL,'853-2694',NULL,'8532694',2), +(52,10,1,1,0,NULL,'518-7133',NULL,'5187133',2), +(53,10,1,0,0,NULL,'682-6338',NULL,'6826338',1), +(54,126,1,1,0,NULL,'(393) 824-2759',NULL,'3938242759',2), +(55,93,1,1,0,NULL,'(828) 278-2193',NULL,'8282782193',1), +(56,93,1,0,0,NULL,'(855) 394-9351',NULL,'8553949351',2), +(57,71,1,1,0,NULL,'(302) 408-7234',NULL,'3024087234',2), +(58,69,1,1,0,NULL,'650-2859',NULL,'6502859',1), +(59,69,1,0,0,NULL,'584-1870',NULL,'5841870',1), +(60,108,1,1,0,NULL,'734-6592',NULL,'7346592',1), +(61,62,1,1,0,NULL,'(360) 510-1745',NULL,'3605101745',1), +(62,62,1,0,0,NULL,'758-7036',NULL,'7587036',1), +(63,45,1,1,0,NULL,'(434) 863-5810',NULL,'4348635810',1), +(64,45,1,0,0,NULL,'420-4767',NULL,'4204767',2), +(65,148,1,1,0,NULL,'(370) 386-1913',NULL,'3703861913',1), +(66,148,1,0,0,NULL,'498-9200',NULL,'4989200',2), +(67,37,1,1,0,NULL,'786-8932',NULL,'7868932',2), +(68,37,1,0,0,NULL,'394-9051',NULL,'3949051',2), +(69,85,1,1,0,NULL,'(587) 666-2881',NULL,'5876662881',2), +(70,5,1,1,0,NULL,'(532) 762-9952',NULL,'5327629952',2), +(71,63,1,1,0,NULL,'(255) 549-2976',NULL,'2555492976',1), +(72,150,1,1,0,NULL,'(828) 899-4314',NULL,'8288994314',1), +(73,200,1,1,0,NULL,'(215) 541-9279',NULL,'2155419279',2), +(74,166,1,1,0,NULL,'563-5926',NULL,'5635926',2), +(75,166,1,0,0,NULL,'(271) 470-2990',NULL,'2714702990',2), +(76,39,1,1,0,NULL,'(378) 379-8972',NULL,'3783798972',1), +(77,77,1,1,0,NULL,'862-1520',NULL,'8621520',2), +(78,139,1,1,0,NULL,'722-8420',NULL,'7228420',1), +(79,139,1,0,0,NULL,'(882) 641-5922',NULL,'8826415922',1), +(80,32,1,1,0,NULL,'(444) 315-9748',NULL,'4443159748',1), +(81,32,1,0,0,NULL,'(853) 845-8668',NULL,'8538458668',2), +(82,116,1,1,0,NULL,'713-5988',NULL,'7135988',1), +(83,116,1,0,0,NULL,'(263) 717-3762',NULL,'2637173762',2), +(84,174,1,1,0,NULL,'667-8768',NULL,'6678768',1), +(85,174,1,0,0,NULL,'(230) 739-2636',NULL,'2307392636',2), +(86,73,1,1,0,NULL,'(349) 419-1822',NULL,'3494191822',1), +(87,12,1,1,0,NULL,'(236) 219-1816',NULL,'2362191816',1), +(88,94,1,1,0,NULL,'744-5993',NULL,'7445993',2), +(89,67,1,1,0,NULL,'500-6641',NULL,'5006641',2), +(90,67,1,0,0,NULL,'(565) 545-8117',NULL,'5655458117',2), +(91,31,1,1,0,NULL,'690-1603',NULL,'6901603',2), +(92,35,1,1,0,NULL,'367-8296',NULL,'3678296',1), +(93,140,1,1,0,NULL,'(474) 483-2598',NULL,'4744832598',1), +(94,6,1,1,0,NULL,'249-7689',NULL,'2497689',2), +(95,101,1,1,0,NULL,'678-1121',NULL,'6781121',1), +(96,101,1,0,0,NULL,'603-6062',NULL,'6036062',2), +(97,102,1,1,0,NULL,'(527) 496-4391',NULL,'5274964391',1), +(98,26,1,1,0,NULL,'835-1075',NULL,'8351075',2), +(99,91,1,1,0,NULL,'548-3311',NULL,'5483311',1), +(100,91,1,0,0,NULL,'(806) 430-6179',NULL,'8064306179',1), +(101,74,1,1,0,NULL,'(671) 857-7294',NULL,'6718577294',2), +(102,74,1,0,0,NULL,'221-3954',NULL,'2213954',1), +(103,142,1,1,0,NULL,'297-1284',NULL,'2971284',1), +(104,201,1,1,0,NULL,'(460) 602-2408',NULL,'4606022408',1), +(105,201,1,0,0,NULL,'(561) 787-1236',NULL,'5617871236',2), +(106,98,1,1,0,NULL,'(614) 551-1383',NULL,'6145511383',2), +(107,165,1,1,0,NULL,'691-6451',NULL,'6916451',2), +(108,82,1,1,0,NULL,'758-1028',NULL,'7581028',1), +(109,19,1,1,0,NULL,'(653) 494-5496',NULL,'6534945496',2), +(110,168,1,1,0,NULL,'278-1319',NULL,'2781319',1), +(111,20,1,1,0,NULL,'469-6948',NULL,'4696948',2), +(112,20,1,0,0,NULL,'898-1511',NULL,'8981511',1), +(113,178,1,1,0,NULL,'526-1622',NULL,'5261622',2), +(114,178,1,0,0,NULL,'883-6437',NULL,'8836437',2), +(115,113,1,1,0,NULL,'382-9673',NULL,'3829673',2), +(116,113,1,0,0,NULL,'(256) 359-5117',NULL,'2563595117',2), +(117,49,1,1,0,NULL,'(854) 302-8604',NULL,'8543028604',2), +(118,49,1,0,0,NULL,'(621) 618-2099',NULL,'6216182099',2), +(119,115,1,1,0,NULL,'(782) 426-7418',NULL,'7824267418',2), +(120,190,1,1,0,NULL,'(519) 535-9430',NULL,'5195359430',2), +(121,190,1,0,0,NULL,'763-2560',NULL,'7632560',1), +(122,197,1,1,0,NULL,'362-5918',NULL,'3625918',1), +(123,197,1,0,0,NULL,'(561) 407-9836',NULL,'5614079836',1), +(124,87,1,1,0,NULL,'(436) 239-7938',NULL,'4362397938',1), +(125,103,1,1,0,NULL,'(712) 605-8878',NULL,'7126058878',1), +(126,103,1,0,0,NULL,'877-8339',NULL,'8778339',2), +(127,14,1,1,0,NULL,'(274) 234-7054',NULL,'2742347054',2), +(128,14,1,0,0,NULL,'(772) 225-4566',NULL,'7722254566',1), +(129,157,1,1,0,NULL,'(246) 326-9372',NULL,'2463269372',2), +(130,157,1,0,0,NULL,'517-6365',NULL,'5176365',1), +(131,188,1,1,0,NULL,'244-6541',NULL,'2446541',2), +(132,188,1,0,0,NULL,'655-2150',NULL,'6552150',1), +(133,164,1,1,0,NULL,'864-7657',NULL,'8647657',1), +(134,16,1,1,0,NULL,'615-6675',NULL,'6156675',2), +(135,16,1,0,0,NULL,'(609) 834-9252',NULL,'6098349252',1), +(136,114,1,1,0,NULL,'526-7714',NULL,'5267714',1), +(137,76,1,1,0,NULL,'795-1474',NULL,'7951474',2), +(138,76,1,0,0,NULL,'393-8128',NULL,'3938128',1), +(139,30,1,1,0,NULL,'(841) 530-1197',NULL,'8415301197',1), +(140,100,1,1,0,NULL,'(357) 881-2485',NULL,'3578812485',1), +(141,120,1,1,0,NULL,'709-5435',NULL,'7095435',1), +(142,21,1,1,0,NULL,'(301) 461-7524',NULL,'3014617524',1), +(143,55,1,1,0,NULL,'(618) 894-5392',NULL,'6188945392',1), +(144,173,1,1,0,NULL,'(886) 341-4210',NULL,'8863414210',2), +(145,175,1,1,0,NULL,'(821) 498-3609',NULL,'8214983609',2), +(146,80,1,1,0,NULL,'(754) 544-7265',NULL,'7545447265',1), +(147,104,1,1,0,NULL,'338-3639',NULL,'3383639',1), +(148,29,1,1,0,NULL,'(898) 607-5823',NULL,'8986075823',1), +(149,29,1,0,0,NULL,'629-3950',NULL,'6293950',2), +(150,171,1,1,0,NULL,'489-8730',NULL,'4898730',2), +(151,171,1,0,0,NULL,'(848) 312-9371',NULL,'8483129371',1), +(152,48,1,1,0,NULL,'(785) 826-8719',NULL,'7858268719',2), +(153,89,1,1,0,NULL,'430-7750',NULL,'4307750',1), +(154,161,1,1,0,NULL,'611-2398',NULL,'6112398',1), +(155,54,1,1,0,NULL,'(479) 499-3030',NULL,'4794993030',1), +(156,88,1,1,0,NULL,'(228) 662-8303',NULL,'2286628303',2), +(157,50,1,1,0,NULL,'(483) 655-5376',NULL,'4836555376',1), +(158,167,1,1,0,NULL,'(291) 488-2190',NULL,'2914882190',2), +(159,167,1,0,0,NULL,'696-8357',NULL,'6968357',2), +(160,38,1,1,0,NULL,'(266) 577-4651',NULL,'2665774651',2), +(161,38,1,0,0,NULL,'(235) 459-7206',NULL,'2354597206',1), +(162,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), +(163,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), +(164,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -6991,8 +7039,8 @@ LOCK TABLES `civicrm_pledge` WRITE; /*!40000 ALTER TABLE `civicrm_pledge` DISABLE KEYS */; INSERT INTO `civicrm_pledge` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `amount`, `original_installment_amount`, `currency`, `frequency_unit`, `frequency_interval`, `frequency_day`, `installments`, `start_date`, `create_date`, `acknowledge_date`, `modified_date`, `cancel_date`, `end_date`, `max_reminders`, `initial_reminder_day`, `additional_reminder_day`, `status_id`, `is_test`, `campaign_id`) VALUES (1,71,1,1,500.00,500.00,'USD','month',1,1,1,'2009-07-01 00:00:00','2009-06-26 00:00:00',NULL,NULL,NULL,'2009-07-01 00:00:00',1,5,5,1,0,NULL), - (2,43,1,1,800.00,200.00,'USD','month',3,1,4,'2009-07-01 00:00:00','2009-06-23 00:00:00','2009-06-23 00:00:00',NULL,NULL,'2009-04-01 10:11:40',1,5,5,5,0,NULL), - (3,32,1,1,600.00,200.00,'USD','month',1,1,3,'2009-10-01 00:00:00','2009-09-14 00:00:00','2009-09-14 00:00:00',NULL,NULL,'2009-12-01 00:00:00',1,5,5,5,0,NULL); +(2,43,1,1,800.00,200.00,'USD','month',3,1,4,'2009-07-01 00:00:00','2009-06-23 00:00:00','2009-06-23 00:00:00',NULL,NULL,'2009-04-01 10:11:40',1,5,5,5,0,NULL), +(3,32,1,1,600.00,200.00,'USD','month',1,1,3,'2009-10-01 00:00:00','2009-09-14 00:00:00','2009-09-14 00:00:00',NULL,NULL,'2009-12-01 00:00:00',1,5,5,5,0,NULL); /*!40000 ALTER TABLE `civicrm_pledge` ENABLE KEYS */; UNLOCK TABLES; @@ -7015,13 +7063,13 @@ LOCK TABLES `civicrm_pledge_payment` WRITE; /*!40000 ALTER TABLE `civicrm_pledge_payment` DISABLE KEYS */; INSERT INTO `civicrm_pledge_payment` (`id`, `pledge_id`, `contribution_id`, `scheduled_amount`, `actual_amount`, `currency`, `scheduled_date`, `reminder_date`, `reminder_count`, `status_id`) VALUES (1,1,10,500.00,500.00,'USD','2009-07-01 00:00:00',NULL,0,1), - (2,2,11,200.00,200.00,'USD','2009-07-01 00:00:00',NULL,0,1), - (3,2,NULL,200.00,NULL,'USD','2009-10-01 00:00:00',NULL,0,2), - (4,2,NULL,200.00,NULL,'USD','2009-01-01 00:00:00',NULL,0,2), - (5,2,NULL,200.00,NULL,'USD','2009-04-01 00:00:00',NULL,0,2), - (6,3,12,200.00,200.00,'USD','2009-10-01 00:00:00',NULL,0,1), - (7,3,13,200.00,200.00,'USD','2009-11-01 00:00:00','2009-10-28 00:00:00',1,1), - (8,3,NULL,200.00,NULL,'USD','2009-12-01 00:00:00',NULL,0,2); +(2,2,11,200.00,200.00,'USD','2009-07-01 00:00:00',NULL,0,1), +(3,2,NULL,200.00,NULL,'USD','2009-10-01 00:00:00',NULL,0,2), +(4,2,NULL,200.00,NULL,'USD','2009-01-01 00:00:00',NULL,0,2), +(5,2,NULL,200.00,NULL,'USD','2009-04-01 00:00:00',NULL,0,2), +(6,3,12,200.00,200.00,'USD','2009-10-01 00:00:00',NULL,0,1), +(7,3,13,200.00,200.00,'USD','2009-11-01 00:00:00','2009-10-28 00:00:00',1,1), +(8,3,NULL,200.00,NULL,'USD','2009-12-01 00:00:00',NULL,0,2); /*!40000 ALTER TABLE `civicrm_pledge_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -7033,12 +7081,12 @@ LOCK TABLES `civicrm_preferences_date` WRITE; /*!40000 ALTER TABLE `civicrm_preferences_date` DISABLE KEYS */; INSERT INTO `civicrm_preferences_date` (`id`, `name`, `description`, `start`, `end`, `date_format`, `time_format`) VALUES (1,'activityDate','Date for relationships. activities. contributions: receive, receipt, cancel. membership: join, start, renew. case: start, end.',20,10,'',''), - (2,'activityDateTime','Date and time for activity: scheduled. participant: registered.',20,10,'','1'), - (3,'birth','Birth and deceased dates. Only year, month and day fields are supported.',100,0,'',''), - (4,'creditCard','Month and year only for credit card expiration.',0,10,'m Y',''), - (5,'custom','Uses date range passed in by form field. Can pass in a posix date part parameter. Start and end offsets defined here are ignored.',20,20,'',''), - (6,'mailing','Date and time. Used for scheduling mailings.',0,1,'',''), - (7,'searchDate','Used in search forms.',20,20,'',''); +(2,'activityDateTime','Date and time for activity: scheduled. participant: registered.',20,10,'','1'), +(3,'birth','Birth and deceased dates. Only year, month and day fields are supported.',100,0,'',''), +(4,'creditCard','Month and year only for credit card expiration.',0,10,'m Y',''), +(5,'custom','Uses date range passed in by form field. Can pass in a posix date part parameter. Start and end offsets defined here are ignored.',20,20,'',''), +(6,'mailing','Date and time. Used for scheduling mailings.',0,1,'',''), +(7,'searchDate','Used in search forms.',20,20,'',''); /*!40000 ALTER TABLE `civicrm_preferences_date` ENABLE KEYS */; UNLOCK TABLES; @@ -7081,14 +7129,14 @@ LOCK TABLES `civicrm_price_field` WRITE; /*!40000 ALTER TABLE `civicrm_price_field` DISABLE KEYS */; INSERT INTO `civicrm_price_field` (`id`, `price_set_id`, `name`, `label`, `html_type`, `is_enter_qty`, `help_pre`, `help_post`, `weight`, `is_display_amounts`, `options_per_line`, `is_active`, `is_required`, `active_on`, `expire_on`, `javascript`, `visibility_id`) VALUES (1,1,'contribution_amount','Contribution Amount','Text',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), - (2,3,'contribution_amount','Contribution Amount','Radio',0,NULL,NULL,2,1,1,1,0,NULL,NULL,NULL,1), - (3,3,'other_amount','Additional Amount','Text',0,NULL,NULL,3,0,1,1,0,NULL,NULL,NULL,1), - (4,2,'1','Membership Amount','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), - (5,4,'membership_amount','Membership','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), - (6,5,'other_amount','Contribution Amount','Text',0,NULL,NULL,3,0,1,1,1,NULL,NULL,NULL,1), - (7,6,'tournament_fees','Tournament Fees','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), - (8,7,'dinner_contribution','Dinner Contribution','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), - (9,8,'festival_fee','Festival Fee','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1); +(2,3,'contribution_amount','Contribution Amount','Radio',0,NULL,NULL,2,1,1,1,0,NULL,NULL,NULL,1), +(3,3,'other_amount','Additional Amount','Text',0,NULL,NULL,3,0,1,1,0,NULL,NULL,NULL,1), +(4,2,'1','Membership Amount','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), +(5,4,'membership_amount','Membership','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), +(6,5,'other_amount','Contribution Amount','Text',0,NULL,NULL,3,0,1,1,1,NULL,NULL,NULL,1), +(7,6,'tournament_fees','Tournament Fees','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), +(8,7,'dinner_contribution','Dinner Contribution','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), +(9,8,'festival_fee','Festival Fee','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_price_field` ENABLE KEYS */; UNLOCK TABLES; @@ -7100,26 +7148,26 @@ LOCK TABLES `civicrm_price_field_value` WRITE; /*!40000 ALTER TABLE `civicrm_price_field_value` DISABLE KEYS */; INSERT INTO `civicrm_price_field_value` (`id`, `price_field_id`, `name`, `label`, `description`, `help_pre`, `help_post`, `amount`, `count`, `max_value`, `weight`, `membership_type_id`, `membership_num_terms`, `is_default`, `is_active`, `financial_type_id`, `non_deductible_amount`, `visibility_id`) VALUES (1,1,'contribution_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), - (2,2,'friend','Friend',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), - (3,2,'supporter','Supporter',NULL,NULL,NULL,5.000000000,NULL,NULL,2,NULL,NULL,0,1,1,0.00,1), - (4,2,'booster','Booster',NULL,NULL,NULL,10.000000000,NULL,NULL,3,NULL,NULL,1,1,1,0.00,1), - (5,2,'sustainer','Sustainer',NULL,NULL,NULL,50.000000000,NULL,NULL,4,NULL,NULL,0,1,1,0.00,1), - (6,3,'other_amount','Other Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,3,NULL,NULL,0,1,1,0.00,1), - (7,4,'general','General','Regular annual membership.',NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,0,1,2,0.00,1), - (8,4,'student','Student','Discount membership for full-time students.',NULL,NULL,50.000000000,NULL,NULL,2,2,NULL,0,1,2,0.00,1), - (9,4,'lifetime','Lifetime','Lifetime membership.',NULL,NULL,1200.000000000,NULL,NULL,3,3,NULL,0,1,2,0.00,1), - (10,5,'General','General',NULL,NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,1,1,2,0.00,1), - (11,5,'Student','Student',NULL,NULL,NULL,50.000000000,NULL,NULL,1,2,NULL,0,1,2,0.00,1), - (12,6,'other_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), - (13,7,'tiny_tots__ages_5_8_','Tiny-tots (ages 5-8)',NULL,NULL,NULL,800.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), - (14,7,'junior_Stars__ages_9_12_','Junior Stars (ages 9-12)',NULL,NULL,NULL,1000.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), - (15,7,'super_Stars__ages_13_18_','Super Stars (ages 13-18)',NULL,NULL,NULL,1500.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), - (16,8,'single','Single',NULL,NULL,NULL,50.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), - (17,8,'couple','Couple',NULL,NULL,NULL,100.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), - (18,8,'family','Family',NULL,NULL,NULL,200.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), - (19,9,'bass','Bass',NULL,NULL,NULL,25.000000000,NULL,NULL,1,NULL,NULL,1,1,2,0.00,1), - (20,9,'tenor','Tenor',NULL,NULL,NULL,40.000000000,NULL,NULL,2,NULL,NULL,0,1,2,0.00,1), - (21,9,'soprano','Soprano',NULL,NULL,NULL,50.000000000,NULL,NULL,3,NULL,NULL,0,1,2,0.00,1); +(2,2,'friend','Friend',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), +(3,2,'supporter','Supporter',NULL,NULL,NULL,5.000000000,NULL,NULL,2,NULL,NULL,0,1,1,0.00,1), +(4,2,'booster','Booster',NULL,NULL,NULL,10.000000000,NULL,NULL,3,NULL,NULL,1,1,1,0.00,1), +(5,2,'sustainer','Sustainer',NULL,NULL,NULL,50.000000000,NULL,NULL,4,NULL,NULL,0,1,1,0.00,1), +(6,3,'other_amount','Other Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,3,NULL,NULL,0,1,1,0.00,1), +(7,4,'general','General','Regular annual membership.',NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,0,1,2,0.00,1), +(8,4,'student','Student','Discount membership for full-time students.',NULL,NULL,50.000000000,NULL,NULL,2,2,NULL,0,1,2,0.00,1), +(9,4,'lifetime','Lifetime','Lifetime membership.',NULL,NULL,1200.000000000,NULL,NULL,3,3,NULL,0,1,2,0.00,1), +(10,5,'General','General',NULL,NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,1,1,2,0.00,1), +(11,5,'Student','Student',NULL,NULL,NULL,50.000000000,NULL,NULL,1,2,NULL,0,1,2,0.00,1), +(12,6,'other_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), +(13,7,'tiny_tots__ages_5_8_','Tiny-tots (ages 5-8)',NULL,NULL,NULL,800.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), +(14,7,'junior_Stars__ages_9_12_','Junior Stars (ages 9-12)',NULL,NULL,NULL,1000.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), +(15,7,'super_Stars__ages_13_18_','Super Stars (ages 13-18)',NULL,NULL,NULL,1500.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), +(16,8,'single','Single',NULL,NULL,NULL,50.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), +(17,8,'couple','Couple',NULL,NULL,NULL,100.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), +(18,8,'family','Family',NULL,NULL,NULL,200.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), +(19,9,'bass','Bass',NULL,NULL,NULL,25.000000000,NULL,NULL,1,NULL,NULL,1,1,2,0.00,1), +(20,9,'tenor','Tenor',NULL,NULL,NULL,40.000000000,NULL,NULL,2,NULL,NULL,0,1,2,0.00,1), +(21,9,'soprano','Soprano',NULL,NULL,NULL,50.000000000,NULL,NULL,3,NULL,NULL,0,1,2,0.00,1); /*!40000 ALTER TABLE `civicrm_price_field_value` ENABLE KEYS */; UNLOCK TABLES; @@ -7131,13 +7179,13 @@ LOCK TABLES `civicrm_price_set` WRITE; /*!40000 ALTER TABLE `civicrm_price_set` DISABLE KEYS */; INSERT INTO `civicrm_price_set` (`id`, `domain_id`, `name`, `title`, `is_active`, `help_pre`, `help_post`, `javascript`, `extends`, `financial_type_id`, `is_quick_config`, `is_reserved`, `min_amount`) VALUES (1,NULL,'default_contribution_amount','Contribution Amount',1,NULL,NULL,NULL,'2',NULL,1,1,0.00), - (2,NULL,'default_membership_type_amount','Membership Amount',1,NULL,NULL,NULL,'3',2,1,1,0.00), - (3,NULL,'help_support_civicrm_amount','Help Support CiviCRM!',1,NULL,NULL,NULL,'2',1,0,0,0.00), - (4,NULL,'member_signup_and_renewal','Member Signup and Renewal',1,NULL,NULL,NULL,'3',2,1,0,0.00), - (5,NULL,'pledge_for_civicrm','Pledge for CiviCRM!',1,NULL,NULL,NULL,'2',NULL,1,0,0.00), - (6,NULL,'rain_forest_cup_youth_soccer_tournament','Rain-forest Cup Youth Soccer Tournament',1,NULL,NULL,NULL,'1',3,1,0,0.00), - (7,NULL,'fall_fundraiser_dinner','Fall Fundraiser Dinner',1,NULL,NULL,NULL,'1',3,1,0,0.00), - (8,NULL,'summer_solstice_festival_day_concert','Summer Solstice Festival Day Concert',1,NULL,NULL,NULL,'1',3,0,0,0.00); +(2,NULL,'default_membership_type_amount','Membership Amount',1,NULL,NULL,NULL,'3',2,1,1,0.00), +(3,NULL,'help_support_civicrm_amount','Help Support CiviCRM!',1,NULL,NULL,NULL,'2',1,0,0,0.00), +(4,NULL,'member_signup_and_renewal','Member Signup and Renewal',1,NULL,NULL,NULL,'3',2,1,0,0.00), +(5,NULL,'pledge_for_civicrm','Pledge for CiviCRM!',1,NULL,NULL,NULL,'2',NULL,1,0,0.00), +(6,NULL,'rain_forest_cup_youth_soccer_tournament','Rain-forest Cup Youth Soccer Tournament',1,NULL,NULL,NULL,'1',3,1,0,0.00), +(7,NULL,'fall_fundraiser_dinner','Fall Fundraiser Dinner',1,NULL,NULL,NULL,'1',3,1,0,0.00), +(8,NULL,'summer_solstice_festival_day_concert','Summer Solstice Festival Day Concert',1,NULL,NULL,NULL,'1',3,0,0,0.00); /*!40000 ALTER TABLE `civicrm_price_set` ENABLE KEYS */; UNLOCK TABLES; @@ -7149,11 +7197,11 @@ LOCK TABLES `civicrm_price_set_entity` WRITE; /*!40000 ALTER TABLE `civicrm_price_set_entity` DISABLE KEYS */; INSERT INTO `civicrm_price_set_entity` (`id`, `entity_table`, `entity_id`, `price_set_id`) VALUES (1,'civicrm_contribution_page',1,3), - (2,'civicrm_contribution_page',2,4), - (3,'civicrm_contribution_page',3,5), - (4,'civicrm_event',3,6), - (5,'civicrm_event',1,7), - (6,'civicrm_event',2,8); +(2,'civicrm_contribution_page',2,4), +(3,'civicrm_contribution_page',3,5), +(4,'civicrm_event',3,6), +(5,'civicrm_event',1,7), +(6,'civicrm_event',2,8); /*!40000 ALTER TABLE `civicrm_price_set_entity` ENABLE KEYS */; UNLOCK TABLES; @@ -7213,225 +7261,220 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship` WRITE; /*!40000 ALTER TABLE `civicrm_relationship` DISABLE KEYS */; INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`, `created_date`, `modified_date`) VALUES - (1,187,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (2,35,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (3,187,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (4,35,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (5,35,187,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (6,90,25,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (7,187,25,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (8,35,25,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (9,137,25,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (10,90,137,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (11,167,77,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (12,154,77,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (13,167,165,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (14,154,165,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (15,154,167,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (16,165,22,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (17,167,22,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (18,154,22,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (19,77,22,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (20,165,77,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (21,32,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (22,115,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (23,32,41,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (24,115,41,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (25,115,32,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (26,41,159,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (27,32,159,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (28,115,159,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (29,118,159,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (30,41,118,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (31,47,193,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (32,192,193,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (33,47,135,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (34,192,135,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (35,192,47,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (36,135,185,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (37,47,185,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (38,192,185,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (39,193,185,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (40,135,193,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (41,157,107,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (42,16,107,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (43,157,27,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (44,16,27,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (45,16,157,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (46,27,71,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (47,157,71,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (48,16,71,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (49,107,71,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (50,27,107,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (51,104,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (52,31,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (53,104,119,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (54,31,119,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (55,31,104,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (56,119,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (57,104,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (58,31,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (59,88,194,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (60,119,88,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (61,197,177,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (62,190,177,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (63,197,63,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (64,190,63,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (65,190,197,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (66,63,171,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (67,197,171,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (68,190,171,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (69,177,171,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (70,63,177,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (71,81,127,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (72,122,127,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (73,81,29,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (74,122,29,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (75,122,81,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (76,29,178,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (77,81,178,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (78,122,178,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (79,127,178,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (80,29,127,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (81,100,129,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (82,150,129,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (83,100,144,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (84,150,144,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (85,150,100,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (86,144,38,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (87,100,38,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (88,150,38,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (89,129,38,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (90,144,129,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (91,8,20,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (92,198,20,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (93,8,146,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (94,198,146,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (95,198,8,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (96,146,89,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (97,8,89,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (98,198,89,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (99,20,89,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (100,146,20,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (101,65,97,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (102,75,97,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (103,65,170,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (104,75,170,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (105,75,65,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (106,170,85,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (107,65,85,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (108,75,85,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (109,97,85,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (110,170,97,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (111,141,45,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (112,30,45,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (113,141,124,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (114,30,124,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (115,30,141,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (116,124,60,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (117,141,60,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (118,30,60,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (119,45,60,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (120,124,45,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (121,83,188,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (122,68,188,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (123,83,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (124,68,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (125,68,83,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (126,57,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (127,83,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (128,68,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (129,188,180,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (130,57,188,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (131,102,132,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (132,142,132,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (133,102,176,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (134,142,176,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (135,142,102,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (136,176,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (137,102,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (138,142,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (139,132,28,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (140,176,132,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (141,173,111,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (142,169,111,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (143,173,66,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (144,169,66,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (145,169,173,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (146,66,184,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (147,173,184,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (148,169,184,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (149,111,184,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (150,66,111,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (151,189,44,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (152,87,44,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (153,189,55,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (154,87,55,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (155,87,189,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (156,55,91,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (157,189,91,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (158,87,91,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (159,44,91,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (160,55,44,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (161,112,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (162,61,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (163,112,59,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (164,61,59,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (165,61,112,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (166,59,74,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (167,112,74,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (168,61,74,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (169,201,74,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (170,59,201,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (171,56,48,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (172,160,48,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (173,56,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (174,160,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (175,160,56,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (176,199,151,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (177,56,151,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (178,160,151,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (179,48,151,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (180,199,48,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (181,163,36,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (182,33,36,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (183,163,18,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (184,33,18,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (185,33,163,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (186,18,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (187,163,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (188,33,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (189,36,183,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (190,18,36,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (191,34,79,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (192,126,79,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (193,34,9,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (194,126,9,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (195,126,34,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (196,9,133,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (197,34,133,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (198,126,133,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (199,79,133,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (200,9,79,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (201,106,3,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (202,130,12,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (203,146,17,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (204,157,26,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (205,65,42,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (206,191,46,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (207,63,49,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (208,23,50,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (209,9,62,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (210,110,67,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (211,105,82,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (212,173,96,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (213,48,116,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (214,35,123,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (215,121,140,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (216,167,148,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (217,95,161,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (218,164,168,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'), - (219,162,200,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-07 04:13:16','2025-02-07 04:13:16'); + (1,31,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(2,35,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(3,31,67,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(4,35,67,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(5,35,31,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(6,67,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(7,31,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(8,35,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(9,118,119,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(10,67,118,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(11,6,140,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(12,176,140,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(13,6,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(14,176,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(15,176,6,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(16,137,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(17,6,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(18,176,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(19,140,129,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(20,137,140,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(21,26,101,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(22,44,101,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(23,26,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(24,44,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(25,44,26,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(26,102,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(27,26,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(28,44,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(29,101,78,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(30,102,101,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(31,152,91,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(32,142,91,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(33,152,74,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(34,142,74,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(35,142,152,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(36,74,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(37,152,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(38,142,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(39,91,36,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(40,74,91,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(41,98,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(42,165,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(43,98,56,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(44,165,56,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(45,165,98,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(46,56,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), +(47,98,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(48,165,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(49,201,43,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(50,56,201,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(51,141,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(52,82,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(53,141,11,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(54,82,11,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(55,82,141,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(56,11,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(57,141,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(58,82,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(59,60,124,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(60,11,60,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(61,20,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(62,112,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(63,20,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(64,112,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(65,112,20,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(66,168,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(67,20,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(68,112,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(69,19,135,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(70,168,19,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(71,110,178,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(72,49,178,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(73,110,113,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(74,49,113,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(75,49,110,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(76,113,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(77,110,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(78,49,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(79,178,194,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(80,113,178,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(81,122,115,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(82,197,115,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(83,122,190,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(84,197,190,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(85,197,122,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(86,190,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(87,122,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(88,197,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(89,115,15,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(90,190,115,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(91,75,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(92,103,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(93,75,68,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(94,103,68,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(95,103,75,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(96,68,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(97,75,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(98,103,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(99,87,127,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(100,68,87,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(101,130,14,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(102,188,14,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(103,130,157,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(104,188,157,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(105,188,130,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(106,157,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(107,130,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(108,188,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(109,14,47,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(110,157,14,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(111,58,164,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(112,114,164,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(113,58,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(114,114,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(115,114,58,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(116,16,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(117,58,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(118,114,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(119,164,134,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(120,16,164,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(121,100,76,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(122,120,76,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(123,100,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(124,120,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(125,120,100,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(126,30,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(127,100,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(128,120,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(129,76,2,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(130,30,76,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(131,55,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(132,65,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(133,55,21,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(134,65,21,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(135,65,55,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(136,21,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(137,55,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(138,65,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(139,90,51,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(140,21,90,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(141,162,117,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(142,180,117,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(143,162,173,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(144,180,173,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(145,180,162,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(146,173,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(147,162,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(148,180,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(149,117,53,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(150,173,117,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(151,175,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(152,80,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(153,175,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(154,80,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(155,80,175,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(156,105,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(157,175,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(158,80,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(159,199,41,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(160,105,199,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(161,29,104,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(162,160,104,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(163,29,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(164,160,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(165,160,29,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(166,57,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(167,29,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(168,160,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(169,104,28,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(170,57,104,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(171,92,8,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(172,48,8,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(173,92,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(174,48,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(175,48,92,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(176,171,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(177,92,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(178,48,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(179,8,42,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(180,171,8,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(181,161,138,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(182,54,138,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(183,161,89,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(184,54,89,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(185,54,161,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(186,89,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(187,161,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(188,54,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(189,138,111,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(190,89,138,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(191,167,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(192,38,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(193,167,50,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(194,38,50,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(195,38,167,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(196,50,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(197,167,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(198,38,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), +(199,88,183,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(200,50,88,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(201,18,3,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(202,87,34,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(203,91,46,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(204,97,109,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(205,162,131,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(206,143,136,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(207,30,144,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(208,68,149,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(209,58,155,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(210,39,156,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(211,60,158,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(212,56,181,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(213,125,191,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), +(214,27,196,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -7442,444 +7485,434 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship_cache` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_cache` DISABLE KEYS */; INSERT INTO `civicrm_relationship_cache` (`id`, `relationship_id`, `relationship_type_id`, `orientation`, `near_contact_id`, `near_relation`, `far_contact_id`, `far_relation`, `is_active`, `start_date`, `end_date`, `case_id`) VALUES - (1,1,1,'a_b',187,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (2,1,1,'b_a',137,'Parent of',187,'Child of',1,NULL,NULL,NULL), - (3,2,1,'a_b',35,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (4,2,1,'b_a',137,'Parent of',35,'Child of',1,NULL,NULL,NULL), - (5,3,1,'a_b',187,'Child of',90,'Parent of',1,NULL,NULL,NULL), - (6,3,1,'b_a',90,'Parent of',187,'Child of',1,NULL,NULL,NULL), - (7,4,1,'a_b',35,'Child of',90,'Parent of',1,NULL,NULL,NULL), - (8,4,1,'b_a',90,'Parent of',35,'Child of',1,NULL,NULL,NULL), - (9,5,4,'a_b',35,'Sibling of',187,'Sibling of',1,NULL,NULL,NULL), - (10,5,4,'b_a',187,'Sibling of',35,'Sibling of',1,NULL,NULL,NULL), - (11,6,8,'a_b',90,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), - (12,6,8,'b_a',25,'Household Member is',90,'Household Member of',1,NULL,NULL,NULL), - (13,7,8,'a_b',187,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), - (14,7,8,'b_a',25,'Household Member is',187,'Household Member of',1,NULL,NULL,NULL), - (15,8,8,'a_b',35,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), - (16,8,8,'b_a',25,'Household Member is',35,'Household Member of',1,NULL,NULL,NULL), - (17,9,7,'a_b',137,'Head of Household for',25,'Head of Household is',1,NULL,NULL,NULL), - (18,9,7,'b_a',25,'Head of Household is',137,'Head of Household for',1,NULL,NULL,NULL), - (19,10,2,'a_b',90,'Spouse of',137,'Spouse of',1,NULL,NULL,NULL), - (20,10,2,'b_a',137,'Spouse of',90,'Spouse of',1,NULL,NULL,NULL), - (21,11,1,'a_b',167,'Child of',77,'Parent of',1,NULL,NULL,NULL), - (22,11,1,'b_a',77,'Parent of',167,'Child of',1,NULL,NULL,NULL), - (23,12,1,'a_b',154,'Child of',77,'Parent of',1,NULL,NULL,NULL), - (24,12,1,'b_a',77,'Parent of',154,'Child of',1,NULL,NULL,NULL), - (25,13,1,'a_b',167,'Child of',165,'Parent of',1,NULL,NULL,NULL), - (26,13,1,'b_a',165,'Parent of',167,'Child of',1,NULL,NULL,NULL), - (27,14,1,'a_b',154,'Child of',165,'Parent of',1,NULL,NULL,NULL), - (28,14,1,'b_a',165,'Parent of',154,'Child of',1,NULL,NULL,NULL), - (29,15,4,'a_b',154,'Sibling of',167,'Sibling of',1,NULL,NULL,NULL), - (30,15,4,'b_a',167,'Sibling of',154,'Sibling of',1,NULL,NULL,NULL), - (31,16,8,'a_b',165,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), - (32,16,8,'b_a',22,'Household Member is',165,'Household Member of',1,NULL,NULL,NULL), - (33,17,8,'a_b',167,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), - (34,17,8,'b_a',22,'Household Member is',167,'Household Member of',1,NULL,NULL,NULL), - (35,18,8,'a_b',154,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), - (36,18,8,'b_a',22,'Household Member is',154,'Household Member of',1,NULL,NULL,NULL), - (37,19,7,'a_b',77,'Head of Household for',22,'Head of Household is',1,NULL,NULL,NULL), - (38,19,7,'b_a',22,'Head of Household is',77,'Head of Household for',1,NULL,NULL,NULL), - (39,20,2,'a_b',165,'Spouse of',77,'Spouse of',1,NULL,NULL,NULL), - (40,20,2,'b_a',77,'Spouse of',165,'Spouse of',1,NULL,NULL,NULL), - (41,21,1,'a_b',32,'Child of',118,'Parent of',1,NULL,NULL,NULL), - (42,21,1,'b_a',118,'Parent of',32,'Child of',1,NULL,NULL,NULL), - (43,22,1,'a_b',115,'Child of',118,'Parent of',1,NULL,NULL,NULL), - (44,22,1,'b_a',118,'Parent of',115,'Child of',1,NULL,NULL,NULL), - (45,23,1,'a_b',32,'Child of',41,'Parent of',1,NULL,NULL,NULL), - (46,23,1,'b_a',41,'Parent of',32,'Child of',1,NULL,NULL,NULL), - (47,24,1,'a_b',115,'Child of',41,'Parent of',1,NULL,NULL,NULL), - (48,24,1,'b_a',41,'Parent of',115,'Child of',1,NULL,NULL,NULL), - (49,25,4,'a_b',115,'Sibling of',32,'Sibling of',1,NULL,NULL,NULL), - (50,25,4,'b_a',32,'Sibling of',115,'Sibling of',1,NULL,NULL,NULL), - (51,26,8,'a_b',41,'Household Member of',159,'Household Member is',1,NULL,NULL,NULL), - (52,26,8,'b_a',159,'Household Member is',41,'Household Member of',1,NULL,NULL,NULL), - (53,27,8,'a_b',32,'Household Member of',159,'Household Member is',1,NULL,NULL,NULL), - (54,27,8,'b_a',159,'Household Member is',32,'Household Member of',1,NULL,NULL,NULL), - (55,28,8,'a_b',115,'Household Member of',159,'Household Member is',1,NULL,NULL,NULL), - (56,28,8,'b_a',159,'Household Member is',115,'Household Member of',1,NULL,NULL,NULL), - (57,29,7,'a_b',118,'Head of Household for',159,'Head of Household is',1,NULL,NULL,NULL), - (58,29,7,'b_a',159,'Head of Household is',118,'Head of Household for',1,NULL,NULL,NULL), - (59,30,2,'a_b',41,'Spouse of',118,'Spouse of',1,NULL,NULL,NULL), - (60,30,2,'b_a',118,'Spouse of',41,'Spouse of',1,NULL,NULL,NULL), - (61,31,1,'a_b',47,'Child of',193,'Parent of',1,NULL,NULL,NULL), - (62,31,1,'b_a',193,'Parent of',47,'Child of',1,NULL,NULL,NULL), - (63,32,1,'a_b',192,'Child of',193,'Parent of',1,NULL,NULL,NULL), - (64,32,1,'b_a',193,'Parent of',192,'Child of',1,NULL,NULL,NULL), - (65,33,1,'a_b',47,'Child of',135,'Parent of',1,NULL,NULL,NULL), - (66,33,1,'b_a',135,'Parent of',47,'Child of',1,NULL,NULL,NULL), - (67,34,1,'a_b',192,'Child of',135,'Parent of',1,NULL,NULL,NULL), - (68,34,1,'b_a',135,'Parent of',192,'Child of',1,NULL,NULL,NULL), - (69,35,4,'a_b',192,'Sibling of',47,'Sibling of',1,NULL,NULL,NULL), - (70,35,4,'b_a',47,'Sibling of',192,'Sibling of',1,NULL,NULL,NULL), - (71,36,8,'a_b',135,'Household Member of',185,'Household Member is',1,NULL,NULL,NULL), - (72,36,8,'b_a',185,'Household Member is',135,'Household Member of',1,NULL,NULL,NULL), - (73,37,8,'a_b',47,'Household Member of',185,'Household Member is',1,NULL,NULL,NULL), - (74,37,8,'b_a',185,'Household Member is',47,'Household Member of',1,NULL,NULL,NULL), - (75,38,8,'a_b',192,'Household Member of',185,'Household Member is',1,NULL,NULL,NULL), - (76,38,8,'b_a',185,'Household Member is',192,'Household Member of',1,NULL,NULL,NULL), - (77,39,7,'a_b',193,'Head of Household for',185,'Head of Household is',0,NULL,NULL,NULL), - (78,39,7,'b_a',185,'Head of Household is',193,'Head of Household for',0,NULL,NULL,NULL), - (79,40,2,'a_b',135,'Spouse of',193,'Spouse of',0,NULL,NULL,NULL), - (80,40,2,'b_a',193,'Spouse of',135,'Spouse of',0,NULL,NULL,NULL), - (81,41,1,'a_b',157,'Child of',107,'Parent of',1,NULL,NULL,NULL), - (82,41,1,'b_a',107,'Parent of',157,'Child of',1,NULL,NULL,NULL), - (83,42,1,'a_b',16,'Child of',107,'Parent of',1,NULL,NULL,NULL), - (84,42,1,'b_a',107,'Parent of',16,'Child of',1,NULL,NULL,NULL), - (85,43,1,'a_b',157,'Child of',27,'Parent of',1,NULL,NULL,NULL), - (86,43,1,'b_a',27,'Parent of',157,'Child of',1,NULL,NULL,NULL), - (87,44,1,'a_b',16,'Child of',27,'Parent of',1,NULL,NULL,NULL), - (88,44,1,'b_a',27,'Parent of',16,'Child of',1,NULL,NULL,NULL), - (89,45,4,'a_b',16,'Sibling of',157,'Sibling of',1,NULL,NULL,NULL), - (90,45,4,'b_a',157,'Sibling of',16,'Sibling of',1,NULL,NULL,NULL), - (91,46,8,'a_b',27,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), - (92,46,8,'b_a',71,'Household Member is',27,'Household Member of',1,NULL,NULL,NULL), - (93,47,8,'a_b',157,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), - (94,47,8,'b_a',71,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL), - (95,48,8,'a_b',16,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), - (96,48,8,'b_a',71,'Household Member is',16,'Household Member of',1,NULL,NULL,NULL), - (97,49,7,'a_b',107,'Head of Household for',71,'Head of Household is',1,NULL,NULL,NULL), - (98,49,7,'b_a',71,'Head of Household is',107,'Head of Household for',1,NULL,NULL,NULL), - (99,50,2,'a_b',27,'Spouse of',107,'Spouse of',1,NULL,NULL,NULL), - (100,50,2,'b_a',107,'Spouse of',27,'Spouse of',1,NULL,NULL,NULL), - (101,51,1,'a_b',104,'Child of',88,'Parent of',1,NULL,NULL,NULL), - (102,51,1,'b_a',88,'Parent of',104,'Child of',1,NULL,NULL,NULL), - (103,52,1,'a_b',31,'Child of',88,'Parent of',1,NULL,NULL,NULL), - (104,52,1,'b_a',88,'Parent of',31,'Child of',1,NULL,NULL,NULL), - (105,53,1,'a_b',104,'Child of',119,'Parent of',1,NULL,NULL,NULL), - (106,53,1,'b_a',119,'Parent of',104,'Child of',1,NULL,NULL,NULL), - (107,54,1,'a_b',31,'Child of',119,'Parent of',1,NULL,NULL,NULL), - (108,54,1,'b_a',119,'Parent of',31,'Child of',1,NULL,NULL,NULL), - (109,55,4,'a_b',31,'Sibling of',104,'Sibling of',1,NULL,NULL,NULL), - (110,55,4,'b_a',104,'Sibling of',31,'Sibling of',1,NULL,NULL,NULL), - (111,56,8,'a_b',119,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), - (112,56,8,'b_a',194,'Household Member is',119,'Household Member of',1,NULL,NULL,NULL), - (113,57,8,'a_b',104,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), - (114,57,8,'b_a',194,'Household Member is',104,'Household Member of',1,NULL,NULL,NULL), - (115,58,8,'a_b',31,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), - (116,58,8,'b_a',194,'Household Member is',31,'Household Member of',1,NULL,NULL,NULL), - (117,59,7,'a_b',88,'Head of Household for',194,'Head of Household is',0,NULL,NULL,NULL), - (118,59,7,'b_a',194,'Head of Household is',88,'Head of Household for',0,NULL,NULL,NULL), - (119,60,2,'a_b',119,'Spouse of',88,'Spouse of',0,NULL,NULL,NULL), - (120,60,2,'b_a',88,'Spouse of',119,'Spouse of',0,NULL,NULL,NULL), - (121,61,1,'a_b',197,'Child of',177,'Parent of',1,NULL,NULL,NULL), - (122,61,1,'b_a',177,'Parent of',197,'Child of',1,NULL,NULL,NULL), - (123,62,1,'a_b',190,'Child of',177,'Parent of',1,NULL,NULL,NULL), - (124,62,1,'b_a',177,'Parent of',190,'Child of',1,NULL,NULL,NULL), - (125,63,1,'a_b',197,'Child of',63,'Parent of',1,NULL,NULL,NULL), - (126,63,1,'b_a',63,'Parent of',197,'Child of',1,NULL,NULL,NULL), - (127,64,1,'a_b',190,'Child of',63,'Parent of',1,NULL,NULL,NULL), - (128,64,1,'b_a',63,'Parent of',190,'Child of',1,NULL,NULL,NULL), - (129,65,4,'a_b',190,'Sibling of',197,'Sibling of',1,NULL,NULL,NULL), - (130,65,4,'b_a',197,'Sibling of',190,'Sibling of',1,NULL,NULL,NULL), - (131,66,8,'a_b',63,'Household Member of',171,'Household Member is',1,NULL,NULL,NULL), - (132,66,8,'b_a',171,'Household Member is',63,'Household Member of',1,NULL,NULL,NULL), - (133,67,8,'a_b',197,'Household Member of',171,'Household Member is',1,NULL,NULL,NULL), - (134,67,8,'b_a',171,'Household Member is',197,'Household Member of',1,NULL,NULL,NULL), - (135,68,8,'a_b',190,'Household Member of',171,'Household Member is',1,NULL,NULL,NULL), - (136,68,8,'b_a',171,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL), - (137,69,7,'a_b',177,'Head of Household for',171,'Head of Household is',1,NULL,NULL,NULL), - (138,69,7,'b_a',171,'Head of Household is',177,'Head of Household for',1,NULL,NULL,NULL), - (139,70,2,'a_b',63,'Spouse of',177,'Spouse of',1,NULL,NULL,NULL), - (140,70,2,'b_a',177,'Spouse of',63,'Spouse of',1,NULL,NULL,NULL), - (141,71,1,'a_b',81,'Child of',127,'Parent of',1,NULL,NULL,NULL), - (142,71,1,'b_a',127,'Parent of',81,'Child of',1,NULL,NULL,NULL), - (143,72,1,'a_b',122,'Child of',127,'Parent of',1,NULL,NULL,NULL), - (144,72,1,'b_a',127,'Parent of',122,'Child of',1,NULL,NULL,NULL), - (145,73,1,'a_b',81,'Child of',29,'Parent of',1,NULL,NULL,NULL), - (146,73,1,'b_a',29,'Parent of',81,'Child of',1,NULL,NULL,NULL), - (147,74,1,'a_b',122,'Child of',29,'Parent of',1,NULL,NULL,NULL), - (148,74,1,'b_a',29,'Parent of',122,'Child of',1,NULL,NULL,NULL), - (149,75,4,'a_b',122,'Sibling of',81,'Sibling of',1,NULL,NULL,NULL), - (150,75,4,'b_a',81,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL), - (151,76,8,'a_b',29,'Household Member of',178,'Household Member is',1,NULL,NULL,NULL), - (152,76,8,'b_a',178,'Household Member is',29,'Household Member of',1,NULL,NULL,NULL), - (153,77,8,'a_b',81,'Household Member of',178,'Household Member is',1,NULL,NULL,NULL), - (154,77,8,'b_a',178,'Household Member is',81,'Household Member of',1,NULL,NULL,NULL), - (155,78,8,'a_b',122,'Household Member of',178,'Household Member is',1,NULL,NULL,NULL), - (156,78,8,'b_a',178,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), - (157,79,7,'a_b',127,'Head of Household for',178,'Head of Household is',0,NULL,NULL,NULL), - (158,79,7,'b_a',178,'Head of Household is',127,'Head of Household for',0,NULL,NULL,NULL), - (159,80,2,'a_b',29,'Spouse of',127,'Spouse of',0,NULL,NULL,NULL), - (160,80,2,'b_a',127,'Spouse of',29,'Spouse of',0,NULL,NULL,NULL), - (161,81,1,'a_b',100,'Child of',129,'Parent of',1,NULL,NULL,NULL), - (162,81,1,'b_a',129,'Parent of',100,'Child of',1,NULL,NULL,NULL), - (163,82,1,'a_b',150,'Child of',129,'Parent of',1,NULL,NULL,NULL), - (164,82,1,'b_a',129,'Parent of',150,'Child of',1,NULL,NULL,NULL), - (165,83,1,'a_b',100,'Child of',144,'Parent of',1,NULL,NULL,NULL), - (166,83,1,'b_a',144,'Parent of',100,'Child of',1,NULL,NULL,NULL), - (167,84,1,'a_b',150,'Child of',144,'Parent of',1,NULL,NULL,NULL), - (168,84,1,'b_a',144,'Parent of',150,'Child of',1,NULL,NULL,NULL), - (169,85,4,'a_b',150,'Sibling of',100,'Sibling of',1,NULL,NULL,NULL), - (170,85,4,'b_a',100,'Sibling of',150,'Sibling of',1,NULL,NULL,NULL), - (171,86,8,'a_b',144,'Household Member of',38,'Household Member is',1,NULL,NULL,NULL), - (172,86,8,'b_a',38,'Household Member is',144,'Household Member of',1,NULL,NULL,NULL), - (173,87,8,'a_b',100,'Household Member of',38,'Household Member is',1,NULL,NULL,NULL), - (174,87,8,'b_a',38,'Household Member is',100,'Household Member of',1,NULL,NULL,NULL), - (175,88,8,'a_b',150,'Household Member of',38,'Household Member is',1,NULL,NULL,NULL), - (176,88,8,'b_a',38,'Household Member is',150,'Household Member of',1,NULL,NULL,NULL), - (177,89,7,'a_b',129,'Head of Household for',38,'Head of Household is',1,NULL,NULL,NULL), - (178,89,7,'b_a',38,'Head of Household is',129,'Head of Household for',1,NULL,NULL,NULL), - (179,90,2,'a_b',144,'Spouse of',129,'Spouse of',1,NULL,NULL,NULL), - (180,90,2,'b_a',129,'Spouse of',144,'Spouse of',1,NULL,NULL,NULL), - (181,91,1,'a_b',8,'Child of',20,'Parent of',1,NULL,NULL,NULL), - (182,91,1,'b_a',20,'Parent of',8,'Child of',1,NULL,NULL,NULL), - (183,92,1,'a_b',198,'Child of',20,'Parent of',1,NULL,NULL,NULL), - (184,92,1,'b_a',20,'Parent of',198,'Child of',1,NULL,NULL,NULL), - (185,93,1,'a_b',8,'Child of',146,'Parent of',1,NULL,NULL,NULL), - (186,93,1,'b_a',146,'Parent of',8,'Child of',1,NULL,NULL,NULL), - (187,94,1,'a_b',198,'Child of',146,'Parent of',1,NULL,NULL,NULL), - (188,94,1,'b_a',146,'Parent of',198,'Child of',1,NULL,NULL,NULL), - (189,95,4,'a_b',198,'Sibling of',8,'Sibling of',1,NULL,NULL,NULL), - (190,95,4,'b_a',8,'Sibling of',198,'Sibling of',1,NULL,NULL,NULL), - (191,96,8,'a_b',146,'Household Member of',89,'Household Member is',1,NULL,NULL,NULL), - (192,96,8,'b_a',89,'Household Member is',146,'Household Member of',1,NULL,NULL,NULL), - (193,97,8,'a_b',8,'Household Member of',89,'Household Member is',1,NULL,NULL,NULL), - (194,97,8,'b_a',89,'Household Member is',8,'Household Member of',1,NULL,NULL,NULL), - (195,98,8,'a_b',198,'Household Member of',89,'Household Member is',1,NULL,NULL,NULL), - (196,98,8,'b_a',89,'Household Member is',198,'Household Member of',1,NULL,NULL,NULL), - (197,99,7,'a_b',20,'Head of Household for',89,'Head of Household is',0,NULL,NULL,NULL), - (198,99,7,'b_a',89,'Head of Household is',20,'Head of Household for',0,NULL,NULL,NULL), - (199,100,2,'a_b',146,'Spouse of',20,'Spouse of',0,NULL,NULL,NULL), - (200,100,2,'b_a',20,'Spouse of',146,'Spouse of',0,NULL,NULL,NULL), - (201,101,1,'a_b',65,'Child of',97,'Parent of',1,NULL,NULL,NULL), - (202,101,1,'b_a',97,'Parent of',65,'Child of',1,NULL,NULL,NULL), - (203,102,1,'a_b',75,'Child of',97,'Parent of',1,NULL,NULL,NULL), - (204,102,1,'b_a',97,'Parent of',75,'Child of',1,NULL,NULL,NULL), - (205,103,1,'a_b',65,'Child of',170,'Parent of',1,NULL,NULL,NULL), - (206,103,1,'b_a',170,'Parent of',65,'Child of',1,NULL,NULL,NULL), - (207,104,1,'a_b',75,'Child of',170,'Parent of',1,NULL,NULL,NULL), - (208,104,1,'b_a',170,'Parent of',75,'Child of',1,NULL,NULL,NULL), - (209,105,4,'a_b',75,'Sibling of',65,'Sibling of',1,NULL,NULL,NULL), - (210,105,4,'b_a',65,'Sibling of',75,'Sibling of',1,NULL,NULL,NULL), - (211,106,8,'a_b',170,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (212,106,8,'b_a',85,'Household Member is',170,'Household Member of',1,NULL,NULL,NULL), - (213,107,8,'a_b',65,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (214,107,8,'b_a',85,'Household Member is',65,'Household Member of',1,NULL,NULL,NULL), - (215,108,8,'a_b',75,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (216,108,8,'b_a',85,'Household Member is',75,'Household Member of',1,NULL,NULL,NULL), - (217,109,7,'a_b',97,'Head of Household for',85,'Head of Household is',1,NULL,NULL,NULL), - (218,109,7,'b_a',85,'Head of Household is',97,'Head of Household for',1,NULL,NULL,NULL), - (219,110,2,'a_b',170,'Spouse of',97,'Spouse of',1,NULL,NULL,NULL), - (220,110,2,'b_a',97,'Spouse of',170,'Spouse of',1,NULL,NULL,NULL), - (221,111,1,'a_b',141,'Child of',45,'Parent of',1,NULL,NULL,NULL), - (222,111,1,'b_a',45,'Parent of',141,'Child of',1,NULL,NULL,NULL), - (223,112,1,'a_b',30,'Child of',45,'Parent of',1,NULL,NULL,NULL), - (224,112,1,'b_a',45,'Parent of',30,'Child of',1,NULL,NULL,NULL), - (225,113,1,'a_b',141,'Child of',124,'Parent of',1,NULL,NULL,NULL), - (226,113,1,'b_a',124,'Parent of',141,'Child of',1,NULL,NULL,NULL), - (227,114,1,'a_b',30,'Child of',124,'Parent of',1,NULL,NULL,NULL), - (228,114,1,'b_a',124,'Parent of',30,'Child of',1,NULL,NULL,NULL), - (229,115,4,'a_b',30,'Sibling of',141,'Sibling of',1,NULL,NULL,NULL), - (230,115,4,'b_a',141,'Sibling of',30,'Sibling of',1,NULL,NULL,NULL), - (231,116,8,'a_b',124,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), - (232,116,8,'b_a',60,'Household Member is',124,'Household Member of',1,NULL,NULL,NULL), - (233,117,8,'a_b',141,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), - (234,117,8,'b_a',60,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL), - (235,118,8,'a_b',30,'Household Member of',60,'Household Member is',1,NULL,NULL,NULL), - (236,118,8,'b_a',60,'Household Member is',30,'Household Member of',1,NULL,NULL,NULL), - (237,119,7,'a_b',45,'Head of Household for',60,'Head of Household is',0,NULL,NULL,NULL), - (238,119,7,'b_a',60,'Head of Household is',45,'Head of Household for',0,NULL,NULL,NULL), - (239,120,2,'a_b',124,'Spouse of',45,'Spouse of',0,NULL,NULL,NULL), - (240,120,2,'b_a',45,'Spouse of',124,'Spouse of',0,NULL,NULL,NULL), - (241,121,1,'a_b',83,'Child of',188,'Parent of',1,NULL,NULL,NULL), - (242,121,1,'b_a',188,'Parent of',83,'Child of',1,NULL,NULL,NULL), - (243,122,1,'a_b',68,'Child of',188,'Parent of',1,NULL,NULL,NULL), - (244,122,1,'b_a',188,'Parent of',68,'Child of',1,NULL,NULL,NULL), - (245,123,1,'a_b',83,'Child of',57,'Parent of',1,NULL,NULL,NULL), - (246,123,1,'b_a',57,'Parent of',83,'Child of',1,NULL,NULL,NULL), - (247,124,1,'a_b',68,'Child of',57,'Parent of',1,NULL,NULL,NULL), - (248,124,1,'b_a',57,'Parent of',68,'Child of',1,NULL,NULL,NULL), - (249,125,4,'a_b',68,'Sibling of',83,'Sibling of',1,NULL,NULL,NULL), - (250,125,4,'b_a',83,'Sibling of',68,'Sibling of',1,NULL,NULL,NULL), - (251,126,8,'a_b',57,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), - (252,126,8,'b_a',180,'Household Member is',57,'Household Member of',1,NULL,NULL,NULL), - (253,127,8,'a_b',83,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), - (254,127,8,'b_a',180,'Household Member is',83,'Household Member of',1,NULL,NULL,NULL), - (255,128,8,'a_b',68,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), - (256,128,8,'b_a',180,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL), - (257,129,7,'a_b',188,'Head of Household for',180,'Head of Household is',1,NULL,NULL,NULL), - (258,129,7,'b_a',180,'Head of Household is',188,'Head of Household for',1,NULL,NULL,NULL), - (259,130,2,'a_b',57,'Spouse of',188,'Spouse of',1,NULL,NULL,NULL), - (260,130,2,'b_a',188,'Spouse of',57,'Spouse of',1,NULL,NULL,NULL), - (261,131,1,'a_b',102,'Child of',132,'Parent of',1,NULL,NULL,NULL), - (262,131,1,'b_a',132,'Parent of',102,'Child of',1,NULL,NULL,NULL), - (263,132,1,'a_b',142,'Child of',132,'Parent of',1,NULL,NULL,NULL), - (264,132,1,'b_a',132,'Parent of',142,'Child of',1,NULL,NULL,NULL), - (265,133,1,'a_b',102,'Child of',176,'Parent of',1,NULL,NULL,NULL), - (266,133,1,'b_a',176,'Parent of',102,'Child of',1,NULL,NULL,NULL), - (267,134,1,'a_b',142,'Child of',176,'Parent of',1,NULL,NULL,NULL), - (268,134,1,'b_a',176,'Parent of',142,'Child of',1,NULL,NULL,NULL), - (269,135,4,'a_b',142,'Sibling of',102,'Sibling of',1,NULL,NULL,NULL), - (270,135,4,'b_a',102,'Sibling of',142,'Sibling of',1,NULL,NULL,NULL), - (271,136,8,'a_b',176,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), - (272,136,8,'b_a',28,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL), - (273,137,8,'a_b',102,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), - (274,137,8,'b_a',28,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), - (275,138,8,'a_b',142,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), - (276,138,8,'b_a',28,'Household Member is',142,'Household Member of',1,NULL,NULL,NULL), - (277,139,7,'a_b',132,'Head of Household for',28,'Head of Household is',1,NULL,NULL,NULL), - (278,139,7,'b_a',28,'Head of Household is',132,'Head of Household for',1,NULL,NULL,NULL), - (279,140,2,'a_b',176,'Spouse of',132,'Spouse of',1,NULL,NULL,NULL), - (280,140,2,'b_a',132,'Spouse of',176,'Spouse of',1,NULL,NULL,NULL), - (281,141,1,'a_b',173,'Child of',111,'Parent of',1,NULL,NULL,NULL), - (282,141,1,'b_a',111,'Parent of',173,'Child of',1,NULL,NULL,NULL), - (283,142,1,'a_b',169,'Child of',111,'Parent of',1,NULL,NULL,NULL), - (284,142,1,'b_a',111,'Parent of',169,'Child of',1,NULL,NULL,NULL), - (285,143,1,'a_b',173,'Child of',66,'Parent of',1,NULL,NULL,NULL), - (286,143,1,'b_a',66,'Parent of',173,'Child of',1,NULL,NULL,NULL), - (287,144,1,'a_b',169,'Child of',66,'Parent of',1,NULL,NULL,NULL), - (288,144,1,'b_a',66,'Parent of',169,'Child of',1,NULL,NULL,NULL), - (289,145,4,'a_b',169,'Sibling of',173,'Sibling of',1,NULL,NULL,NULL), - (290,145,4,'b_a',173,'Sibling of',169,'Sibling of',1,NULL,NULL,NULL), - (291,146,8,'a_b',66,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), - (292,146,8,'b_a',184,'Household Member is',66,'Household Member of',1,NULL,NULL,NULL), - (293,147,8,'a_b',173,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), - (294,147,8,'b_a',184,'Household Member is',173,'Household Member of',1,NULL,NULL,NULL), - (295,148,8,'a_b',169,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), - (296,148,8,'b_a',184,'Household Member is',169,'Household Member of',1,NULL,NULL,NULL), - (297,149,7,'a_b',111,'Head of Household for',184,'Head of Household is',1,NULL,NULL,NULL), - (298,149,7,'b_a',184,'Head of Household is',111,'Head of Household for',1,NULL,NULL,NULL), - (299,150,2,'a_b',66,'Spouse of',111,'Spouse of',1,NULL,NULL,NULL), - (300,150,2,'b_a',111,'Spouse of',66,'Spouse of',1,NULL,NULL,NULL), - (301,151,1,'a_b',189,'Child of',44,'Parent of',1,NULL,NULL,NULL), - (302,151,1,'b_a',44,'Parent of',189,'Child of',1,NULL,NULL,NULL), - (303,152,1,'a_b',87,'Child of',44,'Parent of',1,NULL,NULL,NULL), - (304,152,1,'b_a',44,'Parent of',87,'Child of',1,NULL,NULL,NULL), - (305,153,1,'a_b',189,'Child of',55,'Parent of',1,NULL,NULL,NULL), - (306,153,1,'b_a',55,'Parent of',189,'Child of',1,NULL,NULL,NULL), - (307,154,1,'a_b',87,'Child of',55,'Parent of',1,NULL,NULL,NULL), - (308,154,1,'b_a',55,'Parent of',87,'Child of',1,NULL,NULL,NULL), - (309,155,4,'a_b',87,'Sibling of',189,'Sibling of',1,NULL,NULL,NULL), - (310,155,4,'b_a',189,'Sibling of',87,'Sibling of',1,NULL,NULL,NULL), - (311,156,8,'a_b',55,'Household Member of',91,'Household Member is',1,NULL,NULL,NULL), - (312,156,8,'b_a',91,'Household Member is',55,'Household Member of',1,NULL,NULL,NULL), - (313,157,8,'a_b',189,'Household Member of',91,'Household Member is',1,NULL,NULL,NULL), - (314,157,8,'b_a',91,'Household Member is',189,'Household Member of',1,NULL,NULL,NULL), - (315,158,8,'a_b',87,'Household Member of',91,'Household Member is',1,NULL,NULL,NULL), - (316,158,8,'b_a',91,'Household Member is',87,'Household Member of',1,NULL,NULL,NULL), - (317,159,7,'a_b',44,'Head of Household for',91,'Head of Household is',0,NULL,NULL,NULL), - (318,159,7,'b_a',91,'Head of Household is',44,'Head of Household for',0,NULL,NULL,NULL), - (319,160,2,'a_b',55,'Spouse of',44,'Spouse of',0,NULL,NULL,NULL), - (320,160,2,'b_a',44,'Spouse of',55,'Spouse of',0,NULL,NULL,NULL), - (321,161,1,'a_b',112,'Child of',201,'Parent of',1,NULL,NULL,NULL), - (322,161,1,'b_a',201,'Parent of',112,'Child of',1,NULL,NULL,NULL), - (323,162,1,'a_b',61,'Child of',201,'Parent of',1,NULL,NULL,NULL), - (324,162,1,'b_a',201,'Parent of',61,'Child of',1,NULL,NULL,NULL), - (325,163,1,'a_b',112,'Child of',59,'Parent of',1,NULL,NULL,NULL), - (326,163,1,'b_a',59,'Parent of',112,'Child of',1,NULL,NULL,NULL), - (327,164,1,'a_b',61,'Child of',59,'Parent of',1,NULL,NULL,NULL), - (328,164,1,'b_a',59,'Parent of',61,'Child of',1,NULL,NULL,NULL), - (329,165,4,'a_b',61,'Sibling of',112,'Sibling of',1,NULL,NULL,NULL), - (330,165,4,'b_a',112,'Sibling of',61,'Sibling of',1,NULL,NULL,NULL), - (331,166,8,'a_b',59,'Household Member of',74,'Household Member is',1,NULL,NULL,NULL), - (332,166,8,'b_a',74,'Household Member is',59,'Household Member of',1,NULL,NULL,NULL), - (333,167,8,'a_b',112,'Household Member of',74,'Household Member is',1,NULL,NULL,NULL), - (334,167,8,'b_a',74,'Household Member is',112,'Household Member of',1,NULL,NULL,NULL), - (335,168,8,'a_b',61,'Household Member of',74,'Household Member is',1,NULL,NULL,NULL), - (336,168,8,'b_a',74,'Household Member is',61,'Household Member of',1,NULL,NULL,NULL), - (337,169,7,'a_b',201,'Head of Household for',74,'Head of Household is',1,NULL,NULL,NULL), - (338,169,7,'b_a',74,'Head of Household is',201,'Head of Household for',1,NULL,NULL,NULL), - (339,170,2,'a_b',59,'Spouse of',201,'Spouse of',1,NULL,NULL,NULL), - (340,170,2,'b_a',201,'Spouse of',59,'Spouse of',1,NULL,NULL,NULL), - (341,171,1,'a_b',56,'Child of',48,'Parent of',1,NULL,NULL,NULL), - (342,171,1,'b_a',48,'Parent of',56,'Child of',1,NULL,NULL,NULL), - (343,172,1,'a_b',160,'Child of',48,'Parent of',1,NULL,NULL,NULL), - (344,172,1,'b_a',48,'Parent of',160,'Child of',1,NULL,NULL,NULL), - (345,173,1,'a_b',56,'Child of',199,'Parent of',1,NULL,NULL,NULL), - (346,173,1,'b_a',199,'Parent of',56,'Child of',1,NULL,NULL,NULL), - (347,174,1,'a_b',160,'Child of',199,'Parent of',1,NULL,NULL,NULL), - (348,174,1,'b_a',199,'Parent of',160,'Child of',1,NULL,NULL,NULL), - (349,175,4,'a_b',160,'Sibling of',56,'Sibling of',1,NULL,NULL,NULL), - (350,175,4,'b_a',56,'Sibling of',160,'Sibling of',1,NULL,NULL,NULL), - (351,176,8,'a_b',199,'Household Member of',151,'Household Member is',1,NULL,NULL,NULL), - (352,176,8,'b_a',151,'Household Member is',199,'Household Member of',1,NULL,NULL,NULL), - (353,177,8,'a_b',56,'Household Member of',151,'Household Member is',1,NULL,NULL,NULL), - (354,177,8,'b_a',151,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), - (355,178,8,'a_b',160,'Household Member of',151,'Household Member is',1,NULL,NULL,NULL), - (356,178,8,'b_a',151,'Household Member is',160,'Household Member of',1,NULL,NULL,NULL), - (357,179,7,'a_b',48,'Head of Household for',151,'Head of Household is',0,NULL,NULL,NULL), - (358,179,7,'b_a',151,'Head of Household is',48,'Head of Household for',0,NULL,NULL,NULL), - (359,180,2,'a_b',199,'Spouse of',48,'Spouse of',0,NULL,NULL,NULL), - (360,180,2,'b_a',48,'Spouse of',199,'Spouse of',0,NULL,NULL,NULL), - (361,181,1,'a_b',163,'Child of',36,'Parent of',1,NULL,NULL,NULL), - (362,181,1,'b_a',36,'Parent of',163,'Child of',1,NULL,NULL,NULL), - (363,182,1,'a_b',33,'Child of',36,'Parent of',1,NULL,NULL,NULL), - (364,182,1,'b_a',36,'Parent of',33,'Child of',1,NULL,NULL,NULL), - (365,183,1,'a_b',163,'Child of',18,'Parent of',1,NULL,NULL,NULL), - (366,183,1,'b_a',18,'Parent of',163,'Child of',1,NULL,NULL,NULL), - (367,184,1,'a_b',33,'Child of',18,'Parent of',1,NULL,NULL,NULL), - (368,184,1,'b_a',18,'Parent of',33,'Child of',1,NULL,NULL,NULL), - (369,185,4,'a_b',33,'Sibling of',163,'Sibling of',1,NULL,NULL,NULL), - (370,185,4,'b_a',163,'Sibling of',33,'Sibling of',1,NULL,NULL,NULL), - (371,186,8,'a_b',18,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), - (372,186,8,'b_a',183,'Household Member is',18,'Household Member of',1,NULL,NULL,NULL), - (373,187,8,'a_b',163,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), - (374,187,8,'b_a',183,'Household Member is',163,'Household Member of',1,NULL,NULL,NULL), - (375,188,8,'a_b',33,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), - (376,188,8,'b_a',183,'Household Member is',33,'Household Member of',1,NULL,NULL,NULL), - (377,189,7,'a_b',36,'Head of Household for',183,'Head of Household is',0,NULL,NULL,NULL), - (378,189,7,'b_a',183,'Head of Household is',36,'Head of Household for',0,NULL,NULL,NULL), - (379,190,2,'a_b',18,'Spouse of',36,'Spouse of',0,NULL,NULL,NULL), - (380,190,2,'b_a',36,'Spouse of',18,'Spouse of',0,NULL,NULL,NULL), - (381,191,1,'a_b',34,'Child of',79,'Parent of',1,NULL,NULL,NULL), - (382,191,1,'b_a',79,'Parent of',34,'Child of',1,NULL,NULL,NULL), - (383,192,1,'a_b',126,'Child of',79,'Parent of',1,NULL,NULL,NULL), - (384,192,1,'b_a',79,'Parent of',126,'Child of',1,NULL,NULL,NULL), - (385,193,1,'a_b',34,'Child of',9,'Parent of',1,NULL,NULL,NULL), - (386,193,1,'b_a',9,'Parent of',34,'Child of',1,NULL,NULL,NULL), - (387,194,1,'a_b',126,'Child of',9,'Parent of',1,NULL,NULL,NULL), - (388,194,1,'b_a',9,'Parent of',126,'Child of',1,NULL,NULL,NULL), - (389,195,4,'a_b',126,'Sibling of',34,'Sibling of',1,NULL,NULL,NULL), - (390,195,4,'b_a',34,'Sibling of',126,'Sibling of',1,NULL,NULL,NULL), - (391,196,8,'a_b',9,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (392,196,8,'b_a',133,'Household Member is',9,'Household Member of',1,NULL,NULL,NULL), - (393,197,8,'a_b',34,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (394,197,8,'b_a',133,'Household Member is',34,'Household Member of',1,NULL,NULL,NULL), - (395,198,8,'a_b',126,'Household Member of',133,'Household Member is',1,NULL,NULL,NULL), - (396,198,8,'b_a',133,'Household Member is',126,'Household Member of',1,NULL,NULL,NULL), - (397,199,7,'a_b',79,'Head of Household for',133,'Head of Household is',1,NULL,NULL,NULL), - (398,199,7,'b_a',133,'Head of Household is',79,'Head of Household for',1,NULL,NULL,NULL), - (399,200,2,'a_b',9,'Spouse of',79,'Spouse of',1,NULL,NULL,NULL), - (400,200,2,'b_a',79,'Spouse of',9,'Spouse of',1,NULL,NULL,NULL), - (401,201,5,'a_b',106,'Employee of',3,'Employer of',1,NULL,NULL,NULL), - (402,201,5,'b_a',3,'Employer of',106,'Employee of',1,NULL,NULL,NULL), - (403,202,5,'a_b',130,'Employee of',12,'Employer of',1,NULL,NULL,NULL), - (404,202,5,'b_a',12,'Employer of',130,'Employee of',1,NULL,NULL,NULL), - (405,203,5,'a_b',146,'Employee of',17,'Employer of',1,NULL,NULL,NULL), - (406,203,5,'b_a',17,'Employer of',146,'Employee of',1,NULL,NULL,NULL), - (407,204,5,'a_b',157,'Employee of',26,'Employer of',1,NULL,NULL,NULL), - (408,204,5,'b_a',26,'Employer of',157,'Employee of',1,NULL,NULL,NULL), - (409,205,5,'a_b',65,'Employee of',42,'Employer of',1,NULL,NULL,NULL), - (410,205,5,'b_a',42,'Employer of',65,'Employee of',1,NULL,NULL,NULL), - (411,206,5,'a_b',191,'Employee of',46,'Employer of',1,NULL,NULL,NULL), - (412,206,5,'b_a',46,'Employer of',191,'Employee of',1,NULL,NULL,NULL), - (413,207,5,'a_b',63,'Employee of',49,'Employer of',1,NULL,NULL,NULL), - (414,207,5,'b_a',49,'Employer of',63,'Employee of',1,NULL,NULL,NULL), - (415,208,5,'a_b',23,'Employee of',50,'Employer of',1,NULL,NULL,NULL), - (416,208,5,'b_a',50,'Employer of',23,'Employee of',1,NULL,NULL,NULL), - (417,209,5,'a_b',9,'Employee of',62,'Employer of',1,NULL,NULL,NULL), - (418,209,5,'b_a',62,'Employer of',9,'Employee of',1,NULL,NULL,NULL), - (419,210,5,'a_b',110,'Employee of',67,'Employer of',1,NULL,NULL,NULL), - (420,210,5,'b_a',67,'Employer of',110,'Employee of',1,NULL,NULL,NULL), - (421,211,5,'a_b',105,'Employee of',82,'Employer of',1,NULL,NULL,NULL), - (422,211,5,'b_a',82,'Employer of',105,'Employee of',1,NULL,NULL,NULL), - (423,212,5,'a_b',173,'Employee of',96,'Employer of',1,NULL,NULL,NULL), - (424,212,5,'b_a',96,'Employer of',173,'Employee of',1,NULL,NULL,NULL), - (425,213,5,'a_b',48,'Employee of',116,'Employer of',1,NULL,NULL,NULL), - (426,213,5,'b_a',116,'Employer of',48,'Employee of',1,NULL,NULL,NULL), - (427,214,5,'a_b',35,'Employee of',123,'Employer of',1,NULL,NULL,NULL), - (428,214,5,'b_a',123,'Employer of',35,'Employee of',1,NULL,NULL,NULL), - (429,215,5,'a_b',121,'Employee of',140,'Employer of',1,NULL,NULL,NULL), - (430,215,5,'b_a',140,'Employer of',121,'Employee of',1,NULL,NULL,NULL), - (431,216,5,'a_b',167,'Employee of',148,'Employer of',1,NULL,NULL,NULL), - (432,216,5,'b_a',148,'Employer of',167,'Employee of',1,NULL,NULL,NULL), - (433,217,5,'a_b',95,'Employee of',161,'Employer of',1,NULL,NULL,NULL), - (434,217,5,'b_a',161,'Employer of',95,'Employee of',1,NULL,NULL,NULL), - (435,218,5,'a_b',164,'Employee of',168,'Employer of',1,NULL,NULL,NULL), - (436,218,5,'b_a',168,'Employer of',164,'Employee of',1,NULL,NULL,NULL), - (437,219,5,'a_b',162,'Employee of',200,'Employer of',1,NULL,NULL,NULL), - (438,219,5,'b_a',200,'Employer of',162,'Employee of',1,NULL,NULL,NULL); + (1,1,1,'a_b',31,'Child of',118,'Parent of',1,NULL,NULL,NULL), +(2,1,1,'b_a',118,'Parent of',31,'Child of',1,NULL,NULL,NULL), +(3,2,1,'a_b',35,'Child of',118,'Parent of',1,NULL,NULL,NULL), +(4,2,1,'b_a',118,'Parent of',35,'Child of',1,NULL,NULL,NULL), +(5,3,1,'a_b',31,'Child of',67,'Parent of',1,NULL,NULL,NULL), +(6,3,1,'b_a',67,'Parent of',31,'Child of',1,NULL,NULL,NULL), +(7,4,1,'a_b',35,'Child of',67,'Parent of',1,NULL,NULL,NULL), +(8,4,1,'b_a',67,'Parent of',35,'Child of',1,NULL,NULL,NULL), +(9,5,4,'a_b',35,'Sibling of',31,'Sibling of',1,NULL,NULL,NULL), +(10,5,4,'b_a',31,'Sibling of',35,'Sibling of',1,NULL,NULL,NULL), +(11,6,8,'a_b',67,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), +(12,6,8,'b_a',119,'Household Member is',67,'Household Member of',1,NULL,NULL,NULL), +(13,7,8,'a_b',31,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), +(14,7,8,'b_a',119,'Household Member is',31,'Household Member of',1,NULL,NULL,NULL), +(15,8,8,'a_b',35,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), +(16,8,8,'b_a',119,'Household Member is',35,'Household Member of',1,NULL,NULL,NULL), +(17,9,7,'a_b',118,'Head of Household for',119,'Head of Household is',0,NULL,NULL,NULL), +(18,9,7,'b_a',119,'Head of Household is',118,'Head of Household for',0,NULL,NULL,NULL), +(19,10,2,'a_b',67,'Spouse of',118,'Spouse of',0,NULL,NULL,NULL), +(20,10,2,'b_a',118,'Spouse of',67,'Spouse of',0,NULL,NULL,NULL), +(21,11,1,'a_b',6,'Child of',140,'Parent of',1,NULL,NULL,NULL), +(22,11,1,'b_a',140,'Parent of',6,'Child of',1,NULL,NULL,NULL), +(23,12,1,'a_b',176,'Child of',140,'Parent of',1,NULL,NULL,NULL), +(24,12,1,'b_a',140,'Parent of',176,'Child of',1,NULL,NULL,NULL), +(25,13,1,'a_b',6,'Child of',137,'Parent of',1,NULL,NULL,NULL), +(26,13,1,'b_a',137,'Parent of',6,'Child of',1,NULL,NULL,NULL), +(27,14,1,'a_b',176,'Child of',137,'Parent of',1,NULL,NULL,NULL), +(28,14,1,'b_a',137,'Parent of',176,'Child of',1,NULL,NULL,NULL), +(29,15,4,'a_b',176,'Sibling of',6,'Sibling of',1,NULL,NULL,NULL), +(30,15,4,'b_a',6,'Sibling of',176,'Sibling of',1,NULL,NULL,NULL), +(31,16,8,'a_b',137,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), +(32,16,8,'b_a',129,'Household Member is',137,'Household Member of',1,NULL,NULL,NULL), +(33,17,8,'a_b',6,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), +(34,17,8,'b_a',129,'Household Member is',6,'Household Member of',1,NULL,NULL,NULL), +(35,18,8,'a_b',176,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), +(36,18,8,'b_a',129,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL), +(37,19,7,'a_b',140,'Head of Household for',129,'Head of Household is',0,NULL,NULL,NULL), +(38,19,7,'b_a',129,'Head of Household is',140,'Head of Household for',0,NULL,NULL,NULL), +(39,20,2,'a_b',137,'Spouse of',140,'Spouse of',0,NULL,NULL,NULL), +(40,20,2,'b_a',140,'Spouse of',137,'Spouse of',0,NULL,NULL,NULL), +(41,21,1,'a_b',26,'Child of',101,'Parent of',1,NULL,NULL,NULL), +(42,21,1,'b_a',101,'Parent of',26,'Child of',1,NULL,NULL,NULL), +(43,22,1,'a_b',44,'Child of',101,'Parent of',1,NULL,NULL,NULL), +(44,22,1,'b_a',101,'Parent of',44,'Child of',1,NULL,NULL,NULL), +(45,23,1,'a_b',26,'Child of',102,'Parent of',1,NULL,NULL,NULL), +(46,23,1,'b_a',102,'Parent of',26,'Child of',1,NULL,NULL,NULL), +(47,24,1,'a_b',44,'Child of',102,'Parent of',1,NULL,NULL,NULL), +(48,24,1,'b_a',102,'Parent of',44,'Child of',1,NULL,NULL,NULL), +(49,25,4,'a_b',44,'Sibling of',26,'Sibling of',1,NULL,NULL,NULL), +(50,25,4,'b_a',26,'Sibling of',44,'Sibling of',1,NULL,NULL,NULL), +(51,26,8,'a_b',102,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), +(52,26,8,'b_a',78,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), +(53,27,8,'a_b',26,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), +(54,27,8,'b_a',78,'Household Member is',26,'Household Member of',1,NULL,NULL,NULL), +(55,28,8,'a_b',44,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), +(56,28,8,'b_a',78,'Household Member is',44,'Household Member of',1,NULL,NULL,NULL), +(57,29,7,'a_b',101,'Head of Household for',78,'Head of Household is',0,NULL,NULL,NULL), +(58,29,7,'b_a',78,'Head of Household is',101,'Head of Household for',0,NULL,NULL,NULL), +(59,30,2,'a_b',102,'Spouse of',101,'Spouse of',0,NULL,NULL,NULL), +(60,30,2,'b_a',101,'Spouse of',102,'Spouse of',0,NULL,NULL,NULL), +(61,31,1,'a_b',152,'Child of',91,'Parent of',1,NULL,NULL,NULL), +(62,31,1,'b_a',91,'Parent of',152,'Child of',1,NULL,NULL,NULL), +(63,32,1,'a_b',142,'Child of',91,'Parent of',1,NULL,NULL,NULL), +(64,32,1,'b_a',91,'Parent of',142,'Child of',1,NULL,NULL,NULL), +(65,33,1,'a_b',152,'Child of',74,'Parent of',1,NULL,NULL,NULL), +(66,33,1,'b_a',74,'Parent of',152,'Child of',1,NULL,NULL,NULL), +(67,34,1,'a_b',142,'Child of',74,'Parent of',1,NULL,NULL,NULL), +(68,34,1,'b_a',74,'Parent of',142,'Child of',1,NULL,NULL,NULL), +(69,35,4,'a_b',142,'Sibling of',152,'Sibling of',1,NULL,NULL,NULL), +(70,35,4,'b_a',152,'Sibling of',142,'Sibling of',1,NULL,NULL,NULL), +(71,36,8,'a_b',74,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), +(72,36,8,'b_a',36,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL), +(73,37,8,'a_b',152,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), +(74,37,8,'b_a',36,'Household Member is',152,'Household Member of',1,NULL,NULL,NULL), +(75,38,8,'a_b',142,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), +(76,38,8,'b_a',36,'Household Member is',142,'Household Member of',1,NULL,NULL,NULL), +(77,39,7,'a_b',91,'Head of Household for',36,'Head of Household is',0,NULL,NULL,NULL), +(78,39,7,'b_a',36,'Head of Household is',91,'Head of Household for',0,NULL,NULL,NULL), +(79,40,2,'a_b',74,'Spouse of',91,'Spouse of',0,NULL,NULL,NULL), +(80,40,2,'b_a',91,'Spouse of',74,'Spouse of',0,NULL,NULL,NULL), +(81,41,1,'a_b',98,'Child of',201,'Parent of',1,NULL,NULL,NULL), +(82,41,1,'b_a',201,'Parent of',98,'Child of',1,NULL,NULL,NULL), +(83,42,1,'a_b',165,'Child of',201,'Parent of',1,NULL,NULL,NULL), +(84,42,1,'b_a',201,'Parent of',165,'Child of',1,NULL,NULL,NULL), +(85,43,1,'a_b',98,'Child of',56,'Parent of',1,NULL,NULL,NULL), +(86,43,1,'b_a',56,'Parent of',98,'Child of',1,NULL,NULL,NULL), +(87,44,1,'a_b',165,'Child of',56,'Parent of',1,NULL,NULL,NULL), +(88,44,1,'b_a',56,'Parent of',165,'Child of',1,NULL,NULL,NULL), +(89,45,4,'a_b',165,'Sibling of',98,'Sibling of',1,NULL,NULL,NULL), +(90,45,4,'b_a',98,'Sibling of',165,'Sibling of',1,NULL,NULL,NULL), +(91,46,8,'a_b',56,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), +(92,46,8,'b_a',43,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), +(93,47,8,'a_b',98,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), +(94,47,8,'b_a',43,'Household Member is',98,'Household Member of',1,NULL,NULL,NULL), +(95,48,8,'a_b',165,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), +(96,48,8,'b_a',43,'Household Member is',165,'Household Member of',1,NULL,NULL,NULL), +(97,49,7,'a_b',201,'Head of Household for',43,'Head of Household is',1,NULL,NULL,NULL), +(98,49,7,'b_a',43,'Head of Household is',201,'Head of Household for',1,NULL,NULL,NULL), +(99,50,2,'a_b',56,'Spouse of',201,'Spouse of',1,NULL,NULL,NULL), +(100,50,2,'b_a',201,'Spouse of',56,'Spouse of',1,NULL,NULL,NULL), +(101,51,1,'a_b',141,'Child of',60,'Parent of',1,NULL,NULL,NULL), +(102,51,1,'b_a',60,'Parent of',141,'Child of',1,NULL,NULL,NULL), +(103,52,1,'a_b',82,'Child of',60,'Parent of',1,NULL,NULL,NULL), +(104,52,1,'b_a',60,'Parent of',82,'Child of',1,NULL,NULL,NULL), +(105,53,1,'a_b',141,'Child of',11,'Parent of',1,NULL,NULL,NULL), +(106,53,1,'b_a',11,'Parent of',141,'Child of',1,NULL,NULL,NULL), +(107,54,1,'a_b',82,'Child of',11,'Parent of',1,NULL,NULL,NULL), +(108,54,1,'b_a',11,'Parent of',82,'Child of',1,NULL,NULL,NULL), +(109,55,4,'a_b',82,'Sibling of',141,'Sibling of',1,NULL,NULL,NULL), +(110,55,4,'b_a',141,'Sibling of',82,'Sibling of',1,NULL,NULL,NULL), +(111,56,8,'a_b',11,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), +(112,56,8,'b_a',124,'Household Member is',11,'Household Member of',1,NULL,NULL,NULL), +(113,57,8,'a_b',141,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), +(114,57,8,'b_a',124,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL), +(115,58,8,'a_b',82,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), +(116,58,8,'b_a',124,'Household Member is',82,'Household Member of',1,NULL,NULL,NULL), +(117,59,7,'a_b',60,'Head of Household for',124,'Head of Household is',1,NULL,NULL,NULL), +(118,59,7,'b_a',124,'Head of Household is',60,'Head of Household for',1,NULL,NULL,NULL), +(119,60,2,'a_b',11,'Spouse of',60,'Spouse of',1,NULL,NULL,NULL), +(120,60,2,'b_a',60,'Spouse of',11,'Spouse of',1,NULL,NULL,NULL), +(121,61,1,'a_b',20,'Child of',19,'Parent of',1,NULL,NULL,NULL), +(122,61,1,'b_a',19,'Parent of',20,'Child of',1,NULL,NULL,NULL), +(123,62,1,'a_b',112,'Child of',19,'Parent of',1,NULL,NULL,NULL), +(124,62,1,'b_a',19,'Parent of',112,'Child of',1,NULL,NULL,NULL), +(125,63,1,'a_b',20,'Child of',168,'Parent of',1,NULL,NULL,NULL), +(126,63,1,'b_a',168,'Parent of',20,'Child of',1,NULL,NULL,NULL), +(127,64,1,'a_b',112,'Child of',168,'Parent of',1,NULL,NULL,NULL), +(128,64,1,'b_a',168,'Parent of',112,'Child of',1,NULL,NULL,NULL), +(129,65,4,'a_b',112,'Sibling of',20,'Sibling of',1,NULL,NULL,NULL), +(130,65,4,'b_a',20,'Sibling of',112,'Sibling of',1,NULL,NULL,NULL), +(131,66,8,'a_b',168,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), +(132,66,8,'b_a',135,'Household Member is',168,'Household Member of',1,NULL,NULL,NULL), +(133,67,8,'a_b',20,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), +(134,67,8,'b_a',135,'Household Member is',20,'Household Member of',1,NULL,NULL,NULL), +(135,68,8,'a_b',112,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), +(136,68,8,'b_a',135,'Household Member is',112,'Household Member of',1,NULL,NULL,NULL), +(137,69,7,'a_b',19,'Head of Household for',135,'Head of Household is',1,NULL,NULL,NULL), +(138,69,7,'b_a',135,'Head of Household is',19,'Head of Household for',1,NULL,NULL,NULL), +(139,70,2,'a_b',168,'Spouse of',19,'Spouse of',1,NULL,NULL,NULL), +(140,70,2,'b_a',19,'Spouse of',168,'Spouse of',1,NULL,NULL,NULL), +(141,71,1,'a_b',110,'Child of',178,'Parent of',1,NULL,NULL,NULL), +(142,71,1,'b_a',178,'Parent of',110,'Child of',1,NULL,NULL,NULL), +(143,72,1,'a_b',49,'Child of',178,'Parent of',1,NULL,NULL,NULL), +(144,72,1,'b_a',178,'Parent of',49,'Child of',1,NULL,NULL,NULL), +(145,73,1,'a_b',110,'Child of',113,'Parent of',1,NULL,NULL,NULL), +(146,73,1,'b_a',113,'Parent of',110,'Child of',1,NULL,NULL,NULL), +(147,74,1,'a_b',49,'Child of',113,'Parent of',1,NULL,NULL,NULL), +(148,74,1,'b_a',113,'Parent of',49,'Child of',1,NULL,NULL,NULL), +(149,75,4,'a_b',49,'Sibling of',110,'Sibling of',1,NULL,NULL,NULL), +(150,75,4,'b_a',110,'Sibling of',49,'Sibling of',1,NULL,NULL,NULL), +(151,76,8,'a_b',113,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), +(152,76,8,'b_a',194,'Household Member is',113,'Household Member of',1,NULL,NULL,NULL), +(153,77,8,'a_b',110,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), +(154,77,8,'b_a',194,'Household Member is',110,'Household Member of',1,NULL,NULL,NULL), +(155,78,8,'a_b',49,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), +(156,78,8,'b_a',194,'Household Member is',49,'Household Member of',1,NULL,NULL,NULL), +(157,79,7,'a_b',178,'Head of Household for',194,'Head of Household is',0,NULL,NULL,NULL), +(158,79,7,'b_a',194,'Head of Household is',178,'Head of Household for',0,NULL,NULL,NULL), +(159,80,2,'a_b',113,'Spouse of',178,'Spouse of',0,NULL,NULL,NULL), +(160,80,2,'b_a',178,'Spouse of',113,'Spouse of',0,NULL,NULL,NULL), +(161,81,1,'a_b',122,'Child of',115,'Parent of',1,NULL,NULL,NULL), +(162,81,1,'b_a',115,'Parent of',122,'Child of',1,NULL,NULL,NULL), +(163,82,1,'a_b',197,'Child of',115,'Parent of',1,NULL,NULL,NULL), +(164,82,1,'b_a',115,'Parent of',197,'Child of',1,NULL,NULL,NULL), +(165,83,1,'a_b',122,'Child of',190,'Parent of',1,NULL,NULL,NULL), +(166,83,1,'b_a',190,'Parent of',122,'Child of',1,NULL,NULL,NULL), +(167,84,1,'a_b',197,'Child of',190,'Parent of',1,NULL,NULL,NULL), +(168,84,1,'b_a',190,'Parent of',197,'Child of',1,NULL,NULL,NULL), +(169,85,4,'a_b',197,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL), +(170,85,4,'b_a',122,'Sibling of',197,'Sibling of',1,NULL,NULL,NULL), +(171,86,8,'a_b',190,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), +(172,86,8,'b_a',15,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL), +(173,87,8,'a_b',122,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), +(174,87,8,'b_a',15,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), +(175,88,8,'a_b',197,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), +(176,88,8,'b_a',15,'Household Member is',197,'Household Member of',1,NULL,NULL,NULL), +(177,89,7,'a_b',115,'Head of Household for',15,'Head of Household is',0,NULL,NULL,NULL), +(178,89,7,'b_a',15,'Head of Household is',115,'Head of Household for',0,NULL,NULL,NULL), +(179,90,2,'a_b',190,'Spouse of',115,'Spouse of',0,NULL,NULL,NULL), +(180,90,2,'b_a',115,'Spouse of',190,'Spouse of',0,NULL,NULL,NULL), +(181,91,1,'a_b',75,'Child of',87,'Parent of',1,NULL,NULL,NULL), +(182,91,1,'b_a',87,'Parent of',75,'Child of',1,NULL,NULL,NULL), +(183,92,1,'a_b',103,'Child of',87,'Parent of',1,NULL,NULL,NULL), +(184,92,1,'b_a',87,'Parent of',103,'Child of',1,NULL,NULL,NULL), +(185,93,1,'a_b',75,'Child of',68,'Parent of',1,NULL,NULL,NULL), +(186,93,1,'b_a',68,'Parent of',75,'Child of',1,NULL,NULL,NULL), +(187,94,1,'a_b',103,'Child of',68,'Parent of',1,NULL,NULL,NULL), +(188,94,1,'b_a',68,'Parent of',103,'Child of',1,NULL,NULL,NULL), +(189,95,4,'a_b',103,'Sibling of',75,'Sibling of',1,NULL,NULL,NULL), +(190,95,4,'b_a',75,'Sibling of',103,'Sibling of',1,NULL,NULL,NULL), +(191,96,8,'a_b',68,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), +(192,96,8,'b_a',127,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL), +(193,97,8,'a_b',75,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), +(194,97,8,'b_a',127,'Household Member is',75,'Household Member of',1,NULL,NULL,NULL), +(195,98,8,'a_b',103,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), +(196,98,8,'b_a',127,'Household Member is',103,'Household Member of',1,NULL,NULL,NULL), +(197,99,7,'a_b',87,'Head of Household for',127,'Head of Household is',0,NULL,NULL,NULL), +(198,99,7,'b_a',127,'Head of Household is',87,'Head of Household for',0,NULL,NULL,NULL), +(199,100,2,'a_b',68,'Spouse of',87,'Spouse of',0,NULL,NULL,NULL), +(200,100,2,'b_a',87,'Spouse of',68,'Spouse of',0,NULL,NULL,NULL), +(201,101,1,'a_b',130,'Child of',14,'Parent of',1,NULL,NULL,NULL), +(202,101,1,'b_a',14,'Parent of',130,'Child of',1,NULL,NULL,NULL), +(203,102,1,'a_b',188,'Child of',14,'Parent of',1,NULL,NULL,NULL), +(204,102,1,'b_a',14,'Parent of',188,'Child of',1,NULL,NULL,NULL), +(205,103,1,'a_b',130,'Child of',157,'Parent of',1,NULL,NULL,NULL), +(206,103,1,'b_a',157,'Parent of',130,'Child of',1,NULL,NULL,NULL), +(207,104,1,'a_b',188,'Child of',157,'Parent of',1,NULL,NULL,NULL), +(208,104,1,'b_a',157,'Parent of',188,'Child of',1,NULL,NULL,NULL), +(209,105,4,'a_b',188,'Sibling of',130,'Sibling of',1,NULL,NULL,NULL), +(210,105,4,'b_a',130,'Sibling of',188,'Sibling of',1,NULL,NULL,NULL), +(211,106,8,'a_b',157,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), +(212,106,8,'b_a',47,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL), +(213,107,8,'a_b',130,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), +(214,107,8,'b_a',47,'Household Member is',130,'Household Member of',1,NULL,NULL,NULL), +(215,108,8,'a_b',188,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), +(216,108,8,'b_a',47,'Household Member is',188,'Household Member of',1,NULL,NULL,NULL), +(217,109,7,'a_b',14,'Head of Household for',47,'Head of Household is',1,NULL,NULL,NULL), +(218,109,7,'b_a',47,'Head of Household is',14,'Head of Household for',1,NULL,NULL,NULL), +(219,110,2,'a_b',157,'Spouse of',14,'Spouse of',1,NULL,NULL,NULL), +(220,110,2,'b_a',14,'Spouse of',157,'Spouse of',1,NULL,NULL,NULL), +(221,111,1,'a_b',58,'Child of',164,'Parent of',1,NULL,NULL,NULL), +(222,111,1,'b_a',164,'Parent of',58,'Child of',1,NULL,NULL,NULL), +(223,112,1,'a_b',114,'Child of',164,'Parent of',1,NULL,NULL,NULL), +(224,112,1,'b_a',164,'Parent of',114,'Child of',1,NULL,NULL,NULL), +(225,113,1,'a_b',58,'Child of',16,'Parent of',1,NULL,NULL,NULL), +(226,113,1,'b_a',16,'Parent of',58,'Child of',1,NULL,NULL,NULL), +(227,114,1,'a_b',114,'Child of',16,'Parent of',1,NULL,NULL,NULL), +(228,114,1,'b_a',16,'Parent of',114,'Child of',1,NULL,NULL,NULL), +(229,115,4,'a_b',114,'Sibling of',58,'Sibling of',1,NULL,NULL,NULL), +(230,115,4,'b_a',58,'Sibling of',114,'Sibling of',1,NULL,NULL,NULL), +(231,116,8,'a_b',16,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), +(232,116,8,'b_a',134,'Household Member is',16,'Household Member of',1,NULL,NULL,NULL), +(233,117,8,'a_b',58,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), +(234,117,8,'b_a',134,'Household Member is',58,'Household Member of',1,NULL,NULL,NULL), +(235,118,8,'a_b',114,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), +(236,118,8,'b_a',134,'Household Member is',114,'Household Member of',1,NULL,NULL,NULL), +(237,119,7,'a_b',164,'Head of Household for',134,'Head of Household is',0,NULL,NULL,NULL), +(238,119,7,'b_a',134,'Head of Household is',164,'Head of Household for',0,NULL,NULL,NULL), +(239,120,2,'a_b',16,'Spouse of',164,'Spouse of',0,NULL,NULL,NULL), +(240,120,2,'b_a',164,'Spouse of',16,'Spouse of',0,NULL,NULL,NULL), +(241,121,1,'a_b',100,'Child of',76,'Parent of',1,NULL,NULL,NULL), +(242,121,1,'b_a',76,'Parent of',100,'Child of',1,NULL,NULL,NULL), +(243,122,1,'a_b',120,'Child of',76,'Parent of',1,NULL,NULL,NULL), +(244,122,1,'b_a',76,'Parent of',120,'Child of',1,NULL,NULL,NULL), +(245,123,1,'a_b',100,'Child of',30,'Parent of',1,NULL,NULL,NULL), +(246,123,1,'b_a',30,'Parent of',100,'Child of',1,NULL,NULL,NULL), +(247,124,1,'a_b',120,'Child of',30,'Parent of',1,NULL,NULL,NULL), +(248,124,1,'b_a',30,'Parent of',120,'Child of',1,NULL,NULL,NULL), +(249,125,4,'a_b',120,'Sibling of',100,'Sibling of',1,NULL,NULL,NULL), +(250,125,4,'b_a',100,'Sibling of',120,'Sibling of',1,NULL,NULL,NULL), +(251,126,8,'a_b',30,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), +(252,126,8,'b_a',2,'Household Member is',30,'Household Member of',1,NULL,NULL,NULL), +(253,127,8,'a_b',100,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), +(254,127,8,'b_a',2,'Household Member is',100,'Household Member of',1,NULL,NULL,NULL), +(255,128,8,'a_b',120,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), +(256,128,8,'b_a',2,'Household Member is',120,'Household Member of',1,NULL,NULL,NULL), +(257,129,7,'a_b',76,'Head of Household for',2,'Head of Household is',1,NULL,NULL,NULL), +(258,129,7,'b_a',2,'Head of Household is',76,'Head of Household for',1,NULL,NULL,NULL), +(259,130,2,'a_b',30,'Spouse of',76,'Spouse of',1,NULL,NULL,NULL), +(260,130,2,'b_a',76,'Spouse of',30,'Spouse of',1,NULL,NULL,NULL), +(261,131,1,'a_b',55,'Child of',90,'Parent of',1,NULL,NULL,NULL), +(262,131,1,'b_a',90,'Parent of',55,'Child of',1,NULL,NULL,NULL), +(263,132,1,'a_b',65,'Child of',90,'Parent of',1,NULL,NULL,NULL), +(264,132,1,'b_a',90,'Parent of',65,'Child of',1,NULL,NULL,NULL), +(265,133,1,'a_b',55,'Child of',21,'Parent of',1,NULL,NULL,NULL), +(266,133,1,'b_a',21,'Parent of',55,'Child of',1,NULL,NULL,NULL), +(267,134,1,'a_b',65,'Child of',21,'Parent of',1,NULL,NULL,NULL), +(268,134,1,'b_a',21,'Parent of',65,'Child of',1,NULL,NULL,NULL), +(269,135,4,'a_b',65,'Sibling of',55,'Sibling of',1,NULL,NULL,NULL), +(270,135,4,'b_a',55,'Sibling of',65,'Sibling of',1,NULL,NULL,NULL), +(271,136,8,'a_b',21,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), +(272,136,8,'b_a',51,'Household Member is',21,'Household Member of',1,NULL,NULL,NULL), +(273,137,8,'a_b',55,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), +(274,137,8,'b_a',51,'Household Member is',55,'Household Member of',1,NULL,NULL,NULL), +(275,138,8,'a_b',65,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), +(276,138,8,'b_a',51,'Household Member is',65,'Household Member of',1,NULL,NULL,NULL), +(277,139,7,'a_b',90,'Head of Household for',51,'Head of Household is',0,NULL,NULL,NULL), +(278,139,7,'b_a',51,'Head of Household is',90,'Head of Household for',0,NULL,NULL,NULL), +(279,140,2,'a_b',21,'Spouse of',90,'Spouse of',0,NULL,NULL,NULL), +(280,140,2,'b_a',90,'Spouse of',21,'Spouse of',0,NULL,NULL,NULL), +(281,141,1,'a_b',162,'Child of',117,'Parent of',1,NULL,NULL,NULL), +(282,141,1,'b_a',117,'Parent of',162,'Child of',1,NULL,NULL,NULL), +(283,142,1,'a_b',180,'Child of',117,'Parent of',1,NULL,NULL,NULL), +(284,142,1,'b_a',117,'Parent of',180,'Child of',1,NULL,NULL,NULL), +(285,143,1,'a_b',162,'Child of',173,'Parent of',1,NULL,NULL,NULL), +(286,143,1,'b_a',173,'Parent of',162,'Child of',1,NULL,NULL,NULL), +(287,144,1,'a_b',180,'Child of',173,'Parent of',1,NULL,NULL,NULL), +(288,144,1,'b_a',173,'Parent of',180,'Child of',1,NULL,NULL,NULL), +(289,145,4,'a_b',180,'Sibling of',162,'Sibling of',1,NULL,NULL,NULL), +(290,145,4,'b_a',162,'Sibling of',180,'Sibling of',1,NULL,NULL,NULL), +(291,146,8,'a_b',173,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), +(292,146,8,'b_a',53,'Household Member is',173,'Household Member of',1,NULL,NULL,NULL), +(293,147,8,'a_b',162,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), +(294,147,8,'b_a',53,'Household Member is',162,'Household Member of',1,NULL,NULL,NULL), +(295,148,8,'a_b',180,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), +(296,148,8,'b_a',53,'Household Member is',180,'Household Member of',1,NULL,NULL,NULL), +(297,149,7,'a_b',117,'Head of Household for',53,'Head of Household is',1,NULL,NULL,NULL), +(298,149,7,'b_a',53,'Head of Household is',117,'Head of Household for',1,NULL,NULL,NULL), +(299,150,2,'a_b',173,'Spouse of',117,'Spouse of',1,NULL,NULL,NULL), +(300,150,2,'b_a',117,'Spouse of',173,'Spouse of',1,NULL,NULL,NULL), +(301,151,1,'a_b',175,'Child of',199,'Parent of',1,NULL,NULL,NULL), +(302,151,1,'b_a',199,'Parent of',175,'Child of',1,NULL,NULL,NULL), +(303,152,1,'a_b',80,'Child of',199,'Parent of',1,NULL,NULL,NULL), +(304,152,1,'b_a',199,'Parent of',80,'Child of',1,NULL,NULL,NULL), +(305,153,1,'a_b',175,'Child of',105,'Parent of',1,NULL,NULL,NULL), +(306,153,1,'b_a',105,'Parent of',175,'Child of',1,NULL,NULL,NULL), +(307,154,1,'a_b',80,'Child of',105,'Parent of',1,NULL,NULL,NULL), +(308,154,1,'b_a',105,'Parent of',80,'Child of',1,NULL,NULL,NULL), +(309,155,4,'a_b',80,'Sibling of',175,'Sibling of',1,NULL,NULL,NULL), +(310,155,4,'b_a',175,'Sibling of',80,'Sibling of',1,NULL,NULL,NULL), +(311,156,8,'a_b',105,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), +(312,156,8,'b_a',41,'Household Member is',105,'Household Member of',1,NULL,NULL,NULL), +(313,157,8,'a_b',175,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), +(314,157,8,'b_a',41,'Household Member is',175,'Household Member of',1,NULL,NULL,NULL), +(315,158,8,'a_b',80,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), +(316,158,8,'b_a',41,'Household Member is',80,'Household Member of',1,NULL,NULL,NULL), +(317,159,7,'a_b',199,'Head of Household for',41,'Head of Household is',0,NULL,NULL,NULL), +(318,159,7,'b_a',41,'Head of Household is',199,'Head of Household for',0,NULL,NULL,NULL), +(319,160,2,'a_b',105,'Spouse of',199,'Spouse of',0,NULL,NULL,NULL), +(320,160,2,'b_a',199,'Spouse of',105,'Spouse of',0,NULL,NULL,NULL), +(321,161,1,'a_b',29,'Child of',104,'Parent of',1,NULL,NULL,NULL), +(322,161,1,'b_a',104,'Parent of',29,'Child of',1,NULL,NULL,NULL), +(323,162,1,'a_b',160,'Child of',104,'Parent of',1,NULL,NULL,NULL), +(324,162,1,'b_a',104,'Parent of',160,'Child of',1,NULL,NULL,NULL), +(325,163,1,'a_b',29,'Child of',57,'Parent of',1,NULL,NULL,NULL), +(326,163,1,'b_a',57,'Parent of',29,'Child of',1,NULL,NULL,NULL), +(327,164,1,'a_b',160,'Child of',57,'Parent of',1,NULL,NULL,NULL), +(328,164,1,'b_a',57,'Parent of',160,'Child of',1,NULL,NULL,NULL), +(329,165,4,'a_b',160,'Sibling of',29,'Sibling of',1,NULL,NULL,NULL), +(330,165,4,'b_a',29,'Sibling of',160,'Sibling of',1,NULL,NULL,NULL), +(331,166,8,'a_b',57,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), +(332,166,8,'b_a',28,'Household Member is',57,'Household Member of',1,NULL,NULL,NULL), +(333,167,8,'a_b',29,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), +(334,167,8,'b_a',28,'Household Member is',29,'Household Member of',1,NULL,NULL,NULL), +(335,168,8,'a_b',160,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), +(336,168,8,'b_a',28,'Household Member is',160,'Household Member of',1,NULL,NULL,NULL), +(337,169,7,'a_b',104,'Head of Household for',28,'Head of Household is',1,NULL,NULL,NULL), +(338,169,7,'b_a',28,'Head of Household is',104,'Head of Household for',1,NULL,NULL,NULL), +(339,170,2,'a_b',57,'Spouse of',104,'Spouse of',1,NULL,NULL,NULL), +(340,170,2,'b_a',104,'Spouse of',57,'Spouse of',1,NULL,NULL,NULL), +(341,171,1,'a_b',92,'Child of',8,'Parent of',1,NULL,NULL,NULL), +(342,171,1,'b_a',8,'Parent of',92,'Child of',1,NULL,NULL,NULL), +(343,172,1,'a_b',48,'Child of',8,'Parent of',1,NULL,NULL,NULL), +(344,172,1,'b_a',8,'Parent of',48,'Child of',1,NULL,NULL,NULL), +(345,173,1,'a_b',92,'Child of',171,'Parent of',1,NULL,NULL,NULL), +(346,173,1,'b_a',171,'Parent of',92,'Child of',1,NULL,NULL,NULL), +(347,174,1,'a_b',48,'Child of',171,'Parent of',1,NULL,NULL,NULL), +(348,174,1,'b_a',171,'Parent of',48,'Child of',1,NULL,NULL,NULL), +(349,175,4,'a_b',48,'Sibling of',92,'Sibling of',1,NULL,NULL,NULL), +(350,175,4,'b_a',92,'Sibling of',48,'Sibling of',1,NULL,NULL,NULL), +(351,176,8,'a_b',171,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), +(352,176,8,'b_a',42,'Household Member is',171,'Household Member of',1,NULL,NULL,NULL), +(353,177,8,'a_b',92,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), +(354,177,8,'b_a',42,'Household Member is',92,'Household Member of',1,NULL,NULL,NULL), +(355,178,8,'a_b',48,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), +(356,178,8,'b_a',42,'Household Member is',48,'Household Member of',1,NULL,NULL,NULL), +(357,179,7,'a_b',8,'Head of Household for',42,'Head of Household is',1,NULL,NULL,NULL), +(358,179,7,'b_a',42,'Head of Household is',8,'Head of Household for',1,NULL,NULL,NULL), +(359,180,2,'a_b',171,'Spouse of',8,'Spouse of',1,NULL,NULL,NULL), +(360,180,2,'b_a',8,'Spouse of',171,'Spouse of',1,NULL,NULL,NULL), +(361,181,1,'a_b',161,'Child of',138,'Parent of',1,NULL,NULL,NULL), +(362,181,1,'b_a',138,'Parent of',161,'Child of',1,NULL,NULL,NULL), +(363,182,1,'a_b',54,'Child of',138,'Parent of',1,NULL,NULL,NULL), +(364,182,1,'b_a',138,'Parent of',54,'Child of',1,NULL,NULL,NULL), +(365,183,1,'a_b',161,'Child of',89,'Parent of',1,NULL,NULL,NULL), +(366,183,1,'b_a',89,'Parent of',161,'Child of',1,NULL,NULL,NULL), +(367,184,1,'a_b',54,'Child of',89,'Parent of',1,NULL,NULL,NULL), +(368,184,1,'b_a',89,'Parent of',54,'Child of',1,NULL,NULL,NULL), +(369,185,4,'a_b',54,'Sibling of',161,'Sibling of',1,NULL,NULL,NULL), +(370,185,4,'b_a',161,'Sibling of',54,'Sibling of',1,NULL,NULL,NULL), +(371,186,8,'a_b',89,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), +(372,186,8,'b_a',111,'Household Member is',89,'Household Member of',1,NULL,NULL,NULL), +(373,187,8,'a_b',161,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), +(374,187,8,'b_a',111,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL), +(375,188,8,'a_b',54,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), +(376,188,8,'b_a',111,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), +(377,189,7,'a_b',138,'Head of Household for',111,'Head of Household is',1,NULL,NULL,NULL), +(378,189,7,'b_a',111,'Head of Household is',138,'Head of Household for',1,NULL,NULL,NULL), +(379,190,2,'a_b',89,'Spouse of',138,'Spouse of',1,NULL,NULL,NULL), +(380,190,2,'b_a',138,'Spouse of',89,'Spouse of',1,NULL,NULL,NULL), +(381,191,1,'a_b',167,'Child of',88,'Parent of',1,NULL,NULL,NULL), +(382,191,1,'b_a',88,'Parent of',167,'Child of',1,NULL,NULL,NULL), +(383,192,1,'a_b',38,'Child of',88,'Parent of',1,NULL,NULL,NULL), +(384,192,1,'b_a',88,'Parent of',38,'Child of',1,NULL,NULL,NULL), +(385,193,1,'a_b',167,'Child of',50,'Parent of',1,NULL,NULL,NULL), +(386,193,1,'b_a',50,'Parent of',167,'Child of',1,NULL,NULL,NULL), +(387,194,1,'a_b',38,'Child of',50,'Parent of',1,NULL,NULL,NULL), +(388,194,1,'b_a',50,'Parent of',38,'Child of',1,NULL,NULL,NULL), +(389,195,4,'a_b',38,'Sibling of',167,'Sibling of',1,NULL,NULL,NULL), +(390,195,4,'b_a',167,'Sibling of',38,'Sibling of',1,NULL,NULL,NULL), +(391,196,8,'a_b',50,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), +(392,196,8,'b_a',183,'Household Member is',50,'Household Member of',1,NULL,NULL,NULL), +(393,197,8,'a_b',167,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), +(394,197,8,'b_a',183,'Household Member is',167,'Household Member of',1,NULL,NULL,NULL), +(395,198,8,'a_b',38,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), +(396,198,8,'b_a',183,'Household Member is',38,'Household Member of',1,NULL,NULL,NULL), +(397,199,7,'a_b',88,'Head of Household for',183,'Head of Household is',1,NULL,NULL,NULL), +(398,199,7,'b_a',183,'Head of Household is',88,'Head of Household for',1,NULL,NULL,NULL), +(399,200,2,'a_b',50,'Spouse of',88,'Spouse of',1,NULL,NULL,NULL), +(400,200,2,'b_a',88,'Spouse of',50,'Spouse of',1,NULL,NULL,NULL), +(401,201,5,'a_b',18,'Employee of',3,'Employer of',1,NULL,NULL,NULL), +(402,201,5,'b_a',3,'Employer of',18,'Employee of',1,NULL,NULL,NULL), +(403,202,5,'a_b',87,'Employee of',34,'Employer of',1,NULL,NULL,NULL), +(404,202,5,'b_a',34,'Employer of',87,'Employee of',1,NULL,NULL,NULL), +(405,203,5,'a_b',91,'Employee of',46,'Employer of',1,NULL,NULL,NULL), +(406,203,5,'b_a',46,'Employer of',91,'Employee of',1,NULL,NULL,NULL), +(407,204,5,'a_b',97,'Employee of',109,'Employer of',1,NULL,NULL,NULL), +(408,204,5,'b_a',109,'Employer of',97,'Employee of',1,NULL,NULL,NULL), +(409,205,5,'a_b',162,'Employee of',131,'Employer of',1,NULL,NULL,NULL), +(410,205,5,'b_a',131,'Employer of',162,'Employee of',1,NULL,NULL,NULL), +(411,206,5,'a_b',143,'Employee of',136,'Employer of',1,NULL,NULL,NULL), +(412,206,5,'b_a',136,'Employer of',143,'Employee of',1,NULL,NULL,NULL), +(413,207,5,'a_b',30,'Employee of',144,'Employer of',1,NULL,NULL,NULL), +(414,207,5,'b_a',144,'Employer of',30,'Employee of',1,NULL,NULL,NULL), +(415,208,5,'a_b',68,'Employee of',149,'Employer of',1,NULL,NULL,NULL), +(416,208,5,'b_a',149,'Employer of',68,'Employee of',1,NULL,NULL,NULL), +(417,209,5,'a_b',58,'Employee of',155,'Employer of',1,NULL,NULL,NULL), +(418,209,5,'b_a',155,'Employer of',58,'Employee of',1,NULL,NULL,NULL), +(419,210,5,'a_b',39,'Employee of',156,'Employer of',1,NULL,NULL,NULL), +(420,210,5,'b_a',156,'Employer of',39,'Employee of',1,NULL,NULL,NULL), +(421,211,5,'a_b',60,'Employee of',158,'Employer of',1,NULL,NULL,NULL), +(422,211,5,'b_a',158,'Employer of',60,'Employee of',1,NULL,NULL,NULL), +(423,212,5,'a_b',56,'Employee of',181,'Employer of',1,NULL,NULL,NULL), +(424,212,5,'b_a',181,'Employer of',56,'Employee of',1,NULL,NULL,NULL), +(425,213,5,'a_b',125,'Employee of',191,'Employer of',1,NULL,NULL,NULL), +(426,213,5,'b_a',191,'Employer of',125,'Employee of',1,NULL,NULL,NULL), +(427,214,5,'a_b',27,'Employee of',196,'Employer of',1,NULL,NULL,NULL), +(428,214,5,'b_a',196,'Employer of',27,'Employee of',1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_relationship_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -7891,15 +7924,15 @@ LOCK TABLES `civicrm_relationship_type` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_type` DISABLE KEYS */; INSERT INTO `civicrm_relationship_type` (`id`, `name_a_b`, `label_a_b`, `name_b_a`, `label_b_a`, `description`, `contact_type_a`, `contact_type_b`, `contact_sub_type_a`, `contact_sub_type_b`, `is_reserved`, `is_active`) VALUES (1,'Child of','Child of','Parent of','Parent of','Parent/child relationship.','Individual','Individual',NULL,NULL,0,1), - (2,'Spouse of','Spouse of','Spouse of','Spouse of','Spousal relationship.','Individual','Individual',NULL,NULL,0,1), - (3,'Partner of','Partner of','Partner of','Partner of','Partner relationship.','Individual','Individual',NULL,NULL,0,1), - (4,'Sibling of','Sibling of','Sibling of','Sibling of','Sibling relationship.','Individual','Individual',NULL,NULL,0,1), - (5,'Employee of','Employee of','Employer of','Employer of','Employment relationship.','Individual','Organization',NULL,NULL,1,1), - (6,'Volunteer for','Volunteer for','Volunteer is','Volunteer is','Volunteer relationship.','Individual','Organization',NULL,NULL,0,1), - (7,'Head of Household for','Head of Household for','Head of Household is','Head of Household is','Head of household.','Individual','Household',NULL,NULL,1,1), - (8,'Household Member of','Household Member of','Household Member is','Household Member is','Household membership.','Individual','Household',NULL,NULL,1,1), - (9,'Case Coordinator is','Case Coordinator is','Case Coordinator','Case Coordinator','Case Coordinator','Individual','Individual',NULL,NULL,0,1), - (10,'Supervised by','Supervised by','Supervisor','Supervisor','Immediate workplace supervisor','Individual','Individual',NULL,NULL,0,1); +(2,'Spouse of','Spouse of','Spouse of','Spouse of','Spousal relationship.','Individual','Individual',NULL,NULL,0,1), +(3,'Partner of','Partner of','Partner of','Partner of','Partner relationship.','Individual','Individual',NULL,NULL,0,1), +(4,'Sibling of','Sibling of','Sibling of','Sibling of','Sibling relationship.','Individual','Individual',NULL,NULL,0,1), +(5,'Employee of','Employee of','Employer of','Employer of','Employment relationship.','Individual','Organization',NULL,NULL,1,1), +(6,'Volunteer for','Volunteer for','Volunteer is','Volunteer is','Volunteer relationship.','Individual','Organization',NULL,NULL,0,1), +(7,'Head of Household for','Head of Household for','Head of Household is','Head of Household is','Head of household.','Individual','Household',NULL,NULL,1,1), +(8,'Household Member of','Household Member of','Household Member is','Household Member is','Household membership.','Individual','Household',NULL,NULL,1,1), +(9,'Case Coordinator is','Case Coordinator is','Case Coordinator','Case Coordinator','Case Coordinator','Individual','Individual',NULL,NULL,0,1), +(10,'Supervised by','Supervised by','Supervisor','Supervisor','Immediate workplace supervisor','Individual','Individual',NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_relationship_type` ENABLE KEYS */; UNLOCK TABLES; @@ -7911,40 +7944,40 @@ LOCK TABLES `civicrm_report_instance` WRITE; /*!40000 ALTER TABLE `civicrm_report_instance` DISABLE KEYS */; INSERT INTO `civicrm_report_instance` (`id`, `domain_id`, `title`, `report_id`, `name`, `args`, `description`, `permission`, `grouprole`, `form_values`, `is_active`, `created_id`, `owner_id`, `email_subject`, `email_to`, `email_cc`, `header`, `footer`, `navigation_id`, `drilldown_id`, `is_reserved`) VALUES (1,1,'Constituent Summary','contact/summary',NULL,NULL,'Provides a list of address and telephone information for constituent records in your system.','view all contacts',NULL,'a:31:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:14:\"street_address\";s:1:\"1\";s:4:\"city\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:92:\"Provides a list of address and telephone information for constituent records in your system.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','view all contacts',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (3,1,'Activity Details','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','view all contacts',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','view all contacts',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','view all contacts',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (6,1,'Activity Summary','activitySummary',NULL,NULL,'Shows activity statistics by type / date','view all contacts',NULL,'a:26:{s:6:\"fields\";a:4:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:8:\"duration\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:27:\"activity_date_time_relative\";s:0:\"\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:14:\"priority_id_op\";s:2:\"in\";s:17:\"priority_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"group_bys\";a:2:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:18:\"activity_date_time\";s:5:\"MONTH\";}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:16:\"activity_type_id\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:40:\"Shows activity statistics by type / date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (7,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (8,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:56:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:7:\"note_op\";s:3:\"has\";s:10:\"note_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:194:\"Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (9,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (10,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.','access CiviContribute',NULL,'a:16:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (11,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.','access CiviContribute',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:22:\"last_year_total_amount\";s:1:\"1\";s:23:\"civicrm_life_time_total\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (12,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (13,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (14,1,'Top Donors','contribute/topDonor',NULL,NULL,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (15,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (16,1,'Contribution Aggregate by Relationship','contribute/history',NULL,NULL,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.','access CiviContribute',NULL,'a:41:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:17:\"civicrm_upto_2009\";s:1:\"1\";i:2010;s:1:\"1\";i:2011;s:1:\"1\";i:2012;s:1:\"1\";i:2013;s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"in\";s:26:\"relationship_type_id_value\";a:0:{}s:12:\"this_year_op\";s:2:\"eq\";s:15:\"this_year_value\";s:0:\"\";s:13:\"other_year_op\";s:2:\"eq\";s:16:\"other_year_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:127:\"List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (17,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (18,1,'Pledge Detail','pledge/detail',NULL,NULL,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (19,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (20,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:40:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:21:\"debit_accounting_code\";s:1:\"1\";s:22:\"credit_accounting_code\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:9:\"trxn_date\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:24:\"debit_accounting_code_op\";s:2:\"in\";s:27:\"debit_accounting_code_value\";a:0:{}s:25:\"credit_accounting_code_op\";s:2:\"in\";s:28:\"credit_accounting_code_value\";a:0:{}s:13:\"debit_name_op\";s:2:\"in\";s:16:\"debit_name_value\";a:0:{}s:14:\"credit_name_op\";s:2:\"in\";s:17:\"credit_name_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:18:\"trxn_date_relative\";s:1:\"0\";s:14:\"trxn_date_from\";s:0:\"\";s:12:\"trxn_date_to\";s:0:\"\";s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:11:\"description\";s:133:\"Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (21,1,'Recurring Contributions','contribute/recur',NULL,NULL,'Provides information about the status of recurring contributions','access CiviContribute',NULL,'a:39:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:18:\"frequency_interval\";s:1:\"1\";s:14:\"frequency_unit\";s:1:\"1\";s:12:\"installments\";s:1:\"1\";s:8:\"end_date\";s:1:\"1\";}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"5\";}s:11:\"currency_op\";s:2:\"in\";s:14:\"currency_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:17:\"frequency_unit_op\";s:2:\"in\";s:20:\"frequency_unit_value\";a:0:{}s:22:\"frequency_interval_min\";s:0:\"\";s:22:\"frequency_interval_max\";s:0:\"\";s:21:\"frequency_interval_op\";s:3:\"lte\";s:24:\"frequency_interval_value\";s:0:\"\";s:16:\"installments_min\";s:0:\"\";s:16:\"installments_max\";s:0:\"\";s:15:\"installments_op\";s:3:\"lte\";s:18:\"installments_value\";s:0:\"\";s:19:\"start_date_relative\";s:0:\"\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:37:\"next_sched_contribution_date_relative\";s:0:\"\";s:33:\"next_sched_contribution_date_from\";s:0:\"\";s:31:\"next_sched_contribution_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:0:\"\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:28:\"calculated_end_date_relative\";s:0:\"\";s:24:\"calculated_end_date_from\";s:0:\"\";s:22:\"calculated_end_date_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:41:\"Shows all pending recurring contributions\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:14:\"addToDashboard\";s:1:\"1\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (22,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by Type and Member Since.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:59:\"Provides a summary of memberships by Type and Member Since.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (23,1,'Membership Details','member/detail',NULL,NULL,'Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:151:\"Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (24,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (25,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (26,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (27,1,'Event Income Summary','event/summary',NULL,NULL,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (28,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (29,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (30,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (31,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:17:\"unique_open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (32,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (33,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (34,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), - (35,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); +(2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','view all contacts',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(3,1,'Activity Details','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','view all contacts',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','view all contacts',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','view all contacts',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(6,1,'Activity Summary','activitySummary',NULL,NULL,'Shows activity statistics by type / date','view all contacts',NULL,'a:26:{s:6:\"fields\";a:4:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:8:\"duration\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:27:\"activity_date_time_relative\";s:0:\"\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:14:\"priority_id_op\";s:2:\"in\";s:17:\"priority_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"group_bys\";a:2:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:18:\"activity_date_time\";s:5:\"MONTH\";}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:16:\"activity_type_id\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:40:\"Shows activity statistics by type / date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(7,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(8,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:56:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:7:\"note_op\";s:3:\"has\";s:10:\"note_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:194:\"Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(9,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(10,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.','access CiviContribute',NULL,'a:16:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(11,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.','access CiviContribute',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:22:\"last_year_total_amount\";s:1:\"1\";s:23:\"civicrm_life_time_total\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(12,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(13,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(14,1,'Top Donors','contribute/topDonor',NULL,NULL,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(15,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(16,1,'Contribution Aggregate by Relationship','contribute/history',NULL,NULL,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.','access CiviContribute',NULL,'a:41:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:17:\"civicrm_upto_2009\";s:1:\"1\";i:2010;s:1:\"1\";i:2011;s:1:\"1\";i:2012;s:1:\"1\";i:2013;s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"in\";s:26:\"relationship_type_id_value\";a:0:{}s:12:\"this_year_op\";s:2:\"eq\";s:15:\"this_year_value\";s:0:\"\";s:13:\"other_year_op\";s:2:\"eq\";s:16:\"other_year_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:127:\"List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(17,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(18,1,'Pledge Detail','pledge/detail',NULL,NULL,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(19,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(20,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:40:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:21:\"debit_accounting_code\";s:1:\"1\";s:22:\"credit_accounting_code\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:9:\"trxn_date\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:24:\"debit_accounting_code_op\";s:2:\"in\";s:27:\"debit_accounting_code_value\";a:0:{}s:25:\"credit_accounting_code_op\";s:2:\"in\";s:28:\"credit_accounting_code_value\";a:0:{}s:13:\"debit_name_op\";s:2:\"in\";s:16:\"debit_name_value\";a:0:{}s:14:\"credit_name_op\";s:2:\"in\";s:17:\"credit_name_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:18:\"trxn_date_relative\";s:1:\"0\";s:14:\"trxn_date_from\";s:0:\"\";s:12:\"trxn_date_to\";s:0:\"\";s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:11:\"description\";s:133:\"Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(21,1,'Recurring Contributions','contribute/recur',NULL,NULL,'Provides information about the status of recurring contributions','access CiviContribute',NULL,'a:39:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:18:\"frequency_interval\";s:1:\"1\";s:14:\"frequency_unit\";s:1:\"1\";s:12:\"installments\";s:1:\"1\";s:8:\"end_date\";s:1:\"1\";}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"5\";}s:11:\"currency_op\";s:2:\"in\";s:14:\"currency_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:17:\"frequency_unit_op\";s:2:\"in\";s:20:\"frequency_unit_value\";a:0:{}s:22:\"frequency_interval_min\";s:0:\"\";s:22:\"frequency_interval_max\";s:0:\"\";s:21:\"frequency_interval_op\";s:3:\"lte\";s:24:\"frequency_interval_value\";s:0:\"\";s:16:\"installments_min\";s:0:\"\";s:16:\"installments_max\";s:0:\"\";s:15:\"installments_op\";s:3:\"lte\";s:18:\"installments_value\";s:0:\"\";s:19:\"start_date_relative\";s:0:\"\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:37:\"next_sched_contribution_date_relative\";s:0:\"\";s:33:\"next_sched_contribution_date_from\";s:0:\"\";s:31:\"next_sched_contribution_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:0:\"\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:28:\"calculated_end_date_relative\";s:0:\"\";s:24:\"calculated_end_date_from\";s:0:\"\";s:22:\"calculated_end_date_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:41:\"Shows all pending recurring contributions\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:14:\"addToDashboard\";s:1:\"1\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(22,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by Type and Member Since.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:59:\"Provides a summary of memberships by Type and Member Since.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(23,1,'Membership Details','member/detail',NULL,NULL,'Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:151:\"Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(24,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(25,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(26,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(27,1,'Event Income Summary','event/summary',NULL,NULL,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(28,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(29,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(30,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(31,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:17:\"unique_open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(32,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(33,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(34,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), +(35,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_report_instance` ENABLE KEYS */; UNLOCK TABLES; @@ -7955,15 +7988,15 @@ UNLOCK TABLES; LOCK TABLES `civicrm_saved_search` WRITE; /*!40000 ALTER TABLE `civicrm_saved_search` DISABLE KEYS */; INSERT INTO `civicrm_saved_search` (`id`, `name`, `label`, `form_values`, `mapping_id`, `search_custom_id`, `api_entity`, `api_params`, `created_id`, `modified_id`, `expires_date`, `created_date`, `modified_date`, `description`, `is_template`) VALUES - (1,'Administer_Campaigns','Administer Campaigns',NULL,NULL,NULL,'Campaign','{\"version\":4,\"select\":[\"id\",\"title\",\"description\",\"is_active\",\"start_date\",\"end_date\",\"campaign_type_id:label\",\"status_id:label\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (2,'Administer_Petitions','Administer Petitions',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (3,'Administer_Survey_Options','Administer Survey Options',NULL,NULL,NULL,'OptionValue','{\"version\":4,\"select\":[\"label\",\"value\",\"filter\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (4,'Administer_Surveys','Administer Surveys',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"activity_type_id:label\",\"release_frequency\",\"default_number_of_contacts\",\"max_number_of_contacts\",\"is_active\",\"is_default\",\"result_id:label\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"!=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (5,'Email_Bounce_History','Email Bounce History',NULL,NULL,NULL,'MailingEventBounce','{\"version\":4,\"select\":[\"time_stamp\",\"bounce_type_id:label\",\"bounce_reason\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[[\"MailingEventQueue AS MailingEventBounce_MailingEventQueue_event_queue_id_01\",\"INNER\",[\"event_queue_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01.id\"]],[\"MailingJob AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01.job_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.id\"]],[\"Mailing AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.mailing_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (6,'Site_Email_Addresses','Site Email Addresses',NULL,NULL,NULL,'SiteEmailAddress','{\"version\":4,\"select\":[\"display_name\",\"email\",\"description\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (7,'Contact_Summary_Notes','Contact Summary Notes',NULL,NULL,NULL,'Note','{\"version\":4,\"select\":[\"id\",\"subject\",\"note\",\"note_date\",\"modified_date\",\"contact_id.sort_name\",\"GROUP_CONCAT(UNIQUE Note_EntityFile_File_01.file_name) AS GROUP_CONCAT_Note_EntityFile_File_01_file_name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[\"id\"],\"join\":[[\"File AS Note_EntityFile_File_01\",\"LEFT\",\"EntityFile\",[\"id\",\"=\",\"Note_EntityFile_File_01.entity_id\"],[\"Note_EntityFile_File_01.entity_table\",\"=\",\"\'civicrm_note\'\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (8,'Contact_Summary_Relationships','Contact Summary Relationships',NULL,NULL,NULL,'RelationshipCache','{\"version\":4,\"select\":[\"near_relation:label\",\"RelationshipCache_Contact_far_contact_id_01.display_name\",\"start_date\",\"end_date\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.city\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.state_province_id:label\",\"RelationshipCache_Contact_far_contact_id_01.email_primary.email\",\"RelationshipCache_Contact_far_contact_id_01.phone_primary.phone\",\"permission_near_to_far:label\",\"permission_far_to_near:label\",\"is_active\"],\"orderBy\":[],\"where\":[[\"RelationshipCache_Contact_far_contact_id_01.is_deleted\",\"=\",false]],\"groupBy\":[],\"join\":[[\"Contact AS RelationshipCache_Contact_far_contact_id_01\",\"LEFT\",[\"far_contact_id\",\"=\",\"RelationshipCache_Contact_far_contact_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0), - (9,'Administer_Site_Tokens','Administer Site Tokens',NULL,NULL,NULL,'SiteToken','{\"version\":4,\"select\":[\"id\",\"is_active\",\"name\",\"label\",\"is_reserved\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-07 04:13:15','2025-02-07 04:13:15',NULL,0); + (1,'Administer_Campaigns','Administer Campaigns',NULL,NULL,NULL,'Campaign','{\"version\":4,\"select\":[\"id\",\"title\",\"description\",\"is_active\",\"start_date\",\"end_date\",\"campaign_type_id:label\",\"status_id:label\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), +(2,'Administer_Petitions','Administer Petitions',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), +(3,'Administer_Survey_Options','Administer Survey Options',NULL,NULL,NULL,'OptionValue','{\"version\":4,\"select\":[\"label\",\"value\",\"filter\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), +(4,'Administer_Surveys','Administer Surveys',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"activity_type_id:label\",\"release_frequency\",\"default_number_of_contacts\",\"max_number_of_contacts\",\"is_active\",\"is_default\",\"result_id:label\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"!=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), +(5,'Email_Bounce_History','Email Bounce History',NULL,NULL,NULL,'MailingEventBounce','{\"version\":4,\"select\":[\"time_stamp\",\"bounce_type_id:label\",\"bounce_reason\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[[\"MailingEventQueue AS MailingEventBounce_MailingEventQueue_event_queue_id_01\",\"INNER\",[\"event_queue_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01.id\"]],[\"MailingJob AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01.job_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.id\"]],[\"Mailing AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.mailing_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), +(6,'Site_Email_Addresses','Site Email Addresses',NULL,NULL,NULL,'SiteEmailAddress','{\"version\":4,\"select\":[\"display_name\",\"email\",\"description\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), +(7,'Contact_Summary_Notes','Contact Summary Notes',NULL,NULL,NULL,'Note','{\"version\":4,\"select\":[\"id\",\"subject\",\"note\",\"note_date\",\"modified_date\",\"contact_id.sort_name\",\"GROUP_CONCAT(UNIQUE Note_EntityFile_File_01.file_name) AS GROUP_CONCAT_Note_EntityFile_File_01_file_name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[\"id\"],\"join\":[[\"File AS Note_EntityFile_File_01\",\"LEFT\",\"EntityFile\",[\"id\",\"=\",\"Note_EntityFile_File_01.entity_id\"],[\"Note_EntityFile_File_01.entity_table\",\"=\",\"\'civicrm_note\'\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), +(8,'Contact_Summary_Relationships','Contact Summary Relationships',NULL,NULL,NULL,'RelationshipCache','{\"version\":4,\"select\":[\"near_relation:label\",\"RelationshipCache_Contact_far_contact_id_01.display_name\",\"start_date\",\"end_date\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.city\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.state_province_id:label\",\"RelationshipCache_Contact_far_contact_id_01.email_primary.email\",\"RelationshipCache_Contact_far_contact_id_01.phone_primary.phone\",\"permission_near_to_far:label\",\"permission_far_to_near:label\",\"is_active\"],\"orderBy\":[],\"where\":[[\"RelationshipCache_Contact_far_contact_id_01.is_deleted\",\"=\",false]],\"groupBy\":[],\"join\":[[\"Contact AS RelationshipCache_Contact_far_contact_id_01\",\"LEFT\",[\"far_contact_id\",\"=\",\"RelationshipCache_Contact_far_contact_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), +(9,'Administer_Site_Tokens','Administer Site Tokens',NULL,NULL,NULL,'SiteToken','{\"version\":4,\"select\":[\"id\",\"is_active\",\"name\",\"label\",\"is_reserved\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0); /*!40000 ALTER TABLE `civicrm_saved_search` ENABLE KEYS */; UNLOCK TABLES; @@ -7994,7 +8027,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_site_token` WRITE; /*!40000 ALTER TABLE `civicrm_site_token` DISABLE KEYS */; INSERT INTO `civicrm_site_token` (`id`, `domain_id`, `name`, `label`, `body_html`, `body_text`, `is_active`, `is_reserved`, `created_id`, `modified_id`, `modified_date`) VALUES - (1,1,'message_header','Message Header','
','Sample Header for TEXT formatted content.',1,1,NULL,NULL,'2025-02-07 04:13:13'); + (1,1,'message_header','Message Header','
','Sample Header for TEXT formatted content.',1,1,NULL,NULL,'2025-02-11 21:13:43'); /*!40000 ALTER TABLE `civicrm_site_token` ENABLE KEYS */; UNLOCK TABLES; @@ -8015,4091 +8048,4091 @@ LOCK TABLES `civicrm_state_province` WRITE; /*!40000 ALTER TABLE `civicrm_state_province` DISABLE KEYS */; INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id`, `is_active`) VALUES (1000,'Alabama','AL',1228,1), - (1001,'Alaska','AK',1228,1), - (1002,'Arizona','AZ',1228,1), - (1003,'Arkansas','AR',1228,1), - (1004,'California','CA',1228,1), - (1005,'Colorado','CO',1228,1), - (1006,'Connecticut','CT',1228,1), - (1007,'Delaware','DE',1228,1), - (1008,'Florida','FL',1228,1), - (1009,'Georgia','GA',1228,1), - (1010,'Hawaii','HI',1228,1), - (1011,'Idaho','ID',1228,1), - (1012,'Illinois','IL',1228,1), - (1013,'Indiana','IN',1228,1), - (1014,'Iowa','IA',1228,1), - (1015,'Kansas','KS',1228,1), - (1016,'Kentucky','KY',1228,1), - (1017,'Louisiana','LA',1228,1), - (1018,'Maine','ME',1228,1), - (1019,'Maryland','MD',1228,1), - (1020,'Massachusetts','MA',1228,1), - (1021,'Michigan','MI',1228,1), - (1022,'Minnesota','MN',1228,1), - (1023,'Mississippi','MS',1228,1), - (1024,'Missouri','MO',1228,1), - (1025,'Montana','MT',1228,1), - (1026,'Nebraska','NE',1228,1), - (1027,'Nevada','NV',1228,1), - (1028,'New Hampshire','NH',1228,1), - (1029,'New Jersey','NJ',1228,1), - (1030,'New Mexico','NM',1228,1), - (1031,'New York','NY',1228,1), - (1032,'North Carolina','NC',1228,1), - (1033,'North Dakota','ND',1228,1), - (1034,'Ohio','OH',1228,1), - (1035,'Oklahoma','OK',1228,1), - (1036,'Oregon','OR',1228,1), - (1037,'Pennsylvania','PA',1228,1), - (1038,'Rhode Island','RI',1228,1), - (1039,'South Carolina','SC',1228,1), - (1040,'South Dakota','SD',1228,1), - (1041,'Tennessee','TN',1228,1), - (1042,'Texas','TX',1228,1), - (1043,'Utah','UT',1228,1), - (1044,'Vermont','VT',1228,1), - (1045,'Virginia','VA',1228,1), - (1046,'Washington','WA',1228,1), - (1047,'West Virginia','WV',1228,1), - (1048,'Wisconsin','WI',1228,1), - (1049,'Wyoming','WY',1228,1), - (1050,'District of Columbia','DC',1228,1), - (1051,'American Samoa','AS',1228,1), - (1052,'Guam','GU',1228,1), - (1053,'Northern Mariana Islands','MP',1228,1), - (1054,'Puerto Rico','PR',1228,1), - (1055,'Virgin Islands','VI',1228,1), - (1056,'United States Minor Outlying Islands','UM',1228,1), - (1057,'Armed Forces Europe','AE',1228,1), - (1058,'Armed Forces Americas','AA',1228,1), - (1059,'Armed Forces Pacific','AP',1228,1), - (1060,'Alberta','AB',1039,1), - (1061,'British Columbia','BC',1039,1), - (1062,'Manitoba','MB',1039,1), - (1063,'New Brunswick','NB',1039,1), - (1064,'Newfoundland and Labrador','NL',1039,1), - (1065,'Northwest Territories','NT',1039,1), - (1066,'Nova Scotia','NS',1039,1), - (1067,'Nunavut','NU',1039,1), - (1068,'Ontario','ON',1039,1), - (1069,'Prince Edward Island','PE',1039,1), - (1070,'Quebec','QC',1039,1), - (1071,'Saskatchewan','SK',1039,1), - (1072,'Yukon Territory','YT',1039,1), - (1073,'Maharashtra','MH',1101,1), - (1074,'Karnataka','KA',1101,1), - (1075,'Andhra Pradesh','AP',1101,1), - (1076,'Arunachal Pradesh','AR',1101,1), - (1077,'Assam','AS',1101,1), - (1078,'Bihar','BR',1101,1), - (1079,'Chhattisgarh','CG',1101,1), - (1080,'Goa','GA',1101,1), - (1081,'Gujarat','GJ',1101,1), - (1082,'Haryana','HR',1101,1), - (1083,'Himachal Pradesh','HP',1101,1), - (1084,'Jammu and Kashmir','JK',1101,1), - (1085,'Jharkhand','JH',1101,1), - (1086,'Kerala','KL',1101,1), - (1087,'Madhya Pradesh','MP',1101,1), - (1088,'Manipur','MN',1101,1), - (1089,'Meghalaya','ML',1101,1), - (1090,'Mizoram','MZ',1101,1), - (1091,'Nagaland','NL',1101,1), - (1092,'Orissa','OR',1101,1), - (1093,'Punjab','PB',1101,1), - (1094,'Rajasthan','RJ',1101,1), - (1095,'Sikkim','SK',1101,1), - (1096,'Tamil Nadu','TN',1101,1), - (1097,'Tripura','TR',1101,1), - (1098,'Uttarakhand','UT',1101,1), - (1099,'Uttar Pradesh','UP',1101,1), - (1100,'West Bengal','WB',1101,1), - (1101,'Andaman and Nicobar Islands','AN',1101,1), - (1102,'Delhi','DL',1101,1), - (1103,'Lakshadweep','LD',1101,1), - (1104,'Pondicherry','PY',1101,1), - (1105,'Telangana','TG',1101,1), - (1106,'Dādra and Nagar Haveli and Damān and Diu','DH',1101,1), - (1107,'Ladākh','LA',1101,1), - (1108,'Chandigarh','CH',1101,1), - (1109,'mazowieckie','MZ',1172,1), - (1110,'pomorskie','PM',1172,1), - (1111,'dolnośląskie','DS',1172,1), - (1112,'kujawsko-pomorskie','KP',1172,1), - (1113,'lubelskie','LU',1172,1), - (1114,'lubuskie','LB',1172,1), - (1115,'łódzkie','LD',1172,1), - (1116,'małopolskie','MA',1172,1), - (1117,'opolskie','OP',1172,1), - (1118,'podkarpackie','PK',1172,1), - (1119,'podlaskie','PD',1172,1), - (1120,'śląskie','SL',1172,1), - (1121,'świętokrzyskie','SK',1172,1), - (1122,'warmińsko-mazurskie','WN',1172,1), - (1123,'wielkopolskie','WP',1172,1), - (1124,'zachodniopomorskie','ZP',1172,1), - (1125,'Abu Zaby','AZ',1225,1), - (1126,'\'Ajman','AJ',1225,1), - (1127,'Al Fujayrah','FU',1225,1), - (1128,'Ash Shariqah','SH',1225,1), - (1129,'Dubayy','DU',1225,1), - (1130,'Ra\'s al Khaymah','RK',1225,1), - (1131,'Dac Lac','33',1233,1), - (1132,'Umm al Qaywayn','UQ',1225,1), - (1133,'Badakhshan','BDS',1001,1), - (1134,'Badghis','BDG',1001,1), - (1135,'Baghlan','BGL',1001,1), - (1136,'Balkh','BAL',1001,1), - (1137,'Bamian','BAM',1001,1), - (1138,'Farah','FRA',1001,1), - (1139,'Faryab','FYB',1001,1), - (1140,'Ghazni','GHA',1001,1), - (1141,'Ghowr','GHO',1001,1), - (1142,'Helmand','HEL',1001,1), - (1143,'Herat','HER',1001,1), - (1144,'Jowzjan','JOW',1001,1), - (1145,'Kabul','KAB',1001,1), - (1146,'Kandahar','KAN',1001,1), - (1147,'Kapisa','KAP',1001,1), - (1148,'Khowst','KHO',1001,1), - (1149,'Konar','KNR',1001,1), - (1150,'Kondoz','KDZ',1001,1), - (1151,'Laghman','LAG',1001,1), - (1152,'Lowgar','LOW',1001,1), - (1153,'Nangrahar','NAN',1001,1), - (1154,'Nimruz','NIM',1001,1), - (1155,'Nurestan','NUR',1001,1), - (1156,'Oruzgan','ORU',1001,1), - (1157,'Paktia','PIA',1001,1), - (1158,'Paktika','PKA',1001,1), - (1159,'Parwan','PAR',1001,1), - (1160,'Samangan','SAM',1001,1), - (1161,'Sar-e Pol','SAR',1001,1), - (1162,'Takhar','TAK',1001,1), - (1163,'Wardak','WAR',1001,1), - (1164,'Zabol','ZAB',1001,1), - (1165,'Berat','BR',1002,1), - (1166,'Bulqizë','BU',1002,1), - (1167,'Delvinë','DL',1002,1), - (1168,'Devoll','DV',1002,1), - (1169,'Dibër','DI',1002,1), - (1170,'Durrës','DR',1002,1), - (1171,'Elbasan','EL',1002,1), - (1172,'Fier','FR',1002,1), - (1173,'Gramsh','GR',1002,1), - (1174,'Gjirokastër','GJ',1002,1), - (1175,'Has','HA',1002,1), - (1176,'Kavajë','KA',1002,1), - (1177,'Kolonjë','ER',1002,1), - (1178,'Korçë','KO',1002,1), - (1179,'Krujë','KR',1002,1), - (1180,'Kuçovë','KC',1002,1), - (1181,'Kukës','KU',1002,1), - (1182,'Kurbin','KB',1002,1), - (1183,'Lezhë','LE',1002,1), - (1184,'Librazhd','LB',1002,1), - (1185,'Lushnjë','LU',1002,1), - (1186,'Malësi e Madhe','MM',1002,1), - (1187,'Mallakastër','MK',1002,1), - (1188,'Mat','MT',1002,1), - (1189,'Mirditë','MR',1002,1), - (1190,'Peqin','PQ',1002,1), - (1191,'Përmet','PR',1002,1), - (1192,'Pogradec','PG',1002,1), - (1193,'Pukë','PU',1002,1), - (1194,'Sarandë','SR',1002,1), - (1195,'Skrapar','SK',1002,1), - (1196,'Shkodër','SH',1002,1), - (1197,'Tepelenë','TE',1002,1), - (1198,'Tiranë','TR',1002,1), - (1199,'Tropojë','TP',1002,1), - (1200,'Vlorë','VL',1002,1), - (1201,'Erevan','ER',1011,1), - (1202,'Aragacotn','AG',1011,1), - (1203,'Ararat','AR',1011,1), - (1204,'Armavir','AV',1011,1), - (1205,'Gegarkunik\'','GR',1011,1), - (1206,'Kotayk\'','KT',1011,1), - (1207,'Lory','LO',1011,1), - (1208,'Sirak','SH',1011,1), - (1209,'Syunik\'','SU',1011,1), - (1210,'Tavus','TV',1011,1), - (1211,'Vayoc Jor','VD',1011,1), - (1212,'Andorra la Vella','07',1005,1), - (1213,'Canillo','02',1005,1), - (1214,'Encamp','03',1005,1), - (1215,'Escaldes-Engordany','08',1005,1), - (1216,'La Massana','04',1005,1), - (1217,'Ordino','05',1005,1), - (1218,'Sant Julia de Loria','06',1005,1), - (1219,'Bengo','BGO',1006,1), - (1220,'Benguela','BGU',1006,1), - (1221,'Bie','BIE',1006,1), - (1222,'Cabinda','CAB',1006,1), - (1223,'Cuando-Cubango','CCU',1006,1), - (1224,'Cuanza Norte','CNO',1006,1), - (1225,'Cuanza Sul','CUS',1006,1), - (1226,'Cunene','CNN',1006,1), - (1227,'Huambo','HUA',1006,1), - (1228,'Huila','HUI',1006,1), - (1229,'Luanda','LUA',1006,1), - (1230,'Lunda Norte','LNO',1006,1), - (1231,'Lunda Sul','LSU',1006,1), - (1232,'Malange','MAL',1006,1), - (1233,'Moxico','MOX',1006,1), - (1234,'Namibe','NAM',1006,1), - (1235,'Uige','UIG',1006,1), - (1236,'Zaire','ZAI',1006,1), - (1237,'Saint George','03',1009,1), - (1238,'Saint John','04',1009,1), - (1239,'Saint Mary','05',1009,1), - (1240,'Saint Paul','06',1009,1), - (1241,'Saint Peter','07',1009,1), - (1242,'Saint Philip','08',1009,1), - (1243,'Barbuda','10',1009,1), - (1244,'Redonda','11',1009,1), - (1245,'Capital federal','C',1010,1), - (1246,'Buenos Aires','B',1010,1), - (1247,'Catamarca','K',1010,1), - (1248,'Cordoba','X',1010,1), - (1249,'Corrientes','W',1010,1), - (1250,'Chaco','H',1010,1), - (1251,'Chubut','U',1010,1), - (1252,'Entre Rios','E',1010,1), - (1253,'Formosa','P',1010,1), - (1254,'Jujuy','Y',1010,1), - (1255,'La Pampa','L',1010,1), - (1256,'Mendoza','M',1010,1), - (1257,'Misiones','N',1010,1), - (1258,'Neuquen','Q',1010,1), - (1259,'Rio Negro','R',1010,1), - (1260,'Salta','A',1010,1), - (1261,'San Juan','J',1010,1), - (1262,'San Luis','D',1010,1), - (1263,'Santa Cruz','Z',1010,1), - (1264,'Santa Fe','S',1010,1), - (1265,'Santiago del Estero','G',1010,1), - (1266,'Tierra del Fuego','V',1010,1), - (1267,'Tucuman','T',1010,1), - (1268,'La Rioja','F',1010,1), - (1269,'Burgenland','1',1014,1), - (1270,'Kärnten','2',1014,1), - (1271,'Niederösterreich','3',1014,1), - (1272,'Oberösterreich','4',1014,1), - (1273,'Salzburg','5',1014,1), - (1274,'Steiermark','6',1014,1), - (1275,'Tirol','7',1014,1), - (1276,'Vorarlberg','8',1014,1), - (1277,'Wien','9',1014,1), - (1278,'Australian Antarctic Territory','AAT',1008,1), - (1279,'Australian Capital Territory','ACT',1013,1), - (1280,'Northern Territory','NT',1013,1), - (1281,'New South Wales','NSW',1013,1), - (1282,'Queensland','QLD',1013,1), - (1283,'South Australia','SA',1013,1), - (1284,'Tasmania','TAS',1013,1), - (1285,'Victoria','VIC',1013,1), - (1286,'Western Australia','WA',1013,1), - (1287,'Naxcivan','NX',1015,1), - (1288,'Ali Bayramli','AB',1015,1), - (1289,'Baki','BA',1015,1), - (1290,'Ganca','GA',1015,1), - (1291,'Lankaran','LA',1015,1), - (1292,'Mingacevir','MI',1015,1), - (1293,'Naftalan','NA',1015,1), - (1294,'Saki','SA',1015,1), - (1295,'Sumqayit','SM',1015,1), - (1296,'Susa','SS',1015,1), - (1297,'Xankandi','XA',1015,1), - (1298,'Yevlax','YE',1015,1), - (1299,'Abseron','ABS',1015,1), - (1300,'Agcabadi','AGC',1015,1), - (1301,'Agdam','AGM',1015,1), - (1302,'Agdas','AGS',1015,1), - (1303,'Agstafa','AGA',1015,1), - (1304,'Agsu','AGU',1015,1), - (1305,'Astara','AST',1015,1), - (1306,'Babak','BAB',1015,1), - (1307,'Balakan','BAL',1015,1), - (1308,'Barda','BAR',1015,1), - (1309,'Beylagan','BEY',1015,1), - (1310,'Bilasuvar','BIL',1015,1), - (1311,'Cabrayll','CAB',1015,1), - (1312,'Calilabad','CAL',1015,1), - (1313,'Culfa','CUL',1015,1), - (1314,'Daskasan','DAS',1015,1), - (1315,'Davaci','DAV',1015,1), - (1316,'Fuzuli','FUZ',1015,1), - (1317,'Gadabay','GAD',1015,1), - (1318,'Goranboy','GOR',1015,1), - (1319,'Goycay','GOY',1015,1), - (1320,'Haciqabul','HAC',1015,1), - (1321,'Imisli','IMI',1015,1), - (1322,'Ismayilli','ISM',1015,1), - (1323,'Kalbacar','KAL',1015,1), - (1324,'Kurdamir','KUR',1015,1), - (1325,'Lacin','LAC',1015,1), - (1326,'Lerik','LER',1015,1), - (1327,'Masalli','MAS',1015,1), - (1328,'Neftcala','NEF',1015,1), - (1329,'Oguz','OGU',1015,1), - (1330,'Ordubad','ORD',1015,1), - (1331,'Qabala','QAB',1015,1), - (1332,'Qax','QAX',1015,1), - (1333,'Qazax','QAZ',1015,1), - (1334,'Qobustan','QOB',1015,1), - (1335,'Quba','QBA',1015,1), - (1336,'Qubadli','QBI',1015,1), - (1337,'Qusar','QUS',1015,1), - (1338,'Saatli','SAT',1015,1), - (1339,'Sabirabad','SAB',1015,1), - (1340,'Sadarak','SAD',1015,1), - (1341,'Sahbuz','SAH',1015,1), - (1342,'Salyan','SAL',1015,1), - (1343,'Samaxi','SMI',1015,1), - (1344,'Samkir','SKR',1015,1), - (1345,'Samux','SMX',1015,1), - (1346,'Sarur','SAR',1015,1), - (1347,'Siyazan','SIY',1015,1), - (1348,'Tartar','TAR',1015,1), - (1349,'Tovuz','TOV',1015,1), - (1350,'Ucar','UCA',1015,1), - (1351,'Xacmaz','XAC',1015,1), - (1352,'Xanlar','XAN',1015,1), - (1353,'Xizi','XIZ',1015,1), - (1354,'Xocali','XCI',1015,1), - (1355,'Xocavand','XVD',1015,1), - (1356,'Yardimli','YAR',1015,1), - (1357,'Zangilan','ZAN',1015,1), - (1358,'Zaqatala','ZAQ',1015,1), - (1359,'Zardab','ZAR',1015,1), - (1360,'Federacija Bosna i Hercegovina','BIH',1026,1), - (1361,'Republika Srpska','SRP',1026,1), - (1362,'Bagerhat zila','05',1017,1), - (1363,'Bandarban zila','01',1017,1), - (1364,'Barguna zila','02',1017,1), - (1365,'Barisal zila','06',1017,1), - (1366,'Bhola zila','07',1017,1), - (1367,'Bogra zila','03',1017,1), - (1368,'Brahmanbaria zila','04',1017,1), - (1369,'Chandpur zila','09',1017,1), - (1370,'Chittagong zila','10',1017,1), - (1371,'Chuadanga zila','12',1017,1), - (1372,'Comilla zila','08',1017,1), - (1373,'Cox\'s Bazar zila','11',1017,1), - (1374,'Dhaka zila','13',1017,1), - (1375,'Dinajpur zila','14',1017,1), - (1376,'Faridpur zila','15',1017,1), - (1377,'Feni zila','16',1017,1), - (1378,'Gaibandha zila','19',1017,1), - (1379,'Gazipur zila','18',1017,1), - (1380,'Gopalganj zila','17',1017,1), - (1381,'Habiganj zila','20',1017,1), - (1382,'Jaipurhat zila','24',1017,1), - (1383,'Jamalpur zila','21',1017,1), - (1384,'Jessore zila','22',1017,1), - (1385,'Jhalakati zila','25',1017,1), - (1386,'Jhenaidah zila','23',1017,1), - (1387,'Khagrachari zila','29',1017,1), - (1388,'Khulna zila','27',1017,1), - (1389,'Kishorganj zila','26',1017,1), - (1390,'Kurigram zila','28',1017,1), - (1391,'Kushtia zila','30',1017,1), - (1392,'Lakshmipur zila','31',1017,1), - (1393,'Lalmonirhat zila','32',1017,1), - (1394,'Madaripur zila','36',1017,1), - (1395,'Magura zila','37',1017,1), - (1396,'Manikganj zila','33',1017,1), - (1397,'Meherpur zila','39',1017,1), - (1398,'Moulvibazar zila','38',1017,1), - (1399,'Munshiganj zila','35',1017,1), - (1400,'Mymensingh zila','34',1017,1), - (1401,'Naogaon zila','48',1017,1), - (1402,'Narail zila','43',1017,1), - (1403,'Narayanganj zila','40',1017,1), - (1404,'Narsingdi zila','42',1017,1), - (1405,'Natore zila','44',1017,1), - (1406,'Nawabganj zila','45',1017,1), - (1407,'Netrakona zila','41',1017,1), - (1408,'Nilphamari zila','46',1017,1), - (1409,'Noakhali zila','47',1017,1), - (1410,'Pabna zila','49',1017,1), - (1411,'Panchagarh zila','52',1017,1), - (1412,'Patuakhali zila','51',1017,1), - (1413,'Pirojpur zila','50',1017,1), - (1414,'Rajbari zila','53',1017,1), - (1415,'Rajshahi zila','54',1017,1), - (1416,'Rangamati zila','56',1017,1), - (1417,'Rangpur zila','55',1017,1), - (1418,'Satkhira zila','58',1017,1), - (1419,'Shariatpur zila','62',1017,1), - (1420,'Sherpur zila','57',1017,1), - (1421,'Sirajganj zila','59',1017,1), - (1422,'Sunamganj zila','61',1017,1), - (1423,'Sylhet zila','60',1017,1), - (1424,'Tangail zila','63',1017,1), - (1425,'Thakurgaon zila','64',1017,1), - (1426,'Christ Church','01',1018,1), - (1427,'Saint Andrew','02',1018,1), - (1428,'Saint George','03',1018,1), - (1429,'Saint James','04',1018,1), - (1430,'Saint John','05',1018,1), - (1431,'Saint Joseph','06',1018,1), - (1432,'Saint Lucy','07',1018,1), - (1433,'Saint Michael','08',1018,1), - (1434,'Saint Peter','09',1018,1), - (1435,'Saint Philip','10',1018,1), - (1436,'Saint Thomas','11',1018,1), - (1437,'Brussels','BRU',1020,1), - (1438,'Antwerpen','VAN',1020,1), - (1439,'Brabant Wallon','WBR',1020,1), - (1440,'Hainaut','WHT',1020,1), - (1441,'Liege','WLG',1020,1), - (1442,'Limburg','VLI',1020,1), - (1443,'Luxembourg','WLX',1020,1), - (1444,'Namur','WNA',1020,1), - (1445,'Oost-Vlaanderen','VOV',1020,1), - (1446,'Vlaams-Brabant','VBR',1020,1), - (1447,'West-Vlaanderen','VWV',1020,1), - (1448,'Devonshire','DEV',1023,1), - (1449,'Hamilton Parish','HAM',1023,1), - (1450,'City of Hamilton','HA',1023,1), - (1451,'Paget','PAG',1023,1), - (1452,'Pembroke','PEM',1023,1), - (1453,'Town of St. George','SG',1023,1), - (1454,'Saint George\'s','SGE',1023,1), - (1455,'Sandys','SAN',1023,1), - (1456,'Smiths','SMI',1023,1), - (1457,'Southampton','SOU',1023,1), - (1458,'Warwick','WAR',1023,1), - (1459,'Bale','BAL',1034,1), - (1460,'Bam','BAM',1034,1), - (1461,'Banwa','BAN',1034,1), - (1462,'Bazega','BAZ',1034,1), - (1463,'Bougouriba','BGR',1034,1), - (1464,'Boulgou','BLG',1034,1), - (1465,'Boulkiemde','BLK',1034,1), - (1466,'Comoe','COM',1034,1), - (1467,'Ganzourgou','GAN',1034,1), - (1468,'Gnagna','GNA',1034,1), - (1469,'Gourma','GOU',1034,1), - (1470,'Houet','HOU',1034,1), - (1471,'Ioba','IOB',1034,1), - (1472,'Kadiogo','KAD',1034,1), - (1473,'Kenedougou','KEN',1034,1), - (1474,'Komondjari','KMD',1034,1), - (1475,'Kompienga','KMP',1034,1), - (1476,'Kossi','KOS',1034,1), - (1477,'Koulpulogo','KOP',1034,1), - (1478,'Kouritenga','KOT',1034,1), - (1479,'Kourweogo','KOW',1034,1), - (1480,'Leraba','LER',1034,1), - (1481,'Loroum','LOR',1034,1), - (1482,'Mouhoun','MOU',1034,1), - (1483,'Nahouri','NAO',1034,1), - (1484,'Namentenga','NAM',1034,1), - (1485,'Nayala','NAY',1034,1), - (1486,'Noumbiel','NOU',1034,1), - (1487,'Oubritenga','OUB',1034,1), - (1488,'Oudalan','OUD',1034,1), - (1489,'Passore','PAS',1034,1), - (1490,'Poni','PON',1034,1), - (1491,'Sanguie','SNG',1034,1), - (1492,'Sanmatenga','SMT',1034,1), - (1493,'Seno','SEN',1034,1), - (1494,'Siasili','SIS',1034,1), - (1495,'Soum','SOM',1034,1), - (1496,'Sourou','SOR',1034,1), - (1497,'Tapoa','TAP',1034,1), - (1498,'Tui','TUI',1034,1), - (1499,'Yagha','YAG',1034,1), - (1500,'Yatenga','YAT',1034,1), - (1501,'Ziro','ZIR',1034,1), - (1502,'Zondoma','ZON',1034,1), - (1503,'Zoundweogo','ZOU',1034,1), - (1504,'Blagoevgrad','01',1033,1), - (1505,'Burgas','02',1033,1), - (1506,'Dobrich','08',1033,1), - (1507,'Gabrovo','07',1033,1), - (1508,'Haskovo','26',1033,1), - (1509,'Yambol','28',1033,1), - (1510,'Kardzhali','09',1033,1), - (1511,'Kyustendil','10',1033,1), - (1512,'Lovech','11',1033,1), - (1513,'Montana','12',1033,1), - (1514,'Pazardzhik','13',1033,1), - (1515,'Pernik','14',1033,1), - (1516,'Pleven','15',1033,1), - (1517,'Plovdiv','16',1033,1), - (1518,'Razgrad','17',1033,1), - (1519,'Ruse','18',1033,1), - (1520,'Silistra','19',1033,1), - (1521,'Sliven','20',1033,1), - (1522,'Smolyan','21',1033,1), - (1523,'Sofia','23',1033,1), - (1524,'Stara Zagora','24',1033,1), - (1525,'Shumen','27',1033,1), - (1526,'Targovishte','25',1033,1), - (1527,'Varna','03',1033,1), - (1528,'Veliko Tarnovo','04',1033,1), - (1529,'Vidin','05',1033,1), - (1530,'Vratsa','06',1033,1), - (1531,'Al Hadd','01',1016,1), - (1532,'Al Manamah','03',1016,1), - (1533,'Al Mintaqah al Gharbiyah','10',1016,1), - (1534,'Al Mintagah al Wusta','07',1016,1), - (1535,'Al Mintaqah ash Shamaliyah','05',1016,1), - (1536,'Al Muharraq','02',1016,1), - (1537,'Ar Rifa','09',1016,1), - (1538,'Jidd Hafs','04',1016,1), - (1539,'Madluat Jamad','12',1016,1), - (1540,'Madluat Isa','08',1016,1), - (1541,'Mintaqat Juzur tawar','11',1016,1), - (1542,'Sitrah','06',1016,1), - (1543,'Bubanza','BB',1036,1), - (1544,'Bujumbura','BJ',1036,1), - (1545,'Bururi','BR',1036,1), - (1546,'Cankuzo','CA',1036,1), - (1547,'Cibitoke','CI',1036,1), - (1548,'Gitega','GI',1036,1), - (1549,'Karuzi','KR',1036,1), - (1550,'Kayanza','KY',1036,1), - (1551,'Makamba','MA',1036,1), - (1552,'Muramvya','MU',1036,1), - (1553,'Mwaro','MW',1036,1), - (1554,'Ngozi','NG',1036,1), - (1555,'Rutana','RT',1036,1), - (1556,'Ruyigi','RY',1036,1), - (1557,'Alibori','AL',1022,1), - (1558,'Atakora','AK',1022,1), - (1559,'Atlantique','AQ',1022,1), - (1560,'Borgou','BO',1022,1), - (1561,'Collines','CO',1022,1), - (1562,'Donga','DO',1022,1), - (1563,'Kouffo','KO',1022,1), - (1564,'Littoral','LI',1022,1), - (1565,'Mono','MO',1022,1), - (1566,'Oueme','OU',1022,1), - (1567,'Plateau','PL',1022,1), - (1568,'Zou','ZO',1022,1), - (1569,'Belait','BE',1032,1), - (1570,'Brunei-Muara','BM',1032,1), - (1571,'Temburong','TE',1032,1), - (1572,'Tutong','TU',1032,1), - (1573,'Cochabamba','C',1025,1), - (1574,'Chuquisaca','H',1025,1), - (1575,'El Beni','B',1025,1), - (1576,'La Paz','L',1025,1), - (1577,'Oruro','O',1025,1), - (1578,'Pando','N',1025,1), - (1579,'Potosi','P',1025,1), - (1580,'Tarija','T',1025,1), - (1581,'Acre','AC',1029,1), - (1582,'Alagoas','AL',1029,1), - (1583,'Amazonas','AM',1029,1), - (1584,'Amapa','AP',1029,1), - (1585,'Bahia','BA',1029,1), - (1586,'Ceara','CE',1029,1), - (1587,'Distrito Federal','DF',1029,1), - (1588,'Espirito Santo','ES',1029,1), - (1589,'Goias','GO',1029,1), - (1590,'Maranhao','MA',1029,1), - (1591,'Minas Gerais','MG',1029,1), - (1592,'Mato Grosso do Sul','MS',1029,1), - (1593,'Mato Grosso','MT',1029,1), - (1594,'Para','PA',1029,1), - (1595,'Paraiba','PB',1029,1), - (1596,'Pernambuco','PE',1029,1), - (1597,'Piaui','PI',1029,1), - (1598,'Parana','PR',1029,1), - (1599,'Rio de Janeiro','RJ',1029,1), - (1600,'Rio Grande do Norte','RN',1029,1), - (1601,'Rondonia','RO',1029,1), - (1602,'Roraima','RR',1029,1), - (1603,'Rio Grande do Sul','RS',1029,1), - (1604,'Santa Catarina','SC',1029,1), - (1605,'Sergipe','SE',1029,1), - (1606,'Sao Paulo','SP',1029,1), - (1607,'Tocantins','TO',1029,1), - (1608,'Acklins and Crooked Islands','AC',1212,1), - (1609,'Bimini','BI',1212,1), - (1610,'Cat Island','CI',1212,1), - (1611,'Exuma','EX',1212,1), - (1612,'Inagua','IN',1212,1), - (1613,'Long Island','LI',1212,1), - (1614,'Mayaguana','MG',1212,1), - (1615,'New Providence','NP',1212,1), - (1616,'Ragged Island','RI',1212,1), - (1617,'Abaco Islands','AB',1212,1), - (1618,'Andros Island','AN',1212,1), - (1619,'Berry Islands','BR',1212,1), - (1620,'Eleuthera','EL',1212,1), - (1621,'Grand Bahama','GB',1212,1), - (1622,'Rum Cay','RC',1212,1), - (1623,'San Salvador Island','SS',1212,1), - (1624,'Bumthang','33',1024,1), - (1625,'Chhukha','12',1024,1), - (1626,'Dagana','22',1024,1), - (1627,'Gasa','GA',1024,1), - (1628,'Ha','13',1024,1), - (1629,'Lhuentse','44',1024,1), - (1630,'Monggar','42',1024,1), - (1631,'Paro','11',1024,1), - (1632,'Pemagatshel','43',1024,1), - (1633,'Punakha','23',1024,1), - (1634,'Samdrup Jongkha','45',1024,1), - (1635,'Samtee','14',1024,1), - (1636,'Sarpang','31',1024,1), - (1637,'Thimphu','15',1024,1), - (1638,'Trashigang','41',1024,1), - (1639,'Trashi Yangtse','TY',1024,1), - (1640,'Trongsa','32',1024,1), - (1641,'Tsirang','21',1024,1), - (1642,'Wangdue Phodrang','24',1024,1), - (1643,'Zhemgang','34',1024,1), - (1644,'Central','CE',1027,1), - (1645,'Ghanzi','GH',1027,1), - (1646,'Kgalagadi','KG',1027,1), - (1647,'Kgatleng','KL',1027,1), - (1648,'Kweneng','KW',1027,1), - (1649,'Ngamiland','NG',1027,1), - (1650,'North-East','NE',1027,1), - (1651,'North-West','NW',1027,1), - (1652,'South-East','SE',1027,1), - (1653,'Southern','SO',1027,1), - (1654,'Brèsckaja voblasc\'','BR',1019,1), - (1655,'Homel\'skaja voblasc\'','HO',1019,1), - (1656,'Hrodzenskaja voblasc\'','HR',1019,1), - (1657,'Mahilëuskaja voblasc\'','MA',1019,1), - (1658,'Minskaja voblasc\'','MI',1019,1), - (1659,'Vicebskaja voblasc\'','VI',1019,1), - (1660,'Belize','BZ',1021,1), - (1661,'Cayo','CY',1021,1), - (1662,'Corozal','CZL',1021,1), - (1663,'Orange Walk','OW',1021,1), - (1664,'Stann Creek','SC',1021,1), - (1665,'Toledo','TOL',1021,1), - (1666,'Kinshasa','KN',1050,1), - (1667,'Equateur','EQ',1050,1), - (1668,'Kasai-Oriental','KE',1050,1), - (1669,'Maniema','MA',1050,1), - (1670,'Nord-Kivu','NK',1050,1), - (1671,'Sud-Kivu','SK',1050,1), - (1672,'Bangui','BGF',1042,1), - (1673,'Bamingui-Bangoran','BB',1042,1), - (1674,'Basse-Kotto','BK',1042,1), - (1675,'Haute-Kotto','HK',1042,1), - (1676,'Haut-Mbomou','HM',1042,1), - (1677,'Kemo','KG',1042,1), - (1678,'Lobaye','LB',1042,1), - (1679,'Mambere-Kadei','HS',1042,1), - (1680,'Mbomou','MB',1042,1), - (1681,'Nana-Grebizi','KB',1042,1), - (1682,'Nana-Mambere','NM',1042,1), - (1683,'Ombella-Mpoko','MP',1042,1), - (1684,'Ouaka','UK',1042,1), - (1685,'Ouham','AC',1042,1), - (1686,'Ouham-Pende','OP',1042,1), - (1687,'Sangha-Mbaere','SE',1042,1), - (1688,'Vakaga','VR',1042,1), - (1689,'Kongo central','01',1050,1), - (1690,'Kwango','02',1050,1), - (1691,'Kwilu','03',1050,1), - (1692,'Mai-Ndombe','04',1050,1), - (1693,'Kasai','05',1050,1), - (1694,'Lulua','06',1050,1), - (1695,'Lomami','07',1050,1), - (1696,'Sankuru','08',1050,1), - (1697,'Ituri','09',1050,1), - (1698,'Haut-Uele','10',1050,1), - (1699,'Tshopo','11',1050,1), - (1700,'Bas-Uele','12',1050,1), - (1701,'Nord-Ubangi','13',1050,1), - (1702,'Mongala','14',1050,1), - (1703,'Sud-Ubangi','15',1050,1), - (1704,'Tshuapa','16',1050,1), - (1705,'Haut-Lomami','17',1050,1), - (1706,'Lualaba','18',1050,1), - (1707,'Haut-Katanga','19',1050,1), - (1708,'Tanganyika','20',1050,1), - (1709,'Brazzaville','BZV',1051,1), - (1710,'Bouenza','11',1051,1), - (1711,'Cuvette','8',1051,1), - (1712,'Cuvette-Ouest','15',1051,1), - (1713,'Kouilou','5',1051,1), - (1714,'Lekoumou','2',1051,1), - (1715,'Likouala','7',1051,1), - (1716,'Niari','9',1051,1), - (1717,'Plateaux','14',1051,1), - (1718,'Pool','12',1051,1), - (1719,'Sangha','13',1051,1), - (1720,'Estuaire','01',1080,1), - (1721,'Haut-Ogooué','02',1080,1), - (1722,'Moyen-Ogooué','03',1080,1), - (1723,'Ngounié','04',1080,1), - (1724,'Nyanga','05',1080,1), - (1725,'Ogooué-Ivindo','06',1080,1), - (1726,'Ogooué-Lolo','07',1080,1), - (1727,'Ogooué-Maritime','08',1080,1), - (1728,'Woleu-Ntem','09',1080,1), - (1729,'Aargau','AG',1205,1), - (1730,'Appenzell Innerrhoden','AI',1205,1), - (1731,'Appenzell Ausserrhoden','AR',1205,1), - (1732,'Bern','BE',1205,1), - (1733,'Basel-Landschaft','BL',1205,1), - (1734,'Basel-Stadt','BS',1205,1), - (1735,'Fribourg','FR',1205,1), - (1736,'Geneva','GE',1205,1), - (1737,'Glarus','GL',1205,1), - (1738,'Graubunden','GR',1205,1), - (1739,'Jura','JU',1205,1), - (1740,'Luzern','LU',1205,1), - (1741,'Neuchatel','NE',1205,1), - (1742,'Nidwalden','NW',1205,1), - (1743,'Obwalden','OW',1205,1), - (1744,'Sankt Gallen','SG',1205,1), - (1745,'Schaffhausen','SH',1205,1), - (1746,'Solothurn','SO',1205,1), - (1747,'Schwyz','SZ',1205,1), - (1748,'Thurgau','TG',1205,1), - (1749,'Ticino','TI',1205,1), - (1750,'Uri','UR',1205,1), - (1751,'Vaud','VD',1205,1), - (1752,'Valais','VS',1205,1), - (1753,'Zug','ZG',1205,1), - (1754,'Zurich','ZH',1205,1), - (1755,'18 Montagnes','06',1054,1), - (1756,'Agnebi','16',1054,1), - (1757,'Bas-Sassandra','09',1054,1), - (1758,'Denguele','10',1054,1), - (1759,'Haut-Sassandra','02',1054,1), - (1760,'Lacs','07',1054,1), - (1761,'Lagunes','01',1054,1), - (1762,'Marahoue','12',1054,1), - (1763,'Moyen-Comoe','05',1054,1), - (1764,'Nzi-Comoe','11',1054,1), - (1765,'Savanes','03',1054,1), - (1766,'Sud-Bandama','15',1054,1), - (1767,'Sud-Comoe','13',1054,1), - (1768,'Vallee du Bandama','04',1054,1), - (1769,'Worodouqou','14',1054,1), - (1770,'Zanzan','08',1054,1), - (1771,'Aisen del General Carlos Ibanez del Campo','AI',1044,1), - (1772,'Antofagasta','AN',1044,1), - (1773,'Araucania','AR',1044,1), - (1774,'Atacama','AT',1044,1), - (1775,'Bio-Bio','BI',1044,1), - (1776,'Coquimbo','CO',1044,1), - (1777,'Libertador General Bernardo O\'Higgins','LI',1044,1), - (1778,'Los Lagos','LL',1044,1), - (1779,'Magallanes','MA',1044,1), - (1780,'Maule','ML',1044,1), - (1781,'Santiago Metropolitan','SM',1044,1), - (1782,'Tarapaca','TA',1044,1), - (1783,'Valparaiso','VS',1044,1), - (1784,'Los Rios','LR',1044,1), - (1785,'Arica y Parinacota','AP',1044,1), - (1786,'Adamaoua','AD',1038,1), - (1787,'Centre','CE',1038,1), - (1788,'East','ES',1038,1), - (1789,'Far North','EN',1038,1), - (1790,'North','NO',1038,1), - (1791,'South','SW',1038,1), - (1792,'South-West','SW',1038,1), - (1793,'West','OU',1038,1), - (1794,'Littoral','LT',1038,1), - (1795,'Nord-Ouest','NW',1038,1), - (1796,'Beijing','11',1045,1), - (1797,'Chongqing','50',1045,1), - (1798,'Shanghai','31',1045,1), - (1799,'Tianjin','12',1045,1), - (1800,'Anhui','34',1045,1), - (1801,'Fujian','35',1045,1), - (1802,'Gansu','62',1045,1), - (1803,'Guangdong','44',1045,1), - (1804,'Guizhou','52',1045,1), - (1805,'Hainan','46',1045,1), - (1806,'Hebei','13',1045,1), - (1807,'Heilongjiang','23',1045,1), - (1808,'Henan','41',1045,1), - (1809,'Hubei','42',1045,1), - (1810,'Hunan','43',1045,1), - (1811,'Jiangsu','32',1045,1), - (1812,'Jiangxi','36',1045,1), - (1813,'Jilin','22',1045,1), - (1814,'Liaoning','21',1045,1), - (1815,'Qinghai','63',1045,1), - (1816,'Shaanxi','61',1045,1), - (1817,'Shandong','37',1045,1), - (1818,'Shanxi','14',1045,1), - (1819,'Sichuan','51',1045,1), - (1820,'Taiwan','71',1045,1), - (1821,'Yunnan','53',1045,1), - (1822,'Zhejiang','33',1045,1), - (1823,'Guangxi','45',1045,1), - (1824,'Neia Mongol (mn)','15',1045,1), - (1825,'Xinjiang','65',1045,1), - (1826,'Xizang','54',1045,1), - (1827,'Hong Kong','91',1045,1), - (1828,'Macau','92',1045,1), - (1829,'Yinchuan','YN',1045,1), - (1830,'Shizuishan','SZ',1045,1), - (1831,'Wuzhong','WZ',1045,1), - (1832,'Guyuan','GY',1045,1), - (1833,'Zhongwei','ZW',1045,1), - (1834,'Distrito Capital de Bogotá','DC',1048,1), - (1835,'Amazonea','AMA',1048,1), - (1836,'Antioquia','ANT',1048,1), - (1837,'Arauca','ARA',1048,1), - (1838,'Atlántico','ATL',1048,1), - (1839,'Bolívar','BOL',1048,1), - (1840,'Boyacá','BOY',1048,1), - (1841,'Caldea','CAL',1048,1), - (1842,'Caquetá','CAQ',1048,1), - (1843,'Casanare','CAS',1048,1), - (1844,'Cauca','CAU',1048,1), - (1845,'Cesar','CES',1048,1), - (1846,'Córdoba','COR',1048,1), - (1847,'Cundinamarca','CUN',1048,1), - (1848,'Chocó','CHO',1048,1), - (1849,'Guainía','GUA',1048,1), - (1850,'Guaviare','GUV',1048,1), - (1851,'La Guajira','LAG',1048,1), - (1852,'Magdalena','MAG',1048,1), - (1853,'Meta','MET',1048,1), - (1854,'Nariño','NAR',1048,1), - (1855,'Norte de Santander','NSA',1048,1), - (1856,'Putumayo','PUT',1048,1), - (1857,'Quindio','QUI',1048,1), - (1858,'Risaralda','RIS',1048,1), - (1859,'San Andrés, Providencia y Santa Catalina','SAP',1048,1), - (1860,'Santander','SAN',1048,1), - (1861,'Sucre','SUC',1048,1), - (1862,'Tolima','TOL',1048,1), - (1863,'Valle del Cauca','VAC',1048,1), - (1864,'Vaupés','VAU',1048,1), - (1865,'Vichada','VID',1048,1), - (1866,'Huila','HUI',1048,1), - (1867,'Alajuela','A',1053,1), - (1868,'Cartago','C',1053,1), - (1869,'Guanacaste','G',1053,1), - (1870,'Heredia','H',1053,1), - (1871,'Limon','L',1053,1), - (1872,'Puntarenas','P',1053,1), - (1873,'San Jose','SJ',1053,1), - (1874,'Camagey','09',1056,1), - (1875,'Ciego de `vila','08',1056,1), - (1876,'Cienfuegos','06',1056,1), - (1877,'Ciudad de La Habana','03',1056,1), - (1878,'Granma','12',1056,1), - (1879,'Guantanamo','14',1056,1), - (1880,'Holquin','11',1056,1), - (1881,'La Habana','02',1056,1), - (1882,'Las Tunas','10',1056,1), - (1883,'Matanzas','04',1056,1), - (1884,'Pinar del Rio','01',1056,1), - (1885,'Sancti Spiritus','07',1056,1), - (1886,'Santiago de Cuba','13',1056,1), - (1887,'Villa Clara','05',1056,1), - (1888,'Isla de la Juventud','99',1056,1), - (1889,'Pinar del Roo','PR',1056,1), - (1890,'Ciego de Avila','CA',1056,1), - (1891,'Camagoey','CG',1056,1), - (1892,'Holgun','HO',1056,1), - (1893,'Sancti Spritus','SS',1056,1), - (1894,'Municipio Especial Isla de la Juventud','IJ',1056,1), - (1895,'Boa Vista','BV',1040,1), - (1896,'Brava','BR',1040,1), - (1897,'Calheta de Sao Miguel','CS',1040,1), - (1898,'Fogo','FO',1040,1), - (1899,'Maio','MA',1040,1), - (1900,'Mosteiros','MO',1040,1), - (1901,'Paul','PA',1040,1), - (1902,'Porto Novo','PN',1040,1), - (1903,'Praia','PR',1040,1), - (1904,'Ribeira Grande','RG',1040,1), - (1905,'Sal','SL',1040,1), - (1906,'Sao Domingos','SD',1040,1), - (1907,'Sao Filipe','SF',1040,1), - (1908,'Sao Nicolau','SN',1040,1), - (1909,'Sao Vicente','SV',1040,1), - (1910,'Tarrafal','TA',1040,1), - (1911,'Ammochostos Magusa','04',1057,1), - (1912,'Keryneia','06',1057,1), - (1913,'Larnaka','03',1057,1), - (1914,'Lefkosia','01',1057,1), - (1915,'Lemesos','02',1057,1), - (1916,'Pafos','05',1057,1), - (1917,'Jihočeský kraj','JC',1058,1), - (1918,'Jihomoravský kraj','JM',1058,1), - (1919,'Karlovarský kraj','KA',1058,1), - (1920,'Královéhradecký kraj','KR',1058,1), - (1921,'Liberecký kraj','LI',1058,1), - (1922,'Moravskoslezský kraj','MO',1058,1), - (1923,'Olomoucký kraj','OL',1058,1), - (1924,'Pardubický kraj','PA',1058,1), - (1925,'Plzeňský kraj','PL',1058,1), - (1926,'Praha, hlavní město','PR',1058,1), - (1927,'Středočeský kraj','ST',1058,1), - (1928,'Ústecký kraj','US',1058,1), - (1929,'Vysočina','VY',1058,1), - (1930,'Zlínský kraj','ZL',1058,1), - (1931,'Abkhazia','AB',1081,1), - (1932,'Adjara','AJ',1081,1), - (1933,'Tbilisi','TB',1081,1), - (1934,'Guria','GU',1081,1), - (1935,'Imereti','IM',1081,1), - (1936,'Kakheti','KA',1081,1), - (1937,'Kvemo Kartli','KK',1081,1), - (1938,'Mtskheta-Mtianeti','MM',1081,1), - (1939,'Racha-Lechkhumi and Kvemo Svaneti','RL',1081,1), - (1940,'Samegrelo-Zemo Svaneti','SZ',1081,1), - (1941,'Samtskhe-Javakheti','SJ',1081,1), - (1942,'Shida Kartli','SK',1081,1), - (1943,'Baden-Württemberg','BW',1082,1), - (1944,'Bayern','BY',1082,1), - (1945,'Bremen','HB',1082,1), - (1946,'Hamburg','HH',1082,1), - (1947,'Hessen','HE',1082,1), - (1948,'Niedersachsen','NI',1082,1), - (1949,'Nordrhein-Westfalen','NW',1082,1), - (1950,'Rheinland-Pfalz','RP',1082,1), - (1951,'Saarland','SL',1082,1), - (1952,'Schleswig-Holstein','SH',1082,1), - (1953,'Berlin','BE',1082,1), - (1954,'Brandenburg','BB',1082,1), - (1955,'Mecklenburg-Vorpommern','MV',1082,1), - (1956,'Sachsen','SN',1082,1), - (1957,'Sachsen-Anhalt','ST',1082,1), - (1958,'Thüringen','TH',1082,1), - (1959,'Ali Sabiah','AS',1060,1), - (1960,'Dikhil','DI',1060,1), - (1961,'Djibouti','DJ',1060,1), - (1962,'Obock','OB',1060,1), - (1963,'Tadjoura','TA',1060,1), - (1964,'Frederiksberg','147',1059,1), - (1965,'Copenhagen City','101',1059,1), - (1966,'Copenhagen','015',1059,1), - (1967,'Frederiksborg','020',1059,1), - (1968,'Roskilde','025',1059,1), - (1969,'Vestsjælland','030',1059,1), - (1970,'Storstrøm','035',1059,1), - (1971,'Bornholm','040',1059,1), - (1972,'Fyn','042',1059,1), - (1973,'South Jutland','050',1059,1), - (1974,'Ribe','055',1059,1), - (1975,'Vejle','060',1059,1), - (1976,'Ringkjøbing','065',1059,1), - (1977,'Århus','070',1059,1), - (1978,'Viborg','076',1059,1), - (1979,'North Jutland','080',1059,1), - (1980,'Distrito Nacional (Santo Domingo)','01',1062,1), - (1981,'Azua','02',1062,1), - (1982,'Bahoruco','03',1062,1), - (1983,'Barahona','04',1062,1), - (1984,'Dajabón','05',1062,1), - (1985,'Duarte','06',1062,1), - (1986,'El Seybo [El Seibo]','08',1062,1), - (1987,'Espaillat','09',1062,1), - (1988,'Hato Mayor','30',1062,1), - (1989,'Independencia','10',1062,1), - (1990,'La Altagracia','11',1062,1), - (1991,'La Estrelleta [Elias Pina]','07',1062,1), - (1992,'La Romana','12',1062,1), - (1993,'La Vega','13',1062,1), - (1994,'Maroia Trinidad Sánchez','14',1062,1), - (1995,'Monseñor Nouel','28',1062,1), - (1996,'Monte Cristi','15',1062,1), - (1997,'Monte Plata','29',1062,1), - (1998,'Pedernales','16',1062,1), - (1999,'Peravia','17',1062,1), - (2000,'Puerto Plata','18',1062,1), - (2001,'Salcedo','19',1062,1), - (2002,'Samaná','20',1062,1), - (2003,'San Cristóbal','21',1062,1), - (2004,'San Pedro de Macorís','23',1062,1), - (2005,'Sánchez Ramírez','24',1062,1), - (2006,'Santiago','25',1062,1), - (2007,'Santiago Rodríguez','26',1062,1), - (2008,'Valverde','27',1062,1), - (2009,'Adrar','01',1003,1), - (2010,'Ain Defla','44',1003,1), - (2011,'Ain Tmouchent','46',1003,1), - (2012,'Alger','16',1003,1), - (2013,'Annaba','23',1003,1), - (2014,'Batna','05',1003,1), - (2015,'Bechar','08',1003,1), - (2016,'Bejaia','06',1003,1), - (2017,'Biskra','07',1003,1), - (2018,'Blida','09',1003,1), - (2019,'Bordj Bou Arreridj','34',1003,1), - (2020,'Bouira','10',1003,1), - (2021,'Boumerdes','35',1003,1), - (2022,'Chlef','02',1003,1), - (2023,'Constantine','25',1003,1), - (2024,'Djelfa','17',1003,1), - (2025,'El Bayadh','32',1003,1), - (2026,'El Oued','39',1003,1), - (2027,'El Tarf','36',1003,1), - (2028,'Ghardaia','47',1003,1), - (2029,'Guelma','24',1003,1), - (2030,'Illizi','33',1003,1), - (2031,'Jijel','18',1003,1), - (2032,'Khenchela','40',1003,1), - (2033,'Laghouat','03',1003,1), - (2034,'Mascara','29',1003,1), - (2035,'Medea','26',1003,1), - (2036,'Mila','43',1003,1), - (2037,'Mostaganem','27',1003,1), - (2038,'Msila','28',1003,1), - (2039,'Naama','45',1003,1), - (2040,'Oran','31',1003,1), - (2041,'Ouargla','30',1003,1), - (2042,'Oum el Bouaghi','04',1003,1), - (2043,'Relizane','48',1003,1), - (2044,'Saida','20',1003,1), - (2045,'Setif','19',1003,1), - (2046,'Sidi Bel Abbes','22',1003,1), - (2047,'Skikda','21',1003,1), - (2048,'Souk Ahras','41',1003,1), - (2049,'Tamanghasset','11',1003,1), - (2050,'Tebessa','12',1003,1), - (2051,'Tiaret','14',1003,1), - (2052,'Tindouf','37',1003,1), - (2053,'Tipaza','42',1003,1), - (2054,'Tissemsilt','38',1003,1), - (2055,'Tizi Ouzou','15',1003,1), - (2056,'Tlemcen','13',1003,1), - (2057,'Azuay','A',1064,1), - (2058,'Bolivar','B',1064,1), - (2059,'Canar','F',1064,1), - (2060,'Carchi','C',1064,1), - (2061,'Cotopaxi','X',1064,1), - (2062,'Chimborazo','H',1064,1), - (2063,'El Oro','O',1064,1), - (2064,'Esmeraldas','E',1064,1), - (2065,'Galapagos','W',1064,1), - (2066,'Guayas','G',1064,1), - (2067,'Imbabura','I',1064,1), - (2068,'Loja','L',1064,1), - (2069,'Los Rios','R',1064,1), - (2070,'Manabi','M',1064,1), - (2071,'Morona-Santiago','S',1064,1), - (2072,'Napo','N',1064,1), - (2073,'Orellana','D',1064,1), - (2074,'Pastaza','Y',1064,1), - (2075,'Pichincha','P',1064,1), - (2076,'Sucumbios','U',1064,1), - (2077,'Tungurahua','T',1064,1), - (2078,'Zamora-Chinchipe','Z',1064,1), - (2079,'Harjumaa','37',1069,1), - (2080,'Hiiumaa','39',1069,1), - (2081,'Ida-Virumaa','44',1069,1), - (2082,'Jõgevamaa','49',1069,1), - (2083,'Järvamaa','51',1069,1), - (2084,'Läänemaa','57',1069,1), - (2085,'Lääne-Virumaa','59',1069,1), - (2086,'Põlvamaa','65',1069,1), - (2087,'Pärnumaa','67',1069,1), - (2088,'Raplamaa','70',1069,1), - (2089,'Saaremaa','74',1069,1), - (2090,'Tartumaa','7B',1069,1), - (2091,'Valgamaa','82',1069,1), - (2092,'Viljandimaa','84',1069,1), - (2093,'Võrumaa','86',1069,1), - (2094,'Ad Daqahllyah','DK',1065,1), - (2095,'Al Bahr al Ahmar','BA',1065,1), - (2096,'Al Buhayrah','BH',1065,1), - (2097,'Al Fayym','FYM',1065,1), - (2098,'Al Gharbiyah','GH',1065,1), - (2099,'Al Iskandarlyah','ALX',1065,1), - (2100,'Al Isma illyah','IS',1065,1), - (2101,'Al Jizah','GZ',1065,1), - (2102,'Al Minuflyah','MNF',1065,1), - (2103,'Al Minya','MN',1065,1), - (2104,'Al Qahirah','C',1065,1), - (2105,'Al Qalyublyah','KB',1065,1), - (2106,'Al Wadi al Jadid','WAD',1065,1), - (2107,'Ash Sharqiyah','SHR',1065,1), - (2108,'As Suways','SUZ',1065,1), - (2109,'Aswan','ASN',1065,1), - (2110,'Asyut','AST',1065,1), - (2111,'Bani Suwayf','BNS',1065,1), - (2112,'Bur Sa\'id','PTS',1065,1), - (2113,'Dumyat','DT',1065,1), - (2114,'Janub Sina\'','JS',1065,1), - (2115,'Kafr ash Shaykh','KFS',1065,1), - (2116,'Matruh','MT',1065,1), - (2117,'Qina','KN',1065,1), - (2118,'Shamal Sina\'','SIN',1065,1), - (2119,'Suhaj','SHG',1065,1), - (2120,'Anseba','AN',1068,1), - (2121,'Debub','DU',1068,1), - (2122,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068,1), - (2123,'Gash-Barka','GB',1068,1), - (2124,'Maakel [Maekel]','MA',1068,1), - (2125,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068,1), - (2126,'Álava','VI',1198,1), - (2127,'Albacete','AB',1198,1), - (2128,'Alicante','A',1198,1), - (2129,'Almería','AL',1198,1), - (2130,'Asturias','O',1198,1), - (2131,'Ávila','AV',1198,1), - (2132,'Badajoz','BA',1198,1), - (2133,'Baleares','PM',1198,1), - (2134,'Barcelona','B',1198,1), - (2135,'Burgos','BU',1198,1), - (2136,'Cáceres','CC',1198,1), - (2137,'Cádiz','CA',1198,1), - (2138,'Cantabria','S',1198,1), - (2139,'Castellón','CS',1198,1), - (2140,'Ciudad Real','CR',1198,1), - (2141,'Cuenca','CU',1198,1), - (2142,'Girona [Gerona]','GE',1198,1), - (2143,'Granada','GR',1198,1), - (2144,'Guadalajara','GU',1198,1), - (2145,'Guipúzcoa','SS',1198,1), - (2146,'Huelva','H',1198,1), - (2147,'Huesca','HU',1198,1), - (2148,'Jaén','J',1198,1), - (2149,'La Coruña','C',1198,1), - (2150,'La Rioja','LO',1198,1), - (2151,'Las Palmas','GC',1198,1), - (2152,'León','LE',1198,1), - (2153,'Lleida [Lérida]','L',1198,1), - (2154,'Lugo','LU',1198,1), - (2155,'Madrid','M',1198,1), - (2156,'Málaga','MA',1198,1), - (2157,'Murcia','MU',1198,1), - (2158,'Navarra','NA',1198,1), - (2159,'Ourense','OR',1198,1), - (2160,'Palencia','P',1198,1), - (2161,'Pontevedra','PO',1198,1), - (2162,'Salamanca','SA',1198,1), - (2163,'Santa Cruz de Tenerife','TF',1198,1), - (2164,'Segovia','SG',1198,1), - (2165,'Sevilla','SE',1198,1), - (2166,'Soria','SO',1198,1), - (2167,'Tarragona','T',1198,1), - (2168,'Teruel','TE',1198,1), - (2169,'Valencia','V',1198,1), - (2170,'Valladolid','VA',1198,1), - (2171,'Vizcaya','BI',1198,1), - (2172,'Zamora','ZA',1198,1), - (2173,'Zaragoza','Z',1198,1), - (2174,'Ceuta','CE',1198,1), - (2175,'Melilla','ML',1198,1), - (2176,'Toledo','TO',1198,1), - (2177,'Córdoba','CO',1198,1), - (2178,'Addis Ababa','AA',1070,1), - (2179,'Dire Dawa','DD',1070,1), - (2180,'Afar','AF',1070,1), - (2181,'Amara','AM',1070,1), - (2182,'Benshangul-Gumaz','BE',1070,1), - (2183,'Gambela Peoples','GA',1070,1), - (2184,'Harari People','HA',1070,1), - (2185,'Oromia','OR',1070,1), - (2186,'Somali','SO',1070,1), - (2187,'Southern Nations, Nationalities and Peoples','SN',1070,1), - (2188,'Tigrai','TI',1070,1), - (2189,'Eastern','E',1074,1), - (2190,'Northern','N',1074,1), - (2191,'Western','W',1074,1), - (2192,'Rotuma','R',1074,1), - (2193,'Central','C',1074,1), - (2194,'Chuuk','TRK',1141,1), - (2195,'Kosrae','KSA',1141,1), - (2196,'Pohnpei','PNI',1141,1), - (2197,'Yap','YAP',1141,1), - (2198,'Ain','01',1076,1), - (2199,'Aisne','02',1076,1), - (2200,'Allier','03',1076,1), - (2201,'Alpes-de-Haute-Provence','04',1076,1), - (2202,'Alpes-Maritimes','06',1076,1), - (2203,'Ardèche','07',1076,1), - (2204,'Ardennes','08',1076,1), - (2205,'Ariège','09',1076,1), - (2206,'Aube','10',1076,1), - (2207,'Aude','11',1076,1), - (2208,'Aveyron','12',1076,1), - (2209,'Bas-Rhin','67',1076,1), - (2210,'Bouches-du-Rhône','13',1076,1), - (2211,'Calvados','14',1076,1), - (2212,'Cantal','15',1076,1), - (2213,'Charente','16',1076,1), - (2214,'Charente-Maritime','17',1076,1), - (2215,'Cher','18',1076,1), - (2216,'Corrèze','19',1076,1), - (2217,'Corse-du-Sud','20A',1076,1), - (2218,'Côte-d\'Or','21',1076,1), - (2219,'Côtes-d\'Armor','22',1076,1), - (2220,'Creuse','23',1076,1), - (2221,'Deux-Sèvres','79',1076,1), - (2222,'Dordogne','24',1076,1), - (2223,'Doubs','25',1076,1), - (2224,'Drôme','26',1076,1), - (2225,'Essonne','91',1076,1), - (2226,'Eure','27',1076,1), - (2227,'Eure-et-Loir','28',1076,1), - (2228,'Finistère','29',1076,1), - (2229,'Gard','30',1076,1), - (2230,'Gers','32',1076,1), - (2231,'Gironde','33',1076,1), - (2232,'Haut-Rhin','68',1076,1), - (2233,'Haute-Corse','20B',1076,1), - (2234,'Haute-Garonne','31',1076,1), - (2235,'Haute-Loire','43',1076,1), - (2236,'Haute-Saône','70',1076,1), - (2237,'Haute-Savoie','74',1076,1), - (2238,'Haute-Vienne','87',1076,1), - (2239,'Hautes-Alpes','05',1076,1), - (2240,'Hautes-Pyrénées','65',1076,1), - (2241,'Hauts-de-Seine','92',1076,1), - (2242,'Hérault','34',1076,1), - (2243,'Indre','36',1076,1), - (2244,'Ille-et-Vilaine','35',1076,1), - (2245,'Indre-et-Loire','37',1076,1), - (2246,'Isère','38',1076,1), - (2247,'Landes','40',1076,1), - (2248,'Loir-et-Cher','41',1076,1), - (2249,'Loire','42',1076,1), - (2250,'Loire-Atlantique','44',1076,1), - (2251,'Loiret','45',1076,1), - (2252,'Lot','46',1076,1), - (2253,'Lot-et-Garonne','47',1076,1), - (2254,'Lozère','48',1076,1), - (2255,'Maine-et-Loire','49',1076,1), - (2256,'Manche','50',1076,1), - (2257,'Marne','51',1076,1), - (2258,'Mayenne','53',1076,1), - (2259,'Meurthe-et-Moselle','54',1076,1), - (2260,'Meuse','55',1076,1), - (2261,'Morbihan','56',1076,1), - (2262,'Moselle','57',1076,1), - (2263,'Nièvre','58',1076,1), - (2264,'Nord','59',1076,1), - (2265,'Oise','60',1076,1), - (2266,'Orne','61',1076,1), - (2267,'Paris','75',1076,1), - (2268,'Pas-de-Calais','62',1076,1), - (2269,'Puy-de-Dôme','63',1076,1), - (2270,'Pyrénées-Atlantiques','64',1076,1), - (2271,'Pyrénées-Orientales','66',1076,1), - (2272,'Rhône','69',1076,1), - (2273,'Saône-et-Loire','71',1076,1), - (2274,'Sarthe','72',1076,1), - (2275,'Savoie','73',1076,1), - (2276,'Seine-et-Marne','77',1076,1), - (2277,'Seine-Maritime','76',1076,1), - (2278,'Seine-Saint-Denis','93',1076,1), - (2279,'Somme','80',1076,1), - (2280,'Tarn','81',1076,1), - (2281,'Tarn-et-Garonne','82',1076,1), - (2282,'Val d\'Oise','95',1076,1), - (2283,'Territoire de Belfort','90',1076,1), - (2284,'Val-de-Marne','94',1076,1), - (2285,'Var','83',1076,1), - (2286,'Vaucluse','84',1076,1), - (2287,'Vendée','85',1076,1), - (2288,'Vienne','86',1076,1), - (2289,'Vosges','88',1076,1), - (2290,'Yonne','89',1076,1), - (2291,'Yvelines','78',1076,1), - (2292,'Guadeloupe','GP',1076,1), - (2293,'Martinique','MQ',1076,1), - (2294,'Guyane','GF',1076,1), - (2295,'La Réunion','RE',1076,1), - (2296,'Mayotte','YT',1076,1), - (2297,'Wallis-et-Futuna','WF',1076,1), - (2298,'Nouvelle-Calédonie','NC',1076,1), - (2299,'Haute-Marne','52',1076,1), - (2300,'Jura','39',1076,1), - (2301,'Aberdeen City','ABE',1226,1), - (2302,'Aberdeenshire','ABD',1226,1), - (2303,'Angus','ANS',1226,1), - (2304,'Co Antrim','ANT',1226,1), - (2305,'Argyll and Bute','AGB',1226,1), - (2306,'Co Armagh','ARM',1226,1), - (2307,'Bedfordshire','BDF',1226,1), - (2308,'Blaenau Gwent','BGW',1226,1), - (2309,'Bristol, City of','BST',1226,1), - (2310,'Buckinghamshire','BKM',1226,1), - (2311,'Cambridgeshire','CAM',1226,1), - (2312,'Cheshire','CHS',1226,1), - (2313,'Clackmannanshire','CLK',1226,1), - (2314,'Cornwall','CON',1226,1), - (2315,'Cumbria','CMA',1226,1), - (2316,'Derbyshire','DBY',1226,1), - (2317,'Co Londonderry','DRY',1226,1), - (2318,'Devon','DEV',1226,1), - (2319,'Dorset','DOR',1226,1), - (2320,'Co Down','DOW',1226,1), - (2321,'Dumfries and Galloway','DGY',1226,1), - (2322,'Dundee City','DND',1226,1), - (2323,'County Durham','DUR',1226,1), - (2324,'East Ayrshire','EAY',1226,1), - (2325,'East Dunbartonshire','EDU',1226,1), - (2326,'East Lothian','ELN',1226,1), - (2327,'East Renfrewshire','ERW',1226,1), - (2328,'East Riding of Yorkshire','ERY',1226,1), - (2329,'East Sussex','ESX',1226,1), - (2330,'Edinburgh, City of','EDH',1226,1), - (2331,'Na h-Eileanan Siar','ELS',1226,1), - (2332,'Essex','ESS',1226,1), - (2333,'Falkirk','FAL',1226,1), - (2334,'Co Fermanagh','FER',1226,1), - (2335,'Fife','FIF',1226,1), - (2336,'Glasgow City','GLG',1226,1), - (2337,'Gloucestershire','GLS',1226,1), - (2338,'Gwynedd','GWN',1226,1), - (2339,'Hampshire','HAM',1226,1), - (2340,'Herefordshire','HEF',1226,1), - (2341,'Hertfordshire','HRT',1226,1), - (2342,'Highland','HED',1226,1), - (2343,'Inverclyde','IVC',1226,1), - (2344,'Isle of Wight','IOW',1226,1), - (2345,'Kent','KEN',1226,1), - (2346,'Lancashire','LAN',1226,1), - (2347,'Leicestershire','LEC',1226,1), - (2348,'Lincolnshire','LIN',1226,1), - (2349,'Midlothian','MLN',1226,1), - (2350,'Moray','MRY',1226,1), - (2351,'Norfolk','NFK',1226,1), - (2352,'North Ayrshire','NAY',1226,1), - (2353,'North Lanarkshire','NLK',1226,1), - (2354,'North Yorkshire','NYK',1226,1), - (2355,'Northamptonshire','NTH',1226,1), - (2356,'Northumberland','NBL',1226,1), - (2357,'Nottinghamshire','NTT',1226,1), - (2358,'Oldham','OLD',1226,1), - (2359,'Omagh','OMH',1226,1), - (2360,'Orkney Islands','ORR',1226,1), - (2361,'Oxfordshire','OXF',1226,1), - (2362,'Perth and Kinross','PKN',1226,1), - (2363,'Powys','POW',1226,1), - (2364,'Renfrewshire','RFW',1226,1), - (2365,'Rutland','RUT',1226,1), - (2366,'Scottish Borders','SCB',1226,1), - (2367,'Shetland Islands','ZET',1226,1), - (2368,'Shropshire','SHR',1226,1), - (2369,'Somerset','SOM',1226,1), - (2370,'South Ayrshire','SAY',1226,1), - (2371,'South Gloucestershire','SGC',1226,1), - (2372,'South Lanarkshire','SLK',1226,1), - (2373,'Staffordshire','STS',1226,1), - (2374,'Stirling','STG',1226,1), - (2375,'Suffolk','SFK',1226,1), - (2376,'Surrey','SRY',1226,1), - (2377,'Vale of Glamorgan, The','VGL',1226,1), - (2378,'Warwickshire','WAR',1226,1), - (2379,'West Dunbartonshire','WDU',1226,1), - (2380,'West Lothian','WLN',1226,1), - (2381,'West Sussex','WSX',1226,1), - (2382,'Wiltshire','WIL',1226,1), - (2383,'Worcestershire','WOR',1226,1), - (2384,'Antrim and Newtownabbey','ANN',1226,1), - (2385,'Ards and North Down','AND',1226,1), - (2386,'Armagh City, Banbridge and Craigavon','ABC',1226,1), - (2387,'Belfast','BFS',1226,1), - (2388,'Causeway Coast and Glens','CCG',1226,1), - (2389,'Derry City and Strabane','DRS',1226,1), - (2390,'Fermanagh and Omagh','FMO',1226,1), - (2391,'Lisburn and Castlereagh','LBC',1226,1), - (2392,'Mid and East Antrim','MEA',1226,1), - (2393,'Mid Ulster','MUL',1226,1), - (2394,'Newry, Mourne and Down','NMD',1226,1), - (2395,'Bridgend','BGE',1226,1), - (2396,'Caerphilly','CAY',1226,1), - (2397,'Cardiff','CRF',1226,1), - (2398,'Carmarthenshire','CMN',1226,1), - (2399,'Ceredigion','CGN',1226,1), - (2400,'Conwy','CWY',1226,1), - (2401,'Denbighshire','DEN',1226,1), - (2402,'Flintshire','FLN',1226,1), - (2403,'Isle of Anglesey','AGY',1226,1), - (2404,'Merthyr Tydfil','MTY',1226,1), - (2405,'Neath Port Talbot','NTL',1226,1), - (2406,'Newport','NWP',1226,1), - (2407,'Pembrokeshire','PEM',1226,1), - (2408,'Rhondda, Cynon, Taff','RCT',1226,1), - (2409,'Swansea','SWA',1226,1), - (2410,'Torfaen','TOF',1226,1), - (2411,'Wrexham','WRX',1226,1), - (2412,'Monmouthshire','MON',1226,1), - (2413,'Tyne and Wear','TWR',1226,1), - (2414,'Greater Manchester','GTM',1226,1), - (2415,'Co Tyrone','TYR',1226,1), - (2416,'West Yorkshire','WYK',1226,1), - (2417,'South Yorkshire','SYK',1226,1), - (2418,'Merseyside','MSY',1226,1), - (2419,'Berkshire','BRK',1226,1), - (2420,'West Midlands','WMD',1226,1), - (2421,'West Glamorgan','WGM',1226,1), - (2422,'London','LON',1226,1), - (2423,'Clwyd','CWD',1226,1), - (2424,'South Glamorgan','SGM',1226,1), - (2425,'Ashanti','AH',1083,1), - (2426,'Brong-Ahafo','BA',1083,1), - (2427,'Greater Accra','AA',1083,1), - (2428,'Upper East','UE',1083,1), - (2429,'Upper West','UW',1083,1), - (2430,'Volta','TV',1083,1), - (2431,'Central','CP',1083,1), - (2432,'Eastern','EP',1083,1), - (2433,'Northern','NP',1083,1), - (2434,'Western','WP',1083,1), - (2435,'Banjul','B',1213,1), - (2436,'Lower River','L',1213,1), - (2437,'MacCarthy Island','M',1213,1), - (2438,'North Bank','N',1213,1), - (2439,'Upper River','U',1213,1), - (2440,'Beyla','BE',1091,1), - (2441,'Boffa','BF',1091,1), - (2442,'Boke','BK',1091,1), - (2443,'Coyah','CO',1091,1), - (2444,'Dabola','DB',1091,1), - (2445,'Dalaba','DL',1091,1), - (2446,'Dinguiraye','DI',1091,1), - (2447,'Dubreka','DU',1091,1), - (2448,'Faranah','FA',1091,1), - (2449,'Forecariah','FO',1091,1), - (2450,'Fria','FR',1091,1), - (2451,'Gaoual','GA',1091,1), - (2452,'Guekedou','GU',1091,1), - (2453,'Kankan','KA',1091,1), - (2454,'Kerouane','KE',1091,1), - (2455,'Kindia','KD',1091,1), - (2456,'Kissidougou','KS',1091,1), - (2457,'Koubia','KB',1091,1), - (2458,'Koundara','KN',1091,1), - (2459,'Kouroussa','KO',1091,1), - (2460,'Labe','LA',1091,1), - (2461,'Lelouma','LE',1091,1), - (2462,'Lola','LO',1091,1), - (2463,'Macenta','MC',1091,1), - (2464,'Mali','ML',1091,1), - (2465,'Mamou','MM',1091,1), - (2466,'Mandiana','MD',1091,1), - (2467,'Nzerekore','NZ',1091,1), - (2468,'Pita','PI',1091,1), - (2469,'Siguiri','SI',1091,1), - (2470,'Telimele','TE',1091,1), - (2471,'Tougue','TO',1091,1), - (2472,'Yomou','YO',1091,1), - (2473,'Region Continental','C',1067,1), - (2474,'Region Insular','I',1067,1), - (2475,'Annobon','AN',1067,1), - (2476,'Bioko Norte','BN',1067,1), - (2477,'Bioko Sur','BS',1067,1), - (2478,'Centro Sur','CS',1067,1), - (2479,'Kie-Ntem','KN',1067,1), - (2480,'Litoral','LI',1067,1), - (2481,'Wele-Nzas','WN',1067,1), - (2482,'Achaïa','13',1085,1), - (2483,'Aitolia-Akarnania','01',1085,1), - (2484,'Argolis','11',1085,1), - (2485,'Arkadia','12',1085,1), - (2486,'Arta','31',1085,1), - (2487,'Attiki','A1',1085,1), - (2488,'Chalkidiki','64',1085,1), - (2489,'Chania','94',1085,1), - (2490,'Chios','85',1085,1), - (2491,'Dodekanisos','81',1085,1), - (2492,'Drama','52',1085,1), - (2493,'Evros','71',1085,1), - (2494,'Evrytania','05',1085,1), - (2495,'Evvoia','04',1085,1), - (2496,'Florina','63',1085,1), - (2497,'Fokis','07',1085,1), - (2498,'Fthiotis','06',1085,1), - (2499,'Grevena','51',1085,1), - (2500,'Ileia','14',1085,1), - (2501,'Imathia','53',1085,1), - (2502,'Ioannina','33',1085,1), - (2503,'Irakleion','91',1085,1), - (2504,'Karditsa','41',1085,1), - (2505,'Kastoria','56',1085,1), - (2506,'Kavalla','55',1085,1), - (2507,'Kefallinia','23',1085,1), - (2508,'Kerkyra','22',1085,1), - (2509,'Kilkis','57',1085,1), - (2510,'Korinthia','15',1085,1), - (2511,'Kozani','58',1085,1), - (2512,'Kyklades','82',1085,1), - (2513,'Lakonia','16',1085,1), - (2514,'Larisa','42',1085,1), - (2515,'Lasithion','92',1085,1), - (2516,'Lefkas','24',1085,1), - (2517,'Lesvos','83',1085,1), - (2518,'Magnisia','43',1085,1), - (2519,'Messinia','17',1085,1), - (2520,'Pella','59',1085,1), - (2521,'Preveza','34',1085,1), - (2522,'Rethymnon','93',1085,1), - (2523,'Rodopi','73',1085,1), - (2524,'Samos','84',1085,1), - (2525,'Serrai','62',1085,1), - (2526,'Thesprotia','32',1085,1), - (2527,'Thessaloniki','54',1085,1), - (2528,'Trikala','44',1085,1), - (2529,'Voiotia','03',1085,1), - (2530,'Xanthi','72',1085,1), - (2531,'Zakynthos','21',1085,1), - (2532,'Agio Oros','69',1085,1), - (2533,'Pieria','61',1085,1), - (2534,'Alta Verapaz','AV',1090,1), - (2535,'Baja Verapaz','BV',1090,1), - (2536,'Chimaltenango','CM',1090,1), - (2537,'Chiquimula','CQ',1090,1), - (2538,'El Progreso','PR',1090,1), - (2539,'Escuintla','ES',1090,1), - (2540,'Guatemala','GU',1090,1), - (2541,'Huehuetenango','HU',1090,1), - (2542,'Izabal','IZ',1090,1), - (2543,'Jalapa','JA',1090,1), - (2544,'Jutiapa','JU',1090,1), - (2545,'Peten','PE',1090,1), - (2546,'Quetzaltenango','QZ',1090,1), - (2547,'Quiche','QC',1090,1), - (2548,'Retalhuleu','RE',1090,1), - (2549,'Sacatepequez','SA',1090,1), - (2550,'San Marcos','SM',1090,1), - (2551,'Santa Rosa','SR',1090,1), - (2552,'Sololá','SO',1090,1), - (2553,'Suchitepequez','SU',1090,1), - (2554,'Totonicapan','TO',1090,1), - (2555,'Zacapa','ZA',1090,1), - (2556,'Bissau','BS',1092,1), - (2557,'Bafata','BA',1092,1), - (2558,'Biombo','BM',1092,1), - (2559,'Bolama','BL',1092,1), - (2560,'Cacheu','CA',1092,1), - (2561,'Gabu','GA',1092,1), - (2562,'Oio','OI',1092,1), - (2563,'Quloara','QU',1092,1), - (2564,'Tombali S','TO',1092,1), - (2565,'Barima-Waini','BA',1093,1), - (2566,'Cuyuni-Mazaruni','CU',1093,1), - (2567,'Demerara-Mahaica','DE',1093,1), - (2568,'East Berbice-Corentyne','EB',1093,1), - (2569,'Essequibo Islands-West Demerara','ES',1093,1), - (2570,'Mahaica-Berbice','MA',1093,1), - (2571,'Pomeroon-Supenaam','PM',1093,1), - (2572,'Potaro-Siparuni','PT',1093,1), - (2573,'Upper Demerara-Berbice','UD',1093,1), - (2574,'Upper Takutu-Upper Essequibo','UT',1093,1), - (2575,'Atlantida','AT',1097,1), - (2576,'Colon','CL',1097,1), - (2577,'Comayagua','CM',1097,1), - (2578,'Copan','CP',1097,1), - (2579,'Cortes','CR',1097,1), - (2580,'Choluteca','CH',1097,1), - (2581,'El Paraiso','EP',1097,1), - (2582,'Francisco Morazan','FM',1097,1), - (2583,'Gracias a Dios','GD',1097,1), - (2584,'Intibuca','IN',1097,1), - (2585,'Islas de la Bahia','IB',1097,1), - (2586,'Lempira','LE',1097,1), - (2587,'Ocotepeque','OC',1097,1), - (2588,'Olancho','OL',1097,1), - (2589,'Santa Barbara','SB',1097,1), - (2590,'Valle','VA',1097,1), - (2591,'Yoro','YO',1097,1), - (2592,'La Paz','LP',1097,1), - (2593,'Bjelovarsko-bilogorska zupanija','07',1055,1), - (2594,'Brodsko-posavska zupanija','12',1055,1), - (2595,'Dubrovacko-neretvanska zupanija','19',1055,1), - (2596,'Istarska zupanija','18',1055,1), - (2597,'Karlovacka zupanija','04',1055,1), - (2598,'Koprivnickco-krizevacka zupanija','06',1055,1), - (2599,'Krapinako-zagorska zupanija','02',1055,1), - (2600,'Licko-senjska zupanija','09',1055,1), - (2601,'Medimurska zupanija','20',1055,1), - (2602,'Osjecko-baranjska zupanija','14',1055,1), - (2603,'Pozesko-slavonska zupanija','11',1055,1), - (2604,'Primorsko-goranska zupanija','08',1055,1), - (2605,'Sisacko-moelavacka Iupanija','03',1055,1), - (2606,'Splitako-dalmatinska zupanija','17',1055,1), - (2607,'Sibenako-kninska zupanija','15',1055,1), - (2608,'Varaidinska zupanija','05',1055,1), - (2609,'VirovitiEko-podravska zupanija','10',1055,1), - (2610,'VuRovarako-srijemska zupanija','16',1055,1), - (2611,'Zadaraka','13',1055,1), - (2612,'Zagrebacka zupanija','01',1055,1), - (2613,'Grande-Anse','GA',1094,1), - (2614,'Nord-Est','NE',1094,1), - (2615,'Nord-Ouest','NO',1094,1), - (2616,'Ouest','OU',1094,1), - (2617,'Sud','SD',1094,1), - (2618,'Sud-Est','SE',1094,1), - (2619,'Artibonite','AR',1094,1), - (2620,'Centre','CE',1094,1), - (2621,'Nippes','NI',1094,1), - (2622,'Nord','ND',1094,1), - (2623,'Budapest','BU',1099,1), - (2624,'Bács-Kiskun','BK',1099,1), - (2625,'Baranya','BA',1099,1), - (2626,'Békés','BE',1099,1), - (2627,'Borsod-Abaúj-Zemplén','BZ',1099,1), - (2628,'Csongrád','CS',1099,1), - (2629,'Fejér','FE',1099,1), - (2630,'Győr-Moson-Sopron','GS',1099,1), - (2631,'Hajdu-Bihar','HB',1099,1), - (2632,'Heves','HE',1099,1), - (2633,'Jász-Nagykun-Szolnok','JN',1099,1), - (2634,'Komárom-Esztergom','KE',1099,1), - (2635,'Nográd','NO',1099,1), - (2636,'Pest','PE',1099,1), - (2637,'Somogy','SO',1099,1), - (2638,'Szabolcs-Szatmár-Bereg','SZ',1099,1), - (2639,'Tolna','TO',1099,1), - (2640,'Vas','VA',1099,1), - (2641,'Veszprém','VE',1099,1), - (2642,'Zala','ZA',1099,1), - (2643,'Békéscsaba','BC',1099,1), - (2644,'Debrecen','DE',1099,1), - (2645,'Dunaújváros','DU',1099,1), - (2646,'Eger','EG',1099,1), - (2647,'Győr','GY',1099,1), - (2648,'Hódmezővásárhely','HV',1099,1), - (2649,'Kaposvár','KV',1099,1), - (2650,'Kecskemét','KM',1099,1), - (2651,'Miskolc','MI',1099,1), - (2652,'Nagykanizsa','NK',1099,1), - (2653,'Nyiregyháza','NY',1099,1), - (2654,'Pécs','PS',1099,1), - (2655,'Salgótarján','ST',1099,1), - (2656,'Sopron','SN',1099,1), - (2657,'Szeged','SD',1099,1), - (2658,'Székesfehérvár','SF',1099,1), - (2659,'Szekszárd','SS',1099,1), - (2660,'Szolnok','SK',1099,1), - (2661,'Szombathely','SH',1099,1), - (2662,'Tatabánya','TB',1099,1), - (2663,'Zalaegerszeg','ZE',1099,1), - (2664,'Bali','BA',1102,1), - (2665,'Kepulauan Bangka Belitung','BB',1102,1), - (2666,'Banten','BT',1102,1), - (2667,'Bengkulu','BE',1102,1), - (2668,'Gorontalo','GO',1102,1), - (2669,'Papua Barat','PB',1102,1), - (2670,'Jambi','JA',1102,1), - (2671,'Jawa Barat','JB',1102,1), - (2672,'Jawa Tengah','JT',1102,1), - (2673,'Jawa Timur','JI',1102,1), - (2674,'Kalimantan Barat','KB',1102,1), - (2675,'Kalimantan Timur','KI',1102,1), - (2676,'Kalimantan Selatan','KS',1102,1), - (2677,'Kepulauan Riau','KR',1102,1), - (2678,'Lampung','LA',1102,1), - (2679,'Maluku','MA',1102,1), - (2680,'Maluku Utara','MU',1102,1), - (2681,'Nusa Tenggara Barat','NB',1102,1), - (2682,'Nusa Tenggara Timur','NT',1102,1), - (2683,'Papua','PA',1102,1), - (2684,'Riau','RI',1102,1), - (2685,'Sulawesi Selatan','SN',1102,1), - (2686,'Sulawesi Tengah','ST',1102,1), - (2687,'Sulawesi Tenggara','SG',1102,1), - (2688,'Sulawesi Utara','SA',1102,1), - (2689,'Sumatra Barat','SB',1102,1), - (2690,'Sumatra Selatan','SS',1102,1), - (2691,'Sumatera Utara','SU',1102,1), - (2692,'DKI Jakarta','JK',1102,1), - (2693,'Aceh','AC',1102,1), - (2694,'DI Yogyakarta','YO',1102,1), - (2695,'Kalimantan Tengah','KT',1102,1), - (2696,'Sulawesi Barat','SR',1102,1), - (2697,'Kalimantan Utara','KU',1102,1), - (2698,'Cork','C',1105,1), - (2699,'Clare','CE',1105,1), - (2700,'Cavan','CN',1105,1), - (2701,'Carlow','CW',1105,1), - (2702,'Dublin','D',1105,1), - (2703,'Donegal','DL',1105,1), - (2704,'Galway','G',1105,1), - (2705,'Kildare','KE',1105,1), - (2706,'Kilkenny','KK',1105,1), - (2707,'Kerry','KY',1105,1), - (2708,'Longford','LD',1105,1), - (2709,'Louth','LH',1105,1), - (2710,'Limerick','LK',1105,1), - (2711,'Leitrim','LM',1105,1), - (2712,'Laois','LS',1105,1), - (2713,'Meath','MH',1105,1), - (2714,'Monaghan','MN',1105,1), - (2715,'Mayo','MO',1105,1), - (2716,'Offaly','OY',1105,1), - (2717,'Roscommon','RN',1105,1), - (2718,'Sligo','SO',1105,1), - (2719,'Tipperary','TA',1105,1), - (2720,'Waterford','WD',1105,1), - (2721,'Westmeath','WH',1105,1), - (2722,'Wicklow','WW',1105,1), - (2723,'Wexford','WX',1105,1), - (2724,'HaDarom','D',1106,1), - (2725,'HaMerkaz','M',1106,1), - (2726,'HaZafon','Z',1106,1), - (2727,'Haifa','HA',1106,1), - (2728,'Tel-Aviv','TA',1106,1), - (2729,'Jerusalem','JM',1106,1), - (2730,'Al Anbar','AN',1104,1), - (2731,'Al Ba,rah','BA',1104,1), - (2732,'Al Muthanna','MU',1104,1), - (2733,'Al Qadisiyah','QA',1104,1), - (2734,'An Najef','NA',1104,1), - (2735,'Arbil','AR',1104,1), - (2736,'As Sulaymaniyah','SW',1104,1), - (2737,'At Ta\'mim','TS',1104,1), - (2738,'Babil','BB',1104,1), - (2739,'Baghdad','BG',1104,1), - (2740,'Dahuk','DA',1104,1), - (2741,'Dhi Qar','DQ',1104,1), - (2742,'Diyala','DI',1104,1), - (2743,'Karbala\'','KA',1104,1), - (2744,'Maysan','MA',1104,1), - (2745,'Ninawa','NI',1104,1), - (2746,'Salah ad Din','SD',1104,1), - (2747,'Wasit','WA',1104,1), - (2748,'Ardabil','03',1103,1), - (2749,'Azarbayjan-e Gharbi','02',1103,1), - (2750,'Azarbayjan-e Sharqi','01',1103,1), - (2751,'Bushehr','06',1103,1), - (2752,'Chahar Mahall va Bakhtiari','08',1103,1), - (2753,'Esfahan','04',1103,1), - (2754,'Fars','14',1103,1), - (2755,'Gilan','19',1103,1), - (2756,'Golestan','27',1103,1), - (2757,'Hamadan','24',1103,1), - (2758,'Hormozgan','23',1103,1), - (2759,'Iiam','05',1103,1), - (2760,'Kerman','15',1103,1), - (2761,'Kermanshah','17',1103,1), - (2762,'Khorasan','09',1103,1), - (2763,'Khuzestan','10',1103,1), - (2764,'Kohjiluyeh va Buyer Ahmad','18',1103,1), - (2765,'Kordestan','16',1103,1), - (2766,'Lorestan','20',1103,1), - (2767,'Markazi','22',1103,1), - (2768,'Mazandaran','21',1103,1), - (2769,'Qazvin','28',1103,1), - (2770,'Qom','26',1103,1), - (2771,'Semnan','12',1103,1), - (2772,'Sistan va Baluchestan','13',1103,1), - (2773,'Tehran','07',1103,1), - (2774,'Yazd','25',1103,1), - (2775,'Zanjan','11',1103,1), - (2776,'Austurland','7',1100,1), - (2777,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100,1), - (2778,'Norourland eystra','6',1100,1), - (2779,'Norourland vestra','5',1100,1), - (2780,'Reykjavik','0',1100,1), - (2781,'Suourland','8',1100,1), - (2782,'Suournes','2',1100,1), - (2783,'Vestfirolr','4',1100,1), - (2784,'Vesturland','3',1100,1), - (2785,'Agrigento','AG',1107,1), - (2786,'Alessandria','AL',1107,1), - (2787,'Ancona','AN',1107,1), - (2788,'Aosta','AO',1107,1), - (2789,'Arezzo','AR',1107,1), - (2790,'Ascoli Piceno','AP',1107,1), - (2791,'Asti','AT',1107,1), - (2792,'Avellino','AV',1107,1), - (2793,'Bari','BA',1107,1), - (2794,'Belluno','BL',1107,1), - (2795,'Benevento','BN',1107,1), - (2796,'Bergamo','BG',1107,1), - (2797,'Biella','BI',1107,1), - (2798,'Bologna','BO',1107,1), - (2799,'Bolzano','BZ',1107,1), - (2800,'Brescia','BS',1107,1), - (2801,'Brindisi','BR',1107,1), - (2802,'Cagliari','CA',1107,1), - (2803,'Caltanissetta','CL',1107,1), - (2804,'Campobasso','CB',1107,1), - (2805,'Caserta','CE',1107,1), - (2806,'Catania','CT',1107,1), - (2807,'Catanzaro','CZ',1107,1), - (2808,'Chieti','CH',1107,1), - (2809,'Como','CO',1107,1), - (2810,'Cosenza','CS',1107,1), - (2811,'Cremona','CR',1107,1), - (2812,'Crotone','KR',1107,1), - (2813,'Cuneo','CN',1107,1), - (2814,'Enna','EN',1107,1), - (2815,'Ferrara','FE',1107,1), - (2816,'Firenze','FI',1107,1), - (2817,'Foggia','FG',1107,1), - (2818,'Forlì-Cesena','FC',1107,1), - (2819,'Frosinone','FR',1107,1), - (2820,'Genova','GE',1107,1), - (2821,'Gorizia','GO',1107,1), - (2822,'Grosseto','GR',1107,1), - (2823,'Imperia','IM',1107,1), - (2824,'Isernia','IS',1107,1), - (2825,'L\'Aquila','AQ',1107,1), - (2826,'La Spezia','SP',1107,1), - (2827,'Latina','LT',1107,1), - (2828,'Lecce','LE',1107,1), - (2829,'Lecco','LC',1107,1), - (2830,'Livorno','LI',1107,1), - (2831,'Lodi','LO',1107,1), - (2832,'Lucca','LU',1107,1), - (2833,'Macerata','MC',1107,1), - (2834,'Mantova','MN',1107,1), - (2835,'Massa-Carrara','MS',1107,1), - (2836,'Matera','MT',1107,1), - (2837,'Messina','ME',1107,1), - (2838,'Milano','MI',1107,1), - (2839,'Modena','MO',1107,1), - (2840,'Napoli','NA',1107,1), - (2841,'Novara','NO',1107,1), - (2842,'Nuoro','NU',1107,1), - (2843,'Oristano','OR',1107,1), - (2844,'Padova','PD',1107,1), - (2845,'Palermo','PA',1107,1), - (2846,'Parma','PR',1107,1), - (2847,'Pavia','PV',1107,1), - (2848,'Perugia','PG',1107,1), - (2849,'Pesaro e Urbino','PU',1107,1), - (2850,'Pescara','PE',1107,1), - (2851,'Piacenza','PC',1107,1), - (2852,'Pisa','PI',1107,1), - (2853,'Pistoia','PT',1107,1), - (2854,'Pordenone','PN',1107,1), - (2855,'Potenza','PZ',1107,1), - (2856,'Prato','PO',1107,1), - (2857,'Ragusa','RG',1107,1), - (2858,'Ravenna','RA',1107,1), - (2859,'Reggio Calabria','RC',1107,1), - (2860,'Reggio Emilia','RE',1107,1), - (2861,'Rieti','RI',1107,1), - (2862,'Rimini','RN',1107,1), - (2863,'Roma','RM',1107,1), - (2864,'Rovigo','RO',1107,1), - (2865,'Salerno','SA',1107,1), - (2866,'Sassari','SS',1107,1), - (2867,'Savona','SV',1107,1), - (2868,'Siena','SI',1107,1), - (2869,'Siracusa','SR',1107,1), - (2870,'Sondrio','SO',1107,1), - (2871,'Taranto','TA',1107,1), - (2872,'Teramo','TE',1107,1), - (2873,'Terni','TR',1107,1), - (2874,'Torino','TO',1107,1), - (2875,'Trapani','TP',1107,1), - (2876,'Trento','TN',1107,1), - (2877,'Treviso','TV',1107,1), - (2878,'Trieste','TS',1107,1), - (2879,'Udine','UD',1107,1), - (2880,'Varese','VA',1107,1), - (2881,'Venezia','VE',1107,1), - (2882,'Verbano-Cusio-Ossola','VB',1107,1), - (2883,'Vercelli','VC',1107,1), - (2884,'Verona','VR',1107,1), - (2885,'Vibo Valentia','VV',1107,1), - (2886,'Vicenza','VI',1107,1), - (2887,'Viterbo','VT',1107,1), - (2888,'Barletta-Andria-Trani','BT',1107,1), - (2889,'Fermo','FM',1107,1), - (2890,'Monza e Brianza','MB',1107,1), - (2891,'Carbonia-Iglesias','CI',1107,1), - (2892,'Olbia-Tempio','OT',1107,1), - (2893,'Medio Campidano','VS',1107,1), - (2894,'Ogliastra','OG',1107,1), - (2895,'Aichi','23',1109,1), - (2896,'Akita','05',1109,1), - (2897,'Aomori','02',1109,1), - (2898,'Chiba','12',1109,1), - (2899,'Ehime','38',1109,1), - (2900,'Fukui','18',1109,1), - (2901,'Fukuoka','40',1109,1), - (2902,'Fukusima','07',1109,1), - (2903,'Gifu','21',1109,1), - (2904,'Gunma','10',1109,1), - (2905,'Hiroshima','34',1109,1), - (2906,'Hokkaido','01',1109,1), - (2907,'Hyogo','28',1109,1), - (2908,'Ibaraki','08',1109,1), - (2909,'Ishikawa','17',1109,1), - (2910,'Iwate','03',1109,1), - (2911,'Kagawa','37',1109,1), - (2912,'Kagoshima','46',1109,1), - (2913,'Kanagawa','14',1109,1), - (2914,'Kochi','39',1109,1), - (2915,'Kumamoto','43',1109,1), - (2916,'Kyoto','26',1109,1), - (2917,'Mie','24',1109,1), - (2918,'Miyagi','04',1109,1), - (2919,'Miyazaki','45',1109,1), - (2920,'Nagano','20',1109,1), - (2921,'Nagasaki','42',1109,1), - (2922,'Nara','29',1109,1), - (2923,'Niigata','15',1109,1), - (2924,'Oita','44',1109,1), - (2925,'Okayama','33',1109,1), - (2926,'Okinawa','47',1109,1), - (2927,'Osaka','27',1109,1), - (2928,'Saga','41',1109,1), - (2929,'Saitama','11',1109,1), - (2930,'Shiga','25',1109,1), - (2931,'Shimane','32',1109,1), - (2932,'Shizuoka','22',1109,1), - (2933,'Tochigi','09',1109,1), - (2934,'Tokushima','36',1109,1), - (2935,'Tokyo','13',1109,1), - (2936,'Tottori','31',1109,1), - (2937,'Toyama','16',1109,1), - (2938,'Wakayama','30',1109,1), - (2939,'Yamagata','06',1109,1), - (2940,'Yamaguchi','35',1109,1), - (2941,'Yamanashi','19',1109,1), - (2942,'Clarendon','CN',1108,1), - (2943,'Hanover','HR',1108,1), - (2944,'Kingston','KN',1108,1), - (2945,'Portland','PD',1108,1), - (2946,'Saint Andrew','AW',1108,1), - (2947,'Saint Ann','AN',1108,1), - (2948,'Saint Catherine','CE',1108,1), - (2949,'Saint Elizabeth','EH',1108,1), - (2950,'Saint James','JS',1108,1), - (2951,'Saint Mary','MY',1108,1), - (2952,'Saint Thomas','TS',1108,1), - (2953,'Trelawny','TY',1108,1), - (2954,'Westmoreland','WD',1108,1), - (2955,'Ajln','AJ',1110,1), - (2956,'Al \'Aqaba','AQ',1110,1), - (2957,'Al Balqa\'','BA',1110,1), - (2958,'Al Karak','KA',1110,1), - (2959,'Al Mafraq','MA',1110,1), - (2960,'Amman','AM',1110,1), - (2961,'At Tafilah','AT',1110,1), - (2962,'Az Zarga','AZ',1110,1), - (2963,'Irbid','JR',1110,1), - (2964,'Jarash','JA',1110,1), - (2965,'Ma\'an','MN',1110,1), - (2966,'Madaba','MD',1110,1), - (2967,'Baringo','01',1112,1), - (2968,'Bomet','02',1112,1), - (2969,'Bungoma','03',1112,1), - (2970,'Busia','04',1112,1), - (2971,'Elgeyo/Marakwet','05',1112,1), - (2972,'Embu','06',1112,1), - (2973,'Garissa','07',1112,1), - (2974,'Homa Bay','08',1112,1), - (2975,'Isiolo','09',1112,1), - (2976,'Kajiado','10',1112,1), - (2977,'Kakamega','11',1112,1), - (2978,'Kericho','12',1112,1), - (2979,'Kiambu','13',1112,1), - (2980,'Kilifi','14',1112,1), - (2981,'Kirinyaga','15',1112,1), - (2982,'Kisii','16',1112,1), - (2983,'Kisumu','17',1112,1), - (2984,'Kitui','18',1112,1), - (2985,'Kwale','19',1112,1), - (2986,'Laikipia','20',1112,1), - (2987,'Lamu','21',1112,1), - (2988,'Machakos','22',1112,1), - (2989,'Makueni','23',1112,1), - (2990,'Mandera','24',1112,1), - (2991,'Marsabit','25',1112,1), - (2992,'Meru','26',1112,1), - (2993,'Migori','27',1112,1), - (2994,'Mombasa','28',1112,1), - (2995,'Murang\'a','29',1112,1), - (2996,'Nairobi City','30',1112,1), - (2997,'Nakuru','31',1112,1), - (2998,'Nandi','32',1112,1), - (2999,'Narok','33',1112,1), - (3000,'Nyamira','34',1112,1), - (3001,'Nyandarua','35',1112,1), - (3002,'Nyeri','36',1112,1), - (3003,'Samburu','37',1112,1), - (3004,'Siaya','38',1112,1), - (3005,'Taita/Taveta','39',1112,1), - (3006,'Tana River','40',1112,1), - (3007,'Tharaka-Nithi','41',1112,1), - (3008,'Trans Nzoia','42',1112,1), - (3009,'Turkana','43',1112,1), - (3010,'Uasin Gishu','44',1112,1), - (3011,'Vihiga','45',1112,1), - (3012,'Wajir','46',1112,1), - (3013,'West Pokot','47',1112,1), - (3014,'Bishkek','GB',1117,1), - (3015,'Batken','B',1117,1), - (3016,'Chu','C',1117,1), - (3017,'Jalal-Abad','J',1117,1), - (3018,'Naryn','N',1117,1), - (3019,'Osh','O',1117,1), - (3020,'Talas','T',1117,1), - (3021,'Ysyk-Kol','Y',1117,1), - (3022,'Krong Kaeb','23',1037,1), - (3023,'Krong Pailin','24',1037,1), - (3024,'Xrong Preah Sihanouk','18',1037,1), - (3025,'Phnom Penh','12',1037,1), - (3026,'Baat Dambang','2',1037,1), - (3027,'Banteay Mean Chey','1',1037,1), - (3028,'Rampong Chaam','3',1037,1), - (3029,'Kampong Chhnang','4',1037,1), - (3030,'Kampong Spueu','5',1037,1), - (3031,'Kampong Thum','6',1037,1), - (3032,'Kampot','7',1037,1), - (3033,'Kandaal','8',1037,1), - (3034,'Kach Kong','9',1037,1), - (3035,'Krachoh','10',1037,1), - (3036,'Mondol Kiri','11',1037,1), - (3037,'Otdar Mean Chey','22',1037,1), - (3038,'Pousaat','15',1037,1), - (3039,'Preah Vihear','13',1037,1), - (3040,'Prey Veaeng','14',1037,1), - (3041,'Rotanak Kiri','16',1037,1), - (3042,'Siem Reab','17',1037,1), - (3043,'Stueng Traeng','19',1037,1), - (3044,'Svaay Rieng','20',1037,1), - (3045,'Taakaev','21',1037,1), - (3046,'Gilbert Islands','G',1113,1), - (3047,'Line Islands','L',1113,1), - (3048,'Phoenix Islands','P',1113,1), - (3049,'Anjouan Ndzouani','A',1049,1), - (3050,'Grande Comore Ngazidja','G',1049,1), - (3051,'Moheli Moili','M',1049,1), - (3052,'Kaesong-si','KAE',1114,1), - (3053,'Nampo-si','NAM',1114,1), - (3054,'Pyongyang-ai','PYO',1114,1), - (3055,'Chagang-do','CHA',1114,1), - (3056,'Hamgyongbuk-do','HAB',1114,1), - (3057,'Hamgyongnam-do','HAN',1114,1), - (3058,'Hwanghaebuk-do','HWB',1114,1), - (3059,'Hwanghaenam-do','HWN',1114,1), - (3060,'Kangwon-do','KAN',1114,1), - (3061,'Pyonganbuk-do','PYB',1114,1), - (3062,'Pyongannam-do','PYN',1114,1), - (3063,'Yanggang-do','YAN',1114,1), - (3064,'Najin Sonbong-si','NAJ',1114,1), - (3065,'Seoul Teugbyeolsi','11',1115,1), - (3066,'Busan Gwang\'yeogsi','26',1115,1), - (3067,'Daegu Gwang\'yeogsi','27',1115,1), - (3068,'Daejeon Gwang\'yeogsi','30',1115,1), - (3069,'Gwangju Gwang\'yeogsi','29',1115,1), - (3070,'Incheon Gwang\'yeogsi','28',1115,1), - (3071,'Ulsan Gwang\'yeogsi','31',1115,1), - (3072,'Chungcheongbugdo','43',1115,1), - (3073,'Chungcheongnamdo','44',1115,1), - (3074,'Gang\'weondo','42',1115,1), - (3075,'Gyeonggido','41',1115,1), - (3076,'Gyeongsangbugdo','47',1115,1), - (3077,'Gyeongsangnamdo','48',1115,1), - (3078,'Jejudo','49',1115,1), - (3079,'Jeonrabugdo','45',1115,1), - (3080,'Jeonranamdo','46',1115,1), - (3081,'Sejong','50',1115,1), - (3082,'Al Ahmadi','AH',1116,1), - (3083,'Al Farwanlyah','FA',1116,1), - (3084,'Al Jahrah','JA',1116,1), - (3085,'Al Kuwayt','KU',1116,1), - (3086,'Hawalli','HA',1116,1), - (3087,'Almaty','ALA',1111,1), - (3088,'Astana','AST',1111,1), - (3089,'Almaty oblysy','ALM',1111,1), - (3090,'Aqmola oblysy','AKM',1111,1), - (3091,'Aqtobe oblysy','AKT',1111,1), - (3092,'Atyrau oblyfiy','ATY',1111,1), - (3093,'Batys Quzaqstan oblysy','ZAP',1111,1), - (3094,'Mangghystau oblysy','MAN',1111,1), - (3095,'Ongtustik Quzaqstan oblysy','YUZ',1111,1), - (3096,'Pavlodar oblysy','PAV',1111,1), - (3097,'Qaraghandy oblysy','KAR',1111,1), - (3098,'Qostanay oblysy','KUS',1111,1), - (3099,'Qyzylorda oblysy','KZY',1111,1), - (3100,'Shyghys Quzaqstan oblysy','VOS',1111,1), - (3101,'Soltustik Quzaqstan oblysy','SEV',1111,1), - (3102,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111,1), - (3103,'Vientiane','VT',1118,1), - (3104,'Attapu','AT',1118,1), - (3105,'Bokeo','BK',1118,1), - (3106,'Bolikhamxai','BL',1118,1), - (3107,'Champasak','CH',1118,1), - (3108,'Houaphan','HO',1118,1), - (3109,'Khammouan','KH',1118,1), - (3110,'Louang Namtha','LM',1118,1), - (3111,'Louangphabang','LP',1118,1), - (3112,'Oudomxai','OU',1118,1), - (3113,'Phongsali','PH',1118,1), - (3114,'Salavan','SL',1118,1), - (3115,'Savannakhet','SV',1118,1), - (3116,'Xaignabouli','XA',1118,1), - (3117,'Xiasomboun','XN',1118,1), - (3118,'Xekong','XE',1118,1), - (3119,'Xiangkhoang','XI',1118,1), - (3120,'Beirut','BA',1120,1), - (3121,'Beqaa','BI',1120,1), - (3122,'Mount Lebanon','JL',1120,1), - (3123,'North Lebanon','AS',1120,1), - (3124,'South Lebanon','JA',1120,1), - (3125,'Nabatieh','NA',1120,1), - (3126,'Ampara','52',1199,1), - (3127,'Anuradhapura','71',1199,1), - (3128,'Badulla','81',1199,1), - (3129,'Batticaloa','51',1199,1), - (3130,'Colombo','11',1199,1), - (3131,'Galle','31',1199,1), - (3132,'Gampaha','12',1199,1), - (3133,'Hambantota','33',1199,1), - (3134,'Jaffna','41',1199,1), - (3135,'Kalutara','13',1199,1), - (3136,'Kandy','21',1199,1), - (3137,'Kegalla','92',1199,1), - (3138,'Kilinochchi','42',1199,1), - (3139,'Kurunegala','61',1199,1), - (3140,'Mannar','43',1199,1), - (3141,'Matale','22',1199,1), - (3142,'Matara','32',1199,1), - (3143,'Monaragala','82',1199,1), - (3144,'Mullaittivu','45',1199,1), - (3145,'Nuwara Eliya','23',1199,1), - (3146,'Polonnaruwa','72',1199,1), - (3147,'Puttalum','62',1199,1), - (3148,'Ratnapura','91',1199,1), - (3149,'Trincomalee','53',1199,1), - (3150,'VavunLya','44',1199,1), - (3151,'Bomi','BM',1122,1), - (3152,'Bong','BG',1122,1), - (3153,'Grand Basaa','GB',1122,1), - (3154,'Grand Cape Mount','CM',1122,1), - (3155,'Grand Gedeh','GG',1122,1), - (3156,'Grand Kru','GK',1122,1), - (3157,'Lofa','LO',1122,1), - (3158,'Margibi','MG',1122,1), - (3159,'Maryland','MY',1122,1), - (3160,'Montserrado','MO',1122,1), - (3161,'Nimba','NI',1122,1), - (3162,'Rivercess','RI',1122,1), - (3163,'Sinoe','SI',1122,1), - (3164,'Berea','D',1121,1), - (3165,'Butha-Buthe','B',1121,1), - (3166,'Leribe','C',1121,1), - (3167,'Mafeteng','E',1121,1), - (3168,'Maseru','A',1121,1), - (3169,'Mohale\'s Hoek','F',1121,1), - (3170,'Mokhotlong','J',1121,1), - (3171,'Qacha\'s Nek','H',1121,1), - (3172,'Quthing','G',1121,1), - (3173,'Thaba-Tseka','K',1121,1), - (3174,'Alytaus Apskritis','AL',1125,1), - (3175,'Kauno Apskritis','KU',1125,1), - (3176,'Klaipėdos Apskritis','KL',1125,1), - (3177,'Marijampolės Apskritis','MR',1125,1), - (3178,'Panevėžio Apskritis','PN',1125,1), - (3179,'Šiaulių Apskritis','SA',1125,1), - (3180,'Tauragės Apskritis','TA',1125,1), - (3181,'Telšių Apskritis','TE',1125,1), - (3182,'Utenos Apskritis','UT',1125,1), - (3183,'Vilniaus Apskritis','VL',1125,1), - (3184,'Luxembourg','LU',1126,1), - (3185,'Diekirch','DI',1126,1), - (3186,'Grevenmacher','GR',1126,1), - (3187,'Capellen','CA',1126,1), - (3188,'Clervaux','CL',1126,1), - (3189,'Echternach','EC',1126,1), - (3190,'Esch-sur-Alzette','ES',1126,1), - (3191,'Mersch','ME',1126,1), - (3192,'Redange-sur-Attert','RD',1126,1), - (3193,'Remich','RM',1126,1), - (3194,'Vianden','VD',1126,1), - (3195,'Wiltz','WI',1126,1), - (3196,'Daugavpils','DGV',1119,1), - (3197,'Jelgava','JEL',1119,1), - (3198,'Jūrmala','JUR',1119,1), - (3199,'Liepāja','LPX',1119,1), - (3200,'Rēzekne','REZ',1119,1), - (3201,'Rīga','RIX',1119,1), - (3202,'Ventspils','VEN',1119,1), - (3203,'Aizkraukles novads','002',1119,1), - (3204,'Jaunjelgavas novads','038',1119,1), - (3205,'Pļaviņu novads','072',1119,1), - (3206,'Kokneses novads','046',1119,1), - (3207,'Neretas novads','065',1119,1), - (3208,'Skrīveru novads','092',1119,1), - (3209,'Alūksnes novads','007',1119,1), - (3210,'Apes novads','009',1119,1), - (3211,'Balvu novads','015',1119,1), - (3212,'Viļakas novads','108',1119,1), - (3213,'Baltinavas novads','014',1119,1), - (3214,'Rugāju novads','082',1119,1), - (3215,'Bauskas novads','016',1119,1), - (3216,'Iecavas novads','034',1119,1), - (3217,'Rundāles novads','083',1119,1), - (3218,'Vecumnieku novads','105',1119,1), - (3219,'Cēsu novads','022',1119,1), - (3220,'Līgatnes novads','055',1119,1), - (3221,'Amatas novads','008',1119,1), - (3222,'Jaunpiebalgas novads','039',1119,1), - (3223,'Priekuļu novads','075',1119,1), - (3224,'Pārgaujas novads','070',1119,1), - (3225,'Raunas novads','076',1119,1), - (3226,'Vecpiebalgas novads','104',1119,1), - (3227,'Daugavpils novads','025',1119,1), - (3228,'Ilūkstes novads','036',1119,1), - (3229,'Dobeles novads','026',1119,1), - (3230,'Auces novads','010',1119,1), - (3231,'Tērvetes novads','098',1119,1), - (3232,'Gulbenes novads','033',1119,1), - (3233,'Jelgavas novads','041',1119,1), - (3234,'Ozolnieku novads','069',1119,1), - (3235,'Jēkabpils novads','042',1119,1), - (3236,'Aknīstes novads','004',1119,1), - (3237,'Viesītes novads','107',1119,1), - (3238,'Krustpils novads','049',1119,1), - (3239,'Salas novads','085',1119,1), - (3240,'Krāslavas novads','047',1119,1), - (3241,'Dagdas novads','024',1119,1), - (3242,'Aglonas novads','001',1119,1), - (3243,'Kuldīgas novads','050',1119,1), - (3244,'Skrundas novads','093',1119,1), - (3245,'Alsungas novads','006',1119,1), - (3246,'Aizputes novads','003',1119,1), - (3247,'Durbes novads','028',1119,1), - (3248,'Grobiņas novads','032',1119,1), - (3249,'Pāvilostas novads','071',1119,1), - (3250,'Priekules novads','074',1119,1), - (3251,'Nīcas novads','066',1119,1), - (3252,'Rucavas novads','081',1119,1), - (3253,'Vaiņodes novads','100',1119,1), - (3254,'Limbažu novads','054',1119,1), - (3255,'Alojas novads','005',1119,1), - (3256,'Salacgrīvas novads','086',1119,1), - (3257,'Ludzas novads','058',1119,1), - (3258,'Kārsavas novads','044',1119,1), - (3259,'Zilupes novads','110',1119,1), - (3260,'Ciblas novads','023',1119,1), - (3261,'Madonas novads','059',1119,1), - (3262,'Cesvaines novads','021',1119,1), - (3263,'Lubānas novads','057',1119,1), - (3264,'Varakļānu novads','102',1119,1), - (3265,'Ērgļu novads','030',1119,1), - (3266,'Ogres novads','067',1119,1), - (3267,'Ikšķiles novads','035',1119,1), - (3268,'Ķeguma novads','051',1119,1), - (3269,'Lielvārdes novads','053',1119,1), - (3270,'Preiļu novads','073',1119,1), - (3271,'Līvānu novads','056',1119,1), - (3272,'Riebiņu novads','078',1119,1), - (3273,'Vārkavas novads','103',1119,1), - (3274,'Rēzeknes novads','077',1119,1), - (3275,'Viļānu novads','109',1119,1), - (3276,'Baldones novads','013',1119,1), - (3277,'Ķekavas novads','052',1119,1), - (3278,'Olaines novads','068',1119,1), - (3279,'Salaspils novads','087',1119,1), - (3280,'Saulkrastu novads','089',1119,1), - (3281,'Siguldas novads','091',1119,1), - (3282,'Inčukalna novads','037',1119,1), - (3283,'Ādažu novads','011',1119,1), - (3284,'Babītes novads','012',1119,1), - (3285,'Carnikavas novads','020',1119,1), - (3286,'Garkalnes novads','031',1119,1), - (3287,'Krimuldas novads','048',1119,1), - (3288,'Mālpils novads','061',1119,1), - (3289,'Mārupes novads','062',1119,1), - (3290,'Ropažu novads','080',1119,1), - (3291,'Sējas novads','090',1119,1), - (3292,'Stopiņu novads','095',1119,1), - (3293,'Saldus novads','088',1119,1), - (3294,'Brocēnu novads','018',1119,1), - (3295,'Talsu novads','097',1119,1), - (3296,'Dundagas novads','027',1119,1), - (3297,'Mērsraga novads','063',1119,1), - (3298,'Rojas novads','079',1119,1), - (3299,'Tukuma novads','099',1119,1), - (3300,'Kandavas novads','043',1119,1), - (3301,'Engures novads','029',1119,1), - (3302,'Jaunpils novads','040',1119,1), - (3303,'Valkas novads','101',1119,1), - (3304,'Smiltenes novads','094',1119,1), - (3305,'Strenču novads','096',1119,1), - (3306,'Kocēnu novads','045',1119,1), - (3307,'Mazsalacas novads','060',1119,1), - (3308,'Rūjienas novads','084',1119,1), - (3309,'Beverīnas novads','017',1119,1), - (3310,'Burtnieku novads','019',1119,1), - (3311,'Naukšēnu novads','064',1119,1), - (3312,'Ventspils novads','106',1119,1), - (3313,'Jēkabpils','JKB',1119,1), - (3314,'Valmiera','VMR',1119,1), - (3315,'Ajdābiyā','AJ',1123,1), - (3316,'Al Buţnān','BU',1123,1), - (3317,'Al Hizām al Akhdar','HZ',1123,1), - (3318,'Al Jabal al Akhdar','JA',1123,1), - (3319,'Al Jifārah','JI',1123,1), - (3320,'Al Jufrah','JU',1123,1), - (3321,'Al Kufrah','KF',1123,1), - (3322,'Al Marj','MJ',1123,1), - (3323,'Al Marqab','MB',1123,1), - (3324,'Al Qaţrūn','QT',1123,1), - (3325,'Al Qubbah','QB',1123,1), - (3326,'Al Wāhah','WA',1123,1), - (3327,'An Nuqaţ al Khams','NQ',1123,1), - (3328,'Ash Shāţi\'','SH',1123,1), - (3329,'Az Zāwiyah','ZA',1123,1), - (3330,'Banghāzī','BA',1123,1), - (3331,'Banī Walīd','BW',1123,1), - (3332,'Darnah','DR',1123,1), - (3333,'Ghadāmis','GD',1123,1), - (3334,'Gharyān','GR',1123,1), - (3335,'Ghāt','GT',1123,1), - (3336,'Jaghbūb','JB',1123,1), - (3337,'Mişrātah','MI',1123,1), - (3338,'Mizdah','MZ',1123,1), - (3339,'Murzuq','MQ',1123,1), - (3340,'Nālūt','NL',1123,1), - (3341,'Sabhā','SB',1123,1), - (3342,'Şabrātah Şurmān','SS',1123,1), - (3343,'Surt','SR',1123,1), - (3344,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123,1), - (3345,'Ţarābulus','TB',1123,1), - (3346,'Tarhūnah-Masallātah','TM',1123,1), - (3347,'Wādī al hayāt','WD',1123,1), - (3348,'Yafran-Jādū','YJ',1123,1), - (3349,'Agadir','AGD',1146,1), - (3350,'Aït Baha','BAH',1146,1), - (3351,'Aït Melloul','MEL',1146,1), - (3352,'Al Haouz','HAO',1146,1), - (3353,'Al Hoceïma','HOC',1146,1), - (3354,'Assa-Zag','ASZ',1146,1), - (3355,'Azilal','AZI',1146,1), - (3356,'Beni Mellal','BEM',1146,1), - (3357,'Ben Sllmane','BES',1146,1), - (3358,'Berkane','BER',1146,1), - (3359,'Boujdour','BOD',1146,1), - (3360,'Boulemane','BOM',1146,1), - (3361,'Casablanca [Dar el Beïda]','CAS',1146,1), - (3362,'Chefchaouene','CHE',1146,1), - (3363,'Chichaoua','CHI',1146,1), - (3364,'El Hajeb','HAJ',1146,1), - (3365,'El Jadida','JDI',1146,1), - (3366,'Errachidia','ERR',1146,1), - (3367,'Essaouira','ESI',1146,1), - (3368,'Es Smara','ESM',1146,1), - (3369,'Fès','FES',1146,1), - (3370,'Figuig','FIG',1146,1), - (3371,'Guelmim','GUE',1146,1), - (3372,'Ifrane','IFR',1146,1), - (3373,'Jerada','JRA',1146,1), - (3374,'Kelaat Sraghna','KES',1146,1), - (3375,'Kénitra','KEN',1146,1), - (3376,'Khemisaet','KHE',1146,1), - (3377,'Khenifra','KHN',1146,1), - (3378,'Khouribga','KHO',1146,1), - (3379,'Laâyoune (EH)','LAA',1146,1), - (3380,'Larache','LAP',1146,1), - (3381,'Marrakech','MAR',1146,1), - (3382,'Meknsès','MEK',1146,1), - (3383,'Nador','NAD',1146,1), - (3384,'Ouarzazate','OUA',1146,1), - (3385,'Oued ed Dahab (EH)','OUD',1146,1), - (3386,'Oujda','OUJ',1146,1), - (3387,'Rabat-Salé','RBA',1146,1), - (3388,'Safi','SAF',1146,1), - (3389,'Sefrou','SEF',1146,1), - (3390,'Settat','SET',1146,1), - (3391,'Sidl Kacem','SIK',1146,1), - (3392,'Tanger','TNG',1146,1), - (3393,'Tan-Tan','TNT',1146,1), - (3394,'Taounate','TAO',1146,1), - (3395,'Taroudannt','TAR',1146,1), - (3396,'Tata','TAT',1146,1), - (3397,'Taza','TAZ',1146,1), - (3398,'Tétouan','TET',1146,1), - (3399,'Tiznit','TIZ',1146,1), - (3400,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142,1), - (3401,'Chisinau','CU',1142,1), - (3402,'Stinga Nistrului, unitatea teritoriala din','SN',1142,1), - (3403,'Balti','BA',1142,1), - (3404,'Cahul','CA',1142,1), - (3405,'Edinet','ED',1142,1), - (3406,'Lapusna','LA',1142,1), - (3407,'Orhei','OR',1142,1), - (3408,'Soroca','SO',1142,1), - (3409,'Taraclia','TA',1142,1), - (3410,'Tighina [Bender]','TI',1142,1), - (3411,'Ungheni','UN',1142,1), - (3412,'Antananarivo','T',1129,1), - (3413,'Antsiranana','D',1129,1), - (3414,'Fianarantsoa','F',1129,1), - (3415,'Mahajanga','M',1129,1), - (3416,'Toamasina','A',1129,1), - (3417,'Toliara','U',1129,1), - (3418,'Ailinglapalap','ALL',1135,1), - (3419,'Ailuk','ALK',1135,1), - (3420,'Arno','ARN',1135,1), - (3421,'Aur','AUR',1135,1), - (3422,'Ebon','EBO',1135,1), - (3423,'Eniwetok','ENI',1135,1), - (3424,'Jaluit','JAL',1135,1), - (3425,'Kili','KIL',1135,1), - (3426,'Kwajalein','KWA',1135,1), - (3427,'Lae','LAE',1135,1), - (3428,'Lib','LIB',1135,1), - (3429,'Likiep','LIK',1135,1), - (3430,'Majuro','MAJ',1135,1), - (3431,'Maloelap','MAL',1135,1), - (3432,'Mejit','MEJ',1135,1), - (3433,'Mili','MIL',1135,1), - (3434,'Namorik','NMK',1135,1), - (3435,'Namu','NMU',1135,1), - (3436,'Rongelap','RON',1135,1), - (3437,'Ujae','UJA',1135,1), - (3438,'Ujelang','UJL',1135,1), - (3439,'Utirik','UTI',1135,1), - (3440,'Wotho','WTN',1135,1), - (3441,'Wotje','WTJ',1135,1), - (3442,'Bamako','BK0',1133,1), - (3443,'Gao','7',1133,1), - (3444,'Kayes','1',1133,1), - (3445,'Kidal','8',1133,1), - (3446,'Xoulikoro','2',1133,1), - (3447,'Mopti','5',1133,1), - (3448,'S69ou','4',1133,1), - (3449,'Sikasso','3',1133,1), - (3450,'Tombouctou','6',1133,1), - (3451,'Ayeyarwady','07',1035,1), - (3452,'Bago','02',1035,1), - (3453,'Magway','03',1035,1), - (3454,'Mandalay','04',1035,1), - (3455,'Sagaing','01',1035,1), - (3456,'Tanintharyi','05',1035,1), - (3457,'Yangon','06',1035,1), - (3458,'Chin','14',1035,1), - (3459,'Kachin','11',1035,1), - (3460,'Kayah','12',1035,1), - (3461,'Kayin','13',1035,1), - (3462,'Mon','15',1035,1), - (3463,'Rakhine','16',1035,1), - (3464,'Shan','17',1035,1), - (3465,'Ulaanbaatar','1',1144,1), - (3466,'Arhangay','073',1144,1), - (3467,'Bayanhongor','069',1144,1), - (3468,'Bayan-Olgiy','071',1144,1), - (3469,'Bulgan','067',1144,1), - (3470,'Darhan uul','037',1144,1), - (3471,'Dornod','061',1144,1), - (3472,'Dornogov,','063',1144,1), - (3473,'DundgovL','059',1144,1), - (3474,'Dzavhan','057',1144,1), - (3475,'Govi-Altay','065',1144,1), - (3476,'Govi-Smber','064',1144,1), - (3477,'Hentiy','039',1144,1), - (3478,'Hovd','043',1144,1), - (3479,'Hovsgol','041',1144,1), - (3480,'Omnogovi','053',1144,1), - (3481,'Orhon','035',1144,1), - (3482,'Ovorhangay','055',1144,1), - (3483,'Selenge','049',1144,1), - (3484,'Shbaatar','051',1144,1), - (3485,'Tov','047',1144,1), - (3486,'Uvs','046',1144,1), - (3487,'Nouakchott','NKC',1137,1), - (3488,'Assaba','03',1137,1), - (3489,'Brakna','05',1137,1), - (3490,'Dakhlet Nouadhibou','08',1137,1), - (3491,'Gorgol','04',1137,1), - (3492,'Guidimaka','10',1137,1), - (3493,'Hodh ech Chargui','01',1137,1), - (3494,'Hodh el Charbi','02',1137,1), - (3495,'Inchiri','12',1137,1), - (3496,'Tagant','09',1137,1), - (3497,'Tiris Zemmour','11',1137,1), - (3498,'Trarza','06',1137,1), - (3499,'Beau Bassin-Rose Hill','BR',1138,1), - (3500,'Curepipe','CU',1138,1), - (3501,'Port Louis','PU',1138,1), - (3502,'Quatre Bornes','QB',1138,1), - (3503,'Vacosa-Phoenix','VP',1138,1), - (3504,'Black River','BL',1138,1), - (3505,'Flacq','FL',1138,1), - (3506,'Grand Port','GP',1138,1), - (3507,'Moka','MO',1138,1), - (3508,'Pamplemousses','PA',1138,1), - (3509,'Plaines Wilhems','PW',1138,1), - (3510,'Riviere du Rempart','RP',1138,1), - (3511,'Savanne','SA',1138,1), - (3512,'Agalega Islands','AG',1138,1), - (3513,'Cargados Carajos Shoals','CC',1138,1), - (3514,'Rodrigues Island','RO',1138,1), - (3515,'Male','MLE',1132,1), - (3516,'Alif','02',1132,1), - (3517,'Baa','20',1132,1), - (3518,'Dhaalu','17',1132,1), - (3519,'Faafu','14',1132,1), - (3520,'Gaaf Alif','27',1132,1), - (3521,'Gaefu Dhaalu','28',1132,1), - (3522,'Gnaviyani','29',1132,1), - (3523,'Haa Alif','07',1132,1), - (3524,'Haa Dhaalu','23',1132,1), - (3525,'Kaafu','26',1132,1), - (3526,'Laamu','05',1132,1), - (3527,'Lhaviyani','03',1132,1), - (3528,'Meemu','12',1132,1), - (3529,'Noonu','25',1132,1), - (3530,'Raa','13',1132,1), - (3531,'Seenu','01',1132,1), - (3532,'Shaviyani','24',1132,1), - (3533,'Thaa','08',1132,1), - (3534,'Vaavu','04',1132,1), - (3535,'Balaka','BA',1130,1), - (3536,'Blantyre','BL',1130,1), - (3537,'Chikwawa','CK',1130,1), - (3538,'Chiradzulu','CR',1130,1), - (3539,'Chitipa','CT',1130,1), - (3540,'Dedza','DE',1130,1), - (3541,'Dowa','DO',1130,1), - (3542,'Karonga','KR',1130,1), - (3543,'Kasungu','KS',1130,1), - (3544,'Likoma Island','LK',1130,1), - (3545,'Lilongwe','LI',1130,1), - (3546,'Machinga','MH',1130,1), - (3547,'Mangochi','MG',1130,1), - (3548,'Mchinji','MC',1130,1), - (3549,'Mulanje','MU',1130,1), - (3550,'Mwanza','MW',1130,1), - (3551,'Mzimba','MZ',1130,1), - (3552,'Nkhata Bay','NB',1130,1), - (3553,'Nkhotakota','NK',1130,1), - (3554,'Nsanje','NS',1130,1), - (3555,'Ntcheu','NU',1130,1), - (3556,'Ntchisi','NI',1130,1), - (3557,'Phalomba','PH',1130,1), - (3558,'Rumphi','RU',1130,1), - (3559,'Salima','SA',1130,1), - (3560,'Thyolo','TH',1130,1), - (3561,'Zomba','ZO',1130,1), - (3562,'Aguascalientes','AGU',1140,1), - (3563,'Baja California','BCN',1140,1), - (3564,'Baja California Sur','BCS',1140,1), - (3565,'Campeche','CAM',1140,1), - (3566,'Coahuila','COA',1140,1), - (3567,'Colima','COL',1140,1), - (3568,'Chiapas','CHP',1140,1), - (3569,'Chihuahua','CHH',1140,1), - (3570,'Durango','DUR',1140,1), - (3571,'Guanajuato','GUA',1140,1), - (3572,'Guerrero','GRO',1140,1), - (3573,'Hidalgo','HID',1140,1), - (3574,'Jalisco','JAL',1140,1), - (3575,'Mexico','MEX',1140,1), - (3576,'Michoacin','MIC',1140,1), - (3577,'Morelos','MOR',1140,1), - (3578,'Nayarit','NAY',1140,1), - (3579,'Nuevo Leon','NLE',1140,1), - (3580,'Oaxaca','OAX',1140,1), - (3581,'Puebla','PUE',1140,1), - (3582,'Queretaro','QUE',1140,1), - (3583,'Quintana Roo','ROO',1140,1), - (3584,'San Luis Potosi','SLP',1140,1), - (3585,'Sinaloa','SIN',1140,1), - (3586,'Sonora','SON',1140,1), - (3587,'Tabasco','TAB',1140,1), - (3588,'Tamaulipas','TAM',1140,1), - (3589,'Tlaxcala','TLA',1140,1), - (3590,'Veracruz','VER',1140,1), - (3591,'Yucatan','YUC',1140,1), - (3592,'Zacatecas','ZAC',1140,1), - (3593,'Distrito Federal','DIF',1140,1), - (3594,'Wilayah Persekutuan Kuala Lumpur','14',1131,1), - (3595,'Wilayah Persekutuan Labuan','15',1131,1), - (3596,'Wilayah Persekutuan Putrajaya','16',1131,1), - (3597,'Johor','01',1131,1), - (3598,'Kedah','02',1131,1), - (3599,'Kelantan','03',1131,1), - (3600,'Melaka','04',1131,1), - (3601,'Negeri Sembilan','05',1131,1), - (3602,'Pahang','06',1131,1), - (3603,'Perak','08',1131,1), - (3604,'Perlis','09',1131,1), - (3605,'Pulau Pinang','07',1131,1), - (3606,'Sabah','12',1131,1), - (3607,'Sarawak','13',1131,1), - (3608,'Selangor','10',1131,1), - (3609,'Terengganu','11',1131,1), - (3610,'Maputo','MPM',1147,1), - (3611,'Cabo Delgado','P',1147,1), - (3612,'Gaza','G',1147,1), - (3613,'Inhambane','I',1147,1), - (3614,'Manica','B',1147,1), - (3615,'Numpula','N',1147,1), - (3616,'Niaaea','A',1147,1), - (3617,'Sofala','S',1147,1), - (3618,'Tete','T',1147,1), - (3619,'Zambezia','Q',1147,1), - (3620,'Caprivi','CA',1148,1), - (3621,'Erongo','ER',1148,1), - (3622,'Hardap','HA',1148,1), - (3623,'Karas','KA',1148,1), - (3624,'Khomas','KH',1148,1), - (3625,'Kunene','KU',1148,1), - (3626,'Ohangwena','OW',1148,1), - (3627,'Okavango','OK',1148,1), - (3628,'Omaheke','OH',1148,1), - (3629,'Omusati','OS',1148,1), - (3630,'Oshana','ON',1148,1), - (3631,'Oshikoto','OT',1148,1), - (3632,'Otjozondjupa','OD',1148,1), - (3633,'Niamey','8',1156,1), - (3634,'Agadez','1',1156,1), - (3635,'Diffa','2',1156,1), - (3636,'Dosso','3',1156,1), - (3637,'Maradi','4',1156,1), - (3638,'Tahoua','S',1156,1), - (3639,'Tillaberi','6',1156,1), - (3640,'Zinder','7',1156,1), - (3641,'Abuja Federal Capital Territory','FC',1157,1), - (3642,'Abia','AB',1157,1), - (3643,'Adamawa','AD',1157,1), - (3644,'Akwa Ibom','AK',1157,1), - (3645,'Anambra','AN',1157,1), - (3646,'Bauchi','BA',1157,1), - (3647,'Bayelsa','BY',1157,1), - (3648,'Benue','BE',1157,1), - (3649,'Borno','BO',1157,1), - (3650,'Cross River','CR',1157,1), - (3651,'Delta','DE',1157,1), - (3652,'Ebonyi','EB',1157,1), - (3653,'Edo','ED',1157,1), - (3654,'Ekiti','EK',1157,1), - (3655,'Enugu','EN',1157,1), - (3656,'Gombe','GO',1157,1), - (3657,'Imo','IM',1157,1), - (3658,'Jigawa','JI',1157,1), - (3659,'Kaduna','KD',1157,1), - (3660,'Kano','KN',1157,1), - (3661,'Katsina','KT',1157,1), - (3662,'Kebbi','KE',1157,1), - (3663,'Kogi','KO',1157,1), - (3664,'Kwara','KW',1157,1), - (3665,'Lagos','LA',1157,1), - (3666,'Nassarawa','NA',1157,1), - (3667,'Niger','NI',1157,1), - (3668,'Ogun','OG',1157,1), - (3669,'Ondo','ON',1157,1), - (3670,'Osun','OS',1157,1), - (3671,'Oyo','OY',1157,1), - (3672,'Rivers','RI',1157,1), - (3673,'Sokoto','SO',1157,1), - (3674,'Taraba','TA',1157,1), - (3675,'Yobe','YO',1157,1), - (3676,'Zamfara','ZA',1157,1), - (3677,'Plateau','PL',1157,1), - (3678,'Boaco','BO',1155,1), - (3679,'Carazo','CA',1155,1), - (3680,'Chinandega','CI',1155,1), - (3681,'Chontales','CO',1155,1), - (3682,'Esteli','ES',1155,1), - (3683,'Jinotega','JI',1155,1), - (3684,'Leon','LE',1155,1), - (3685,'Madriz','MD',1155,1), - (3686,'Managua','MN',1155,1), - (3687,'Masaya','MS',1155,1), - (3688,'Matagalpa','MT',1155,1), - (3689,'Nueva Segovia','NS',1155,1), - (3690,'Rio San Juan','SJ',1155,1), - (3691,'Rivas','RI',1155,1), - (3692,'Atlantico Norte','AN',1155,1), - (3693,'Atlantico Sur','AS',1155,1), - (3694,'Drente','DR',1152,1), - (3695,'Flevoland','FL',1152,1), - (3696,'Friesland','FR',1152,1), - (3697,'Gelderland','GL',1152,1), - (3698,'Groningen','GR',1152,1), - (3699,'Noord-Brabant','NB',1152,1), - (3700,'Noord-Holland','NH',1152,1), - (3701,'Overijssel','OV',1152,1), - (3702,'Utrecht','UT',1152,1), - (3703,'Zuid-Holland','ZH',1152,1), - (3704,'Zeeland','ZL',1152,1), - (3705,'Akershus','02',1161,1), - (3706,'Aust-Agder','09',1161,1), - (3707,'Buskerud','06',1161,1), - (3708,'Finnmark','20',1161,1), - (3709,'Hedmark','04',1161,1), - (3710,'Møre og Romsdal','15',1161,1), - (3711,'Nordland','18',1161,1), - (3712,'Nord-Trøndelag','17',1161,1), - (3713,'Oppland','05',1161,1), - (3714,'Oslo','03',1161,1), - (3715,'Rogaland','11',1161,1), - (3716,'Sør-Trøndelag','16',1161,1), - (3717,'Telemark','06',1161,1), - (3718,'Troms','19',1161,1), - (3719,'Vest-Agder','10',1161,1), - (3720,'Vestfold','07',1161,1), - (3721,'Vestland','46',1161,1), - (3722,'Østfold','01',1161,1), - (3723,'Jan Mayen','22',1161,1), - (3724,'Svalbard','21',1161,1), - (3725,'Auckland','AUK',1154,1), - (3726,'Bay of Plenty','BOP',1154,1), - (3727,'Canterbury','CAN',1154,1), - (3728,'Gisborne','GIS',1154,1), - (3729,'Hawkes Bay','HKB',1154,1), - (3730,'Manawatu-Wanganui','MWT',1154,1), - (3731,'Marlborough','MBH',1154,1), - (3732,'Nelson','NSN',1154,1), - (3733,'Northland','NTL',1154,1), - (3734,'Otago','OTA',1154,1), - (3735,'Southland','STL',1154,1), - (3736,'Taranaki','TKI',1154,1), - (3737,'Tasman','TAS',1154,1), - (3738,'Waikato','WKO',1154,1), - (3739,'Wellington','WGN',1154,1), - (3740,'West Coast','WTC',1154,1), - (3741,'Ad Dakhillyah','DA',1162,1), - (3742,'Al Batinah','BA',1162,1), - (3743,'Al Janblyah','JA',1162,1), - (3744,'Al Wusta','WU',1162,1), - (3745,'Ash Sharqlyah','SH',1162,1), - (3746,'Az Zahirah','ZA',1162,1), - (3747,'Masqat','MA',1162,1), - (3748,'Musandam','MU',1162,1), - (3749,'Jenin','_A',1165,1), - (3750,'Tubas','_B',1165,1), - (3751,'Tulkarm','_C',1165,1), - (3752,'Nablus','_D',1165,1), - (3753,'Qalqilya','_E',1165,1), - (3754,'Salfit','_F',1165,1), - (3755,'Ramallah and Al-Bireh','_G',1165,1), - (3756,'Jericho','_H',1165,1), - (3757,'Jerusalem','_I',1165,1), - (3758,'Bethlehem','_J',1165,1), - (3759,'Hebron','_K',1165,1), - (3760,'North Gaza','_L',1165,1), - (3761,'Gaza','_M',1165,1), - (3762,'Deir el-Balah','_N',1165,1), - (3763,'Khan Yunis','_O',1165,1), - (3764,'Rafah','_P',1165,1), - (3765,'Bocas del Toro','1',1166,1), - (3766,'Cocle','2',1166,1), - (3767,'Chiriqui','4',1166,1), - (3768,'Darien','5',1166,1), - (3769,'Herrera','6',1166,1), - (3770,'Loa Santoa','7',1166,1), - (3771,'Panama','8',1166,1), - (3772,'Veraguas','9',1166,1), - (3773,'Comarca de San Blas','Q',1166,1), - (3774,'El Callao','CAL',1169,1), - (3775,'Ancash','ANC',1169,1), - (3776,'Apurimac','APU',1169,1), - (3777,'Arequipa','ARE',1169,1), - (3778,'Ayacucho','AYA',1169,1), - (3779,'Cajamarca','CAJ',1169,1), - (3780,'Cuzco','CUS',1169,1), - (3781,'Huancavelica','HUV',1169,1), - (3782,'Huanuco','HUC',1169,1), - (3783,'Ica','ICA',1169,1), - (3784,'Junin','JUN',1169,1), - (3785,'La Libertad','LAL',1169,1), - (3786,'Lambayeque','LAM',1169,1), - (3787,'Lima','LIM',1169,1), - (3788,'Loreto','LOR',1169,1), - (3789,'Madre de Dios','MDD',1169,1), - (3790,'Moquegua','MOQ',1169,1), - (3791,'Pasco','PAS',1169,1), - (3792,'Piura','PIU',1169,1), - (3793,'Puno','PUN',1169,1), - (3794,'San Martin','SAM',1169,1), - (3795,'Tacna','TAC',1169,1), - (3796,'Tumbes','TUM',1169,1), - (3797,'Ucayali','UCA',1169,1), - (3798,'Amazonas','AMA',1169,1), - (3799,'National Capital District (Port Moresby)','NCD',1167,1), - (3800,'Chimbu','CPK',1167,1), - (3801,'Eastern Highlands','EHG',1167,1), - (3802,'East New Britain','EBR',1167,1), - (3803,'East Sepik','ESW',1167,1), - (3804,'Enga','EPW',1167,1), - (3805,'Gulf','GPK',1167,1), - (3806,'Madang','MPM',1167,1), - (3807,'Manus','MRL',1167,1), - (3808,'Milne Bay','MBA',1167,1), - (3809,'Morobe','MPL',1167,1), - (3810,'New Ireland','NIK',1167,1), - (3811,'North Solomons','NSA',1167,1), - (3812,'Santaun','SAN',1167,1), - (3813,'Southern Highlands','SHM',1167,1), - (3814,'Western Highlands','WHM',1167,1), - (3815,'West New Britain','WBK',1167,1), - (3816,'Abra','ABR',1170,1), - (3817,'Agusan del Norte','AGN',1170,1), - (3818,'Agusan del Sur','AGS',1170,1), - (3819,'Aklan','AKL',1170,1), - (3820,'Albay','ALB',1170,1), - (3821,'Antique','ANT',1170,1), - (3822,'Apayao','APA',1170,1), - (3823,'Aurora','AUR',1170,1), - (3824,'Basilan','BAS',1170,1), - (3825,'Bataan','BAN',1170,1), - (3826,'Batanes','BTN',1170,1), - (3827,'Batangas','BTG',1170,1), - (3828,'Benguet','BEN',1170,1), - (3829,'Biliran','BIL',1170,1), - (3830,'Bohol','BOH',1170,1), - (3831,'Bukidnon','BUK',1170,1), - (3832,'Bulacan','BUL',1170,1), - (3833,'Cagayan','CAG',1170,1), - (3834,'Camarines Norte','CAN',1170,1), - (3835,'Camarines Sur','CAS',1170,1), - (3836,'Camiguin','CAM',1170,1), - (3837,'Capiz','CAP',1170,1), - (3838,'Catanduanes','CAT',1170,1), - (3839,'Cavite','CAV',1170,1), - (3840,'Cebu','CEB',1170,1), - (3841,'Davao de Oro','COM',1170,1), - (3842,'Davao del Norte','DAV',1170,1), - (3843,'Davao del Sur','DAS',1170,1), - (3844,'Davao Oriental','DAO',1170,1), - (3845,'Eastern Samar','EAS',1170,1), - (3846,'Guimaras','GUI',1170,1), - (3847,'Ifugao','IFU',1170,1), - (3848,'Ilocos Norte','ILN',1170,1), - (3849,'Ilocos Sur','ILS',1170,1), - (3850,'Iloilo','ILI',1170,1), - (3851,'Isabela','ISA',1170,1), - (3852,'Kalinga','KAL',1170,1), - (3853,'Laguna','LAG',1170,1), - (3854,'Lanao del Norte','LAN',1170,1), - (3855,'Lanao del Sur','LAS',1170,1), - (3856,'La Union','LUN',1170,1), - (3857,'Leyte','LEY',1170,1), - (3858,'Maguindanao','MAG',1170,1), - (3859,'Marinduque','MAD',1170,1), - (3860,'Masbate','MAS',1170,1), - (3861,'Mindoro Occidental','MDC',1170,1), - (3862,'Mindoro Oriental','MDR',1170,1), - (3863,'Misamis Occidental','MSC',1170,1), - (3864,'Misamis Oriental','MSR',1170,1), - (3865,'Mountain Province','MOU',1170,1), - (3866,'Negroe Occidental','NEC',1170,1), - (3867,'Negros Oriental','NER',1170,1), - (3868,'Cotabato','NCO',1170,1), - (3869,'Northern Samar','NSA',1170,1), - (3870,'Nueva Ecija','NUE',1170,1), - (3871,'Nueva Vizcaya','NUV',1170,1), - (3872,'Palawan','PLW',1170,1), - (3873,'Pampanga','PAM',1170,1), - (3874,'Pangasinan','PAN',1170,1), - (3875,'Quezon','QUE',1170,1), - (3876,'Quirino','QUI',1170,1), - (3877,'Rizal','RIZ',1170,1), - (3878,'Romblon','ROM',1170,1), - (3879,'Sarangani','SAR',1170,1), - (3880,'Siquijor','SIG',1170,1), - (3881,'Sorsogon','SOR',1170,1), - (3882,'South Cotabato','SCO',1170,1), - (3883,'Southern Leyte','SLE',1170,1), - (3884,'Sultan Kudarat','SUK',1170,1), - (3885,'Sulu','SLU',1170,1), - (3886,'Surigao del Norte','SUN',1170,1), - (3887,'Surigao del Sur','SUR',1170,1), - (3888,'Tarlac','TAR',1170,1), - (3889,'Tawi-Tawi','TAW',1170,1), - (3890,'Western Samar','WSA',1170,1), - (3891,'Zambales','ZMB',1170,1), - (3892,'Zamboanga del Norte','ZAN',1170,1), - (3893,'Zamboanga del Sur','ZAS',1170,1), - (3894,'Zamboanga Sibiguey','ZSI',1170,1), - (3895,'Dinagat Islands','DIN',1170,1), - (3896,'Metropolitan Manila','MNL',1170,1), - (3897,'Islamabad Federal Capital Area','IS',1163,1), - (3898,'Baluchistan','BA',1163,1), - (3899,'Khyber Pakhtun Khawa','NW',1163,1), - (3900,'Sindh','SD',1163,1), - (3901,'Federally Administered Tribal Areas','TA',1163,1), - (3902,'Azad Kashmir','JK',1163,1), - (3903,'Gilgit-Baltistan','NA',1163,1), - (3904,'Punjab','PB',1163,1), - (3905,'Aveiro','01',1173,1), - (3906,'Beja','02',1173,1), - (3907,'Braga','03',1173,1), - (3908,'Bragança','04',1173,1), - (3909,'Castelo Branco','05',1173,1), - (3910,'Coimbra','06',1173,1), - (3911,'Évora','07',1173,1), - (3912,'Faro','08',1173,1), - (3913,'Guarda','09',1173,1), - (3914,'Leiria','10',1173,1), - (3915,'Lisboa','11',1173,1), - (3916,'Portalegre','12',1173,1), - (3917,'Porto','13',1173,1), - (3918,'Santarém','14',1173,1), - (3919,'Setúbal','15',1173,1), - (3920,'Viana do Castelo','16',1173,1), - (3921,'Vila Real','17',1173,1), - (3922,'Viseu','18',1173,1), - (3923,'Região Autónoma dos Açores','20',1173,1), - (3924,'Região Autónoma da Madeira','30',1173,1), - (3925,'Asuncion','ASU',1168,1), - (3926,'Alto Paraguay','16',1168,1), - (3927,'Alto Parana','10',1168,1), - (3928,'Amambay','13',1168,1), - (3929,'Boqueron','19',1168,1), - (3930,'Caeguazu','5',1168,1), - (3931,'Caazapl','6',1168,1), - (3932,'Canindeyu','14',1168,1), - (3933,'Concepcion','1',1168,1), - (3934,'Cordillera','3',1168,1), - (3935,'Guaira','4',1168,1), - (3936,'Itapua','7',1168,1), - (3937,'Miaiones','8',1168,1), - (3938,'Neembucu','12',1168,1), - (3939,'Paraguari','9',1168,1), - (3940,'Presidente Hayes','15',1168,1), - (3941,'San Pedro','2',1168,1), - (3942,'Ad Dawhah','DA',1175,1), - (3943,'Al Ghuwayriyah','GH',1175,1), - (3944,'Al Jumayliyah','JU',1175,1), - (3945,'Al Khawr','KH',1175,1), - (3946,'Al Wakrah','WA',1175,1), - (3947,'Ar Rayyan','RA',1175,1), - (3948,'Jariyan al Batnah','JB',1175,1), - (3949,'Madinat ash Shamal','MS',1175,1), - (3950,'Umm Salal','US',1175,1), - (3951,'Bucuresti','B',1176,1), - (3952,'Alba','AB',1176,1), - (3953,'Arad','AR',1176,1), - (3954,'Argeș','AG',1176,1), - (3955,'Bacău','BC',1176,1), - (3956,'Bihor','BH',1176,1), - (3957,'Bistrița-Năsăud','BN',1176,1), - (3958,'Botoșani','BT',1176,1), - (3959,'Brașov','BV',1176,1), - (3960,'Brăila','BR',1176,1), - (3961,'Buzău','BZ',1176,1), - (3962,'Caraș-Severin','CS',1176,1), - (3963,'Călărași','CL',1176,1), - (3964,'Cluj','CJ',1176,1), - (3965,'Constanța','CT',1176,1), - (3966,'Covasna','CV',1176,1), - (3967,'Dâmbovița','DB',1176,1), - (3968,'Dolj','DJ',1176,1), - (3969,'Galați','GL',1176,1), - (3970,'Giurgiu','GR',1176,1), - (3971,'Gorj','GJ',1176,1), - (3972,'Harghita','HR',1176,1), - (3973,'Hunedoara','HD',1176,1), - (3974,'Ialomița','IL',1176,1), - (3975,'Iași','IS',1176,1), - (3976,'Ilfov','IF',1176,1), - (3977,'Maramureș','MM',1176,1), - (3978,'Mehedinți','MH',1176,1), - (3979,'Mureș','MS',1176,1), - (3980,'Neamț','NT',1176,1), - (3981,'Olt','OT',1176,1), - (3982,'Prahova','PH',1176,1), - (3983,'Satu Mare','SM',1176,1), - (3984,'Sălaj','SJ',1176,1), - (3985,'Sibiu','SB',1176,1), - (3986,'Suceava','SV',1176,1), - (3987,'Teleorman','TR',1176,1), - (3988,'Timiș','TM',1176,1), - (3989,'Tulcea','TL',1176,1), - (3990,'Vaslui','VS',1176,1), - (3991,'Vâlcea','VL',1176,1), - (3992,'Vrancea','VN',1176,1), - (3993,'Adygeya, Respublika','AD',1177,1), - (3994,'Altay, Respublika','AL',1177,1), - (3995,'Bashkortostan, Respublika','BA',1177,1), - (3996,'Buryatiya, Respublika','BU',1177,1), - (3997,'Chechenskaya Respublika','CE',1177,1), - (3998,'Chuvashskaya Respublika','CU',1177,1), - (3999,'Dagestan, Respublika','DA',1177,1), - (4000,'Ingushskaya Respublika','IN',1177,1), - (4001,'Kabardino-Balkarskaya','KB',1177,1), - (4002,'Kalmykiya, Respublika','KL',1177,1), - (4003,'Karachayevo-Cherkesskaya Respublika','KC',1177,1), - (4004,'Kareliya, Respublika','KR',1177,1), - (4005,'Khakasiya, Respublika','KK',1177,1), - (4006,'Komi, Respublika','KO',1177,1), - (4007,'Mariy El, Respublika','ME',1177,1), - (4008,'Mordoviya, Respublika','MO',1177,1), - (4009,'Sakha, Respublika [Yakutiya]','SA',1177,1), - (4010,'Severnaya Osetiya, Respublika','SE',1177,1), - (4011,'Tatarstan, Respublika','TA',1177,1), - (4012,'Tyva, Respublika [Tuva]','TY',1177,1), - (4013,'Udmurtskaya Respublika','UD',1177,1), - (4014,'Altayskiy kray','ALT',1177,1), - (4015,'Khabarovskiy kray','KHA',1177,1), - (4016,'Krasnodarskiy kray','KDA',1177,1), - (4017,'Krasnoyarskiy kray','KYA',1177,1), - (4018,'Primorskiy kray','PRI',1177,1), - (4019,'Stavropol\'skiy kray','STA',1177,1), - (4020,'Amurskaya oblast\'','AMU',1177,1), - (4021,'Arkhangel\'skaya oblast\'','ARK',1177,1), - (4022,'Astrakhanskaya oblast\'','AST',1177,1), - (4023,'Belgorodskaya oblast\'','BEL',1177,1), - (4024,'Bryanskaya oblast\'','BRY',1177,1), - (4025,'Chelyabinskaya oblast\'','CHE',1177,1), - (4026,'Zabaykalsky Krai\'','ZSK',1177,1), - (4027,'Irkutskaya oblast\'','IRK',1177,1), - (4028,'Ivanovskaya oblast\'','IVA',1177,1), - (4029,'Kaliningradskaya oblast\'','KGD',1177,1), - (4030,'Kaluzhskaya oblast\'','KLU',1177,1), - (4031,'Kamchatka Krai\'','KAM',1177,1), - (4032,'Kemerovskaya oblast\'','KEM',1177,1), - (4033,'Kirovskaya oblast\'','KIR',1177,1), - (4034,'Kostromskaya oblast\'','KOS',1177,1), - (4035,'Kurganskaya oblast\'','KGN',1177,1), - (4036,'Kurskaya oblast\'','KRS',1177,1), - (4037,'Leningradskaya oblast\'','LEN',1177,1), - (4038,'Lipetskaya oblast\'','LIP',1177,1), - (4039,'Magadanskaya oblast\'','MAG',1177,1), - (4040,'Moskovskaya oblast\'','MOS',1177,1), - (4041,'Murmanskaya oblast\'','MUR',1177,1), - (4042,'Nizhegorodskaya oblast\'','NIZ',1177,1), - (4043,'Novgorodskaya oblast\'','NGR',1177,1), - (4044,'Novosibirskaya oblast\'','NVS',1177,1), - (4045,'Omskaya oblast\'','OMS',1177,1), - (4046,'Orenburgskaya oblast\'','ORE',1177,1), - (4047,'Orlovskaya oblast\'','ORL',1177,1), - (4048,'Penzenskaya oblast\'','PNZ',1177,1), - (4049,'Perm krai\'','PEK',1177,1), - (4050,'Pskovskaya oblast\'','PSK',1177,1), - (4051,'Rostovskaya oblast\'','ROS',1177,1), - (4052,'Ryazanskaya oblast\'','RYA',1177,1), - (4053,'Sakhalinskaya oblast\'','SAK',1177,1), - (4054,'Samarskaya oblast\'','SAM',1177,1), - (4055,'Saratovskaya oblast\'','SAR',1177,1), - (4056,'Smolenskaya oblast\'','SMO',1177,1), - (4057,'Sverdlovskaya oblast\'','SVE',1177,1), - (4058,'Tambovskaya oblast\'','TAM',1177,1), - (4059,'Tomskaya oblast\'','TOM',1177,1), - (4060,'Tul\'skaya oblast\'','TUL',1177,1), - (4061,'Tverskaya oblast\'','TVE',1177,1), - (4062,'Tyumenskaya oblast\'','TYU',1177,1), - (4063,'Ul\'yanovskaya oblast\'','ULY',1177,1), - (4064,'Vladimirskaya oblast\'','VLA',1177,1), - (4065,'Volgogradskaya oblast\'','VGG',1177,1), - (4066,'Vologodskaya oblast\'','VLG',1177,1), - (4067,'Voronezhskaya oblast\'','VOR',1177,1), - (4068,'Yaroslavskaya oblast\'','YAR',1177,1), - (4069,'Moskva','MOW',1177,1), - (4070,'Sankt-Peterburg','SPE',1177,1), - (4071,'Yevreyskaya avtonomnaya oblast\'','YEV',1177,1), - (4072,'Chukotskiy avtonomnyy okrug','CHU',1177,1), - (4073,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177,1), - (4074,'Nenetskiy avtonomnyy okrug','NEN',1177,1), - (4075,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177,1), - (4076,'Butare','C',1178,1), - (4077,'Byumba','I',1178,1), - (4078,'Cyangugu','E',1178,1), - (4079,'Gikongoro','D',1178,1), - (4080,'Gisenyi','G',1178,1), - (4081,'Gitarama','B',1178,1), - (4082,'Kibungo','J',1178,1), - (4083,'Kibuye','F',1178,1), - (4084,'Kigali-Rural Kigali y\' Icyaro','K',1178,1), - (4085,'Kigali-Ville Kigali Ngari','L',1178,1), - (4086,'Mutara','M',1178,1), - (4087,'Ruhengeri','H',1178,1), - (4088,'Saint Kitts','K',1181,1), - (4089,'Nevis','N',1181,1), - (4090,'Al Bahah','11',1187,1), - (4091,'Al Hudud Ash Shamaliyah','08',1187,1), - (4092,'Al Jawf','12',1187,1), - (4093,'Al Madinah','03',1187,1), - (4094,'Al Qasim','05',1187,1), - (4095,'Ar Riyad','01',1187,1), - (4096,'Asir','14',1187,1), - (4097,'Ha\'il','06',1187,1), - (4098,'Jlzan','09',1187,1), - (4099,'Makkah','02',1187,1), - (4100,'Najran','10',1187,1), - (4101,'Tabuk','07',1187,1), - (4102,'Ash Sharqiyah','04',1187,1), - (4103,'Capital Territory (Honiara)','CT',1194,1), - (4104,'Guadalcanal','GU',1194,1), - (4105,'Isabel','IS',1194,1), - (4106,'Makira','MK',1194,1), - (4107,'Malaita','ML',1194,1), - (4108,'Temotu','TE',1194,1), - (4109,'A\'ali an Nil','23',1200,1), - (4110,'Al Bah al Ahmar','26',1200,1), - (4111,'Al Buhayrat','18',1200,1), - (4112,'Al Jazirah','07',1200,1), - (4113,'Al Khartum','03',1200,1), - (4114,'Al Qadarif','06',1200,1), - (4115,'Al Wahdah','22',1200,1), - (4116,'An Nil','04',1200,1), - (4117,'An Nil al Abyaq','08',1200,1), - (4118,'An Nil al Azraq','24',1200,1), - (4119,'Ash Shamallyah','01',1200,1), - (4120,'Bahr al Jabal','17',1200,1), - (4121,'Gharb al Istiwa\'iyah','16',1200,1), - (4122,'Gharb Ba~r al Ghazal','14',1200,1), - (4123,'Gharb Darfur','12',1200,1), - (4124,'Gharb Kurdufan','10',1200,1), - (4125,'Janub Darfur','11',1200,1), - (4126,'Janub Rurdufan','13',1200,1), - (4127,'Jnqall','20',1200,1), - (4128,'Kassala','05',1200,1), - (4129,'Shamal Batr al Ghazal','15',1200,1), - (4130,'Shamal Darfur','02',1200,1), - (4131,'Shamal Kurdufan','09',1200,1), - (4132,'Sharq al Istiwa\'iyah','19',1200,1), - (4133,'Sinnar','25',1200,1), - (4134,'Warab','21',1200,1), - (4135,'Blekinge län','K',1204,1), - (4136,'Dalarnas län','W',1204,1), - (4137,'Gotlands län','I',1204,1), - (4138,'Gävleborgs län','X',1204,1), - (4139,'Hallands län','N',1204,1), - (4140,'Jämtlands län','Z',1204,1), - (4141,'Jönkopings län','F',1204,1), - (4142,'Kalmar län','H',1204,1), - (4143,'Kronobergs län','G',1204,1), - (4144,'Norrbottens län','BD',1204,1), - (4145,'Skåne län','M',1204,1), - (4146,'Stockholms län','AB',1204,1), - (4147,'Södermanlands län','D',1204,1), - (4148,'Uppsala län','C',1204,1), - (4149,'Värmlands län','S',1204,1), - (4150,'Västerbottens län','AC',1204,1), - (4151,'Västernorrlands län','Y',1204,1), - (4152,'Västmanlands län','U',1204,1), - (4153,'Västra Götalands län','Q',1204,1), - (4154,'Örebro län','T',1204,1), - (4155,'Östergötlands län','E',1204,1), - (4156,'Saint Helena','SH',1180,1), - (4157,'Ascension','AC',1180,1), - (4158,'Tristan da Cunha','TA',1180,1), - (4159,'Ajdovščina','001',1193,1), - (4160,'Beltinci','002',1193,1), - (4161,'Benedikt','148',1193,1), - (4162,'Bistrica ob Sotli','149',1193,1), - (4163,'Bled','003',1193,1), - (4164,'Bloke','150',1193,1), - (4165,'Bohinj','004',1193,1), - (4166,'Borovnica','005',1193,1), - (4167,'Bovec','006',1193,1), - (4168,'Braslovče','151',1193,1), - (4169,'Brda','007',1193,1), - (4170,'Brezovica','008',1193,1), - (4171,'Brežice','009',1193,1), - (4172,'Cankova','152',1193,1), - (4173,'Celje','011',1193,1), - (4174,'Cerklje na Gorenjskem','012',1193,1), - (4175,'Cerknica','013',1193,1), - (4176,'Cerkno','014',1193,1), - (4177,'Cerkvenjak','153',1193,1), - (4178,'Črenšovci','015',1193,1), - (4179,'Črna na Koroškem','016',1193,1), - (4180,'Črnomelj','017',1193,1), - (4181,'Destrnik','018',1193,1), - (4182,'Divača','019',1193,1), - (4183,'Dobje','154',1193,1), - (4184,'Dobrepolje','020',1193,1), - (4185,'Dobrna','155',1193,1), - (4186,'Dobrova-Polhov Gradec','021',1193,1), - (4187,'Dobrovnik','156',1193,1), - (4188,'Dol pri Ljubljani','022',1193,1), - (4189,'Dolenjske Toplice','157',1193,1), - (4190,'Domžale','023',1193,1), - (4191,'Dornava','024',1193,1), - (4192,'Dravograd','025',1193,1), - (4193,'Duplek','026',1193,1), - (4194,'Gorenja vas-Poljane','027',1193,1), - (4195,'Gorišnica','028',1193,1), - (4196,'Gornja Radgona','029',1193,1), - (4197,'Gornji Grad','030',1193,1), - (4198,'Gornji Petrovci','031',1193,1), - (4199,'Grad','158',1193,1), - (4200,'Grosuplje','032',1193,1), - (4201,'Hajdina','159',1193,1), - (4202,'Hoče-Slivnica','160',1193,1), - (4203,'Hodoš','161',1193,1), - (4204,'Horjul','162',1193,1), - (4205,'Hrastnik','034',1193,1), - (4206,'Hrpelje-Kozina','035',1193,1), - (4207,'Idrija','036',1193,1), - (4208,'Ig','037',1193,1), - (4209,'Ilirska Bistrica','038',1193,1), - (4210,'Ivančna Gorica','039',1193,1), - (4211,'Izola','040',1193,1), - (4212,'Jesenice','041',1193,1), - (4213,'Jezersko','163',1193,1), - (4214,'Juršinci','042',1193,1), - (4215,'Kamnik','043',1193,1), - (4216,'Kanal','044',1193,1), - (4217,'Kidričevo','045',1193,1), - (4218,'Kobarid','046',1193,1), - (4219,'Kobilje','047',1193,1), - (4220,'Kočevje','048',1193,1), - (4221,'Komen','049',1193,1), - (4222,'Komenda','164',1193,1), - (4223,'Koper','050',1193,1), - (4224,'Kostel','165',1193,1), - (4225,'Kozje','051',1193,1), - (4226,'Kranj','052',1193,1), - (4227,'Kranjska Gora','053',1193,1), - (4228,'Križevci','166',1193,1), - (4229,'Krško','054',1193,1), - (4230,'Kungota','055',1193,1), - (4231,'Kuzma','056',1193,1), - (4232,'Laško','057',1193,1), - (4233,'Lenart','058',1193,1), - (4234,'Lendava','059',1193,1), - (4235,'Litija','060',1193,1), - (4236,'Ljubljana','061',1193,1), - (4237,'Ljubno','062',1193,1), - (4238,'Ljutomer','063',1193,1), - (4239,'Logatec','064',1193,1), - (4240,'Loška dolina','065',1193,1), - (4241,'Loški Potok','066',1193,1), - (4242,'Lovrenc na Pohorju','167',1193,1), - (4243,'Luče','067',1193,1), - (4244,'Lukovica','068',1193,1), - (4245,'Majšperk','069',1193,1), - (4246,'Maribor','070',1193,1), - (4247,'Markovci','168',1193,1), - (4248,'Medvode','071',1193,1), - (4249,'Mengeš','072',1193,1), - (4250,'Metlika','073',1193,1), - (4251,'Mežica','074',1193,1), - (4252,'Miklavž na Dravskem polju','169',1193,1), - (4253,'Miren-Kostanjevica','075',1193,1), - (4254,'Mirna Peč','170',1193,1), - (4255,'Mislinja','076',1193,1), - (4256,'Moravče','077',1193,1), - (4257,'Moravske Toplice','078',1193,1), - (4258,'Mozirje','079',1193,1), - (4259,'Murska Sobota','080',1193,1), - (4260,'Muta','081',1193,1), - (4261,'Naklo','082',1193,1), - (4262,'Nazarje','083',1193,1), - (4263,'Nova Gorica','084',1193,1), - (4264,'Novo mesto','085',1193,1), - (4265,'Sveta Ana','181',1193,1), - (4266,'Sveti Andraž v Slovenskih goricah','182',1193,1), - (4267,'Sveti Jurij','116',1193,1), - (4268,'Šalovci','033',1193,1), - (4269,'Šempeter-Vrtojba','183',1193,1), - (4270,'Šenčur','117',1193,1), - (4271,'Šentilj','118',1193,1), - (4272,'Šentjernej','119',1193,1), - (4273,'Šentjur','120',1193,1), - (4274,'Škocjan','121',1193,1), - (4275,'Škofja Loka','122',1193,1), - (4276,'Škofljica','123',1193,1), - (4277,'Šmarje pri Jelšah','124',1193,1), - (4278,'Šmartno ob Paki','125',1193,1), - (4279,'Šmartno pri Litiji','194',1193,1), - (4280,'Šoštanj','126',1193,1), - (4281,'Štore','127',1193,1), - (4282,'Tabor','184',1193,1), - (4283,'Tišina','010',1193,1), - (4284,'Tolmin','128',1193,1), - (4285,'Trbovlje','129',1193,1), - (4286,'Trebnje','130',1193,1), - (4287,'Trnovska vas','185',1193,1), - (4288,'Tržič','131',1193,1), - (4289,'Trzin','186',1193,1), - (4290,'Turnišče','132',1193,1), - (4291,'Velenje','133',1193,1), - (4292,'Velika Polana','187',1193,1), - (4293,'Velike Lašče','134',1193,1), - (4294,'Veržej','188',1193,1), - (4295,'Videm','135',1193,1), - (4296,'Vipava','136',1193,1), - (4297,'Vitanje','137',1193,1), - (4298,'Vojnik','138',1193,1), - (4299,'Vransko','189',1193,1), - (4300,'Vrhnika','140',1193,1), - (4301,'Vuzenica','141',1193,1), - (4302,'Zagorje ob Savi','142',1193,1), - (4303,'Zavrč','143',1193,1), - (4304,'Zreče','144',1193,1), - (4305,'Žalec','190',1193,1), - (4306,'Železniki','146',1193,1), - (4307,'Žetale','191',1193,1), - (4308,'Žiri','147',1193,1), - (4309,'Žirovnica','192',1193,1), - (4310,'Žužemberk','193',1193,1), - (4311,'Ankaran','86',1193,1), - (4312,'Apače','87',1193,1), - (4313,'Cirkulane','88',1193,1), - (4314,'Gorje','89',1193,1), - (4315,'Kostanjevica na Krki','90',1193,1), - (4316,'Log-Dragomer','91',1193,1), - (4317,'Makole','92',1193,1), - (4318,'Mirna','93',1193,1), - (4319,'Mokronog-Trebelno','94',1193,1), - (4320,'Odranci','95',1193,1), - (4321,'Oplotnica','96',1193,1), - (4322,'Ormož','97',1193,1), - (4323,'Osilnica','98',1193,1), - (4324,'Pesnica','99',1193,1), - (4325,'Piran','100',1193,1), - (4326,'Pivka','101',1193,1), - (4327,'Podčetrtek','102',1193,1), - (4328,'Podlehnik','103',1193,1), - (4329,'Podvelka','104',1193,1), - (4330,'Poljčane','105',1193,1), - (4331,'Polzela','106',1193,1), - (4332,'Postojna','107',1193,1), - (4333,'Prebold','108',1193,1), - (4334,'Preddvor','109',1193,1), - (4335,'Prevalje','110',1193,1), - (4336,'Ptuj','111',1193,1), - (4337,'Puconci','112',1193,1), - (4338,'Rače-Fram','113',1193,1), - (4339,'Radeče','114',1193,1), - (4340,'Radenci','115',1193,1), - (4341,'Radlje ob Dravi','139',1193,1), - (4342,'Radovljica','145',1193,1), - (4343,'Ravne na Koroškem','171',1193,1), - (4344,'Razkrižje','172',1193,1), - (4345,'Rečica ob Savinji','173',1193,1), - (4346,'Renče-Vogrsko','174',1193,1), - (4347,'Ribnica','175',1193,1), - (4348,'Ribnica na Pohorju','176',1193,1), - (4349,'Rogaška Slatina','177',1193,1), - (4350,'Rogašovci','178',1193,1), - (4351,'Rogatec','179',1193,1), - (4352,'Ruše','180',1193,1), - (4353,'Selnica ob Dravi','195',1193,1), - (4354,'Semič','196',1193,1), - (4355,'Šentrupert','197',1193,1), - (4356,'Sevnica','198',1193,1), - (4357,'Sežana','199',1193,1), - (4358,'Slovenj Gradec','200',1193,1), - (4359,'Slovenska Bistrica','201',1193,1), - (4360,'Slovenske Konjice','202',1193,1), - (4361,'Šmarješke Toplice','203',1193,1), - (4362,'Sodražica','204',1193,1), - (4363,'Solčava','205',1193,1), - (4364,'Središče ob Dravi','206',1193,1), - (4365,'Starše','207',1193,1), - (4366,'Straža','208',1193,1), - (4367,'Sveta Trojica v Slovenskih goricah','209',1193,1), - (4368,'Sveti Jurij v Slovenskih goricah','210',1193,1), - (4369,'Sveti Tomaž','211',1193,1), - (4370,'Vodice','212',1193,1), - (4371,'Banskobystrický kraj','BC',1192,1), - (4372,'Bratislavský kraj','BL',1192,1), - (4373,'Košický kraj','KI',1192,1), - (4374,'Nitriansky kraj','NJ',1192,1), - (4375,'Prešovský kraj','PV',1192,1), - (4376,'Trenčiansky kraj','TC',1192,1), - (4377,'Trnavský kraj','TA',1192,1), - (4378,'Žilinský kraj','ZI',1192,1), - (4379,'Western Area (Freetown)','W',1190,1), - (4380,'Eastern','E',1190,1), - (4381,'Northern','N',1190,1), - (4382,'Southern','S',1190,1), - (4383,'Dakar','DK',1188,1), - (4384,'Diourbel','DB',1188,1), - (4385,'Fatick','FK',1188,1), - (4386,'Kaolack','KL',1188,1), - (4387,'Kolda','KD',1188,1), - (4388,'Louga','LG',1188,1), - (4389,'Matam','MT',1188,1), - (4390,'Saint-Louis','SL',1188,1), - (4391,'Tambacounda','TC',1188,1), - (4392,'Thies','TH',1188,1), - (4393,'Ziguinchor','ZG',1188,1), - (4394,'Awdal','AW',1195,1), - (4395,'Bakool','BK',1195,1), - (4396,'Banaadir','BN',1195,1), - (4397,'Bay','BY',1195,1), - (4398,'Galguduud','GA',1195,1), - (4399,'Gedo','GE',1195,1), - (4400,'Hiirsan','HI',1195,1), - (4401,'Jubbada Dhexe','JD',1195,1), - (4402,'Jubbada Hoose','JH',1195,1), - (4403,'Mudug','MU',1195,1), - (4404,'Nugaal','NU',1195,1), - (4405,'Saneag','SA',1195,1), - (4406,'Shabeellaha Dhexe','SD',1195,1), - (4407,'Shabeellaha Hoose','SH',1195,1), - (4408,'Sool','SO',1195,1), - (4409,'Togdheer','TO',1195,1), - (4410,'Woqooyi Galbeed','WO',1195,1), - (4411,'Brokopondo','BR',1201,1), - (4412,'Commewijne','CM',1201,1), - (4413,'Coronie','CR',1201,1), - (4414,'Marowijne','MA',1201,1), - (4415,'Nickerie','NI',1201,1), - (4416,'Paramaribo','PM',1201,1), - (4417,'Saramacca','SA',1201,1), - (4418,'Sipaliwini','SI',1201,1), - (4419,'Wanica','WA',1201,1), - (4420,'Principe','P',1207,1), - (4421,'Sao Tome','S',1207,1), - (4422,'Ahuachapan','AH',1066,1), - (4423,'Cabanas','CA',1066,1), - (4424,'Cuscatlan','CU',1066,1), - (4425,'Chalatenango','CH',1066,1), - (4426,'Morazan','MO',1066,1), - (4427,'San Miguel','SM',1066,1), - (4428,'San Salvador','SS',1066,1), - (4429,'Santa Ana','SA',1066,1), - (4430,'San Vicente','SV',1066,1), - (4431,'Sonsonate','SO',1066,1), - (4432,'Usulutan','US',1066,1), - (4433,'La Libertad','LI',1066,1), - (4434,'La Paz','PA',1066,1), - (4435,'La Union','UN',1066,1), - (4436,'Al Hasakah','HA',1206,1), - (4437,'Al Ladhiqiyah','LA',1206,1), - (4438,'Al Qunaytirah','QU',1206,1), - (4439,'Ar Raqqah','RA',1206,1), - (4440,'As Suwayda\'','SU',1206,1), - (4441,'Dar\'a','DR',1206,1), - (4442,'Dayr az Zawr','DY',1206,1), - (4443,'Dimashq','DI',1206,1), - (4444,'Halab','HL',1206,1), - (4445,'Hamah','HM',1206,1), - (4446,'Jim\'','HI',1206,1), - (4447,'Idlib','ID',1206,1), - (4448,'Rif Dimashq','RD',1206,1), - (4449,'Tarts','TA',1206,1), - (4450,'Hhohho','HH',1203,1), - (4451,'Lubombo','LU',1203,1), - (4452,'Manzini','MA',1203,1), - (4453,'Shiselweni','SH',1203,1), - (4454,'Batha','BA',1043,1), - (4455,'Biltine','BI',1043,1), - (4456,'Borkou-Ennedi-Tibesti','BET',1043,1), - (4457,'Chari-Baguirmi','CB',1043,1), - (4458,'Guera','GR',1043,1), - (4459,'Kanem','KA',1043,1), - (4460,'Lac','LC',1043,1), - (4461,'Logone-Occidental','LO',1043,1), - (4462,'Logone-Oriental','LR',1043,1), - (4463,'Mayo-Kebbi','MK',1043,1), - (4464,'Moyen-Chari','MC',1043,1), - (4465,'Ouaddai','OD',1043,1), - (4466,'Salamat','SA',1043,1), - (4467,'Tandjile','TA',1043,1), - (4468,'Kara','K',1214,1), - (4469,'Maritime (Region)','M',1214,1), - (4470,'Savannes','S',1214,1), - (4471,'Krung Thep Maha Nakhon Bangkok','10',1211,1), - (4472,'Phatthaya','S',1211,1), - (4473,'Amnat Charoen','37',1211,1), - (4474,'Ang Thong','15',1211,1), - (4475,'Buri Ram','31',1211,1), - (4476,'Chachoengsao','24',1211,1), - (4477,'Chai Nat','18',1211,1), - (4478,'Chaiyaphum','36',1211,1), - (4479,'Chanthaburi','22',1211,1), - (4480,'Chiang Mai','50',1211,1), - (4481,'Chiang Rai','57',1211,1), - (4482,'Chon Buri','20',1211,1), - (4483,'Chumphon','86',1211,1), - (4484,'Kalasin','46',1211,1), - (4485,'Kamphasng Phet','62',1211,1), - (4486,'Kanchanaburi','71',1211,1), - (4487,'Khon Kaen','40',1211,1), - (4488,'Krabi','81',1211,1), - (4489,'Lampang','52',1211,1), - (4490,'Lamphun','51',1211,1), - (4491,'Loei','42',1211,1), - (4492,'Lop Buri','16',1211,1), - (4493,'Mae Hong Son','58',1211,1), - (4494,'Maha Sarakham','44',1211,1), - (4495,'Mukdahan','49',1211,1), - (4496,'Nakhon Nayok','26',1211,1), - (4497,'Nakhon Pathom','73',1211,1), - (4498,'Nakhon Phanom','48',1211,1), - (4499,'Nakhon Ratchasima','30',1211,1), - (4500,'Nakhon Sawan','60',1211,1), - (4501,'Nakhon Si Thammarat','80',1211,1), - (4502,'Nan','55',1211,1), - (4503,'Narathiwat','96',1211,1), - (4504,'Nong Bua Lam Phu','39',1211,1), - (4505,'Nong Khai','43',1211,1), - (4506,'Nonthaburi','12',1211,1), - (4507,'Pathum Thani','13',1211,1), - (4508,'Pattani','94',1211,1), - (4509,'Phangnga','82',1211,1), - (4510,'Phatthalung','93',1211,1), - (4511,'Phayao','56',1211,1), - (4512,'Phetchabun','67',1211,1), - (4513,'Phetchaburi','76',1211,1), - (4514,'Phichit','66',1211,1), - (4515,'Phitsanulok','65',1211,1), - (4516,'Phrae','54',1211,1), - (4517,'Phra Nakhon Si Ayutthaya','14',1211,1), - (4518,'Phuket','83',1211,1), - (4519,'Prachin Buri','25',1211,1), - (4520,'Prachuap Khiri Khan','77',1211,1), - (4521,'Ranong','85',1211,1), - (4522,'Ratchaburi','70',1211,1), - (4523,'Rayong','21',1211,1), - (4524,'Roi Et','45',1211,1), - (4525,'Sa Kaeo','27',1211,1), - (4526,'Sakon Nakhon','47',1211,1), - (4527,'Samut Prakan','11',1211,1), - (4528,'Samut Sakhon','74',1211,1), - (4529,'Samut Songkhram','75',1211,1), - (4530,'Saraburi','19',1211,1), - (4531,'Satun','91',1211,1), - (4532,'Sing Buri','17',1211,1), - (4533,'Si Sa Ket','33',1211,1), - (4534,'Songkhla','90',1211,1), - (4535,'Sukhothai','64',1211,1), - (4536,'Suphan Buri','72',1211,1), - (4537,'Surat Thani','84',1211,1), - (4538,'Surin','32',1211,1), - (4539,'Tak','63',1211,1), - (4540,'Trang','92',1211,1), - (4541,'Trat','23',1211,1), - (4542,'Ubon Ratchathani','34',1211,1), - (4543,'Udon Thani','41',1211,1), - (4544,'Uthai Thani','61',1211,1), - (4545,'Uttaradit','53',1211,1), - (4546,'Yala','95',1211,1), - (4547,'Yasothon','35',1211,1), - (4548,'Sughd','SU',1209,1), - (4549,'Khatlon','KT',1209,1), - (4550,'Gorno-Badakhshan','GB',1209,1), - (4551,'Dushanbe','DU',1209,1), - (4552,'Nohiyahoi Tobei Jumhurí','RA',1209,1), - (4553,'Ahal','A',1220,1), - (4554,'Balkan','B',1220,1), - (4555,'Dasoguz','D',1220,1), - (4556,'Lebap','L',1220,1), - (4557,'Mary','M',1220,1), - (4558,'Béja','31',1218,1), - (4559,'Ben Arous','13',1218,1), - (4560,'Bizerte','23',1218,1), - (4561,'Gabès','81',1218,1), - (4562,'Gafsa','71',1218,1), - (4563,'Jendouba','32',1218,1), - (4564,'Kairouan','41',1218,1), - (4565,'Rasserine','42',1218,1), - (4566,'Kebili','73',1218,1), - (4567,'L\'Ariana','12',1218,1), - (4568,'Le Ref','33',1218,1), - (4569,'Mahdia','53',1218,1), - (4570,'La Manouba','14',1218,1), - (4571,'Medenine','82',1218,1), - (4572,'Moneatir','52',1218,1), - (4573,'Naboul','21',1218,1), - (4574,'Sfax','61',1218,1), - (4575,'Sidi Bouxid','43',1218,1), - (4576,'Siliana','34',1218,1), - (4577,'Sousse','51',1218,1), - (4578,'Tataouine','83',1218,1), - (4579,'Tozeur','72',1218,1), - (4580,'Tunis','11',1218,1), - (4581,'Zaghouan','22',1218,1), - (4582,'Adana','01',1219,1), - (4583,'Ad yaman','02',1219,1), - (4584,'Afyon','03',1219,1), - (4585,'Ag r','04',1219,1), - (4586,'Aksaray','68',1219,1), - (4587,'Amasya','05',1219,1), - (4588,'Ankara','06',1219,1), - (4589,'Antalya','07',1219,1), - (4590,'Ardahan','75',1219,1), - (4591,'Artvin','08',1219,1), - (4592,'Aydin','09',1219,1), - (4593,'Bal kesir','10',1219,1), - (4594,'Bartin','74',1219,1), - (4595,'Batman','72',1219,1), - (4596,'Bayburt','69',1219,1), - (4597,'Bilecik','11',1219,1), - (4598,'Bingol','12',1219,1), - (4599,'Bitlis','13',1219,1), - (4600,'Bolu','14',1219,1), - (4601,'Burdur','15',1219,1), - (4602,'Bursa','16',1219,1), - (4603,'Canakkale','17',1219,1), - (4604,'Cankir','18',1219,1), - (4605,'Corum','19',1219,1), - (4606,'Denizli','20',1219,1), - (4607,'Diyarbakir','21',1219,1), - (4608,'Duzce','81',1219,1), - (4609,'Edirne','22',1219,1), - (4610,'Elazig','23',1219,1), - (4611,'Erzincan','24',1219,1), - (4612,'Erzurum','25',1219,1), - (4613,'Eskis\'ehir','26',1219,1), - (4614,'Gaziantep','27',1219,1), - (4615,'Giresun','28',1219,1), - (4616,'Gms\'hane','29',1219,1), - (4617,'Hakkari','30',1219,1), - (4618,'Hatay','31',1219,1), - (4619,'Igidir','76',1219,1), - (4620,'Isparta','32',1219,1), - (4621,'Icel','33',1219,1), - (4622,'Istanbul','34',1219,1), - (4623,'Izmir','35',1219,1), - (4624,'Kahramanmaras','46',1219,1), - (4625,'Karabk','78',1219,1), - (4626,'Karaman','70',1219,1), - (4627,'Kars','36',1219,1), - (4628,'Kastamonu','37',1219,1), - (4629,'Kayseri','38',1219,1), - (4630,'Kirikkale','71',1219,1), - (4631,'Kirklareli','39',1219,1), - (4632,'Kirs\'ehir','40',1219,1), - (4633,'Kilis','79',1219,1), - (4634,'Kocaeli','41',1219,1), - (4635,'Konya','42',1219,1), - (4636,'Ktahya','43',1219,1), - (4637,'Malatya','44',1219,1), - (4638,'Manisa','45',1219,1), - (4639,'Mardin','47',1219,1), - (4640,'Mugila','48',1219,1), - (4641,'Mus','49',1219,1), - (4642,'Nevs\'ehir','50',1219,1), - (4643,'Nigide','51',1219,1), - (4644,'Ordu','52',1219,1), - (4645,'Osmaniye','80',1219,1), - (4646,'Rize','53',1219,1), - (4647,'Sakarya','54',1219,1), - (4648,'Samsun','55',1219,1), - (4649,'Siirt','56',1219,1), - (4650,'Sinop','57',1219,1), - (4651,'Sivas','58',1219,1), - (4652,'S\'anliurfa','63',1219,1), - (4653,'S\'rnak','73',1219,1), - (4654,'Tekirdag','59',1219,1), - (4655,'Tokat','60',1219,1), - (4656,'Trabzon','61',1219,1), - (4657,'Tunceli','62',1219,1), - (4658,'Us\'ak','64',1219,1), - (4659,'Van','65',1219,1), - (4660,'Yalova','77',1219,1), - (4661,'Yozgat','66',1219,1), - (4662,'Zonguldak','67',1219,1), - (4663,'Couva-Tabaquite-Talparo','CTT',1217,1), - (4664,'Diego Martin','DMN',1217,1), - (4665,'Eastern Tobago','ETO',1217,1), - (4666,'Penal-Debe','PED',1217,1), - (4667,'Princes Town','PRT',1217,1), - (4668,'Rio Claro-Mayaro','RCM',1217,1), - (4669,'Sangre Grande','SGE',1217,1), - (4670,'San Juan-Laventille','SJL',1217,1), - (4671,'Siparia','SIP',1217,1), - (4672,'Tunapuna-Piarco','TUP',1217,1), - (4673,'Western Tobago','WTO',1217,1), - (4674,'Arima','ARI',1217,1), - (4675,'Chaguanas','CHA',1217,1), - (4676,'Point Fortin','PTF',1217,1), - (4677,'Port of Spain','POS',1217,1), - (4678,'San Fernando','SFO',1217,1), - (4679,'Aileu','AL',1063,1), - (4680,'Ainaro','AN',1063,1), - (4681,'Bacucau','BA',1063,1), - (4682,'Bobonaro','BO',1063,1), - (4683,'Cova Lima','CO',1063,1), - (4684,'Dili','DI',1063,1), - (4685,'Ermera','ER',1063,1), - (4686,'Laulem','LA',1063,1), - (4687,'Liquica','LI',1063,1), - (4688,'Manatuto','MT',1063,1), - (4689,'Manafahi','MF',1063,1), - (4690,'Oecussi','OE',1063,1), - (4691,'Viqueque','VI',1063,1), - (4692,'Changhua County','CHA',1208,1), - (4693,'Chiayi County','CYQ',1208,1), - (4694,'Hsinchu County','HSQ',1208,1), - (4695,'Hualien County','HUA',1208,1), - (4696,'Ilan County','ILA',1208,1), - (4697,'Kaohsiung County','KHQ',1208,1), - (4698,'Miaoli County','MIA',1208,1), - (4699,'Nantou County','NAN',1208,1), - (4700,'Penghu County','PEN',1208,1), - (4701,'Pingtung County','PIF',1208,1), - (4702,'Taichung County','TXQ',1208,1), - (4703,'Tainan County','TNQ',1208,1), - (4704,'Taipei County','TPQ',1208,1), - (4705,'Taitung County','TTT',1208,1), - (4706,'Taoyuan County','TAO',1208,1), - (4707,'Yunlin County','YUN',1208,1), - (4708,'Keelung City','KEE',1208,1), - (4709,'Taichung City','TXG',1208,1), - (4710,'Kaohsiung City','KHH',1208,1), - (4711,'Taipei City','TPE',1208,1), - (4712,'Chiayi City','CYI',1208,1), - (4713,'Hsinchu City','HSZ',1208,1), - (4714,'Tainan City','TNN',1208,1), - (4715,'Arusha','01',1210,1), - (4716,'Dar-es-Salaam','02',1210,1), - (4717,'Dodoma','03',1210,1), - (4718,'Iringa','04',1210,1), - (4719,'Kagera','05',1210,1), - (4720,'Kaskazini Pemba','06',1210,1), - (4721,'Kaskazini Unguja','07',1210,1), - (4722,'Xigoma','08',1210,1), - (4723,'Kilimanjaro','09',1210,1), - (4724,'Rusini Pemba','10',1210,1), - (4725,'Kusini Unguja','11',1210,1), - (4726,'Lindi','12',1210,1), - (4727,'Manyara','26',1210,1), - (4728,'Mara','13',1210,1), - (4729,'Mbeya','14',1210,1), - (4730,'Mjini Magharibi','15',1210,1), - (4731,'Morogoro','16',1210,1), - (4732,'Mtwara','17',1210,1), - (4733,'Pwani','19',1210,1), - (4734,'Rukwa','20',1210,1), - (4735,'Ruvuma','21',1210,1), - (4736,'Shinyanga','22',1210,1), - (4737,'Singida','23',1210,1), - (4738,'Tabora','24',1210,1), - (4739,'Tanga','25',1210,1), - (4740,'Cherkas\'ka Oblast\'','71',1224,1), - (4741,'Chernihivs\'ka Oblast\'','74',1224,1), - (4742,'Chernivets\'ka Oblast\'','77',1224,1), - (4743,'Dnipropetrovs\'ka Oblast\'','12',1224,1), - (4744,'Donets\'ka Oblast\'','14',1224,1), - (4745,'Ivano-Frankivs\'ka Oblast\'','26',1224,1), - (4746,'Kharkivs\'ka Oblast\'','63',1224,1), - (4747,'Khersons\'ka Oblast\'','65',1224,1), - (4748,'Khmel\'nyts\'ka Oblast\'','68',1224,1), - (4749,'Kirovohrads\'ka Oblast\'','35',1224,1), - (4750,'Kyivs\'ka Oblast\'','32',1224,1), - (4751,'Luhans\'ka Oblast\'','09',1224,1), - (4752,'L\'vivs\'ka Oblast\'','46',1224,1), - (4753,'Mykolaivs\'ka Oblast\'','48',1224,1), - (4754,'Odes \'ka Oblast\'','51',1224,1), - (4755,'Poltavs\'ka Oblast\'','53',1224,1), - (4756,'Rivnens\'ka Oblast\'','56',1224,1), - (4757,'Sums \'ka Oblast\'','59',1224,1), - (4758,'Ternopil\'s\'ka Oblast\'','61',1224,1), - (4759,'Vinnyts\'ka Oblast\'','05',1224,1), - (4760,'Volyos\'ka Oblast\'','07',1224,1), - (4761,'Zakarpats\'ka Oblast\'','21',1224,1), - (4762,'Zaporiz\'ka Oblast\'','23',1224,1), - (4763,'Zhytomyrs\'ka Oblast\'','18',1224,1), - (4764,'Respublika Krym','43',1224,1), - (4765,'Kyiv','30',1224,1), - (4766,'Sevastopol','40',1224,1), - (4767,'Adjumani','301',1223,1), - (4768,'Apac','302',1223,1), - (4769,'Arua','303',1223,1), - (4770,'Bugiri','201',1223,1), - (4771,'Bundibugyo','401',1223,1), - (4772,'Bushenyi','402',1223,1), - (4773,'Busia','202',1223,1), - (4774,'Gulu','304',1223,1), - (4775,'Hoima','403',1223,1), - (4776,'Iganga','203',1223,1), - (4777,'Jinja','204',1223,1), - (4778,'Kabale','404',1223,1), - (4779,'Kabarole','405',1223,1), - (4780,'Kaberamaido','213',1223,1), - (4781,'Kalangala','101',1223,1), - (4782,'Kampala','102',1223,1), - (4783,'Kamuli','205',1223,1), - (4784,'Kamwenge','413',1223,1), - (4785,'Kanungu','414',1223,1), - (4786,'Kapchorwa','206',1223,1), - (4787,'Kasese','406',1223,1), - (4788,'Katakwi','207',1223,1), - (4789,'Kayunga','112',1223,1), - (4790,'Kibaale','407',1223,1), - (4791,'Kiboga','103',1223,1), - (4792,'Kisoro','408',1223,1), - (4793,'Kitgum','305',1223,1), - (4794,'Kotido','306',1223,1), - (4795,'Kumi','208',1223,1), - (4796,'Kyenjojo','415',1223,1), - (4797,'Lira','307',1223,1), - (4798,'Luwero','104',1223,1), - (4799,'Masaka','105',1223,1), - (4800,'Masindi','409',1223,1), - (4801,'Mayuge','214',1223,1), - (4802,'Mbale','209',1223,1), - (4803,'Mbarara','410',1223,1), - (4804,'Moroto','308',1223,1), - (4805,'Moyo','309',1223,1), - (4806,'Mpigi','106',1223,1), - (4807,'Mubende','107',1223,1), - (4808,'Mukono','108',1223,1), - (4809,'Nakapiripirit','311',1223,1), - (4810,'Nakasongola','109',1223,1), - (4811,'Nebbi','310',1223,1), - (4812,'Ntungamo','411',1223,1), - (4813,'Pader','312',1223,1), - (4814,'Pallisa','210',1223,1), - (4815,'Rakai','110',1223,1), - (4816,'Rukungiri','412',1223,1), - (4817,'Sembabule','111',1223,1), - (4818,'Sironko','215',1223,1), - (4819,'Soroti','211',1223,1), - (4820,'Tororo','212',1223,1), - (4821,'Wakiso','113',1223,1), - (4822,'Yumbe','313',1223,1), - (4823,'Baker Island','81',1227,1), - (4824,'Howland Island','84',1227,1), - (4825,'Jarvis Island','86',1227,1), - (4826,'Johnston Atoll','67',1227,1), - (4827,'Kingman Reef','89',1227,1), - (4828,'Midway Islands','71',1227,1), - (4829,'Navassa Island','76',1227,1), - (4830,'Palmyra Atoll','95',1227,1), - (4831,'Wake Island','79',1227,1), - (4832,'Artigsa','AR',1229,1), - (4833,'Canelones','CA',1229,1), - (4834,'Cerro Largo','CL',1229,1), - (4835,'Colonia','CO',1229,1), - (4836,'Durazno','DU',1229,1), - (4837,'Flores','FS',1229,1), - (4838,'Lavalleja','LA',1229,1), - (4839,'Maldonado','MA',1229,1), - (4840,'Montevideo','MO',1229,1), - (4841,'Paysandu','PA',1229,1), - (4842,'Rivera','RV',1229,1), - (4843,'Rocha','RO',1229,1), - (4844,'Salto','SA',1229,1), - (4845,'Soriano','SO',1229,1), - (4846,'Tacuarembo','TA',1229,1), - (4847,'Treinta y Tres','TT',1229,1), - (4848,'Florida','FL',1229,1), - (4849,'Rio Negro','RN',1229,1), - (4850,'San Jose','SJ',1229,1), - (4851,'Toshkent (city)','TK',1230,1), - (4852,'Qoraqalpogiston Respublikasi','QR',1230,1), - (4853,'Andijon','AN',1230,1), - (4854,'Buxoro','BU',1230,1), - (4855,'Farg\'ona','FA',1230,1), - (4856,'Jizzax','JI',1230,1), - (4857,'Khorazm','KH',1230,1), - (4858,'Namangan','NG',1230,1), - (4859,'Navoiy','NW',1230,1), - (4860,'Qashqadaryo','QA',1230,1), - (4861,'Samarqand','SA',1230,1), - (4862,'Sirdaryo','SI',1230,1), - (4863,'Surxondaryo','SU',1230,1), - (4864,'Toshkent','TO',1230,1), - (4865,'Xorazm','XO',1230,1), - (4866,'Distrito Federal','A',1232,1), - (4867,'Anzoategui','B',1232,1), - (4868,'Apure','C',1232,1), - (4869,'Aragua','D',1232,1), - (4870,'Barinas','E',1232,1), - (4871,'Carabobo','G',1232,1), - (4872,'Cojedes','H',1232,1), - (4873,'Falcon','I',1232,1), - (4874,'Guarico','J',1232,1), - (4875,'Lara','K',1232,1), - (4876,'Merida','L',1232,1), - (4877,'Miranda','M',1232,1), - (4878,'Monagas','N',1232,1), - (4879,'Nueva Esparta','O',1232,1), - (4880,'Portuguesa','P',1232,1), - (4881,'Tachira','S',1232,1), - (4882,'Trujillo','T',1232,1), - (4883,'Vargas','X',1232,1), - (4884,'Yaracuy','U',1232,1), - (4885,'Zulia','V',1232,1), - (4886,'Delta Amacuro','Y',1232,1), - (4887,'Dependencias Federales','W',1232,1), - (4888,'An Giang','44',1233,1), - (4889,'Ba Ria - Vung Tau','43',1233,1), - (4890,'Bac Can','53',1233,1), - (4891,'Bac Giang','54',1233,1), - (4892,'Bac Lieu','55',1233,1), - (4893,'Bac Ninh','56',1233,1), - (4894,'Ben Tre','50',1233,1), - (4895,'Binh Dinh','31',1233,1), - (4896,'Binh Duong','57',1233,1), - (4897,'Binh Phuoc','58',1233,1), - (4898,'Binh Thuan','40',1233,1), - (4899,'Ca Mau','59',1233,1), - (4900,'Can Tho','48',1233,1), - (4901,'Cao Bang','04',1233,1), - (4902,'Da Nang, thanh pho','60',1233,1), - (4903,'Dong Nai','39',1233,1), - (4904,'Dong Thap','45',1233,1), - (4905,'Gia Lai','30',1233,1), - (4906,'Ha Giang','03',1233,1), - (4907,'Ha Nam','63',1233,1), - (4908,'Ha Noi, thu do','64',1233,1), - (4909,'Ha Tay','15',1233,1), - (4910,'Ha Tinh','23',1233,1), - (4911,'Hai Duong','61',1233,1), - (4912,'Hai Phong, thanh pho','62',1233,1), - (4913,'Hoa Binh','14',1233,1), - (4914,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233,1), - (4915,'Hung Yen','66',1233,1), - (4916,'Khanh Hoa','34',1233,1), - (4917,'Kien Giang','47',1233,1), - (4918,'Kon Tum','28',1233,1), - (4919,'Lai Chau','01',1233,1), - (4920,'Lam Dong','35',1233,1), - (4921,'Lang Son','09',1233,1), - (4922,'Lao Cai','02',1233,1), - (4923,'Long An','41',1233,1), - (4924,'Nam Dinh','67',1233,1), - (4925,'Nghe An','22',1233,1), - (4926,'Ninh Binh','18',1233,1), - (4927,'Ninh Thuan','36',1233,1), - (4928,'Phu Tho','68',1233,1), - (4929,'Phu Yen','32',1233,1), - (4930,'Quang Binh','24',1233,1), - (4931,'Quang Nam','27',1233,1), - (4932,'Quang Ngai','29',1233,1), - (4933,'Quang Ninh','13',1233,1), - (4934,'Quang Tri','25',1233,1), - (4935,'Soc Trang','52',1233,1), - (4936,'Son La','05',1233,1), - (4937,'Tay Ninh','37',1233,1), - (4938,'Thai Binh','20',1233,1), - (4939,'Thai Nguyen','69',1233,1), - (4940,'Thanh Hoa','21',1233,1), - (4941,'Thua Thien-Hue','26',1233,1), - (4942,'Tien Giang','46',1233,1), - (4943,'Tra Vinh','51',1233,1), - (4944,'Tuyen Quang','07',1233,1), - (4945,'Vinh Long','49',1233,1), - (4946,'Vinh Phuc','70',1233,1), - (4947,'Yen Bai','06',1233,1), - (4948,'Malampa','MAP',1231,1), - (4949,'Penama','PAM',1231,1), - (4950,'Sanma','SAM',1231,1), - (4951,'Shefa','SEE',1231,1), - (4952,'Tafea','TAE',1231,1), - (4953,'Torba','TOB',1231,1), - (4954,'A\'ana','AA',1185,1), - (4955,'Aiga-i-le-Tai','AL',1185,1), - (4956,'Atua','AT',1185,1), - (4957,'Fa\'aaaleleaga','FA',1185,1), - (4958,'Gaga\'emauga','GE',1185,1), - (4959,'Gagaifomauga','GI',1185,1), - (4960,'Palauli','PA',1185,1), - (4961,'Satupa\'itea','SA',1185,1), - (4962,'Tuamasaga','TU',1185,1), - (4963,'Va\'a-o-Fonoti','VF',1185,1), - (4964,'Vaisigano','VS',1185,1), - (4965,'Crna Gora','CG',1243,1), - (4966,'Srbija','SR',1242,1), - (4967,'Kosovo-Metohija','KM',1242,1), - (4968,'Vojvodina','VO',1242,1), - (4969,'Abyan','AB',1237,1), - (4970,'Adan','AD',1237,1), - (4971,'Ad Dali','DA',1237,1), - (4972,'Al Bayda\'','BA',1237,1), - (4973,'Al Hudaydah','MU',1237,1), - (4974,'Al Mahrah','MR',1237,1), - (4975,'Al Mahwit','MW',1237,1), - (4976,'Amran','AM',1237,1), - (4977,'Dhamar','DH',1237,1), - (4978,'Hadramawt','HD',1237,1), - (4979,'Hajjah','HJ',1237,1), - (4980,'Ibb','IB',1237,1), - (4981,'Lahij','LA',1237,1), - (4982,'Ma\'rib','MA',1237,1), - (4983,'Sa\'dah','SD',1237,1), - (4984,'San\'a\'','SN',1237,1), - (4985,'Shabwah','SH',1237,1), - (4986,'Ta\'izz','TA',1237,1), - (4987,'Eastern Cape','EC',1196,1), - (4988,'Free State','FS',1196,1), - (4989,'Gauteng','GT',1196,1), - (4990,'Kwazulu-Natal','NL',1196,1), - (4991,'Mpumalanga','MP',1196,1), - (4992,'Northern Cape','NC',1196,1), - (4993,'Limpopo','NP',1196,1), - (4994,'Western Cape','WC',1196,1), - (4995,'North West','NW',1196,1), - (4996,'Copperbelt','08',1239,1), - (4997,'Luapula','04',1239,1), - (4998,'Lusaka','09',1239,1), - (4999,'North-Western','06',1239,1), - (5000,'Central','C',1239,1), - (5001,'Eastern','E',1239,1), - (5002,'Muchinga','M',1239,1), - (5003,'Northern','N',1239,1), - (5004,'Southern','S',1239,1), - (5005,'Western','W',1239,1), - (5006,'Bulawayo','BU',1240,1), - (5007,'Harare','HA',1240,1), - (5008,'Manicaland','MA',1240,1), - (5009,'Mashonaland Central','MC',1240,1), - (5010,'Mashonaland East','ME',1240,1), - (5011,'Mashonaland West','MW',1240,1), - (5012,'Masvingo','MV',1240,1), - (5013,'Matabeleland North','MN',1240,1), - (5014,'Matabeleland South','MS',1240,1), - (5015,'Midlands','MI',1240,1), - (5016,'South Karelia','SK',1075,1), - (5017,'South Ostrobothnia','SO',1075,1), - (5018,'Etelä-Savo','ES',1075,1), - (5019,'Häme','HH',1075,1), - (5020,'Itä-Uusimaa','IU',1075,1), - (5021,'Kainuu','KA',1075,1), - (5022,'Central Ostrobothnia','CO',1075,1), - (5023,'Central Finland','CF',1075,1), - (5024,'Kymenlaakso','KY',1075,1), - (5025,'Lapland','LA',1075,1), - (5026,'Tampere Region','TR',1075,1), - (5027,'Ostrobothnia','OB',1075,1), - (5028,'North Karelia','NK',1075,1), - (5029,'Northern Ostrobothnia','NO',1075,1), - (5030,'Northern Savo','NS',1075,1), - (5031,'Päijät-Häme','PH',1075,1), - (5032,'Satakunta','SK',1075,1), - (5033,'Uusimaa','UM',1075,1), - (5034,'South-West Finland','SW',1075,1), - (5035,'Åland','AL',1075,1), - (5036,'Limburg','LI',1152,1), - (5037,'Central and Western','CW',1098,1), - (5038,'Eastern','EA',1098,1), - (5039,'Southern','SO',1098,1), - (5040,'Wan Chai','WC',1098,1), - (5041,'Kowloon City','KC',1098,1), - (5042,'Kwun Tong','KU',1098,1), - (5043,'Sham Shui Po','SS',1098,1), - (5044,'Wong Tai Sin','WT',1098,1), - (5045,'Yau Tsim Mong','YT',1098,1), - (5046,'Islands','IS',1098,1), - (5047,'Kwai Tsing','KI',1098,1), - (5048,'North','NO',1098,1), - (5049,'Sai Kung','SK',1098,1), - (5050,'Sha Tin','ST',1098,1), - (5051,'Tai Po','TP',1098,1), - (5052,'Tsuen Wan','TW',1098,1), - (5053,'Tuen Mun','TM',1098,1), - (5054,'Yuen Long','YL',1098,1), - (5055,'Manchester','MR',1108,1), - (5056,'Al Manāmah (Al ‘Āşimah)','13',1016,1), - (5057,'Al Janūbīyah','14',1016,1), - (5058,'Al Wusţá','16',1016,1), - (5059,'Ash Shamālīyah','17',1016,1), - (5060,'Anenii Noi','AN',1142,1), - (5061,'Basarabeasca','BS',1142,1), - (5062,'Briceni','BR',1142,1), - (5063,'Cantemir','CT',1142,1), - (5064,'Călărași','CL',1142,1), - (5065,'Căușeni','CS',1142,1), - (5066,'Cimislia','CM',1142,1), - (5067,'Criuleni','CR',1142,1), - (5068,'Dondușeni','DO',1142,1), - (5069,'Drochia','DR',1142,1), - (5070,'Dubăsari','DU',1142,1), - (5071,'Fălești','FA',1142,1), - (5072,'Florești','FL',1142,1), - (5073,'Glodeni','GL',1142,1), - (5074,'Hîncești','HI',1142,1), - (5075,'Ialoveni','IA',1142,1), - (5076,'Leova','LE',1142,1), - (5077,'Nisporeni','NI',1142,1), - (5078,'Ocnița','OC',1142,1), - (5079,'Rezina','RE',1142,1), - (5080,'Rîșcani','RI',1142,1), - (5081,'Sîngerei','SI',1142,1), - (5082,'Strășeni','ST',1142,1), - (5083,'Șoldănești','SD',1142,1), - (5084,'Ștefan Vodă','SV',1142,1), - (5085,'Telenești','TE',1142,1); +(1001,'Alaska','AK',1228,1), +(1002,'Arizona','AZ',1228,1), +(1003,'Arkansas','AR',1228,1), +(1004,'California','CA',1228,1), +(1005,'Colorado','CO',1228,1), +(1006,'Connecticut','CT',1228,1), +(1007,'Delaware','DE',1228,1), +(1008,'Florida','FL',1228,1), +(1009,'Georgia','GA',1228,1), +(1010,'Hawaii','HI',1228,1), +(1011,'Idaho','ID',1228,1), +(1012,'Illinois','IL',1228,1), +(1013,'Indiana','IN',1228,1), +(1014,'Iowa','IA',1228,1), +(1015,'Kansas','KS',1228,1), +(1016,'Kentucky','KY',1228,1), +(1017,'Louisiana','LA',1228,1), +(1018,'Maine','ME',1228,1), +(1019,'Maryland','MD',1228,1), +(1020,'Massachusetts','MA',1228,1), +(1021,'Michigan','MI',1228,1), +(1022,'Minnesota','MN',1228,1), +(1023,'Mississippi','MS',1228,1), +(1024,'Missouri','MO',1228,1), +(1025,'Montana','MT',1228,1), +(1026,'Nebraska','NE',1228,1), +(1027,'Nevada','NV',1228,1), +(1028,'New Hampshire','NH',1228,1), +(1029,'New Jersey','NJ',1228,1), +(1030,'New Mexico','NM',1228,1), +(1031,'New York','NY',1228,1), +(1032,'North Carolina','NC',1228,1), +(1033,'North Dakota','ND',1228,1), +(1034,'Ohio','OH',1228,1), +(1035,'Oklahoma','OK',1228,1), +(1036,'Oregon','OR',1228,1), +(1037,'Pennsylvania','PA',1228,1), +(1038,'Rhode Island','RI',1228,1), +(1039,'South Carolina','SC',1228,1), +(1040,'South Dakota','SD',1228,1), +(1041,'Tennessee','TN',1228,1), +(1042,'Texas','TX',1228,1), +(1043,'Utah','UT',1228,1), +(1044,'Vermont','VT',1228,1), +(1045,'Virginia','VA',1228,1), +(1046,'Washington','WA',1228,1), +(1047,'West Virginia','WV',1228,1), +(1048,'Wisconsin','WI',1228,1), +(1049,'Wyoming','WY',1228,1), +(1050,'District of Columbia','DC',1228,1), +(1051,'American Samoa','AS',1228,1), +(1052,'Guam','GU',1228,1), +(1053,'Northern Mariana Islands','MP',1228,1), +(1054,'Puerto Rico','PR',1228,1), +(1055,'Virgin Islands','VI',1228,1), +(1056,'United States Minor Outlying Islands','UM',1228,1), +(1057,'Armed Forces Europe','AE',1228,1), +(1058,'Armed Forces Americas','AA',1228,1), +(1059,'Armed Forces Pacific','AP',1228,1), +(1060,'Alberta','AB',1039,1), +(1061,'British Columbia','BC',1039,1), +(1062,'Manitoba','MB',1039,1), +(1063,'New Brunswick','NB',1039,1), +(1064,'Newfoundland and Labrador','NL',1039,1), +(1065,'Northwest Territories','NT',1039,1), +(1066,'Nova Scotia','NS',1039,1), +(1067,'Nunavut','NU',1039,1), +(1068,'Ontario','ON',1039,1), +(1069,'Prince Edward Island','PE',1039,1), +(1070,'Quebec','QC',1039,1), +(1071,'Saskatchewan','SK',1039,1), +(1072,'Yukon Territory','YT',1039,1), +(1073,'Maharashtra','MH',1101,1), +(1074,'Karnataka','KA',1101,1), +(1075,'Andhra Pradesh','AP',1101,1), +(1076,'Arunachal Pradesh','AR',1101,1), +(1077,'Assam','AS',1101,1), +(1078,'Bihar','BR',1101,1), +(1079,'Chhattisgarh','CG',1101,1), +(1080,'Goa','GA',1101,1), +(1081,'Gujarat','GJ',1101,1), +(1082,'Haryana','HR',1101,1), +(1083,'Himachal Pradesh','HP',1101,1), +(1084,'Jammu and Kashmir','JK',1101,1), +(1085,'Jharkhand','JH',1101,1), +(1086,'Kerala','KL',1101,1), +(1087,'Madhya Pradesh','MP',1101,1), +(1088,'Manipur','MN',1101,1), +(1089,'Meghalaya','ML',1101,1), +(1090,'Mizoram','MZ',1101,1), +(1091,'Nagaland','NL',1101,1), +(1092,'Orissa','OR',1101,1), +(1093,'Punjab','PB',1101,1), +(1094,'Rajasthan','RJ',1101,1), +(1095,'Sikkim','SK',1101,1), +(1096,'Tamil Nadu','TN',1101,1), +(1097,'Tripura','TR',1101,1), +(1098,'Uttarakhand','UT',1101,1), +(1099,'Uttar Pradesh','UP',1101,1), +(1100,'West Bengal','WB',1101,1), +(1101,'Andaman and Nicobar Islands','AN',1101,1), +(1102,'Delhi','DL',1101,1), +(1103,'Lakshadweep','LD',1101,1), +(1104,'Pondicherry','PY',1101,1), +(1105,'Telangana','TG',1101,1), +(1106,'Dādra and Nagar Haveli and Damān and Diu','DH',1101,1), +(1107,'Ladākh','LA',1101,1), +(1108,'Chandigarh','CH',1101,1), +(1109,'mazowieckie','MZ',1172,1), +(1110,'pomorskie','PM',1172,1), +(1111,'dolnośląskie','DS',1172,1), +(1112,'kujawsko-pomorskie','KP',1172,1), +(1113,'lubelskie','LU',1172,1), +(1114,'lubuskie','LB',1172,1), +(1115,'łódzkie','LD',1172,1), +(1116,'małopolskie','MA',1172,1), +(1117,'opolskie','OP',1172,1), +(1118,'podkarpackie','PK',1172,1), +(1119,'podlaskie','PD',1172,1), +(1120,'śląskie','SL',1172,1), +(1121,'świętokrzyskie','SK',1172,1), +(1122,'warmińsko-mazurskie','WN',1172,1), +(1123,'wielkopolskie','WP',1172,1), +(1124,'zachodniopomorskie','ZP',1172,1), +(1125,'Abu Zaby','AZ',1225,1), +(1126,'\'Ajman','AJ',1225,1), +(1127,'Al Fujayrah','FU',1225,1), +(1128,'Ash Shariqah','SH',1225,1), +(1129,'Dubayy','DU',1225,1), +(1130,'Ra\'s al Khaymah','RK',1225,1), +(1131,'Dac Lac','33',1233,1), +(1132,'Umm al Qaywayn','UQ',1225,1), +(1133,'Badakhshan','BDS',1001,1), +(1134,'Badghis','BDG',1001,1), +(1135,'Baghlan','BGL',1001,1), +(1136,'Balkh','BAL',1001,1), +(1137,'Bamian','BAM',1001,1), +(1138,'Farah','FRA',1001,1), +(1139,'Faryab','FYB',1001,1), +(1140,'Ghazni','GHA',1001,1), +(1141,'Ghowr','GHO',1001,1), +(1142,'Helmand','HEL',1001,1), +(1143,'Herat','HER',1001,1), +(1144,'Jowzjan','JOW',1001,1), +(1145,'Kabul','KAB',1001,1), +(1146,'Kandahar','KAN',1001,1), +(1147,'Kapisa','KAP',1001,1), +(1148,'Khowst','KHO',1001,1), +(1149,'Konar','KNR',1001,1), +(1150,'Kondoz','KDZ',1001,1), +(1151,'Laghman','LAG',1001,1), +(1152,'Lowgar','LOW',1001,1), +(1153,'Nangrahar','NAN',1001,1), +(1154,'Nimruz','NIM',1001,1), +(1155,'Nurestan','NUR',1001,1), +(1156,'Oruzgan','ORU',1001,1), +(1157,'Paktia','PIA',1001,1), +(1158,'Paktika','PKA',1001,1), +(1159,'Parwan','PAR',1001,1), +(1160,'Samangan','SAM',1001,1), +(1161,'Sar-e Pol','SAR',1001,1), +(1162,'Takhar','TAK',1001,1), +(1163,'Wardak','WAR',1001,1), +(1164,'Zabol','ZAB',1001,1), +(1165,'Berat','BR',1002,1), +(1166,'Bulqizë','BU',1002,1), +(1167,'Delvinë','DL',1002,1), +(1168,'Devoll','DV',1002,1), +(1169,'Dibër','DI',1002,1), +(1170,'Durrës','DR',1002,1), +(1171,'Elbasan','EL',1002,1), +(1172,'Fier','FR',1002,1), +(1173,'Gramsh','GR',1002,1), +(1174,'Gjirokastër','GJ',1002,1), +(1175,'Has','HA',1002,1), +(1176,'Kavajë','KA',1002,1), +(1177,'Kolonjë','ER',1002,1), +(1178,'Korçë','KO',1002,1), +(1179,'Krujë','KR',1002,1), +(1180,'Kuçovë','KC',1002,1), +(1181,'Kukës','KU',1002,1), +(1182,'Kurbin','KB',1002,1), +(1183,'Lezhë','LE',1002,1), +(1184,'Librazhd','LB',1002,1), +(1185,'Lushnjë','LU',1002,1), +(1186,'Malësi e Madhe','MM',1002,1), +(1187,'Mallakastër','MK',1002,1), +(1188,'Mat','MT',1002,1), +(1189,'Mirditë','MR',1002,1), +(1190,'Peqin','PQ',1002,1), +(1191,'Përmet','PR',1002,1), +(1192,'Pogradec','PG',1002,1), +(1193,'Pukë','PU',1002,1), +(1194,'Sarandë','SR',1002,1), +(1195,'Skrapar','SK',1002,1), +(1196,'Shkodër','SH',1002,1), +(1197,'Tepelenë','TE',1002,1), +(1198,'Tiranë','TR',1002,1), +(1199,'Tropojë','TP',1002,1), +(1200,'Vlorë','VL',1002,1), +(1201,'Erevan','ER',1011,1), +(1202,'Aragacotn','AG',1011,1), +(1203,'Ararat','AR',1011,1), +(1204,'Armavir','AV',1011,1), +(1205,'Gegarkunik\'','GR',1011,1), +(1206,'Kotayk\'','KT',1011,1), +(1207,'Lory','LO',1011,1), +(1208,'Sirak','SH',1011,1), +(1209,'Syunik\'','SU',1011,1), +(1210,'Tavus','TV',1011,1), +(1211,'Vayoc Jor','VD',1011,1), +(1212,'Andorra la Vella','07',1005,1), +(1213,'Canillo','02',1005,1), +(1214,'Encamp','03',1005,1), +(1215,'Escaldes-Engordany','08',1005,1), +(1216,'La Massana','04',1005,1), +(1217,'Ordino','05',1005,1), +(1218,'Sant Julia de Loria','06',1005,1), +(1219,'Bengo','BGO',1006,1), +(1220,'Benguela','BGU',1006,1), +(1221,'Bie','BIE',1006,1), +(1222,'Cabinda','CAB',1006,1), +(1223,'Cuando-Cubango','CCU',1006,1), +(1224,'Cuanza Norte','CNO',1006,1), +(1225,'Cuanza Sul','CUS',1006,1), +(1226,'Cunene','CNN',1006,1), +(1227,'Huambo','HUA',1006,1), +(1228,'Huila','HUI',1006,1), +(1229,'Luanda','LUA',1006,1), +(1230,'Lunda Norte','LNO',1006,1), +(1231,'Lunda Sul','LSU',1006,1), +(1232,'Malange','MAL',1006,1), +(1233,'Moxico','MOX',1006,1), +(1234,'Namibe','NAM',1006,1), +(1235,'Uige','UIG',1006,1), +(1236,'Zaire','ZAI',1006,1), +(1237,'Saint George','03',1009,1), +(1238,'Saint John','04',1009,1), +(1239,'Saint Mary','05',1009,1), +(1240,'Saint Paul','06',1009,1), +(1241,'Saint Peter','07',1009,1), +(1242,'Saint Philip','08',1009,1), +(1243,'Barbuda','10',1009,1), +(1244,'Redonda','11',1009,1), +(1245,'Capital federal','C',1010,1), +(1246,'Buenos Aires','B',1010,1), +(1247,'Catamarca','K',1010,1), +(1248,'Cordoba','X',1010,1), +(1249,'Corrientes','W',1010,1), +(1250,'Chaco','H',1010,1), +(1251,'Chubut','U',1010,1), +(1252,'Entre Rios','E',1010,1), +(1253,'Formosa','P',1010,1), +(1254,'Jujuy','Y',1010,1), +(1255,'La Pampa','L',1010,1), +(1256,'Mendoza','M',1010,1), +(1257,'Misiones','N',1010,1), +(1258,'Neuquen','Q',1010,1), +(1259,'Rio Negro','R',1010,1), +(1260,'Salta','A',1010,1), +(1261,'San Juan','J',1010,1), +(1262,'San Luis','D',1010,1), +(1263,'Santa Cruz','Z',1010,1), +(1264,'Santa Fe','S',1010,1), +(1265,'Santiago del Estero','G',1010,1), +(1266,'Tierra del Fuego','V',1010,1), +(1267,'Tucuman','T',1010,1), +(1268,'La Rioja','F',1010,1), +(1269,'Burgenland','1',1014,1), +(1270,'Kärnten','2',1014,1), +(1271,'Niederösterreich','3',1014,1), +(1272,'Oberösterreich','4',1014,1), +(1273,'Salzburg','5',1014,1), +(1274,'Steiermark','6',1014,1), +(1275,'Tirol','7',1014,1), +(1276,'Vorarlberg','8',1014,1), +(1277,'Wien','9',1014,1), +(1278,'Australian Antarctic Territory','AAT',1008,1), +(1279,'Australian Capital Territory','ACT',1013,1), +(1280,'Northern Territory','NT',1013,1), +(1281,'New South Wales','NSW',1013,1), +(1282,'Queensland','QLD',1013,1), +(1283,'South Australia','SA',1013,1), +(1284,'Tasmania','TAS',1013,1), +(1285,'Victoria','VIC',1013,1), +(1286,'Western Australia','WA',1013,1), +(1287,'Naxcivan','NX',1015,1), +(1288,'Ali Bayramli','AB',1015,1), +(1289,'Baki','BA',1015,1), +(1290,'Ganca','GA',1015,1), +(1291,'Lankaran','LA',1015,1), +(1292,'Mingacevir','MI',1015,1), +(1293,'Naftalan','NA',1015,1), +(1294,'Saki','SA',1015,1), +(1295,'Sumqayit','SM',1015,1), +(1296,'Susa','SS',1015,1), +(1297,'Xankandi','XA',1015,1), +(1298,'Yevlax','YE',1015,1), +(1299,'Abseron','ABS',1015,1), +(1300,'Agcabadi','AGC',1015,1), +(1301,'Agdam','AGM',1015,1), +(1302,'Agdas','AGS',1015,1), +(1303,'Agstafa','AGA',1015,1), +(1304,'Agsu','AGU',1015,1), +(1305,'Astara','AST',1015,1), +(1306,'Babak','BAB',1015,1), +(1307,'Balakan','BAL',1015,1), +(1308,'Barda','BAR',1015,1), +(1309,'Beylagan','BEY',1015,1), +(1310,'Bilasuvar','BIL',1015,1), +(1311,'Cabrayll','CAB',1015,1), +(1312,'Calilabad','CAL',1015,1), +(1313,'Culfa','CUL',1015,1), +(1314,'Daskasan','DAS',1015,1), +(1315,'Davaci','DAV',1015,1), +(1316,'Fuzuli','FUZ',1015,1), +(1317,'Gadabay','GAD',1015,1), +(1318,'Goranboy','GOR',1015,1), +(1319,'Goycay','GOY',1015,1), +(1320,'Haciqabul','HAC',1015,1), +(1321,'Imisli','IMI',1015,1), +(1322,'Ismayilli','ISM',1015,1), +(1323,'Kalbacar','KAL',1015,1), +(1324,'Kurdamir','KUR',1015,1), +(1325,'Lacin','LAC',1015,1), +(1326,'Lerik','LER',1015,1), +(1327,'Masalli','MAS',1015,1), +(1328,'Neftcala','NEF',1015,1), +(1329,'Oguz','OGU',1015,1), +(1330,'Ordubad','ORD',1015,1), +(1331,'Qabala','QAB',1015,1), +(1332,'Qax','QAX',1015,1), +(1333,'Qazax','QAZ',1015,1), +(1334,'Qobustan','QOB',1015,1), +(1335,'Quba','QBA',1015,1), +(1336,'Qubadli','QBI',1015,1), +(1337,'Qusar','QUS',1015,1), +(1338,'Saatli','SAT',1015,1), +(1339,'Sabirabad','SAB',1015,1), +(1340,'Sadarak','SAD',1015,1), +(1341,'Sahbuz','SAH',1015,1), +(1342,'Salyan','SAL',1015,1), +(1343,'Samaxi','SMI',1015,1), +(1344,'Samkir','SKR',1015,1), +(1345,'Samux','SMX',1015,1), +(1346,'Sarur','SAR',1015,1), +(1347,'Siyazan','SIY',1015,1), +(1348,'Tartar','TAR',1015,1), +(1349,'Tovuz','TOV',1015,1), +(1350,'Ucar','UCA',1015,1), +(1351,'Xacmaz','XAC',1015,1), +(1352,'Xanlar','XAN',1015,1), +(1353,'Xizi','XIZ',1015,1), +(1354,'Xocali','XCI',1015,1), +(1355,'Xocavand','XVD',1015,1), +(1356,'Yardimli','YAR',1015,1), +(1357,'Zangilan','ZAN',1015,1), +(1358,'Zaqatala','ZAQ',1015,1), +(1359,'Zardab','ZAR',1015,1), +(1360,'Federacija Bosna i Hercegovina','BIH',1026,1), +(1361,'Republika Srpska','SRP',1026,1), +(1362,'Bagerhat zila','05',1017,1), +(1363,'Bandarban zila','01',1017,1), +(1364,'Barguna zila','02',1017,1), +(1365,'Barisal zila','06',1017,1), +(1366,'Bhola zila','07',1017,1), +(1367,'Bogra zila','03',1017,1), +(1368,'Brahmanbaria zila','04',1017,1), +(1369,'Chandpur zila','09',1017,1), +(1370,'Chittagong zila','10',1017,1), +(1371,'Chuadanga zila','12',1017,1), +(1372,'Comilla zila','08',1017,1), +(1373,'Cox\'s Bazar zila','11',1017,1), +(1374,'Dhaka zila','13',1017,1), +(1375,'Dinajpur zila','14',1017,1), +(1376,'Faridpur zila','15',1017,1), +(1377,'Feni zila','16',1017,1), +(1378,'Gaibandha zila','19',1017,1), +(1379,'Gazipur zila','18',1017,1), +(1380,'Gopalganj zila','17',1017,1), +(1381,'Habiganj zila','20',1017,1), +(1382,'Jaipurhat zila','24',1017,1), +(1383,'Jamalpur zila','21',1017,1), +(1384,'Jessore zila','22',1017,1), +(1385,'Jhalakati zila','25',1017,1), +(1386,'Jhenaidah zila','23',1017,1), +(1387,'Khagrachari zila','29',1017,1), +(1388,'Khulna zila','27',1017,1), +(1389,'Kishorganj zila','26',1017,1), +(1390,'Kurigram zila','28',1017,1), +(1391,'Kushtia zila','30',1017,1), +(1392,'Lakshmipur zila','31',1017,1), +(1393,'Lalmonirhat zila','32',1017,1), +(1394,'Madaripur zila','36',1017,1), +(1395,'Magura zila','37',1017,1), +(1396,'Manikganj zila','33',1017,1), +(1397,'Meherpur zila','39',1017,1), +(1398,'Moulvibazar zila','38',1017,1), +(1399,'Munshiganj zila','35',1017,1), +(1400,'Mymensingh zila','34',1017,1), +(1401,'Naogaon zila','48',1017,1), +(1402,'Narail zila','43',1017,1), +(1403,'Narayanganj zila','40',1017,1), +(1404,'Narsingdi zila','42',1017,1), +(1405,'Natore zila','44',1017,1), +(1406,'Nawabganj zila','45',1017,1), +(1407,'Netrakona zila','41',1017,1), +(1408,'Nilphamari zila','46',1017,1), +(1409,'Noakhali zila','47',1017,1), +(1410,'Pabna zila','49',1017,1), +(1411,'Panchagarh zila','52',1017,1), +(1412,'Patuakhali zila','51',1017,1), +(1413,'Pirojpur zila','50',1017,1), +(1414,'Rajbari zila','53',1017,1), +(1415,'Rajshahi zila','54',1017,1), +(1416,'Rangamati zila','56',1017,1), +(1417,'Rangpur zila','55',1017,1), +(1418,'Satkhira zila','58',1017,1), +(1419,'Shariatpur zila','62',1017,1), +(1420,'Sherpur zila','57',1017,1), +(1421,'Sirajganj zila','59',1017,1), +(1422,'Sunamganj zila','61',1017,1), +(1423,'Sylhet zila','60',1017,1), +(1424,'Tangail zila','63',1017,1), +(1425,'Thakurgaon zila','64',1017,1), +(1426,'Christ Church','01',1018,1), +(1427,'Saint Andrew','02',1018,1), +(1428,'Saint George','03',1018,1), +(1429,'Saint James','04',1018,1), +(1430,'Saint John','05',1018,1), +(1431,'Saint Joseph','06',1018,1), +(1432,'Saint Lucy','07',1018,1), +(1433,'Saint Michael','08',1018,1), +(1434,'Saint Peter','09',1018,1), +(1435,'Saint Philip','10',1018,1), +(1436,'Saint Thomas','11',1018,1), +(1437,'Brussels','BRU',1020,1), +(1438,'Antwerpen','VAN',1020,1), +(1439,'Brabant Wallon','WBR',1020,1), +(1440,'Hainaut','WHT',1020,1), +(1441,'Liege','WLG',1020,1), +(1442,'Limburg','VLI',1020,1), +(1443,'Luxembourg','WLX',1020,1), +(1444,'Namur','WNA',1020,1), +(1445,'Oost-Vlaanderen','VOV',1020,1), +(1446,'Vlaams-Brabant','VBR',1020,1), +(1447,'West-Vlaanderen','VWV',1020,1), +(1448,'Devonshire','DEV',1023,1), +(1449,'Hamilton Parish','HAM',1023,1), +(1450,'City of Hamilton','HA',1023,1), +(1451,'Paget','PAG',1023,1), +(1452,'Pembroke','PEM',1023,1), +(1453,'Town of St. George','SG',1023,1), +(1454,'Saint George\'s','SGE',1023,1), +(1455,'Sandys','SAN',1023,1), +(1456,'Smiths','SMI',1023,1), +(1457,'Southampton','SOU',1023,1), +(1458,'Warwick','WAR',1023,1), +(1459,'Bale','BAL',1034,1), +(1460,'Bam','BAM',1034,1), +(1461,'Banwa','BAN',1034,1), +(1462,'Bazega','BAZ',1034,1), +(1463,'Bougouriba','BGR',1034,1), +(1464,'Boulgou','BLG',1034,1), +(1465,'Boulkiemde','BLK',1034,1), +(1466,'Comoe','COM',1034,1), +(1467,'Ganzourgou','GAN',1034,1), +(1468,'Gnagna','GNA',1034,1), +(1469,'Gourma','GOU',1034,1), +(1470,'Houet','HOU',1034,1), +(1471,'Ioba','IOB',1034,1), +(1472,'Kadiogo','KAD',1034,1), +(1473,'Kenedougou','KEN',1034,1), +(1474,'Komondjari','KMD',1034,1), +(1475,'Kompienga','KMP',1034,1), +(1476,'Kossi','KOS',1034,1), +(1477,'Koulpulogo','KOP',1034,1), +(1478,'Kouritenga','KOT',1034,1), +(1479,'Kourweogo','KOW',1034,1), +(1480,'Leraba','LER',1034,1), +(1481,'Loroum','LOR',1034,1), +(1482,'Mouhoun','MOU',1034,1), +(1483,'Nahouri','NAO',1034,1), +(1484,'Namentenga','NAM',1034,1), +(1485,'Nayala','NAY',1034,1), +(1486,'Noumbiel','NOU',1034,1), +(1487,'Oubritenga','OUB',1034,1), +(1488,'Oudalan','OUD',1034,1), +(1489,'Passore','PAS',1034,1), +(1490,'Poni','PON',1034,1), +(1491,'Sanguie','SNG',1034,1), +(1492,'Sanmatenga','SMT',1034,1), +(1493,'Seno','SEN',1034,1), +(1494,'Siasili','SIS',1034,1), +(1495,'Soum','SOM',1034,1), +(1496,'Sourou','SOR',1034,1), +(1497,'Tapoa','TAP',1034,1), +(1498,'Tui','TUI',1034,1), +(1499,'Yagha','YAG',1034,1), +(1500,'Yatenga','YAT',1034,1), +(1501,'Ziro','ZIR',1034,1), +(1502,'Zondoma','ZON',1034,1), +(1503,'Zoundweogo','ZOU',1034,1), +(1504,'Blagoevgrad','01',1033,1), +(1505,'Burgas','02',1033,1), +(1506,'Dobrich','08',1033,1), +(1507,'Gabrovo','07',1033,1), +(1508,'Haskovo','26',1033,1), +(1509,'Yambol','28',1033,1), +(1510,'Kardzhali','09',1033,1), +(1511,'Kyustendil','10',1033,1), +(1512,'Lovech','11',1033,1), +(1513,'Montana','12',1033,1), +(1514,'Pazardzhik','13',1033,1), +(1515,'Pernik','14',1033,1), +(1516,'Pleven','15',1033,1), +(1517,'Plovdiv','16',1033,1), +(1518,'Razgrad','17',1033,1), +(1519,'Ruse','18',1033,1), +(1520,'Silistra','19',1033,1), +(1521,'Sliven','20',1033,1), +(1522,'Smolyan','21',1033,1), +(1523,'Sofia','23',1033,1), +(1524,'Stara Zagora','24',1033,1), +(1525,'Shumen','27',1033,1), +(1526,'Targovishte','25',1033,1), +(1527,'Varna','03',1033,1), +(1528,'Veliko Tarnovo','04',1033,1), +(1529,'Vidin','05',1033,1), +(1530,'Vratsa','06',1033,1), +(1531,'Al Hadd','01',1016,1), +(1532,'Al Manamah','03',1016,1), +(1533,'Al Mintaqah al Gharbiyah','10',1016,1), +(1534,'Al Mintagah al Wusta','07',1016,1), +(1535,'Al Mintaqah ash Shamaliyah','05',1016,1), +(1536,'Al Muharraq','02',1016,1), +(1537,'Ar Rifa','09',1016,1), +(1538,'Jidd Hafs','04',1016,1), +(1539,'Madluat Jamad','12',1016,1), +(1540,'Madluat Isa','08',1016,1), +(1541,'Mintaqat Juzur tawar','11',1016,1), +(1542,'Sitrah','06',1016,1), +(1543,'Bubanza','BB',1036,1), +(1544,'Bujumbura','BJ',1036,1), +(1545,'Bururi','BR',1036,1), +(1546,'Cankuzo','CA',1036,1), +(1547,'Cibitoke','CI',1036,1), +(1548,'Gitega','GI',1036,1), +(1549,'Karuzi','KR',1036,1), +(1550,'Kayanza','KY',1036,1), +(1551,'Makamba','MA',1036,1), +(1552,'Muramvya','MU',1036,1), +(1553,'Mwaro','MW',1036,1), +(1554,'Ngozi','NG',1036,1), +(1555,'Rutana','RT',1036,1), +(1556,'Ruyigi','RY',1036,1), +(1557,'Alibori','AL',1022,1), +(1558,'Atakora','AK',1022,1), +(1559,'Atlantique','AQ',1022,1), +(1560,'Borgou','BO',1022,1), +(1561,'Collines','CO',1022,1), +(1562,'Donga','DO',1022,1), +(1563,'Kouffo','KO',1022,1), +(1564,'Littoral','LI',1022,1), +(1565,'Mono','MO',1022,1), +(1566,'Oueme','OU',1022,1), +(1567,'Plateau','PL',1022,1), +(1568,'Zou','ZO',1022,1), +(1569,'Belait','BE',1032,1), +(1570,'Brunei-Muara','BM',1032,1), +(1571,'Temburong','TE',1032,1), +(1572,'Tutong','TU',1032,1), +(1573,'Cochabamba','C',1025,1), +(1574,'Chuquisaca','H',1025,1), +(1575,'El Beni','B',1025,1), +(1576,'La Paz','L',1025,1), +(1577,'Oruro','O',1025,1), +(1578,'Pando','N',1025,1), +(1579,'Potosi','P',1025,1), +(1580,'Tarija','T',1025,1), +(1581,'Acre','AC',1029,1), +(1582,'Alagoas','AL',1029,1), +(1583,'Amazonas','AM',1029,1), +(1584,'Amapa','AP',1029,1), +(1585,'Bahia','BA',1029,1), +(1586,'Ceara','CE',1029,1), +(1587,'Distrito Federal','DF',1029,1), +(1588,'Espirito Santo','ES',1029,1), +(1589,'Goias','GO',1029,1), +(1590,'Maranhao','MA',1029,1), +(1591,'Minas Gerais','MG',1029,1), +(1592,'Mato Grosso do Sul','MS',1029,1), +(1593,'Mato Grosso','MT',1029,1), +(1594,'Para','PA',1029,1), +(1595,'Paraiba','PB',1029,1), +(1596,'Pernambuco','PE',1029,1), +(1597,'Piaui','PI',1029,1), +(1598,'Parana','PR',1029,1), +(1599,'Rio de Janeiro','RJ',1029,1), +(1600,'Rio Grande do Norte','RN',1029,1), +(1601,'Rondonia','RO',1029,1), +(1602,'Roraima','RR',1029,1), +(1603,'Rio Grande do Sul','RS',1029,1), +(1604,'Santa Catarina','SC',1029,1), +(1605,'Sergipe','SE',1029,1), +(1606,'Sao Paulo','SP',1029,1), +(1607,'Tocantins','TO',1029,1), +(1608,'Acklins and Crooked Islands','AC',1212,1), +(1609,'Bimini','BI',1212,1), +(1610,'Cat Island','CI',1212,1), +(1611,'Exuma','EX',1212,1), +(1612,'Inagua','IN',1212,1), +(1613,'Long Island','LI',1212,1), +(1614,'Mayaguana','MG',1212,1), +(1615,'New Providence','NP',1212,1), +(1616,'Ragged Island','RI',1212,1), +(1617,'Abaco Islands','AB',1212,1), +(1618,'Andros Island','AN',1212,1), +(1619,'Berry Islands','BR',1212,1), +(1620,'Eleuthera','EL',1212,1), +(1621,'Grand Bahama','GB',1212,1), +(1622,'Rum Cay','RC',1212,1), +(1623,'San Salvador Island','SS',1212,1), +(1624,'Bumthang','33',1024,1), +(1625,'Chhukha','12',1024,1), +(1626,'Dagana','22',1024,1), +(1627,'Gasa','GA',1024,1), +(1628,'Ha','13',1024,1), +(1629,'Lhuentse','44',1024,1), +(1630,'Monggar','42',1024,1), +(1631,'Paro','11',1024,1), +(1632,'Pemagatshel','43',1024,1), +(1633,'Punakha','23',1024,1), +(1634,'Samdrup Jongkha','45',1024,1), +(1635,'Samtee','14',1024,1), +(1636,'Sarpang','31',1024,1), +(1637,'Thimphu','15',1024,1), +(1638,'Trashigang','41',1024,1), +(1639,'Trashi Yangtse','TY',1024,1), +(1640,'Trongsa','32',1024,1), +(1641,'Tsirang','21',1024,1), +(1642,'Wangdue Phodrang','24',1024,1), +(1643,'Zhemgang','34',1024,1), +(1644,'Central','CE',1027,1), +(1645,'Ghanzi','GH',1027,1), +(1646,'Kgalagadi','KG',1027,1), +(1647,'Kgatleng','KL',1027,1), +(1648,'Kweneng','KW',1027,1), +(1649,'Ngamiland','NG',1027,1), +(1650,'North-East','NE',1027,1), +(1651,'North-West','NW',1027,1), +(1652,'South-East','SE',1027,1), +(1653,'Southern','SO',1027,1), +(1654,'Brèsckaja voblasc\'','BR',1019,1), +(1655,'Homel\'skaja voblasc\'','HO',1019,1), +(1656,'Hrodzenskaja voblasc\'','HR',1019,1), +(1657,'Mahilëuskaja voblasc\'','MA',1019,1), +(1658,'Minskaja voblasc\'','MI',1019,1), +(1659,'Vicebskaja voblasc\'','VI',1019,1), +(1660,'Belize','BZ',1021,1), +(1661,'Cayo','CY',1021,1), +(1662,'Corozal','CZL',1021,1), +(1663,'Orange Walk','OW',1021,1), +(1664,'Stann Creek','SC',1021,1), +(1665,'Toledo','TOL',1021,1), +(1666,'Kinshasa','KN',1050,1), +(1667,'Equateur','EQ',1050,1), +(1668,'Kasai-Oriental','KE',1050,1), +(1669,'Maniema','MA',1050,1), +(1670,'Nord-Kivu','NK',1050,1), +(1671,'Sud-Kivu','SK',1050,1), +(1672,'Bangui','BGF',1042,1), +(1673,'Bamingui-Bangoran','BB',1042,1), +(1674,'Basse-Kotto','BK',1042,1), +(1675,'Haute-Kotto','HK',1042,1), +(1676,'Haut-Mbomou','HM',1042,1), +(1677,'Kemo','KG',1042,1), +(1678,'Lobaye','LB',1042,1), +(1679,'Mambere-Kadei','HS',1042,1), +(1680,'Mbomou','MB',1042,1), +(1681,'Nana-Grebizi','KB',1042,1), +(1682,'Nana-Mambere','NM',1042,1), +(1683,'Ombella-Mpoko','MP',1042,1), +(1684,'Ouaka','UK',1042,1), +(1685,'Ouham','AC',1042,1), +(1686,'Ouham-Pende','OP',1042,1), +(1687,'Sangha-Mbaere','SE',1042,1), +(1688,'Vakaga','VR',1042,1), +(1689,'Kongo central','01',1050,1), +(1690,'Kwango','02',1050,1), +(1691,'Kwilu','03',1050,1), +(1692,'Mai-Ndombe','04',1050,1), +(1693,'Kasai','05',1050,1), +(1694,'Lulua','06',1050,1), +(1695,'Lomami','07',1050,1), +(1696,'Sankuru','08',1050,1), +(1697,'Ituri','09',1050,1), +(1698,'Haut-Uele','10',1050,1), +(1699,'Tshopo','11',1050,1), +(1700,'Bas-Uele','12',1050,1), +(1701,'Nord-Ubangi','13',1050,1), +(1702,'Mongala','14',1050,1), +(1703,'Sud-Ubangi','15',1050,1), +(1704,'Tshuapa','16',1050,1), +(1705,'Haut-Lomami','17',1050,1), +(1706,'Lualaba','18',1050,1), +(1707,'Haut-Katanga','19',1050,1), +(1708,'Tanganyika','20',1050,1), +(1709,'Brazzaville','BZV',1051,1), +(1710,'Bouenza','11',1051,1), +(1711,'Cuvette','8',1051,1), +(1712,'Cuvette-Ouest','15',1051,1), +(1713,'Kouilou','5',1051,1), +(1714,'Lekoumou','2',1051,1), +(1715,'Likouala','7',1051,1), +(1716,'Niari','9',1051,1), +(1717,'Plateaux','14',1051,1), +(1718,'Pool','12',1051,1), +(1719,'Sangha','13',1051,1), +(1720,'Estuaire','01',1080,1), +(1721,'Haut-Ogooué','02',1080,1), +(1722,'Moyen-Ogooué','03',1080,1), +(1723,'Ngounié','04',1080,1), +(1724,'Nyanga','05',1080,1), +(1725,'Ogooué-Ivindo','06',1080,1), +(1726,'Ogooué-Lolo','07',1080,1), +(1727,'Ogooué-Maritime','08',1080,1), +(1728,'Woleu-Ntem','09',1080,1), +(1729,'Aargau','AG',1205,1), +(1730,'Appenzell Innerrhoden','AI',1205,1), +(1731,'Appenzell Ausserrhoden','AR',1205,1), +(1732,'Bern','BE',1205,1), +(1733,'Basel-Landschaft','BL',1205,1), +(1734,'Basel-Stadt','BS',1205,1), +(1735,'Fribourg','FR',1205,1), +(1736,'Geneva','GE',1205,1), +(1737,'Glarus','GL',1205,1), +(1738,'Graubunden','GR',1205,1), +(1739,'Jura','JU',1205,1), +(1740,'Luzern','LU',1205,1), +(1741,'Neuchatel','NE',1205,1), +(1742,'Nidwalden','NW',1205,1), +(1743,'Obwalden','OW',1205,1), +(1744,'Sankt Gallen','SG',1205,1), +(1745,'Schaffhausen','SH',1205,1), +(1746,'Solothurn','SO',1205,1), +(1747,'Schwyz','SZ',1205,1), +(1748,'Thurgau','TG',1205,1), +(1749,'Ticino','TI',1205,1), +(1750,'Uri','UR',1205,1), +(1751,'Vaud','VD',1205,1), +(1752,'Valais','VS',1205,1), +(1753,'Zug','ZG',1205,1), +(1754,'Zurich','ZH',1205,1), +(1755,'18 Montagnes','06',1054,1), +(1756,'Agnebi','16',1054,1), +(1757,'Bas-Sassandra','09',1054,1), +(1758,'Denguele','10',1054,1), +(1759,'Haut-Sassandra','02',1054,1), +(1760,'Lacs','07',1054,1), +(1761,'Lagunes','01',1054,1), +(1762,'Marahoue','12',1054,1), +(1763,'Moyen-Comoe','05',1054,1), +(1764,'Nzi-Comoe','11',1054,1), +(1765,'Savanes','03',1054,1), +(1766,'Sud-Bandama','15',1054,1), +(1767,'Sud-Comoe','13',1054,1), +(1768,'Vallee du Bandama','04',1054,1), +(1769,'Worodouqou','14',1054,1), +(1770,'Zanzan','08',1054,1), +(1771,'Aisen del General Carlos Ibanez del Campo','AI',1044,1), +(1772,'Antofagasta','AN',1044,1), +(1773,'Araucania','AR',1044,1), +(1774,'Atacama','AT',1044,1), +(1775,'Bio-Bio','BI',1044,1), +(1776,'Coquimbo','CO',1044,1), +(1777,'Libertador General Bernardo O\'Higgins','LI',1044,1), +(1778,'Los Lagos','LL',1044,1), +(1779,'Magallanes','MA',1044,1), +(1780,'Maule','ML',1044,1), +(1781,'Santiago Metropolitan','SM',1044,1), +(1782,'Tarapaca','TA',1044,1), +(1783,'Valparaiso','VS',1044,1), +(1784,'Los Rios','LR',1044,1), +(1785,'Arica y Parinacota','AP',1044,1), +(1786,'Adamaoua','AD',1038,1), +(1787,'Centre','CE',1038,1), +(1788,'East','ES',1038,1), +(1789,'Far North','EN',1038,1), +(1790,'North','NO',1038,1), +(1791,'South','SW',1038,1), +(1792,'South-West','SW',1038,1), +(1793,'West','OU',1038,1), +(1794,'Littoral','LT',1038,1), +(1795,'Nord-Ouest','NW',1038,1), +(1796,'Beijing','11',1045,1), +(1797,'Chongqing','50',1045,1), +(1798,'Shanghai','31',1045,1), +(1799,'Tianjin','12',1045,1), +(1800,'Anhui','34',1045,1), +(1801,'Fujian','35',1045,1), +(1802,'Gansu','62',1045,1), +(1803,'Guangdong','44',1045,1), +(1804,'Guizhou','52',1045,1), +(1805,'Hainan','46',1045,1), +(1806,'Hebei','13',1045,1), +(1807,'Heilongjiang','23',1045,1), +(1808,'Henan','41',1045,1), +(1809,'Hubei','42',1045,1), +(1810,'Hunan','43',1045,1), +(1811,'Jiangsu','32',1045,1), +(1812,'Jiangxi','36',1045,1), +(1813,'Jilin','22',1045,1), +(1814,'Liaoning','21',1045,1), +(1815,'Qinghai','63',1045,1), +(1816,'Shaanxi','61',1045,1), +(1817,'Shandong','37',1045,1), +(1818,'Shanxi','14',1045,1), +(1819,'Sichuan','51',1045,1), +(1820,'Taiwan','71',1045,1), +(1821,'Yunnan','53',1045,1), +(1822,'Zhejiang','33',1045,1), +(1823,'Guangxi','45',1045,1), +(1824,'Neia Mongol (mn)','15',1045,1), +(1825,'Xinjiang','65',1045,1), +(1826,'Xizang','54',1045,1), +(1827,'Hong Kong','91',1045,1), +(1828,'Macau','92',1045,1), +(1829,'Yinchuan','YN',1045,1), +(1830,'Shizuishan','SZ',1045,1), +(1831,'Wuzhong','WZ',1045,1), +(1832,'Guyuan','GY',1045,1), +(1833,'Zhongwei','ZW',1045,1), +(1834,'Distrito Capital de Bogotá','DC',1048,1), +(1835,'Amazonea','AMA',1048,1), +(1836,'Antioquia','ANT',1048,1), +(1837,'Arauca','ARA',1048,1), +(1838,'Atlántico','ATL',1048,1), +(1839,'Bolívar','BOL',1048,1), +(1840,'Boyacá','BOY',1048,1), +(1841,'Caldea','CAL',1048,1), +(1842,'Caquetá','CAQ',1048,1), +(1843,'Casanare','CAS',1048,1), +(1844,'Cauca','CAU',1048,1), +(1845,'Cesar','CES',1048,1), +(1846,'Córdoba','COR',1048,1), +(1847,'Cundinamarca','CUN',1048,1), +(1848,'Chocó','CHO',1048,1), +(1849,'Guainía','GUA',1048,1), +(1850,'Guaviare','GUV',1048,1), +(1851,'La Guajira','LAG',1048,1), +(1852,'Magdalena','MAG',1048,1), +(1853,'Meta','MET',1048,1), +(1854,'Nariño','NAR',1048,1), +(1855,'Norte de Santander','NSA',1048,1), +(1856,'Putumayo','PUT',1048,1), +(1857,'Quindio','QUI',1048,1), +(1858,'Risaralda','RIS',1048,1), +(1859,'San Andrés, Providencia y Santa Catalina','SAP',1048,1), +(1860,'Santander','SAN',1048,1), +(1861,'Sucre','SUC',1048,1), +(1862,'Tolima','TOL',1048,1), +(1863,'Valle del Cauca','VAC',1048,1), +(1864,'Vaupés','VAU',1048,1), +(1865,'Vichada','VID',1048,1), +(1866,'Huila','HUI',1048,1), +(1867,'Alajuela','A',1053,1), +(1868,'Cartago','C',1053,1), +(1869,'Guanacaste','G',1053,1), +(1870,'Heredia','H',1053,1), +(1871,'Limon','L',1053,1), +(1872,'Puntarenas','P',1053,1), +(1873,'San Jose','SJ',1053,1), +(1874,'Camagey','09',1056,1), +(1875,'Ciego de `vila','08',1056,1), +(1876,'Cienfuegos','06',1056,1), +(1877,'Ciudad de La Habana','03',1056,1), +(1878,'Granma','12',1056,1), +(1879,'Guantanamo','14',1056,1), +(1880,'Holquin','11',1056,1), +(1881,'La Habana','02',1056,1), +(1882,'Las Tunas','10',1056,1), +(1883,'Matanzas','04',1056,1), +(1884,'Pinar del Rio','01',1056,1), +(1885,'Sancti Spiritus','07',1056,1), +(1886,'Santiago de Cuba','13',1056,1), +(1887,'Villa Clara','05',1056,1), +(1888,'Isla de la Juventud','99',1056,1), +(1889,'Pinar del Roo','PR',1056,1), +(1890,'Ciego de Avila','CA',1056,1), +(1891,'Camagoey','CG',1056,1), +(1892,'Holgun','HO',1056,1), +(1893,'Sancti Spritus','SS',1056,1), +(1894,'Municipio Especial Isla de la Juventud','IJ',1056,1), +(1895,'Boa Vista','BV',1040,1), +(1896,'Brava','BR',1040,1), +(1897,'Calheta de Sao Miguel','CS',1040,1), +(1898,'Fogo','FO',1040,1), +(1899,'Maio','MA',1040,1), +(1900,'Mosteiros','MO',1040,1), +(1901,'Paul','PA',1040,1), +(1902,'Porto Novo','PN',1040,1), +(1903,'Praia','PR',1040,1), +(1904,'Ribeira Grande','RG',1040,1), +(1905,'Sal','SL',1040,1), +(1906,'Sao Domingos','SD',1040,1), +(1907,'Sao Filipe','SF',1040,1), +(1908,'Sao Nicolau','SN',1040,1), +(1909,'Sao Vicente','SV',1040,1), +(1910,'Tarrafal','TA',1040,1), +(1911,'Ammochostos Magusa','04',1057,1), +(1912,'Keryneia','06',1057,1), +(1913,'Larnaka','03',1057,1), +(1914,'Lefkosia','01',1057,1), +(1915,'Lemesos','02',1057,1), +(1916,'Pafos','05',1057,1), +(1917,'Jihočeský kraj','JC',1058,1), +(1918,'Jihomoravský kraj','JM',1058,1), +(1919,'Karlovarský kraj','KA',1058,1), +(1920,'Královéhradecký kraj','KR',1058,1), +(1921,'Liberecký kraj','LI',1058,1), +(1922,'Moravskoslezský kraj','MO',1058,1), +(1923,'Olomoucký kraj','OL',1058,1), +(1924,'Pardubický kraj','PA',1058,1), +(1925,'Plzeňský kraj','PL',1058,1), +(1926,'Praha, hlavní město','PR',1058,1), +(1927,'Středočeský kraj','ST',1058,1), +(1928,'Ústecký kraj','US',1058,1), +(1929,'Vysočina','VY',1058,1), +(1930,'Zlínský kraj','ZL',1058,1), +(1931,'Abkhazia','AB',1081,1), +(1932,'Adjara','AJ',1081,1), +(1933,'Tbilisi','TB',1081,1), +(1934,'Guria','GU',1081,1), +(1935,'Imereti','IM',1081,1), +(1936,'Kakheti','KA',1081,1), +(1937,'Kvemo Kartli','KK',1081,1), +(1938,'Mtskheta-Mtianeti','MM',1081,1), +(1939,'Racha-Lechkhumi and Kvemo Svaneti','RL',1081,1), +(1940,'Samegrelo-Zemo Svaneti','SZ',1081,1), +(1941,'Samtskhe-Javakheti','SJ',1081,1), +(1942,'Shida Kartli','SK',1081,1), +(1943,'Baden-Württemberg','BW',1082,1), +(1944,'Bayern','BY',1082,1), +(1945,'Bremen','HB',1082,1), +(1946,'Hamburg','HH',1082,1), +(1947,'Hessen','HE',1082,1), +(1948,'Niedersachsen','NI',1082,1), +(1949,'Nordrhein-Westfalen','NW',1082,1), +(1950,'Rheinland-Pfalz','RP',1082,1), +(1951,'Saarland','SL',1082,1), +(1952,'Schleswig-Holstein','SH',1082,1), +(1953,'Berlin','BE',1082,1), +(1954,'Brandenburg','BB',1082,1), +(1955,'Mecklenburg-Vorpommern','MV',1082,1), +(1956,'Sachsen','SN',1082,1), +(1957,'Sachsen-Anhalt','ST',1082,1), +(1958,'Thüringen','TH',1082,1), +(1959,'Ali Sabiah','AS',1060,1), +(1960,'Dikhil','DI',1060,1), +(1961,'Djibouti','DJ',1060,1), +(1962,'Obock','OB',1060,1), +(1963,'Tadjoura','TA',1060,1), +(1964,'Frederiksberg','147',1059,1), +(1965,'Copenhagen City','101',1059,1), +(1966,'Copenhagen','015',1059,1), +(1967,'Frederiksborg','020',1059,1), +(1968,'Roskilde','025',1059,1), +(1969,'Vestsjælland','030',1059,1), +(1970,'Storstrøm','035',1059,1), +(1971,'Bornholm','040',1059,1), +(1972,'Fyn','042',1059,1), +(1973,'South Jutland','050',1059,1), +(1974,'Ribe','055',1059,1), +(1975,'Vejle','060',1059,1), +(1976,'Ringkjøbing','065',1059,1), +(1977,'Århus','070',1059,1), +(1978,'Viborg','076',1059,1), +(1979,'North Jutland','080',1059,1), +(1980,'Distrito Nacional (Santo Domingo)','01',1062,1), +(1981,'Azua','02',1062,1), +(1982,'Bahoruco','03',1062,1), +(1983,'Barahona','04',1062,1), +(1984,'Dajabón','05',1062,1), +(1985,'Duarte','06',1062,1), +(1986,'El Seybo [El Seibo]','08',1062,1), +(1987,'Espaillat','09',1062,1), +(1988,'Hato Mayor','30',1062,1), +(1989,'Independencia','10',1062,1), +(1990,'La Altagracia','11',1062,1), +(1991,'La Estrelleta [Elias Pina]','07',1062,1), +(1992,'La Romana','12',1062,1), +(1993,'La Vega','13',1062,1), +(1994,'Maroia Trinidad Sánchez','14',1062,1), +(1995,'Monseñor Nouel','28',1062,1), +(1996,'Monte Cristi','15',1062,1), +(1997,'Monte Plata','29',1062,1), +(1998,'Pedernales','16',1062,1), +(1999,'Peravia','17',1062,1), +(2000,'Puerto Plata','18',1062,1), +(2001,'Salcedo','19',1062,1), +(2002,'Samaná','20',1062,1), +(2003,'San Cristóbal','21',1062,1), +(2004,'San Pedro de Macorís','23',1062,1), +(2005,'Sánchez Ramírez','24',1062,1), +(2006,'Santiago','25',1062,1), +(2007,'Santiago Rodríguez','26',1062,1), +(2008,'Valverde','27',1062,1), +(2009,'Adrar','01',1003,1), +(2010,'Ain Defla','44',1003,1), +(2011,'Ain Tmouchent','46',1003,1), +(2012,'Alger','16',1003,1), +(2013,'Annaba','23',1003,1), +(2014,'Batna','05',1003,1), +(2015,'Bechar','08',1003,1), +(2016,'Bejaia','06',1003,1), +(2017,'Biskra','07',1003,1), +(2018,'Blida','09',1003,1), +(2019,'Bordj Bou Arreridj','34',1003,1), +(2020,'Bouira','10',1003,1), +(2021,'Boumerdes','35',1003,1), +(2022,'Chlef','02',1003,1), +(2023,'Constantine','25',1003,1), +(2024,'Djelfa','17',1003,1), +(2025,'El Bayadh','32',1003,1), +(2026,'El Oued','39',1003,1), +(2027,'El Tarf','36',1003,1), +(2028,'Ghardaia','47',1003,1), +(2029,'Guelma','24',1003,1), +(2030,'Illizi','33',1003,1), +(2031,'Jijel','18',1003,1), +(2032,'Khenchela','40',1003,1), +(2033,'Laghouat','03',1003,1), +(2034,'Mascara','29',1003,1), +(2035,'Medea','26',1003,1), +(2036,'Mila','43',1003,1), +(2037,'Mostaganem','27',1003,1), +(2038,'Msila','28',1003,1), +(2039,'Naama','45',1003,1), +(2040,'Oran','31',1003,1), +(2041,'Ouargla','30',1003,1), +(2042,'Oum el Bouaghi','04',1003,1), +(2043,'Relizane','48',1003,1), +(2044,'Saida','20',1003,1), +(2045,'Setif','19',1003,1), +(2046,'Sidi Bel Abbes','22',1003,1), +(2047,'Skikda','21',1003,1), +(2048,'Souk Ahras','41',1003,1), +(2049,'Tamanghasset','11',1003,1), +(2050,'Tebessa','12',1003,1), +(2051,'Tiaret','14',1003,1), +(2052,'Tindouf','37',1003,1), +(2053,'Tipaza','42',1003,1), +(2054,'Tissemsilt','38',1003,1), +(2055,'Tizi Ouzou','15',1003,1), +(2056,'Tlemcen','13',1003,1), +(2057,'Azuay','A',1064,1), +(2058,'Bolivar','B',1064,1), +(2059,'Canar','F',1064,1), +(2060,'Carchi','C',1064,1), +(2061,'Cotopaxi','X',1064,1), +(2062,'Chimborazo','H',1064,1), +(2063,'El Oro','O',1064,1), +(2064,'Esmeraldas','E',1064,1), +(2065,'Galapagos','W',1064,1), +(2066,'Guayas','G',1064,1), +(2067,'Imbabura','I',1064,1), +(2068,'Loja','L',1064,1), +(2069,'Los Rios','R',1064,1), +(2070,'Manabi','M',1064,1), +(2071,'Morona-Santiago','S',1064,1), +(2072,'Napo','N',1064,1), +(2073,'Orellana','D',1064,1), +(2074,'Pastaza','Y',1064,1), +(2075,'Pichincha','P',1064,1), +(2076,'Sucumbios','U',1064,1), +(2077,'Tungurahua','T',1064,1), +(2078,'Zamora-Chinchipe','Z',1064,1), +(2079,'Harjumaa','37',1069,1), +(2080,'Hiiumaa','39',1069,1), +(2081,'Ida-Virumaa','44',1069,1), +(2082,'Jõgevamaa','49',1069,1), +(2083,'Järvamaa','51',1069,1), +(2084,'Läänemaa','57',1069,1), +(2085,'Lääne-Virumaa','59',1069,1), +(2086,'Põlvamaa','65',1069,1), +(2087,'Pärnumaa','67',1069,1), +(2088,'Raplamaa','70',1069,1), +(2089,'Saaremaa','74',1069,1), +(2090,'Tartumaa','7B',1069,1), +(2091,'Valgamaa','82',1069,1), +(2092,'Viljandimaa','84',1069,1), +(2093,'Võrumaa','86',1069,1), +(2094,'Ad Daqahllyah','DK',1065,1), +(2095,'Al Bahr al Ahmar','BA',1065,1), +(2096,'Al Buhayrah','BH',1065,1), +(2097,'Al Fayym','FYM',1065,1), +(2098,'Al Gharbiyah','GH',1065,1), +(2099,'Al Iskandarlyah','ALX',1065,1), +(2100,'Al Isma illyah','IS',1065,1), +(2101,'Al Jizah','GZ',1065,1), +(2102,'Al Minuflyah','MNF',1065,1), +(2103,'Al Minya','MN',1065,1), +(2104,'Al Qahirah','C',1065,1), +(2105,'Al Qalyublyah','KB',1065,1), +(2106,'Al Wadi al Jadid','WAD',1065,1), +(2107,'Ash Sharqiyah','SHR',1065,1), +(2108,'As Suways','SUZ',1065,1), +(2109,'Aswan','ASN',1065,1), +(2110,'Asyut','AST',1065,1), +(2111,'Bani Suwayf','BNS',1065,1), +(2112,'Bur Sa\'id','PTS',1065,1), +(2113,'Dumyat','DT',1065,1), +(2114,'Janub Sina\'','JS',1065,1), +(2115,'Kafr ash Shaykh','KFS',1065,1), +(2116,'Matruh','MT',1065,1), +(2117,'Qina','KN',1065,1), +(2118,'Shamal Sina\'','SIN',1065,1), +(2119,'Suhaj','SHG',1065,1), +(2120,'Anseba','AN',1068,1), +(2121,'Debub','DU',1068,1), +(2122,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068,1), +(2123,'Gash-Barka','GB',1068,1), +(2124,'Maakel [Maekel]','MA',1068,1), +(2125,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068,1), +(2126,'Álava','VI',1198,1), +(2127,'Albacete','AB',1198,1), +(2128,'Alicante','A',1198,1), +(2129,'Almería','AL',1198,1), +(2130,'Asturias','O',1198,1), +(2131,'Ávila','AV',1198,1), +(2132,'Badajoz','BA',1198,1), +(2133,'Baleares','PM',1198,1), +(2134,'Barcelona','B',1198,1), +(2135,'Burgos','BU',1198,1), +(2136,'Cáceres','CC',1198,1), +(2137,'Cádiz','CA',1198,1), +(2138,'Cantabria','S',1198,1), +(2139,'Castellón','CS',1198,1), +(2140,'Ciudad Real','CR',1198,1), +(2141,'Cuenca','CU',1198,1), +(2142,'Girona [Gerona]','GE',1198,1), +(2143,'Granada','GR',1198,1), +(2144,'Guadalajara','GU',1198,1), +(2145,'Guipúzcoa','SS',1198,1), +(2146,'Huelva','H',1198,1), +(2147,'Huesca','HU',1198,1), +(2148,'Jaén','J',1198,1), +(2149,'La Coruña','C',1198,1), +(2150,'La Rioja','LO',1198,1), +(2151,'Las Palmas','GC',1198,1), +(2152,'León','LE',1198,1), +(2153,'Lleida [Lérida]','L',1198,1), +(2154,'Lugo','LU',1198,1), +(2155,'Madrid','M',1198,1), +(2156,'Málaga','MA',1198,1), +(2157,'Murcia','MU',1198,1), +(2158,'Navarra','NA',1198,1), +(2159,'Ourense','OR',1198,1), +(2160,'Palencia','P',1198,1), +(2161,'Pontevedra','PO',1198,1), +(2162,'Salamanca','SA',1198,1), +(2163,'Santa Cruz de Tenerife','TF',1198,1), +(2164,'Segovia','SG',1198,1), +(2165,'Sevilla','SE',1198,1), +(2166,'Soria','SO',1198,1), +(2167,'Tarragona','T',1198,1), +(2168,'Teruel','TE',1198,1), +(2169,'Valencia','V',1198,1), +(2170,'Valladolid','VA',1198,1), +(2171,'Vizcaya','BI',1198,1), +(2172,'Zamora','ZA',1198,1), +(2173,'Zaragoza','Z',1198,1), +(2174,'Ceuta','CE',1198,1), +(2175,'Melilla','ML',1198,1), +(2176,'Toledo','TO',1198,1), +(2177,'Córdoba','CO',1198,1), +(2178,'Addis Ababa','AA',1070,1), +(2179,'Dire Dawa','DD',1070,1), +(2180,'Afar','AF',1070,1), +(2181,'Amara','AM',1070,1), +(2182,'Benshangul-Gumaz','BE',1070,1), +(2183,'Gambela Peoples','GA',1070,1), +(2184,'Harari People','HA',1070,1), +(2185,'Oromia','OR',1070,1), +(2186,'Somali','SO',1070,1), +(2187,'Southern Nations, Nationalities and Peoples','SN',1070,1), +(2188,'Tigrai','TI',1070,1), +(2189,'Eastern','E',1074,1), +(2190,'Northern','N',1074,1), +(2191,'Western','W',1074,1), +(2192,'Rotuma','R',1074,1), +(2193,'Central','C',1074,1), +(2194,'Chuuk','TRK',1141,1), +(2195,'Kosrae','KSA',1141,1), +(2196,'Pohnpei','PNI',1141,1), +(2197,'Yap','YAP',1141,1), +(2198,'Ain','01',1076,1), +(2199,'Aisne','02',1076,1), +(2200,'Allier','03',1076,1), +(2201,'Alpes-de-Haute-Provence','04',1076,1), +(2202,'Alpes-Maritimes','06',1076,1), +(2203,'Ardèche','07',1076,1), +(2204,'Ardennes','08',1076,1), +(2205,'Ariège','09',1076,1), +(2206,'Aube','10',1076,1), +(2207,'Aude','11',1076,1), +(2208,'Aveyron','12',1076,1), +(2209,'Bas-Rhin','67',1076,1), +(2210,'Bouches-du-Rhône','13',1076,1), +(2211,'Calvados','14',1076,1), +(2212,'Cantal','15',1076,1), +(2213,'Charente','16',1076,1), +(2214,'Charente-Maritime','17',1076,1), +(2215,'Cher','18',1076,1), +(2216,'Corrèze','19',1076,1), +(2217,'Corse-du-Sud','20A',1076,1), +(2218,'Côte-d\'Or','21',1076,1), +(2219,'Côtes-d\'Armor','22',1076,1), +(2220,'Creuse','23',1076,1), +(2221,'Deux-Sèvres','79',1076,1), +(2222,'Dordogne','24',1076,1), +(2223,'Doubs','25',1076,1), +(2224,'Drôme','26',1076,1), +(2225,'Essonne','91',1076,1), +(2226,'Eure','27',1076,1), +(2227,'Eure-et-Loir','28',1076,1), +(2228,'Finistère','29',1076,1), +(2229,'Gard','30',1076,1), +(2230,'Gers','32',1076,1), +(2231,'Gironde','33',1076,1), +(2232,'Haut-Rhin','68',1076,1), +(2233,'Haute-Corse','20B',1076,1), +(2234,'Haute-Garonne','31',1076,1), +(2235,'Haute-Loire','43',1076,1), +(2236,'Haute-Saône','70',1076,1), +(2237,'Haute-Savoie','74',1076,1), +(2238,'Haute-Vienne','87',1076,1), +(2239,'Hautes-Alpes','05',1076,1), +(2240,'Hautes-Pyrénées','65',1076,1), +(2241,'Hauts-de-Seine','92',1076,1), +(2242,'Hérault','34',1076,1), +(2243,'Indre','36',1076,1), +(2244,'Ille-et-Vilaine','35',1076,1), +(2245,'Indre-et-Loire','37',1076,1), +(2246,'Isère','38',1076,1), +(2247,'Landes','40',1076,1), +(2248,'Loir-et-Cher','41',1076,1), +(2249,'Loire','42',1076,1), +(2250,'Loire-Atlantique','44',1076,1), +(2251,'Loiret','45',1076,1), +(2252,'Lot','46',1076,1), +(2253,'Lot-et-Garonne','47',1076,1), +(2254,'Lozère','48',1076,1), +(2255,'Maine-et-Loire','49',1076,1), +(2256,'Manche','50',1076,1), +(2257,'Marne','51',1076,1), +(2258,'Mayenne','53',1076,1), +(2259,'Meurthe-et-Moselle','54',1076,1), +(2260,'Meuse','55',1076,1), +(2261,'Morbihan','56',1076,1), +(2262,'Moselle','57',1076,1), +(2263,'Nièvre','58',1076,1), +(2264,'Nord','59',1076,1), +(2265,'Oise','60',1076,1), +(2266,'Orne','61',1076,1), +(2267,'Paris','75',1076,1), +(2268,'Pas-de-Calais','62',1076,1), +(2269,'Puy-de-Dôme','63',1076,1), +(2270,'Pyrénées-Atlantiques','64',1076,1), +(2271,'Pyrénées-Orientales','66',1076,1), +(2272,'Rhône','69',1076,1), +(2273,'Saône-et-Loire','71',1076,1), +(2274,'Sarthe','72',1076,1), +(2275,'Savoie','73',1076,1), +(2276,'Seine-et-Marne','77',1076,1), +(2277,'Seine-Maritime','76',1076,1), +(2278,'Seine-Saint-Denis','93',1076,1), +(2279,'Somme','80',1076,1), +(2280,'Tarn','81',1076,1), +(2281,'Tarn-et-Garonne','82',1076,1), +(2282,'Val d\'Oise','95',1076,1), +(2283,'Territoire de Belfort','90',1076,1), +(2284,'Val-de-Marne','94',1076,1), +(2285,'Var','83',1076,1), +(2286,'Vaucluse','84',1076,1), +(2287,'Vendée','85',1076,1), +(2288,'Vienne','86',1076,1), +(2289,'Vosges','88',1076,1), +(2290,'Yonne','89',1076,1), +(2291,'Yvelines','78',1076,1), +(2292,'Guadeloupe','GP',1076,1), +(2293,'Martinique','MQ',1076,1), +(2294,'Guyane','GF',1076,1), +(2295,'La Réunion','RE',1076,1), +(2296,'Mayotte','YT',1076,1), +(2297,'Wallis-et-Futuna','WF',1076,1), +(2298,'Nouvelle-Calédonie','NC',1076,1), +(2299,'Haute-Marne','52',1076,1), +(2300,'Jura','39',1076,1), +(2301,'Aberdeen City','ABE',1226,1), +(2302,'Aberdeenshire','ABD',1226,1), +(2303,'Angus','ANS',1226,1), +(2304,'Co Antrim','ANT',1226,1), +(2305,'Argyll and Bute','AGB',1226,1), +(2306,'Co Armagh','ARM',1226,1), +(2307,'Bedfordshire','BDF',1226,1), +(2308,'Blaenau Gwent','BGW',1226,1), +(2309,'Bristol, City of','BST',1226,1), +(2310,'Buckinghamshire','BKM',1226,1), +(2311,'Cambridgeshire','CAM',1226,1), +(2312,'Cheshire','CHS',1226,1), +(2313,'Clackmannanshire','CLK',1226,1), +(2314,'Cornwall','CON',1226,1), +(2315,'Cumbria','CMA',1226,1), +(2316,'Derbyshire','DBY',1226,1), +(2317,'Co Londonderry','DRY',1226,1), +(2318,'Devon','DEV',1226,1), +(2319,'Dorset','DOR',1226,1), +(2320,'Co Down','DOW',1226,1), +(2321,'Dumfries and Galloway','DGY',1226,1), +(2322,'Dundee City','DND',1226,1), +(2323,'County Durham','DUR',1226,1), +(2324,'East Ayrshire','EAY',1226,1), +(2325,'East Dunbartonshire','EDU',1226,1), +(2326,'East Lothian','ELN',1226,1), +(2327,'East Renfrewshire','ERW',1226,1), +(2328,'East Riding of Yorkshire','ERY',1226,1), +(2329,'East Sussex','ESX',1226,1), +(2330,'Edinburgh, City of','EDH',1226,1), +(2331,'Na h-Eileanan Siar','ELS',1226,1), +(2332,'Essex','ESS',1226,1), +(2333,'Falkirk','FAL',1226,1), +(2334,'Co Fermanagh','FER',1226,1), +(2335,'Fife','FIF',1226,1), +(2336,'Glasgow City','GLG',1226,1), +(2337,'Gloucestershire','GLS',1226,1), +(2338,'Gwynedd','GWN',1226,1), +(2339,'Hampshire','HAM',1226,1), +(2340,'Herefordshire','HEF',1226,1), +(2341,'Hertfordshire','HRT',1226,1), +(2342,'Highland','HED',1226,1), +(2343,'Inverclyde','IVC',1226,1), +(2344,'Isle of Wight','IOW',1226,1), +(2345,'Kent','KEN',1226,1), +(2346,'Lancashire','LAN',1226,1), +(2347,'Leicestershire','LEC',1226,1), +(2348,'Lincolnshire','LIN',1226,1), +(2349,'Midlothian','MLN',1226,1), +(2350,'Moray','MRY',1226,1), +(2351,'Norfolk','NFK',1226,1), +(2352,'North Ayrshire','NAY',1226,1), +(2353,'North Lanarkshire','NLK',1226,1), +(2354,'North Yorkshire','NYK',1226,1), +(2355,'Northamptonshire','NTH',1226,1), +(2356,'Northumberland','NBL',1226,1), +(2357,'Nottinghamshire','NTT',1226,1), +(2358,'Oldham','OLD',1226,1), +(2359,'Omagh','OMH',1226,1), +(2360,'Orkney Islands','ORR',1226,1), +(2361,'Oxfordshire','OXF',1226,1), +(2362,'Perth and Kinross','PKN',1226,1), +(2363,'Powys','POW',1226,1), +(2364,'Renfrewshire','RFW',1226,1), +(2365,'Rutland','RUT',1226,1), +(2366,'Scottish Borders','SCB',1226,1), +(2367,'Shetland Islands','ZET',1226,1), +(2368,'Shropshire','SHR',1226,1), +(2369,'Somerset','SOM',1226,1), +(2370,'South Ayrshire','SAY',1226,1), +(2371,'South Gloucestershire','SGC',1226,1), +(2372,'South Lanarkshire','SLK',1226,1), +(2373,'Staffordshire','STS',1226,1), +(2374,'Stirling','STG',1226,1), +(2375,'Suffolk','SFK',1226,1), +(2376,'Surrey','SRY',1226,1), +(2377,'Vale of Glamorgan, The','VGL',1226,1), +(2378,'Warwickshire','WAR',1226,1), +(2379,'West Dunbartonshire','WDU',1226,1), +(2380,'West Lothian','WLN',1226,1), +(2381,'West Sussex','WSX',1226,1), +(2382,'Wiltshire','WIL',1226,1), +(2383,'Worcestershire','WOR',1226,1), +(2384,'Antrim and Newtownabbey','ANN',1226,1), +(2385,'Ards and North Down','AND',1226,1), +(2386,'Armagh City, Banbridge and Craigavon','ABC',1226,1), +(2387,'Belfast','BFS',1226,1), +(2388,'Causeway Coast and Glens','CCG',1226,1), +(2389,'Derry City and Strabane','DRS',1226,1), +(2390,'Fermanagh and Omagh','FMO',1226,1), +(2391,'Lisburn and Castlereagh','LBC',1226,1), +(2392,'Mid and East Antrim','MEA',1226,1), +(2393,'Mid Ulster','MUL',1226,1), +(2394,'Newry, Mourne and Down','NMD',1226,1), +(2395,'Bridgend','BGE',1226,1), +(2396,'Caerphilly','CAY',1226,1), +(2397,'Cardiff','CRF',1226,1), +(2398,'Carmarthenshire','CMN',1226,1), +(2399,'Ceredigion','CGN',1226,1), +(2400,'Conwy','CWY',1226,1), +(2401,'Denbighshire','DEN',1226,1), +(2402,'Flintshire','FLN',1226,1), +(2403,'Isle of Anglesey','AGY',1226,1), +(2404,'Merthyr Tydfil','MTY',1226,1), +(2405,'Neath Port Talbot','NTL',1226,1), +(2406,'Newport','NWP',1226,1), +(2407,'Pembrokeshire','PEM',1226,1), +(2408,'Rhondda, Cynon, Taff','RCT',1226,1), +(2409,'Swansea','SWA',1226,1), +(2410,'Torfaen','TOF',1226,1), +(2411,'Wrexham','WRX',1226,1), +(2412,'Monmouthshire','MON',1226,1), +(2413,'Tyne and Wear','TWR',1226,1), +(2414,'Greater Manchester','GTM',1226,1), +(2415,'Co Tyrone','TYR',1226,1), +(2416,'West Yorkshire','WYK',1226,1), +(2417,'South Yorkshire','SYK',1226,1), +(2418,'Merseyside','MSY',1226,1), +(2419,'Berkshire','BRK',1226,1), +(2420,'West Midlands','WMD',1226,1), +(2421,'West Glamorgan','WGM',1226,1), +(2422,'London','LON',1226,1), +(2423,'Clwyd','CWD',1226,1), +(2424,'South Glamorgan','SGM',1226,1), +(2425,'Ashanti','AH',1083,1), +(2426,'Brong-Ahafo','BA',1083,1), +(2427,'Greater Accra','AA',1083,1), +(2428,'Upper East','UE',1083,1), +(2429,'Upper West','UW',1083,1), +(2430,'Volta','TV',1083,1), +(2431,'Central','CP',1083,1), +(2432,'Eastern','EP',1083,1), +(2433,'Northern','NP',1083,1), +(2434,'Western','WP',1083,1), +(2435,'Banjul','B',1213,1), +(2436,'Lower River','L',1213,1), +(2437,'MacCarthy Island','M',1213,1), +(2438,'North Bank','N',1213,1), +(2439,'Upper River','U',1213,1), +(2440,'Beyla','BE',1091,1), +(2441,'Boffa','BF',1091,1), +(2442,'Boke','BK',1091,1), +(2443,'Coyah','CO',1091,1), +(2444,'Dabola','DB',1091,1), +(2445,'Dalaba','DL',1091,1), +(2446,'Dinguiraye','DI',1091,1), +(2447,'Dubreka','DU',1091,1), +(2448,'Faranah','FA',1091,1), +(2449,'Forecariah','FO',1091,1), +(2450,'Fria','FR',1091,1), +(2451,'Gaoual','GA',1091,1), +(2452,'Guekedou','GU',1091,1), +(2453,'Kankan','KA',1091,1), +(2454,'Kerouane','KE',1091,1), +(2455,'Kindia','KD',1091,1), +(2456,'Kissidougou','KS',1091,1), +(2457,'Koubia','KB',1091,1), +(2458,'Koundara','KN',1091,1), +(2459,'Kouroussa','KO',1091,1), +(2460,'Labe','LA',1091,1), +(2461,'Lelouma','LE',1091,1), +(2462,'Lola','LO',1091,1), +(2463,'Macenta','MC',1091,1), +(2464,'Mali','ML',1091,1), +(2465,'Mamou','MM',1091,1), +(2466,'Mandiana','MD',1091,1), +(2467,'Nzerekore','NZ',1091,1), +(2468,'Pita','PI',1091,1), +(2469,'Siguiri','SI',1091,1), +(2470,'Telimele','TE',1091,1), +(2471,'Tougue','TO',1091,1), +(2472,'Yomou','YO',1091,1), +(2473,'Region Continental','C',1067,1), +(2474,'Region Insular','I',1067,1), +(2475,'Annobon','AN',1067,1), +(2476,'Bioko Norte','BN',1067,1), +(2477,'Bioko Sur','BS',1067,1), +(2478,'Centro Sur','CS',1067,1), +(2479,'Kie-Ntem','KN',1067,1), +(2480,'Litoral','LI',1067,1), +(2481,'Wele-Nzas','WN',1067,1), +(2482,'Achaïa','13',1085,1), +(2483,'Aitolia-Akarnania','01',1085,1), +(2484,'Argolis','11',1085,1), +(2485,'Arkadia','12',1085,1), +(2486,'Arta','31',1085,1), +(2487,'Attiki','A1',1085,1), +(2488,'Chalkidiki','64',1085,1), +(2489,'Chania','94',1085,1), +(2490,'Chios','85',1085,1), +(2491,'Dodekanisos','81',1085,1), +(2492,'Drama','52',1085,1), +(2493,'Evros','71',1085,1), +(2494,'Evrytania','05',1085,1), +(2495,'Evvoia','04',1085,1), +(2496,'Florina','63',1085,1), +(2497,'Fokis','07',1085,1), +(2498,'Fthiotis','06',1085,1), +(2499,'Grevena','51',1085,1), +(2500,'Ileia','14',1085,1), +(2501,'Imathia','53',1085,1), +(2502,'Ioannina','33',1085,1), +(2503,'Irakleion','91',1085,1), +(2504,'Karditsa','41',1085,1), +(2505,'Kastoria','56',1085,1), +(2506,'Kavalla','55',1085,1), +(2507,'Kefallinia','23',1085,1), +(2508,'Kerkyra','22',1085,1), +(2509,'Kilkis','57',1085,1), +(2510,'Korinthia','15',1085,1), +(2511,'Kozani','58',1085,1), +(2512,'Kyklades','82',1085,1), +(2513,'Lakonia','16',1085,1), +(2514,'Larisa','42',1085,1), +(2515,'Lasithion','92',1085,1), +(2516,'Lefkas','24',1085,1), +(2517,'Lesvos','83',1085,1), +(2518,'Magnisia','43',1085,1), +(2519,'Messinia','17',1085,1), +(2520,'Pella','59',1085,1), +(2521,'Preveza','34',1085,1), +(2522,'Rethymnon','93',1085,1), +(2523,'Rodopi','73',1085,1), +(2524,'Samos','84',1085,1), +(2525,'Serrai','62',1085,1), +(2526,'Thesprotia','32',1085,1), +(2527,'Thessaloniki','54',1085,1), +(2528,'Trikala','44',1085,1), +(2529,'Voiotia','03',1085,1), +(2530,'Xanthi','72',1085,1), +(2531,'Zakynthos','21',1085,1), +(2532,'Agio Oros','69',1085,1), +(2533,'Pieria','61',1085,1), +(2534,'Alta Verapaz','AV',1090,1), +(2535,'Baja Verapaz','BV',1090,1), +(2536,'Chimaltenango','CM',1090,1), +(2537,'Chiquimula','CQ',1090,1), +(2538,'El Progreso','PR',1090,1), +(2539,'Escuintla','ES',1090,1), +(2540,'Guatemala','GU',1090,1), +(2541,'Huehuetenango','HU',1090,1), +(2542,'Izabal','IZ',1090,1), +(2543,'Jalapa','JA',1090,1), +(2544,'Jutiapa','JU',1090,1), +(2545,'Peten','PE',1090,1), +(2546,'Quetzaltenango','QZ',1090,1), +(2547,'Quiche','QC',1090,1), +(2548,'Retalhuleu','RE',1090,1), +(2549,'Sacatepequez','SA',1090,1), +(2550,'San Marcos','SM',1090,1), +(2551,'Santa Rosa','SR',1090,1), +(2552,'Sololá','SO',1090,1), +(2553,'Suchitepequez','SU',1090,1), +(2554,'Totonicapan','TO',1090,1), +(2555,'Zacapa','ZA',1090,1), +(2556,'Bissau','BS',1092,1), +(2557,'Bafata','BA',1092,1), +(2558,'Biombo','BM',1092,1), +(2559,'Bolama','BL',1092,1), +(2560,'Cacheu','CA',1092,1), +(2561,'Gabu','GA',1092,1), +(2562,'Oio','OI',1092,1), +(2563,'Quloara','QU',1092,1), +(2564,'Tombali S','TO',1092,1), +(2565,'Barima-Waini','BA',1093,1), +(2566,'Cuyuni-Mazaruni','CU',1093,1), +(2567,'Demerara-Mahaica','DE',1093,1), +(2568,'East Berbice-Corentyne','EB',1093,1), +(2569,'Essequibo Islands-West Demerara','ES',1093,1), +(2570,'Mahaica-Berbice','MA',1093,1), +(2571,'Pomeroon-Supenaam','PM',1093,1), +(2572,'Potaro-Siparuni','PT',1093,1), +(2573,'Upper Demerara-Berbice','UD',1093,1), +(2574,'Upper Takutu-Upper Essequibo','UT',1093,1), +(2575,'Atlantida','AT',1097,1), +(2576,'Colon','CL',1097,1), +(2577,'Comayagua','CM',1097,1), +(2578,'Copan','CP',1097,1), +(2579,'Cortes','CR',1097,1), +(2580,'Choluteca','CH',1097,1), +(2581,'El Paraiso','EP',1097,1), +(2582,'Francisco Morazan','FM',1097,1), +(2583,'Gracias a Dios','GD',1097,1), +(2584,'Intibuca','IN',1097,1), +(2585,'Islas de la Bahia','IB',1097,1), +(2586,'Lempira','LE',1097,1), +(2587,'Ocotepeque','OC',1097,1), +(2588,'Olancho','OL',1097,1), +(2589,'Santa Barbara','SB',1097,1), +(2590,'Valle','VA',1097,1), +(2591,'Yoro','YO',1097,1), +(2592,'La Paz','LP',1097,1), +(2593,'Bjelovarsko-bilogorska zupanija','07',1055,1), +(2594,'Brodsko-posavska zupanija','12',1055,1), +(2595,'Dubrovacko-neretvanska zupanija','19',1055,1), +(2596,'Istarska zupanija','18',1055,1), +(2597,'Karlovacka zupanija','04',1055,1), +(2598,'Koprivnickco-krizevacka zupanija','06',1055,1), +(2599,'Krapinako-zagorska zupanija','02',1055,1), +(2600,'Licko-senjska zupanija','09',1055,1), +(2601,'Medimurska zupanija','20',1055,1), +(2602,'Osjecko-baranjska zupanija','14',1055,1), +(2603,'Pozesko-slavonska zupanija','11',1055,1), +(2604,'Primorsko-goranska zupanija','08',1055,1), +(2605,'Sisacko-moelavacka Iupanija','03',1055,1), +(2606,'Splitako-dalmatinska zupanija','17',1055,1), +(2607,'Sibenako-kninska zupanija','15',1055,1), +(2608,'Varaidinska zupanija','05',1055,1), +(2609,'VirovitiEko-podravska zupanija','10',1055,1), +(2610,'VuRovarako-srijemska zupanija','16',1055,1), +(2611,'Zadaraka','13',1055,1), +(2612,'Zagrebacka zupanija','01',1055,1), +(2613,'Grande-Anse','GA',1094,1), +(2614,'Nord-Est','NE',1094,1), +(2615,'Nord-Ouest','NO',1094,1), +(2616,'Ouest','OU',1094,1), +(2617,'Sud','SD',1094,1), +(2618,'Sud-Est','SE',1094,1), +(2619,'Artibonite','AR',1094,1), +(2620,'Centre','CE',1094,1), +(2621,'Nippes','NI',1094,1), +(2622,'Nord','ND',1094,1), +(2623,'Budapest','BU',1099,1), +(2624,'Bács-Kiskun','BK',1099,1), +(2625,'Baranya','BA',1099,1), +(2626,'Békés','BE',1099,1), +(2627,'Borsod-Abaúj-Zemplén','BZ',1099,1), +(2628,'Csongrád','CS',1099,1), +(2629,'Fejér','FE',1099,1), +(2630,'Győr-Moson-Sopron','GS',1099,1), +(2631,'Hajdu-Bihar','HB',1099,1), +(2632,'Heves','HE',1099,1), +(2633,'Jász-Nagykun-Szolnok','JN',1099,1), +(2634,'Komárom-Esztergom','KE',1099,1), +(2635,'Nográd','NO',1099,1), +(2636,'Pest','PE',1099,1), +(2637,'Somogy','SO',1099,1), +(2638,'Szabolcs-Szatmár-Bereg','SZ',1099,1), +(2639,'Tolna','TO',1099,1), +(2640,'Vas','VA',1099,1), +(2641,'Veszprém','VE',1099,1), +(2642,'Zala','ZA',1099,1), +(2643,'Békéscsaba','BC',1099,1), +(2644,'Debrecen','DE',1099,1), +(2645,'Dunaújváros','DU',1099,1), +(2646,'Eger','EG',1099,1), +(2647,'Győr','GY',1099,1), +(2648,'Hódmezővásárhely','HV',1099,1), +(2649,'Kaposvár','KV',1099,1), +(2650,'Kecskemét','KM',1099,1), +(2651,'Miskolc','MI',1099,1), +(2652,'Nagykanizsa','NK',1099,1), +(2653,'Nyiregyháza','NY',1099,1), +(2654,'Pécs','PS',1099,1), +(2655,'Salgótarján','ST',1099,1), +(2656,'Sopron','SN',1099,1), +(2657,'Szeged','SD',1099,1), +(2658,'Székesfehérvár','SF',1099,1), +(2659,'Szekszárd','SS',1099,1), +(2660,'Szolnok','SK',1099,1), +(2661,'Szombathely','SH',1099,1), +(2662,'Tatabánya','TB',1099,1), +(2663,'Zalaegerszeg','ZE',1099,1), +(2664,'Bali','BA',1102,1), +(2665,'Kepulauan Bangka Belitung','BB',1102,1), +(2666,'Banten','BT',1102,1), +(2667,'Bengkulu','BE',1102,1), +(2668,'Gorontalo','GO',1102,1), +(2669,'Papua Barat','PB',1102,1), +(2670,'Jambi','JA',1102,1), +(2671,'Jawa Barat','JB',1102,1), +(2672,'Jawa Tengah','JT',1102,1), +(2673,'Jawa Timur','JI',1102,1), +(2674,'Kalimantan Barat','KB',1102,1), +(2675,'Kalimantan Timur','KI',1102,1), +(2676,'Kalimantan Selatan','KS',1102,1), +(2677,'Kepulauan Riau','KR',1102,1), +(2678,'Lampung','LA',1102,1), +(2679,'Maluku','MA',1102,1), +(2680,'Maluku Utara','MU',1102,1), +(2681,'Nusa Tenggara Barat','NB',1102,1), +(2682,'Nusa Tenggara Timur','NT',1102,1), +(2683,'Papua','PA',1102,1), +(2684,'Riau','RI',1102,1), +(2685,'Sulawesi Selatan','SN',1102,1), +(2686,'Sulawesi Tengah','ST',1102,1), +(2687,'Sulawesi Tenggara','SG',1102,1), +(2688,'Sulawesi Utara','SA',1102,1), +(2689,'Sumatra Barat','SB',1102,1), +(2690,'Sumatra Selatan','SS',1102,1), +(2691,'Sumatera Utara','SU',1102,1), +(2692,'DKI Jakarta','JK',1102,1), +(2693,'Aceh','AC',1102,1), +(2694,'DI Yogyakarta','YO',1102,1), +(2695,'Kalimantan Tengah','KT',1102,1), +(2696,'Sulawesi Barat','SR',1102,1), +(2697,'Kalimantan Utara','KU',1102,1), +(2698,'Cork','C',1105,1), +(2699,'Clare','CE',1105,1), +(2700,'Cavan','CN',1105,1), +(2701,'Carlow','CW',1105,1), +(2702,'Dublin','D',1105,1), +(2703,'Donegal','DL',1105,1), +(2704,'Galway','G',1105,1), +(2705,'Kildare','KE',1105,1), +(2706,'Kilkenny','KK',1105,1), +(2707,'Kerry','KY',1105,1), +(2708,'Longford','LD',1105,1), +(2709,'Louth','LH',1105,1), +(2710,'Limerick','LK',1105,1), +(2711,'Leitrim','LM',1105,1), +(2712,'Laois','LS',1105,1), +(2713,'Meath','MH',1105,1), +(2714,'Monaghan','MN',1105,1), +(2715,'Mayo','MO',1105,1), +(2716,'Offaly','OY',1105,1), +(2717,'Roscommon','RN',1105,1), +(2718,'Sligo','SO',1105,1), +(2719,'Tipperary','TA',1105,1), +(2720,'Waterford','WD',1105,1), +(2721,'Westmeath','WH',1105,1), +(2722,'Wicklow','WW',1105,1), +(2723,'Wexford','WX',1105,1), +(2724,'HaDarom','D',1106,1), +(2725,'HaMerkaz','M',1106,1), +(2726,'HaZafon','Z',1106,1), +(2727,'Haifa','HA',1106,1), +(2728,'Tel-Aviv','TA',1106,1), +(2729,'Jerusalem','JM',1106,1), +(2730,'Al Anbar','AN',1104,1), +(2731,'Al Ba,rah','BA',1104,1), +(2732,'Al Muthanna','MU',1104,1), +(2733,'Al Qadisiyah','QA',1104,1), +(2734,'An Najef','NA',1104,1), +(2735,'Arbil','AR',1104,1), +(2736,'As Sulaymaniyah','SW',1104,1), +(2737,'At Ta\'mim','TS',1104,1), +(2738,'Babil','BB',1104,1), +(2739,'Baghdad','BG',1104,1), +(2740,'Dahuk','DA',1104,1), +(2741,'Dhi Qar','DQ',1104,1), +(2742,'Diyala','DI',1104,1), +(2743,'Karbala\'','KA',1104,1), +(2744,'Maysan','MA',1104,1), +(2745,'Ninawa','NI',1104,1), +(2746,'Salah ad Din','SD',1104,1), +(2747,'Wasit','WA',1104,1), +(2748,'Ardabil','03',1103,1), +(2749,'Azarbayjan-e Gharbi','02',1103,1), +(2750,'Azarbayjan-e Sharqi','01',1103,1), +(2751,'Bushehr','06',1103,1), +(2752,'Chahar Mahall va Bakhtiari','08',1103,1), +(2753,'Esfahan','04',1103,1), +(2754,'Fars','14',1103,1), +(2755,'Gilan','19',1103,1), +(2756,'Golestan','27',1103,1), +(2757,'Hamadan','24',1103,1), +(2758,'Hormozgan','23',1103,1), +(2759,'Iiam','05',1103,1), +(2760,'Kerman','15',1103,1), +(2761,'Kermanshah','17',1103,1), +(2762,'Khorasan','09',1103,1), +(2763,'Khuzestan','10',1103,1), +(2764,'Kohjiluyeh va Buyer Ahmad','18',1103,1), +(2765,'Kordestan','16',1103,1), +(2766,'Lorestan','20',1103,1), +(2767,'Markazi','22',1103,1), +(2768,'Mazandaran','21',1103,1), +(2769,'Qazvin','28',1103,1), +(2770,'Qom','26',1103,1), +(2771,'Semnan','12',1103,1), +(2772,'Sistan va Baluchestan','13',1103,1), +(2773,'Tehran','07',1103,1), +(2774,'Yazd','25',1103,1), +(2775,'Zanjan','11',1103,1), +(2776,'Austurland','7',1100,1), +(2777,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100,1), +(2778,'Norourland eystra','6',1100,1), +(2779,'Norourland vestra','5',1100,1), +(2780,'Reykjavik','0',1100,1), +(2781,'Suourland','8',1100,1), +(2782,'Suournes','2',1100,1), +(2783,'Vestfirolr','4',1100,1), +(2784,'Vesturland','3',1100,1), +(2785,'Agrigento','AG',1107,1), +(2786,'Alessandria','AL',1107,1), +(2787,'Ancona','AN',1107,1), +(2788,'Aosta','AO',1107,1), +(2789,'Arezzo','AR',1107,1), +(2790,'Ascoli Piceno','AP',1107,1), +(2791,'Asti','AT',1107,1), +(2792,'Avellino','AV',1107,1), +(2793,'Bari','BA',1107,1), +(2794,'Belluno','BL',1107,1), +(2795,'Benevento','BN',1107,1), +(2796,'Bergamo','BG',1107,1), +(2797,'Biella','BI',1107,1), +(2798,'Bologna','BO',1107,1), +(2799,'Bolzano','BZ',1107,1), +(2800,'Brescia','BS',1107,1), +(2801,'Brindisi','BR',1107,1), +(2802,'Cagliari','CA',1107,1), +(2803,'Caltanissetta','CL',1107,1), +(2804,'Campobasso','CB',1107,1), +(2805,'Caserta','CE',1107,1), +(2806,'Catania','CT',1107,1), +(2807,'Catanzaro','CZ',1107,1), +(2808,'Chieti','CH',1107,1), +(2809,'Como','CO',1107,1), +(2810,'Cosenza','CS',1107,1), +(2811,'Cremona','CR',1107,1), +(2812,'Crotone','KR',1107,1), +(2813,'Cuneo','CN',1107,1), +(2814,'Enna','EN',1107,1), +(2815,'Ferrara','FE',1107,1), +(2816,'Firenze','FI',1107,1), +(2817,'Foggia','FG',1107,1), +(2818,'Forlì-Cesena','FC',1107,1), +(2819,'Frosinone','FR',1107,1), +(2820,'Genova','GE',1107,1), +(2821,'Gorizia','GO',1107,1), +(2822,'Grosseto','GR',1107,1), +(2823,'Imperia','IM',1107,1), +(2824,'Isernia','IS',1107,1), +(2825,'L\'Aquila','AQ',1107,1), +(2826,'La Spezia','SP',1107,1), +(2827,'Latina','LT',1107,1), +(2828,'Lecce','LE',1107,1), +(2829,'Lecco','LC',1107,1), +(2830,'Livorno','LI',1107,1), +(2831,'Lodi','LO',1107,1), +(2832,'Lucca','LU',1107,1), +(2833,'Macerata','MC',1107,1), +(2834,'Mantova','MN',1107,1), +(2835,'Massa-Carrara','MS',1107,1), +(2836,'Matera','MT',1107,1), +(2837,'Messina','ME',1107,1), +(2838,'Milano','MI',1107,1), +(2839,'Modena','MO',1107,1), +(2840,'Napoli','NA',1107,1), +(2841,'Novara','NO',1107,1), +(2842,'Nuoro','NU',1107,1), +(2843,'Oristano','OR',1107,1), +(2844,'Padova','PD',1107,1), +(2845,'Palermo','PA',1107,1), +(2846,'Parma','PR',1107,1), +(2847,'Pavia','PV',1107,1), +(2848,'Perugia','PG',1107,1), +(2849,'Pesaro e Urbino','PU',1107,1), +(2850,'Pescara','PE',1107,1), +(2851,'Piacenza','PC',1107,1), +(2852,'Pisa','PI',1107,1), +(2853,'Pistoia','PT',1107,1), +(2854,'Pordenone','PN',1107,1), +(2855,'Potenza','PZ',1107,1), +(2856,'Prato','PO',1107,1), +(2857,'Ragusa','RG',1107,1), +(2858,'Ravenna','RA',1107,1), +(2859,'Reggio Calabria','RC',1107,1), +(2860,'Reggio Emilia','RE',1107,1), +(2861,'Rieti','RI',1107,1), +(2862,'Rimini','RN',1107,1), +(2863,'Roma','RM',1107,1), +(2864,'Rovigo','RO',1107,1), +(2865,'Salerno','SA',1107,1), +(2866,'Sassari','SS',1107,1), +(2867,'Savona','SV',1107,1), +(2868,'Siena','SI',1107,1), +(2869,'Siracusa','SR',1107,1), +(2870,'Sondrio','SO',1107,1), +(2871,'Taranto','TA',1107,1), +(2872,'Teramo','TE',1107,1), +(2873,'Terni','TR',1107,1), +(2874,'Torino','TO',1107,1), +(2875,'Trapani','TP',1107,1), +(2876,'Trento','TN',1107,1), +(2877,'Treviso','TV',1107,1), +(2878,'Trieste','TS',1107,1), +(2879,'Udine','UD',1107,1), +(2880,'Varese','VA',1107,1), +(2881,'Venezia','VE',1107,1), +(2882,'Verbano-Cusio-Ossola','VB',1107,1), +(2883,'Vercelli','VC',1107,1), +(2884,'Verona','VR',1107,1), +(2885,'Vibo Valentia','VV',1107,1), +(2886,'Vicenza','VI',1107,1), +(2887,'Viterbo','VT',1107,1), +(2888,'Barletta-Andria-Trani','BT',1107,1), +(2889,'Fermo','FM',1107,1), +(2890,'Monza e Brianza','MB',1107,1), +(2891,'Carbonia-Iglesias','CI',1107,1), +(2892,'Olbia-Tempio','OT',1107,1), +(2893,'Medio Campidano','VS',1107,1), +(2894,'Ogliastra','OG',1107,1), +(2895,'Aichi','23',1109,1), +(2896,'Akita','05',1109,1), +(2897,'Aomori','02',1109,1), +(2898,'Chiba','12',1109,1), +(2899,'Ehime','38',1109,1), +(2900,'Fukui','18',1109,1), +(2901,'Fukuoka','40',1109,1), +(2902,'Fukusima','07',1109,1), +(2903,'Gifu','21',1109,1), +(2904,'Gunma','10',1109,1), +(2905,'Hiroshima','34',1109,1), +(2906,'Hokkaido','01',1109,1), +(2907,'Hyogo','28',1109,1), +(2908,'Ibaraki','08',1109,1), +(2909,'Ishikawa','17',1109,1), +(2910,'Iwate','03',1109,1), +(2911,'Kagawa','37',1109,1), +(2912,'Kagoshima','46',1109,1), +(2913,'Kanagawa','14',1109,1), +(2914,'Kochi','39',1109,1), +(2915,'Kumamoto','43',1109,1), +(2916,'Kyoto','26',1109,1), +(2917,'Mie','24',1109,1), +(2918,'Miyagi','04',1109,1), +(2919,'Miyazaki','45',1109,1), +(2920,'Nagano','20',1109,1), +(2921,'Nagasaki','42',1109,1), +(2922,'Nara','29',1109,1), +(2923,'Niigata','15',1109,1), +(2924,'Oita','44',1109,1), +(2925,'Okayama','33',1109,1), +(2926,'Okinawa','47',1109,1), +(2927,'Osaka','27',1109,1), +(2928,'Saga','41',1109,1), +(2929,'Saitama','11',1109,1), +(2930,'Shiga','25',1109,1), +(2931,'Shimane','32',1109,1), +(2932,'Shizuoka','22',1109,1), +(2933,'Tochigi','09',1109,1), +(2934,'Tokushima','36',1109,1), +(2935,'Tokyo','13',1109,1), +(2936,'Tottori','31',1109,1), +(2937,'Toyama','16',1109,1), +(2938,'Wakayama','30',1109,1), +(2939,'Yamagata','06',1109,1), +(2940,'Yamaguchi','35',1109,1), +(2941,'Yamanashi','19',1109,1), +(2942,'Clarendon','CN',1108,1), +(2943,'Hanover','HR',1108,1), +(2944,'Kingston','KN',1108,1), +(2945,'Portland','PD',1108,1), +(2946,'Saint Andrew','AW',1108,1), +(2947,'Saint Ann','AN',1108,1), +(2948,'Saint Catherine','CE',1108,1), +(2949,'Saint Elizabeth','EH',1108,1), +(2950,'Saint James','JS',1108,1), +(2951,'Saint Mary','MY',1108,1), +(2952,'Saint Thomas','TS',1108,1), +(2953,'Trelawny','TY',1108,1), +(2954,'Westmoreland','WD',1108,1), +(2955,'Ajln','AJ',1110,1), +(2956,'Al \'Aqaba','AQ',1110,1), +(2957,'Al Balqa\'','BA',1110,1), +(2958,'Al Karak','KA',1110,1), +(2959,'Al Mafraq','MA',1110,1), +(2960,'Amman','AM',1110,1), +(2961,'At Tafilah','AT',1110,1), +(2962,'Az Zarga','AZ',1110,1), +(2963,'Irbid','JR',1110,1), +(2964,'Jarash','JA',1110,1), +(2965,'Ma\'an','MN',1110,1), +(2966,'Madaba','MD',1110,1), +(2967,'Baringo','01',1112,1), +(2968,'Bomet','02',1112,1), +(2969,'Bungoma','03',1112,1), +(2970,'Busia','04',1112,1), +(2971,'Elgeyo/Marakwet','05',1112,1), +(2972,'Embu','06',1112,1), +(2973,'Garissa','07',1112,1), +(2974,'Homa Bay','08',1112,1), +(2975,'Isiolo','09',1112,1), +(2976,'Kajiado','10',1112,1), +(2977,'Kakamega','11',1112,1), +(2978,'Kericho','12',1112,1), +(2979,'Kiambu','13',1112,1), +(2980,'Kilifi','14',1112,1), +(2981,'Kirinyaga','15',1112,1), +(2982,'Kisii','16',1112,1), +(2983,'Kisumu','17',1112,1), +(2984,'Kitui','18',1112,1), +(2985,'Kwale','19',1112,1), +(2986,'Laikipia','20',1112,1), +(2987,'Lamu','21',1112,1), +(2988,'Machakos','22',1112,1), +(2989,'Makueni','23',1112,1), +(2990,'Mandera','24',1112,1), +(2991,'Marsabit','25',1112,1), +(2992,'Meru','26',1112,1), +(2993,'Migori','27',1112,1), +(2994,'Mombasa','28',1112,1), +(2995,'Murang\'a','29',1112,1), +(2996,'Nairobi City','30',1112,1), +(2997,'Nakuru','31',1112,1), +(2998,'Nandi','32',1112,1), +(2999,'Narok','33',1112,1), +(3000,'Nyamira','34',1112,1), +(3001,'Nyandarua','35',1112,1), +(3002,'Nyeri','36',1112,1), +(3003,'Samburu','37',1112,1), +(3004,'Siaya','38',1112,1), +(3005,'Taita/Taveta','39',1112,1), +(3006,'Tana River','40',1112,1), +(3007,'Tharaka-Nithi','41',1112,1), +(3008,'Trans Nzoia','42',1112,1), +(3009,'Turkana','43',1112,1), +(3010,'Uasin Gishu','44',1112,1), +(3011,'Vihiga','45',1112,1), +(3012,'Wajir','46',1112,1), +(3013,'West Pokot','47',1112,1), +(3014,'Bishkek','GB',1117,1), +(3015,'Batken','B',1117,1), +(3016,'Chu','C',1117,1), +(3017,'Jalal-Abad','J',1117,1), +(3018,'Naryn','N',1117,1), +(3019,'Osh','O',1117,1), +(3020,'Talas','T',1117,1), +(3021,'Ysyk-Kol','Y',1117,1), +(3022,'Krong Kaeb','23',1037,1), +(3023,'Krong Pailin','24',1037,1), +(3024,'Xrong Preah Sihanouk','18',1037,1), +(3025,'Phnom Penh','12',1037,1), +(3026,'Baat Dambang','2',1037,1), +(3027,'Banteay Mean Chey','1',1037,1), +(3028,'Rampong Chaam','3',1037,1), +(3029,'Kampong Chhnang','4',1037,1), +(3030,'Kampong Spueu','5',1037,1), +(3031,'Kampong Thum','6',1037,1), +(3032,'Kampot','7',1037,1), +(3033,'Kandaal','8',1037,1), +(3034,'Kach Kong','9',1037,1), +(3035,'Krachoh','10',1037,1), +(3036,'Mondol Kiri','11',1037,1), +(3037,'Otdar Mean Chey','22',1037,1), +(3038,'Pousaat','15',1037,1), +(3039,'Preah Vihear','13',1037,1), +(3040,'Prey Veaeng','14',1037,1), +(3041,'Rotanak Kiri','16',1037,1), +(3042,'Siem Reab','17',1037,1), +(3043,'Stueng Traeng','19',1037,1), +(3044,'Svaay Rieng','20',1037,1), +(3045,'Taakaev','21',1037,1), +(3046,'Gilbert Islands','G',1113,1), +(3047,'Line Islands','L',1113,1), +(3048,'Phoenix Islands','P',1113,1), +(3049,'Anjouan Ndzouani','A',1049,1), +(3050,'Grande Comore Ngazidja','G',1049,1), +(3051,'Moheli Moili','M',1049,1), +(3052,'Kaesong-si','KAE',1114,1), +(3053,'Nampo-si','NAM',1114,1), +(3054,'Pyongyang-ai','PYO',1114,1), +(3055,'Chagang-do','CHA',1114,1), +(3056,'Hamgyongbuk-do','HAB',1114,1), +(3057,'Hamgyongnam-do','HAN',1114,1), +(3058,'Hwanghaebuk-do','HWB',1114,1), +(3059,'Hwanghaenam-do','HWN',1114,1), +(3060,'Kangwon-do','KAN',1114,1), +(3061,'Pyonganbuk-do','PYB',1114,1), +(3062,'Pyongannam-do','PYN',1114,1), +(3063,'Yanggang-do','YAN',1114,1), +(3064,'Najin Sonbong-si','NAJ',1114,1), +(3065,'Seoul Teugbyeolsi','11',1115,1), +(3066,'Busan Gwang\'yeogsi','26',1115,1), +(3067,'Daegu Gwang\'yeogsi','27',1115,1), +(3068,'Daejeon Gwang\'yeogsi','30',1115,1), +(3069,'Gwangju Gwang\'yeogsi','29',1115,1), +(3070,'Incheon Gwang\'yeogsi','28',1115,1), +(3071,'Ulsan Gwang\'yeogsi','31',1115,1), +(3072,'Chungcheongbugdo','43',1115,1), +(3073,'Chungcheongnamdo','44',1115,1), +(3074,'Gang\'weondo','42',1115,1), +(3075,'Gyeonggido','41',1115,1), +(3076,'Gyeongsangbugdo','47',1115,1), +(3077,'Gyeongsangnamdo','48',1115,1), +(3078,'Jejudo','49',1115,1), +(3079,'Jeonrabugdo','45',1115,1), +(3080,'Jeonranamdo','46',1115,1), +(3081,'Sejong','50',1115,1), +(3082,'Al Ahmadi','AH',1116,1), +(3083,'Al Farwanlyah','FA',1116,1), +(3084,'Al Jahrah','JA',1116,1), +(3085,'Al Kuwayt','KU',1116,1), +(3086,'Hawalli','HA',1116,1), +(3087,'Almaty','ALA',1111,1), +(3088,'Astana','AST',1111,1), +(3089,'Almaty oblysy','ALM',1111,1), +(3090,'Aqmola oblysy','AKM',1111,1), +(3091,'Aqtobe oblysy','AKT',1111,1), +(3092,'Atyrau oblyfiy','ATY',1111,1), +(3093,'Batys Quzaqstan oblysy','ZAP',1111,1), +(3094,'Mangghystau oblysy','MAN',1111,1), +(3095,'Ongtustik Quzaqstan oblysy','YUZ',1111,1), +(3096,'Pavlodar oblysy','PAV',1111,1), +(3097,'Qaraghandy oblysy','KAR',1111,1), +(3098,'Qostanay oblysy','KUS',1111,1), +(3099,'Qyzylorda oblysy','KZY',1111,1), +(3100,'Shyghys Quzaqstan oblysy','VOS',1111,1), +(3101,'Soltustik Quzaqstan oblysy','SEV',1111,1), +(3102,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111,1), +(3103,'Vientiane','VT',1118,1), +(3104,'Attapu','AT',1118,1), +(3105,'Bokeo','BK',1118,1), +(3106,'Bolikhamxai','BL',1118,1), +(3107,'Champasak','CH',1118,1), +(3108,'Houaphan','HO',1118,1), +(3109,'Khammouan','KH',1118,1), +(3110,'Louang Namtha','LM',1118,1), +(3111,'Louangphabang','LP',1118,1), +(3112,'Oudomxai','OU',1118,1), +(3113,'Phongsali','PH',1118,1), +(3114,'Salavan','SL',1118,1), +(3115,'Savannakhet','SV',1118,1), +(3116,'Xaignabouli','XA',1118,1), +(3117,'Xiasomboun','XN',1118,1), +(3118,'Xekong','XE',1118,1), +(3119,'Xiangkhoang','XI',1118,1), +(3120,'Beirut','BA',1120,1), +(3121,'Beqaa','BI',1120,1), +(3122,'Mount Lebanon','JL',1120,1), +(3123,'North Lebanon','AS',1120,1), +(3124,'South Lebanon','JA',1120,1), +(3125,'Nabatieh','NA',1120,1), +(3126,'Ampara','52',1199,1), +(3127,'Anuradhapura','71',1199,1), +(3128,'Badulla','81',1199,1), +(3129,'Batticaloa','51',1199,1), +(3130,'Colombo','11',1199,1), +(3131,'Galle','31',1199,1), +(3132,'Gampaha','12',1199,1), +(3133,'Hambantota','33',1199,1), +(3134,'Jaffna','41',1199,1), +(3135,'Kalutara','13',1199,1), +(3136,'Kandy','21',1199,1), +(3137,'Kegalla','92',1199,1), +(3138,'Kilinochchi','42',1199,1), +(3139,'Kurunegala','61',1199,1), +(3140,'Mannar','43',1199,1), +(3141,'Matale','22',1199,1), +(3142,'Matara','32',1199,1), +(3143,'Monaragala','82',1199,1), +(3144,'Mullaittivu','45',1199,1), +(3145,'Nuwara Eliya','23',1199,1), +(3146,'Polonnaruwa','72',1199,1), +(3147,'Puttalum','62',1199,1), +(3148,'Ratnapura','91',1199,1), +(3149,'Trincomalee','53',1199,1), +(3150,'VavunLya','44',1199,1), +(3151,'Bomi','BM',1122,1), +(3152,'Bong','BG',1122,1), +(3153,'Grand Basaa','GB',1122,1), +(3154,'Grand Cape Mount','CM',1122,1), +(3155,'Grand Gedeh','GG',1122,1), +(3156,'Grand Kru','GK',1122,1), +(3157,'Lofa','LO',1122,1), +(3158,'Margibi','MG',1122,1), +(3159,'Maryland','MY',1122,1), +(3160,'Montserrado','MO',1122,1), +(3161,'Nimba','NI',1122,1), +(3162,'Rivercess','RI',1122,1), +(3163,'Sinoe','SI',1122,1), +(3164,'Berea','D',1121,1), +(3165,'Butha-Buthe','B',1121,1), +(3166,'Leribe','C',1121,1), +(3167,'Mafeteng','E',1121,1), +(3168,'Maseru','A',1121,1), +(3169,'Mohale\'s Hoek','F',1121,1), +(3170,'Mokhotlong','J',1121,1), +(3171,'Qacha\'s Nek','H',1121,1), +(3172,'Quthing','G',1121,1), +(3173,'Thaba-Tseka','K',1121,1), +(3174,'Alytaus Apskritis','AL',1125,1), +(3175,'Kauno Apskritis','KU',1125,1), +(3176,'Klaipėdos Apskritis','KL',1125,1), +(3177,'Marijampolės Apskritis','MR',1125,1), +(3178,'Panevėžio Apskritis','PN',1125,1), +(3179,'Šiaulių Apskritis','SA',1125,1), +(3180,'Tauragės Apskritis','TA',1125,1), +(3181,'Telšių Apskritis','TE',1125,1), +(3182,'Utenos Apskritis','UT',1125,1), +(3183,'Vilniaus Apskritis','VL',1125,1), +(3184,'Luxembourg','LU',1126,1), +(3185,'Diekirch','DI',1126,1), +(3186,'Grevenmacher','GR',1126,1), +(3187,'Capellen','CA',1126,1), +(3188,'Clervaux','CL',1126,1), +(3189,'Echternach','EC',1126,1), +(3190,'Esch-sur-Alzette','ES',1126,1), +(3191,'Mersch','ME',1126,1), +(3192,'Redange-sur-Attert','RD',1126,1), +(3193,'Remich','RM',1126,1), +(3194,'Vianden','VD',1126,1), +(3195,'Wiltz','WI',1126,1), +(3196,'Daugavpils','DGV',1119,1), +(3197,'Jelgava','JEL',1119,1), +(3198,'Jūrmala','JUR',1119,1), +(3199,'Liepāja','LPX',1119,1), +(3200,'Rēzekne','REZ',1119,1), +(3201,'Rīga','RIX',1119,1), +(3202,'Ventspils','VEN',1119,1), +(3203,'Aizkraukles novads','002',1119,1), +(3204,'Jaunjelgavas novads','038',1119,1), +(3205,'Pļaviņu novads','072',1119,1), +(3206,'Kokneses novads','046',1119,1), +(3207,'Neretas novads','065',1119,1), +(3208,'Skrīveru novads','092',1119,1), +(3209,'Alūksnes novads','007',1119,1), +(3210,'Apes novads','009',1119,1), +(3211,'Balvu novads','015',1119,1), +(3212,'Viļakas novads','108',1119,1), +(3213,'Baltinavas novads','014',1119,1), +(3214,'Rugāju novads','082',1119,1), +(3215,'Bauskas novads','016',1119,1), +(3216,'Iecavas novads','034',1119,1), +(3217,'Rundāles novads','083',1119,1), +(3218,'Vecumnieku novads','105',1119,1), +(3219,'Cēsu novads','022',1119,1), +(3220,'Līgatnes novads','055',1119,1), +(3221,'Amatas novads','008',1119,1), +(3222,'Jaunpiebalgas novads','039',1119,1), +(3223,'Priekuļu novads','075',1119,1), +(3224,'Pārgaujas novads','070',1119,1), +(3225,'Raunas novads','076',1119,1), +(3226,'Vecpiebalgas novads','104',1119,1), +(3227,'Daugavpils novads','025',1119,1), +(3228,'Ilūkstes novads','036',1119,1), +(3229,'Dobeles novads','026',1119,1), +(3230,'Auces novads','010',1119,1), +(3231,'Tērvetes novads','098',1119,1), +(3232,'Gulbenes novads','033',1119,1), +(3233,'Jelgavas novads','041',1119,1), +(3234,'Ozolnieku novads','069',1119,1), +(3235,'Jēkabpils novads','042',1119,1), +(3236,'Aknīstes novads','004',1119,1), +(3237,'Viesītes novads','107',1119,1), +(3238,'Krustpils novads','049',1119,1), +(3239,'Salas novads','085',1119,1), +(3240,'Krāslavas novads','047',1119,1), +(3241,'Dagdas novads','024',1119,1), +(3242,'Aglonas novads','001',1119,1), +(3243,'Kuldīgas novads','050',1119,1), +(3244,'Skrundas novads','093',1119,1), +(3245,'Alsungas novads','006',1119,1), +(3246,'Aizputes novads','003',1119,1), +(3247,'Durbes novads','028',1119,1), +(3248,'Grobiņas novads','032',1119,1), +(3249,'Pāvilostas novads','071',1119,1), +(3250,'Priekules novads','074',1119,1), +(3251,'Nīcas novads','066',1119,1), +(3252,'Rucavas novads','081',1119,1), +(3253,'Vaiņodes novads','100',1119,1), +(3254,'Limbažu novads','054',1119,1), +(3255,'Alojas novads','005',1119,1), +(3256,'Salacgrīvas novads','086',1119,1), +(3257,'Ludzas novads','058',1119,1), +(3258,'Kārsavas novads','044',1119,1), +(3259,'Zilupes novads','110',1119,1), +(3260,'Ciblas novads','023',1119,1), +(3261,'Madonas novads','059',1119,1), +(3262,'Cesvaines novads','021',1119,1), +(3263,'Lubānas novads','057',1119,1), +(3264,'Varakļānu novads','102',1119,1), +(3265,'Ērgļu novads','030',1119,1), +(3266,'Ogres novads','067',1119,1), +(3267,'Ikšķiles novads','035',1119,1), +(3268,'Ķeguma novads','051',1119,1), +(3269,'Lielvārdes novads','053',1119,1), +(3270,'Preiļu novads','073',1119,1), +(3271,'Līvānu novads','056',1119,1), +(3272,'Riebiņu novads','078',1119,1), +(3273,'Vārkavas novads','103',1119,1), +(3274,'Rēzeknes novads','077',1119,1), +(3275,'Viļānu novads','109',1119,1), +(3276,'Baldones novads','013',1119,1), +(3277,'Ķekavas novads','052',1119,1), +(3278,'Olaines novads','068',1119,1), +(3279,'Salaspils novads','087',1119,1), +(3280,'Saulkrastu novads','089',1119,1), +(3281,'Siguldas novads','091',1119,1), +(3282,'Inčukalna novads','037',1119,1), +(3283,'Ādažu novads','011',1119,1), +(3284,'Babītes novads','012',1119,1), +(3285,'Carnikavas novads','020',1119,1), +(3286,'Garkalnes novads','031',1119,1), +(3287,'Krimuldas novads','048',1119,1), +(3288,'Mālpils novads','061',1119,1), +(3289,'Mārupes novads','062',1119,1), +(3290,'Ropažu novads','080',1119,1), +(3291,'Sējas novads','090',1119,1), +(3292,'Stopiņu novads','095',1119,1), +(3293,'Saldus novads','088',1119,1), +(3294,'Brocēnu novads','018',1119,1), +(3295,'Talsu novads','097',1119,1), +(3296,'Dundagas novads','027',1119,1), +(3297,'Mērsraga novads','063',1119,1), +(3298,'Rojas novads','079',1119,1), +(3299,'Tukuma novads','099',1119,1), +(3300,'Kandavas novads','043',1119,1), +(3301,'Engures novads','029',1119,1), +(3302,'Jaunpils novads','040',1119,1), +(3303,'Valkas novads','101',1119,1), +(3304,'Smiltenes novads','094',1119,1), +(3305,'Strenču novads','096',1119,1), +(3306,'Kocēnu novads','045',1119,1), +(3307,'Mazsalacas novads','060',1119,1), +(3308,'Rūjienas novads','084',1119,1), +(3309,'Beverīnas novads','017',1119,1), +(3310,'Burtnieku novads','019',1119,1), +(3311,'Naukšēnu novads','064',1119,1), +(3312,'Ventspils novads','106',1119,1), +(3313,'Jēkabpils','JKB',1119,1), +(3314,'Valmiera','VMR',1119,1), +(3315,'Ajdābiyā','AJ',1123,1), +(3316,'Al Buţnān','BU',1123,1), +(3317,'Al Hizām al Akhdar','HZ',1123,1), +(3318,'Al Jabal al Akhdar','JA',1123,1), +(3319,'Al Jifārah','JI',1123,1), +(3320,'Al Jufrah','JU',1123,1), +(3321,'Al Kufrah','KF',1123,1), +(3322,'Al Marj','MJ',1123,1), +(3323,'Al Marqab','MB',1123,1), +(3324,'Al Qaţrūn','QT',1123,1), +(3325,'Al Qubbah','QB',1123,1), +(3326,'Al Wāhah','WA',1123,1), +(3327,'An Nuqaţ al Khams','NQ',1123,1), +(3328,'Ash Shāţi\'','SH',1123,1), +(3329,'Az Zāwiyah','ZA',1123,1), +(3330,'Banghāzī','BA',1123,1), +(3331,'Banī Walīd','BW',1123,1), +(3332,'Darnah','DR',1123,1), +(3333,'Ghadāmis','GD',1123,1), +(3334,'Gharyān','GR',1123,1), +(3335,'Ghāt','GT',1123,1), +(3336,'Jaghbūb','JB',1123,1), +(3337,'Mişrātah','MI',1123,1), +(3338,'Mizdah','MZ',1123,1), +(3339,'Murzuq','MQ',1123,1), +(3340,'Nālūt','NL',1123,1), +(3341,'Sabhā','SB',1123,1), +(3342,'Şabrātah Şurmān','SS',1123,1), +(3343,'Surt','SR',1123,1), +(3344,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123,1), +(3345,'Ţarābulus','TB',1123,1), +(3346,'Tarhūnah-Masallātah','TM',1123,1), +(3347,'Wādī al hayāt','WD',1123,1), +(3348,'Yafran-Jādū','YJ',1123,1), +(3349,'Agadir','AGD',1146,1), +(3350,'Aït Baha','BAH',1146,1), +(3351,'Aït Melloul','MEL',1146,1), +(3352,'Al Haouz','HAO',1146,1), +(3353,'Al Hoceïma','HOC',1146,1), +(3354,'Assa-Zag','ASZ',1146,1), +(3355,'Azilal','AZI',1146,1), +(3356,'Beni Mellal','BEM',1146,1), +(3357,'Ben Sllmane','BES',1146,1), +(3358,'Berkane','BER',1146,1), +(3359,'Boujdour','BOD',1146,1), +(3360,'Boulemane','BOM',1146,1), +(3361,'Casablanca [Dar el Beïda]','CAS',1146,1), +(3362,'Chefchaouene','CHE',1146,1), +(3363,'Chichaoua','CHI',1146,1), +(3364,'El Hajeb','HAJ',1146,1), +(3365,'El Jadida','JDI',1146,1), +(3366,'Errachidia','ERR',1146,1), +(3367,'Essaouira','ESI',1146,1), +(3368,'Es Smara','ESM',1146,1), +(3369,'Fès','FES',1146,1), +(3370,'Figuig','FIG',1146,1), +(3371,'Guelmim','GUE',1146,1), +(3372,'Ifrane','IFR',1146,1), +(3373,'Jerada','JRA',1146,1), +(3374,'Kelaat Sraghna','KES',1146,1), +(3375,'Kénitra','KEN',1146,1), +(3376,'Khemisaet','KHE',1146,1), +(3377,'Khenifra','KHN',1146,1), +(3378,'Khouribga','KHO',1146,1), +(3379,'Laâyoune (EH)','LAA',1146,1), +(3380,'Larache','LAP',1146,1), +(3381,'Marrakech','MAR',1146,1), +(3382,'Meknsès','MEK',1146,1), +(3383,'Nador','NAD',1146,1), +(3384,'Ouarzazate','OUA',1146,1), +(3385,'Oued ed Dahab (EH)','OUD',1146,1), +(3386,'Oujda','OUJ',1146,1), +(3387,'Rabat-Salé','RBA',1146,1), +(3388,'Safi','SAF',1146,1), +(3389,'Sefrou','SEF',1146,1), +(3390,'Settat','SET',1146,1), +(3391,'Sidl Kacem','SIK',1146,1), +(3392,'Tanger','TNG',1146,1), +(3393,'Tan-Tan','TNT',1146,1), +(3394,'Taounate','TAO',1146,1), +(3395,'Taroudannt','TAR',1146,1), +(3396,'Tata','TAT',1146,1), +(3397,'Taza','TAZ',1146,1), +(3398,'Tétouan','TET',1146,1), +(3399,'Tiznit','TIZ',1146,1), +(3400,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142,1), +(3401,'Chisinau','CU',1142,1), +(3402,'Stinga Nistrului, unitatea teritoriala din','SN',1142,1), +(3403,'Balti','BA',1142,1), +(3404,'Cahul','CA',1142,1), +(3405,'Edinet','ED',1142,1), +(3406,'Lapusna','LA',1142,1), +(3407,'Orhei','OR',1142,1), +(3408,'Soroca','SO',1142,1), +(3409,'Taraclia','TA',1142,1), +(3410,'Tighina [Bender]','TI',1142,1), +(3411,'Ungheni','UN',1142,1), +(3412,'Antananarivo','T',1129,1), +(3413,'Antsiranana','D',1129,1), +(3414,'Fianarantsoa','F',1129,1), +(3415,'Mahajanga','M',1129,1), +(3416,'Toamasina','A',1129,1), +(3417,'Toliara','U',1129,1), +(3418,'Ailinglapalap','ALL',1135,1), +(3419,'Ailuk','ALK',1135,1), +(3420,'Arno','ARN',1135,1), +(3421,'Aur','AUR',1135,1), +(3422,'Ebon','EBO',1135,1), +(3423,'Eniwetok','ENI',1135,1), +(3424,'Jaluit','JAL',1135,1), +(3425,'Kili','KIL',1135,1), +(3426,'Kwajalein','KWA',1135,1), +(3427,'Lae','LAE',1135,1), +(3428,'Lib','LIB',1135,1), +(3429,'Likiep','LIK',1135,1), +(3430,'Majuro','MAJ',1135,1), +(3431,'Maloelap','MAL',1135,1), +(3432,'Mejit','MEJ',1135,1), +(3433,'Mili','MIL',1135,1), +(3434,'Namorik','NMK',1135,1), +(3435,'Namu','NMU',1135,1), +(3436,'Rongelap','RON',1135,1), +(3437,'Ujae','UJA',1135,1), +(3438,'Ujelang','UJL',1135,1), +(3439,'Utirik','UTI',1135,1), +(3440,'Wotho','WTN',1135,1), +(3441,'Wotje','WTJ',1135,1), +(3442,'Bamako','BK0',1133,1), +(3443,'Gao','7',1133,1), +(3444,'Kayes','1',1133,1), +(3445,'Kidal','8',1133,1), +(3446,'Xoulikoro','2',1133,1), +(3447,'Mopti','5',1133,1), +(3448,'S69ou','4',1133,1), +(3449,'Sikasso','3',1133,1), +(3450,'Tombouctou','6',1133,1), +(3451,'Ayeyarwady','07',1035,1), +(3452,'Bago','02',1035,1), +(3453,'Magway','03',1035,1), +(3454,'Mandalay','04',1035,1), +(3455,'Sagaing','01',1035,1), +(3456,'Tanintharyi','05',1035,1), +(3457,'Yangon','06',1035,1), +(3458,'Chin','14',1035,1), +(3459,'Kachin','11',1035,1), +(3460,'Kayah','12',1035,1), +(3461,'Kayin','13',1035,1), +(3462,'Mon','15',1035,1), +(3463,'Rakhine','16',1035,1), +(3464,'Shan','17',1035,1), +(3465,'Ulaanbaatar','1',1144,1), +(3466,'Arhangay','073',1144,1), +(3467,'Bayanhongor','069',1144,1), +(3468,'Bayan-Olgiy','071',1144,1), +(3469,'Bulgan','067',1144,1), +(3470,'Darhan uul','037',1144,1), +(3471,'Dornod','061',1144,1), +(3472,'Dornogov,','063',1144,1), +(3473,'DundgovL','059',1144,1), +(3474,'Dzavhan','057',1144,1), +(3475,'Govi-Altay','065',1144,1), +(3476,'Govi-Smber','064',1144,1), +(3477,'Hentiy','039',1144,1), +(3478,'Hovd','043',1144,1), +(3479,'Hovsgol','041',1144,1), +(3480,'Omnogovi','053',1144,1), +(3481,'Orhon','035',1144,1), +(3482,'Ovorhangay','055',1144,1), +(3483,'Selenge','049',1144,1), +(3484,'Shbaatar','051',1144,1), +(3485,'Tov','047',1144,1), +(3486,'Uvs','046',1144,1), +(3487,'Nouakchott','NKC',1137,1), +(3488,'Assaba','03',1137,1), +(3489,'Brakna','05',1137,1), +(3490,'Dakhlet Nouadhibou','08',1137,1), +(3491,'Gorgol','04',1137,1), +(3492,'Guidimaka','10',1137,1), +(3493,'Hodh ech Chargui','01',1137,1), +(3494,'Hodh el Charbi','02',1137,1), +(3495,'Inchiri','12',1137,1), +(3496,'Tagant','09',1137,1), +(3497,'Tiris Zemmour','11',1137,1), +(3498,'Trarza','06',1137,1), +(3499,'Beau Bassin-Rose Hill','BR',1138,1), +(3500,'Curepipe','CU',1138,1), +(3501,'Port Louis','PU',1138,1), +(3502,'Quatre Bornes','QB',1138,1), +(3503,'Vacosa-Phoenix','VP',1138,1), +(3504,'Black River','BL',1138,1), +(3505,'Flacq','FL',1138,1), +(3506,'Grand Port','GP',1138,1), +(3507,'Moka','MO',1138,1), +(3508,'Pamplemousses','PA',1138,1), +(3509,'Plaines Wilhems','PW',1138,1), +(3510,'Riviere du Rempart','RP',1138,1), +(3511,'Savanne','SA',1138,1), +(3512,'Agalega Islands','AG',1138,1), +(3513,'Cargados Carajos Shoals','CC',1138,1), +(3514,'Rodrigues Island','RO',1138,1), +(3515,'Male','MLE',1132,1), +(3516,'Alif','02',1132,1), +(3517,'Baa','20',1132,1), +(3518,'Dhaalu','17',1132,1), +(3519,'Faafu','14',1132,1), +(3520,'Gaaf Alif','27',1132,1), +(3521,'Gaefu Dhaalu','28',1132,1), +(3522,'Gnaviyani','29',1132,1), +(3523,'Haa Alif','07',1132,1), +(3524,'Haa Dhaalu','23',1132,1), +(3525,'Kaafu','26',1132,1), +(3526,'Laamu','05',1132,1), +(3527,'Lhaviyani','03',1132,1), +(3528,'Meemu','12',1132,1), +(3529,'Noonu','25',1132,1), +(3530,'Raa','13',1132,1), +(3531,'Seenu','01',1132,1), +(3532,'Shaviyani','24',1132,1), +(3533,'Thaa','08',1132,1), +(3534,'Vaavu','04',1132,1), +(3535,'Balaka','BA',1130,1), +(3536,'Blantyre','BL',1130,1), +(3537,'Chikwawa','CK',1130,1), +(3538,'Chiradzulu','CR',1130,1), +(3539,'Chitipa','CT',1130,1), +(3540,'Dedza','DE',1130,1), +(3541,'Dowa','DO',1130,1), +(3542,'Karonga','KR',1130,1), +(3543,'Kasungu','KS',1130,1), +(3544,'Likoma Island','LK',1130,1), +(3545,'Lilongwe','LI',1130,1), +(3546,'Machinga','MH',1130,1), +(3547,'Mangochi','MG',1130,1), +(3548,'Mchinji','MC',1130,1), +(3549,'Mulanje','MU',1130,1), +(3550,'Mwanza','MW',1130,1), +(3551,'Mzimba','MZ',1130,1), +(3552,'Nkhata Bay','NB',1130,1), +(3553,'Nkhotakota','NK',1130,1), +(3554,'Nsanje','NS',1130,1), +(3555,'Ntcheu','NU',1130,1), +(3556,'Ntchisi','NI',1130,1), +(3557,'Phalomba','PH',1130,1), +(3558,'Rumphi','RU',1130,1), +(3559,'Salima','SA',1130,1), +(3560,'Thyolo','TH',1130,1), +(3561,'Zomba','ZO',1130,1), +(3562,'Aguascalientes','AGU',1140,1), +(3563,'Baja California','BCN',1140,1), +(3564,'Baja California Sur','BCS',1140,1), +(3565,'Campeche','CAM',1140,1), +(3566,'Coahuila','COA',1140,1), +(3567,'Colima','COL',1140,1), +(3568,'Chiapas','CHP',1140,1), +(3569,'Chihuahua','CHH',1140,1), +(3570,'Durango','DUR',1140,1), +(3571,'Guanajuato','GUA',1140,1), +(3572,'Guerrero','GRO',1140,1), +(3573,'Hidalgo','HID',1140,1), +(3574,'Jalisco','JAL',1140,1), +(3575,'Mexico','MEX',1140,1), +(3576,'Michoacin','MIC',1140,1), +(3577,'Morelos','MOR',1140,1), +(3578,'Nayarit','NAY',1140,1), +(3579,'Nuevo Leon','NLE',1140,1), +(3580,'Oaxaca','OAX',1140,1), +(3581,'Puebla','PUE',1140,1), +(3582,'Queretaro','QUE',1140,1), +(3583,'Quintana Roo','ROO',1140,1), +(3584,'San Luis Potosi','SLP',1140,1), +(3585,'Sinaloa','SIN',1140,1), +(3586,'Sonora','SON',1140,1), +(3587,'Tabasco','TAB',1140,1), +(3588,'Tamaulipas','TAM',1140,1), +(3589,'Tlaxcala','TLA',1140,1), +(3590,'Veracruz','VER',1140,1), +(3591,'Yucatan','YUC',1140,1), +(3592,'Zacatecas','ZAC',1140,1), +(3593,'Distrito Federal','DIF',1140,1), +(3594,'Wilayah Persekutuan Kuala Lumpur','14',1131,1), +(3595,'Wilayah Persekutuan Labuan','15',1131,1), +(3596,'Wilayah Persekutuan Putrajaya','16',1131,1), +(3597,'Johor','01',1131,1), +(3598,'Kedah','02',1131,1), +(3599,'Kelantan','03',1131,1), +(3600,'Melaka','04',1131,1), +(3601,'Negeri Sembilan','05',1131,1), +(3602,'Pahang','06',1131,1), +(3603,'Perak','08',1131,1), +(3604,'Perlis','09',1131,1), +(3605,'Pulau Pinang','07',1131,1), +(3606,'Sabah','12',1131,1), +(3607,'Sarawak','13',1131,1), +(3608,'Selangor','10',1131,1), +(3609,'Terengganu','11',1131,1), +(3610,'Maputo','MPM',1147,1), +(3611,'Cabo Delgado','P',1147,1), +(3612,'Gaza','G',1147,1), +(3613,'Inhambane','I',1147,1), +(3614,'Manica','B',1147,1), +(3615,'Numpula','N',1147,1), +(3616,'Niaaea','A',1147,1), +(3617,'Sofala','S',1147,1), +(3618,'Tete','T',1147,1), +(3619,'Zambezia','Q',1147,1), +(3620,'Caprivi','CA',1148,1), +(3621,'Erongo','ER',1148,1), +(3622,'Hardap','HA',1148,1), +(3623,'Karas','KA',1148,1), +(3624,'Khomas','KH',1148,1), +(3625,'Kunene','KU',1148,1), +(3626,'Ohangwena','OW',1148,1), +(3627,'Okavango','OK',1148,1), +(3628,'Omaheke','OH',1148,1), +(3629,'Omusati','OS',1148,1), +(3630,'Oshana','ON',1148,1), +(3631,'Oshikoto','OT',1148,1), +(3632,'Otjozondjupa','OD',1148,1), +(3633,'Niamey','8',1156,1), +(3634,'Agadez','1',1156,1), +(3635,'Diffa','2',1156,1), +(3636,'Dosso','3',1156,1), +(3637,'Maradi','4',1156,1), +(3638,'Tahoua','S',1156,1), +(3639,'Tillaberi','6',1156,1), +(3640,'Zinder','7',1156,1), +(3641,'Abuja Federal Capital Territory','FC',1157,1), +(3642,'Abia','AB',1157,1), +(3643,'Adamawa','AD',1157,1), +(3644,'Akwa Ibom','AK',1157,1), +(3645,'Anambra','AN',1157,1), +(3646,'Bauchi','BA',1157,1), +(3647,'Bayelsa','BY',1157,1), +(3648,'Benue','BE',1157,1), +(3649,'Borno','BO',1157,1), +(3650,'Cross River','CR',1157,1), +(3651,'Delta','DE',1157,1), +(3652,'Ebonyi','EB',1157,1), +(3653,'Edo','ED',1157,1), +(3654,'Ekiti','EK',1157,1), +(3655,'Enugu','EN',1157,1), +(3656,'Gombe','GO',1157,1), +(3657,'Imo','IM',1157,1), +(3658,'Jigawa','JI',1157,1), +(3659,'Kaduna','KD',1157,1), +(3660,'Kano','KN',1157,1), +(3661,'Katsina','KT',1157,1), +(3662,'Kebbi','KE',1157,1), +(3663,'Kogi','KO',1157,1), +(3664,'Kwara','KW',1157,1), +(3665,'Lagos','LA',1157,1), +(3666,'Nassarawa','NA',1157,1), +(3667,'Niger','NI',1157,1), +(3668,'Ogun','OG',1157,1), +(3669,'Ondo','ON',1157,1), +(3670,'Osun','OS',1157,1), +(3671,'Oyo','OY',1157,1), +(3672,'Rivers','RI',1157,1), +(3673,'Sokoto','SO',1157,1), +(3674,'Taraba','TA',1157,1), +(3675,'Yobe','YO',1157,1), +(3676,'Zamfara','ZA',1157,1), +(3677,'Plateau','PL',1157,1), +(3678,'Boaco','BO',1155,1), +(3679,'Carazo','CA',1155,1), +(3680,'Chinandega','CI',1155,1), +(3681,'Chontales','CO',1155,1), +(3682,'Esteli','ES',1155,1), +(3683,'Jinotega','JI',1155,1), +(3684,'Leon','LE',1155,1), +(3685,'Madriz','MD',1155,1), +(3686,'Managua','MN',1155,1), +(3687,'Masaya','MS',1155,1), +(3688,'Matagalpa','MT',1155,1), +(3689,'Nueva Segovia','NS',1155,1), +(3690,'Rio San Juan','SJ',1155,1), +(3691,'Rivas','RI',1155,1), +(3692,'Atlantico Norte','AN',1155,1), +(3693,'Atlantico Sur','AS',1155,1), +(3694,'Drente','DR',1152,1), +(3695,'Flevoland','FL',1152,1), +(3696,'Friesland','FR',1152,1), +(3697,'Gelderland','GL',1152,1), +(3698,'Groningen','GR',1152,1), +(3699,'Noord-Brabant','NB',1152,1), +(3700,'Noord-Holland','NH',1152,1), +(3701,'Overijssel','OV',1152,1), +(3702,'Utrecht','UT',1152,1), +(3703,'Zuid-Holland','ZH',1152,1), +(3704,'Zeeland','ZL',1152,1), +(3705,'Akershus','02',1161,1), +(3706,'Aust-Agder','09',1161,1), +(3707,'Buskerud','06',1161,1), +(3708,'Finnmark','20',1161,1), +(3709,'Hedmark','04',1161,1), +(3710,'Møre og Romsdal','15',1161,1), +(3711,'Nordland','18',1161,1), +(3712,'Nord-Trøndelag','17',1161,1), +(3713,'Oppland','05',1161,1), +(3714,'Oslo','03',1161,1), +(3715,'Rogaland','11',1161,1), +(3716,'Sør-Trøndelag','16',1161,1), +(3717,'Telemark','06',1161,1), +(3718,'Troms','19',1161,1), +(3719,'Vest-Agder','10',1161,1), +(3720,'Vestfold','07',1161,1), +(3721,'Vestland','46',1161,1), +(3722,'Østfold','01',1161,1), +(3723,'Jan Mayen','22',1161,1), +(3724,'Svalbard','21',1161,1), +(3725,'Auckland','AUK',1154,1), +(3726,'Bay of Plenty','BOP',1154,1), +(3727,'Canterbury','CAN',1154,1), +(3728,'Gisborne','GIS',1154,1), +(3729,'Hawkes Bay','HKB',1154,1), +(3730,'Manawatu-Wanganui','MWT',1154,1), +(3731,'Marlborough','MBH',1154,1), +(3732,'Nelson','NSN',1154,1), +(3733,'Northland','NTL',1154,1), +(3734,'Otago','OTA',1154,1), +(3735,'Southland','STL',1154,1), +(3736,'Taranaki','TKI',1154,1), +(3737,'Tasman','TAS',1154,1), +(3738,'Waikato','WKO',1154,1), +(3739,'Wellington','WGN',1154,1), +(3740,'West Coast','WTC',1154,1), +(3741,'Ad Dakhillyah','DA',1162,1), +(3742,'Al Batinah','BA',1162,1), +(3743,'Al Janblyah','JA',1162,1), +(3744,'Al Wusta','WU',1162,1), +(3745,'Ash Sharqlyah','SH',1162,1), +(3746,'Az Zahirah','ZA',1162,1), +(3747,'Masqat','MA',1162,1), +(3748,'Musandam','MU',1162,1), +(3749,'Jenin','_A',1165,1), +(3750,'Tubas','_B',1165,1), +(3751,'Tulkarm','_C',1165,1), +(3752,'Nablus','_D',1165,1), +(3753,'Qalqilya','_E',1165,1), +(3754,'Salfit','_F',1165,1), +(3755,'Ramallah and Al-Bireh','_G',1165,1), +(3756,'Jericho','_H',1165,1), +(3757,'Jerusalem','_I',1165,1), +(3758,'Bethlehem','_J',1165,1), +(3759,'Hebron','_K',1165,1), +(3760,'North Gaza','_L',1165,1), +(3761,'Gaza','_M',1165,1), +(3762,'Deir el-Balah','_N',1165,1), +(3763,'Khan Yunis','_O',1165,1), +(3764,'Rafah','_P',1165,1), +(3765,'Bocas del Toro','1',1166,1), +(3766,'Cocle','2',1166,1), +(3767,'Chiriqui','4',1166,1), +(3768,'Darien','5',1166,1), +(3769,'Herrera','6',1166,1), +(3770,'Loa Santoa','7',1166,1), +(3771,'Panama','8',1166,1), +(3772,'Veraguas','9',1166,1), +(3773,'Comarca de San Blas','Q',1166,1), +(3774,'El Callao','CAL',1169,1), +(3775,'Ancash','ANC',1169,1), +(3776,'Apurimac','APU',1169,1), +(3777,'Arequipa','ARE',1169,1), +(3778,'Ayacucho','AYA',1169,1), +(3779,'Cajamarca','CAJ',1169,1), +(3780,'Cuzco','CUS',1169,1), +(3781,'Huancavelica','HUV',1169,1), +(3782,'Huanuco','HUC',1169,1), +(3783,'Ica','ICA',1169,1), +(3784,'Junin','JUN',1169,1), +(3785,'La Libertad','LAL',1169,1), +(3786,'Lambayeque','LAM',1169,1), +(3787,'Lima','LIM',1169,1), +(3788,'Loreto','LOR',1169,1), +(3789,'Madre de Dios','MDD',1169,1), +(3790,'Moquegua','MOQ',1169,1), +(3791,'Pasco','PAS',1169,1), +(3792,'Piura','PIU',1169,1), +(3793,'Puno','PUN',1169,1), +(3794,'San Martin','SAM',1169,1), +(3795,'Tacna','TAC',1169,1), +(3796,'Tumbes','TUM',1169,1), +(3797,'Ucayali','UCA',1169,1), +(3798,'Amazonas','AMA',1169,1), +(3799,'National Capital District (Port Moresby)','NCD',1167,1), +(3800,'Chimbu','CPK',1167,1), +(3801,'Eastern Highlands','EHG',1167,1), +(3802,'East New Britain','EBR',1167,1), +(3803,'East Sepik','ESW',1167,1), +(3804,'Enga','EPW',1167,1), +(3805,'Gulf','GPK',1167,1), +(3806,'Madang','MPM',1167,1), +(3807,'Manus','MRL',1167,1), +(3808,'Milne Bay','MBA',1167,1), +(3809,'Morobe','MPL',1167,1), +(3810,'New Ireland','NIK',1167,1), +(3811,'North Solomons','NSA',1167,1), +(3812,'Santaun','SAN',1167,1), +(3813,'Southern Highlands','SHM',1167,1), +(3814,'Western Highlands','WHM',1167,1), +(3815,'West New Britain','WBK',1167,1), +(3816,'Abra','ABR',1170,1), +(3817,'Agusan del Norte','AGN',1170,1), +(3818,'Agusan del Sur','AGS',1170,1), +(3819,'Aklan','AKL',1170,1), +(3820,'Albay','ALB',1170,1), +(3821,'Antique','ANT',1170,1), +(3822,'Apayao','APA',1170,1), +(3823,'Aurora','AUR',1170,1), +(3824,'Basilan','BAS',1170,1), +(3825,'Bataan','BAN',1170,1), +(3826,'Batanes','BTN',1170,1), +(3827,'Batangas','BTG',1170,1), +(3828,'Benguet','BEN',1170,1), +(3829,'Biliran','BIL',1170,1), +(3830,'Bohol','BOH',1170,1), +(3831,'Bukidnon','BUK',1170,1), +(3832,'Bulacan','BUL',1170,1), +(3833,'Cagayan','CAG',1170,1), +(3834,'Camarines Norte','CAN',1170,1), +(3835,'Camarines Sur','CAS',1170,1), +(3836,'Camiguin','CAM',1170,1), +(3837,'Capiz','CAP',1170,1), +(3838,'Catanduanes','CAT',1170,1), +(3839,'Cavite','CAV',1170,1), +(3840,'Cebu','CEB',1170,1), +(3841,'Davao de Oro','COM',1170,1), +(3842,'Davao del Norte','DAV',1170,1), +(3843,'Davao del Sur','DAS',1170,1), +(3844,'Davao Oriental','DAO',1170,1), +(3845,'Eastern Samar','EAS',1170,1), +(3846,'Guimaras','GUI',1170,1), +(3847,'Ifugao','IFU',1170,1), +(3848,'Ilocos Norte','ILN',1170,1), +(3849,'Ilocos Sur','ILS',1170,1), +(3850,'Iloilo','ILI',1170,1), +(3851,'Isabela','ISA',1170,1), +(3852,'Kalinga','KAL',1170,1), +(3853,'Laguna','LAG',1170,1), +(3854,'Lanao del Norte','LAN',1170,1), +(3855,'Lanao del Sur','LAS',1170,1), +(3856,'La Union','LUN',1170,1), +(3857,'Leyte','LEY',1170,1), +(3858,'Maguindanao','MAG',1170,1), +(3859,'Marinduque','MAD',1170,1), +(3860,'Masbate','MAS',1170,1), +(3861,'Mindoro Occidental','MDC',1170,1), +(3862,'Mindoro Oriental','MDR',1170,1), +(3863,'Misamis Occidental','MSC',1170,1), +(3864,'Misamis Oriental','MSR',1170,1), +(3865,'Mountain Province','MOU',1170,1), +(3866,'Negroe Occidental','NEC',1170,1), +(3867,'Negros Oriental','NER',1170,1), +(3868,'Cotabato','NCO',1170,1), +(3869,'Northern Samar','NSA',1170,1), +(3870,'Nueva Ecija','NUE',1170,1), +(3871,'Nueva Vizcaya','NUV',1170,1), +(3872,'Palawan','PLW',1170,1), +(3873,'Pampanga','PAM',1170,1), +(3874,'Pangasinan','PAN',1170,1), +(3875,'Quezon','QUE',1170,1), +(3876,'Quirino','QUI',1170,1), +(3877,'Rizal','RIZ',1170,1), +(3878,'Romblon','ROM',1170,1), +(3879,'Sarangani','SAR',1170,1), +(3880,'Siquijor','SIG',1170,1), +(3881,'Sorsogon','SOR',1170,1), +(3882,'South Cotabato','SCO',1170,1), +(3883,'Southern Leyte','SLE',1170,1), +(3884,'Sultan Kudarat','SUK',1170,1), +(3885,'Sulu','SLU',1170,1), +(3886,'Surigao del Norte','SUN',1170,1), +(3887,'Surigao del Sur','SUR',1170,1), +(3888,'Tarlac','TAR',1170,1), +(3889,'Tawi-Tawi','TAW',1170,1), +(3890,'Western Samar','WSA',1170,1), +(3891,'Zambales','ZMB',1170,1), +(3892,'Zamboanga del Norte','ZAN',1170,1), +(3893,'Zamboanga del Sur','ZAS',1170,1), +(3894,'Zamboanga Sibiguey','ZSI',1170,1), +(3895,'Dinagat Islands','DIN',1170,1), +(3896,'Metropolitan Manila','MNL',1170,1), +(3897,'Islamabad Federal Capital Area','IS',1163,1), +(3898,'Baluchistan','BA',1163,1), +(3899,'Khyber Pakhtun Khawa','NW',1163,1), +(3900,'Sindh','SD',1163,1), +(3901,'Federally Administered Tribal Areas','TA',1163,1), +(3902,'Azad Kashmir','JK',1163,1), +(3903,'Gilgit-Baltistan','NA',1163,1), +(3904,'Punjab','PB',1163,1), +(3905,'Aveiro','01',1173,1), +(3906,'Beja','02',1173,1), +(3907,'Braga','03',1173,1), +(3908,'Bragança','04',1173,1), +(3909,'Castelo Branco','05',1173,1), +(3910,'Coimbra','06',1173,1), +(3911,'Évora','07',1173,1), +(3912,'Faro','08',1173,1), +(3913,'Guarda','09',1173,1), +(3914,'Leiria','10',1173,1), +(3915,'Lisboa','11',1173,1), +(3916,'Portalegre','12',1173,1), +(3917,'Porto','13',1173,1), +(3918,'Santarém','14',1173,1), +(3919,'Setúbal','15',1173,1), +(3920,'Viana do Castelo','16',1173,1), +(3921,'Vila Real','17',1173,1), +(3922,'Viseu','18',1173,1), +(3923,'Região Autónoma dos Açores','20',1173,1), +(3924,'Região Autónoma da Madeira','30',1173,1), +(3925,'Asuncion','ASU',1168,1), +(3926,'Alto Paraguay','16',1168,1), +(3927,'Alto Parana','10',1168,1), +(3928,'Amambay','13',1168,1), +(3929,'Boqueron','19',1168,1), +(3930,'Caeguazu','5',1168,1), +(3931,'Caazapl','6',1168,1), +(3932,'Canindeyu','14',1168,1), +(3933,'Concepcion','1',1168,1), +(3934,'Cordillera','3',1168,1), +(3935,'Guaira','4',1168,1), +(3936,'Itapua','7',1168,1), +(3937,'Miaiones','8',1168,1), +(3938,'Neembucu','12',1168,1), +(3939,'Paraguari','9',1168,1), +(3940,'Presidente Hayes','15',1168,1), +(3941,'San Pedro','2',1168,1), +(3942,'Ad Dawhah','DA',1175,1), +(3943,'Al Ghuwayriyah','GH',1175,1), +(3944,'Al Jumayliyah','JU',1175,1), +(3945,'Al Khawr','KH',1175,1), +(3946,'Al Wakrah','WA',1175,1), +(3947,'Ar Rayyan','RA',1175,1), +(3948,'Jariyan al Batnah','JB',1175,1), +(3949,'Madinat ash Shamal','MS',1175,1), +(3950,'Umm Salal','US',1175,1), +(3951,'Bucuresti','B',1176,1), +(3952,'Alba','AB',1176,1), +(3953,'Arad','AR',1176,1), +(3954,'Argeș','AG',1176,1), +(3955,'Bacău','BC',1176,1), +(3956,'Bihor','BH',1176,1), +(3957,'Bistrița-Năsăud','BN',1176,1), +(3958,'Botoșani','BT',1176,1), +(3959,'Brașov','BV',1176,1), +(3960,'Brăila','BR',1176,1), +(3961,'Buzău','BZ',1176,1), +(3962,'Caraș-Severin','CS',1176,1), +(3963,'Călărași','CL',1176,1), +(3964,'Cluj','CJ',1176,1), +(3965,'Constanța','CT',1176,1), +(3966,'Covasna','CV',1176,1), +(3967,'Dâmbovița','DB',1176,1), +(3968,'Dolj','DJ',1176,1), +(3969,'Galați','GL',1176,1), +(3970,'Giurgiu','GR',1176,1), +(3971,'Gorj','GJ',1176,1), +(3972,'Harghita','HR',1176,1), +(3973,'Hunedoara','HD',1176,1), +(3974,'Ialomița','IL',1176,1), +(3975,'Iași','IS',1176,1), +(3976,'Ilfov','IF',1176,1), +(3977,'Maramureș','MM',1176,1), +(3978,'Mehedinți','MH',1176,1), +(3979,'Mureș','MS',1176,1), +(3980,'Neamț','NT',1176,1), +(3981,'Olt','OT',1176,1), +(3982,'Prahova','PH',1176,1), +(3983,'Satu Mare','SM',1176,1), +(3984,'Sălaj','SJ',1176,1), +(3985,'Sibiu','SB',1176,1), +(3986,'Suceava','SV',1176,1), +(3987,'Teleorman','TR',1176,1), +(3988,'Timiș','TM',1176,1), +(3989,'Tulcea','TL',1176,1), +(3990,'Vaslui','VS',1176,1), +(3991,'Vâlcea','VL',1176,1), +(3992,'Vrancea','VN',1176,1), +(3993,'Adygeya, Respublika','AD',1177,1), +(3994,'Altay, Respublika','AL',1177,1), +(3995,'Bashkortostan, Respublika','BA',1177,1), +(3996,'Buryatiya, Respublika','BU',1177,1), +(3997,'Chechenskaya Respublika','CE',1177,1), +(3998,'Chuvashskaya Respublika','CU',1177,1), +(3999,'Dagestan, Respublika','DA',1177,1), +(4000,'Ingushskaya Respublika','IN',1177,1), +(4001,'Kabardino-Balkarskaya','KB',1177,1), +(4002,'Kalmykiya, Respublika','KL',1177,1), +(4003,'Karachayevo-Cherkesskaya Respublika','KC',1177,1), +(4004,'Kareliya, Respublika','KR',1177,1), +(4005,'Khakasiya, Respublika','KK',1177,1), +(4006,'Komi, Respublika','KO',1177,1), +(4007,'Mariy El, Respublika','ME',1177,1), +(4008,'Mordoviya, Respublika','MO',1177,1), +(4009,'Sakha, Respublika [Yakutiya]','SA',1177,1), +(4010,'Severnaya Osetiya, Respublika','SE',1177,1), +(4011,'Tatarstan, Respublika','TA',1177,1), +(4012,'Tyva, Respublika [Tuva]','TY',1177,1), +(4013,'Udmurtskaya Respublika','UD',1177,1), +(4014,'Altayskiy kray','ALT',1177,1), +(4015,'Khabarovskiy kray','KHA',1177,1), +(4016,'Krasnodarskiy kray','KDA',1177,1), +(4017,'Krasnoyarskiy kray','KYA',1177,1), +(4018,'Primorskiy kray','PRI',1177,1), +(4019,'Stavropol\'skiy kray','STA',1177,1), +(4020,'Amurskaya oblast\'','AMU',1177,1), +(4021,'Arkhangel\'skaya oblast\'','ARK',1177,1), +(4022,'Astrakhanskaya oblast\'','AST',1177,1), +(4023,'Belgorodskaya oblast\'','BEL',1177,1), +(4024,'Bryanskaya oblast\'','BRY',1177,1), +(4025,'Chelyabinskaya oblast\'','CHE',1177,1), +(4026,'Zabaykalsky Krai\'','ZSK',1177,1), +(4027,'Irkutskaya oblast\'','IRK',1177,1), +(4028,'Ivanovskaya oblast\'','IVA',1177,1), +(4029,'Kaliningradskaya oblast\'','KGD',1177,1), +(4030,'Kaluzhskaya oblast\'','KLU',1177,1), +(4031,'Kamchatka Krai\'','KAM',1177,1), +(4032,'Kemerovskaya oblast\'','KEM',1177,1), +(4033,'Kirovskaya oblast\'','KIR',1177,1), +(4034,'Kostromskaya oblast\'','KOS',1177,1), +(4035,'Kurganskaya oblast\'','KGN',1177,1), +(4036,'Kurskaya oblast\'','KRS',1177,1), +(4037,'Leningradskaya oblast\'','LEN',1177,1), +(4038,'Lipetskaya oblast\'','LIP',1177,1), +(4039,'Magadanskaya oblast\'','MAG',1177,1), +(4040,'Moskovskaya oblast\'','MOS',1177,1), +(4041,'Murmanskaya oblast\'','MUR',1177,1), +(4042,'Nizhegorodskaya oblast\'','NIZ',1177,1), +(4043,'Novgorodskaya oblast\'','NGR',1177,1), +(4044,'Novosibirskaya oblast\'','NVS',1177,1), +(4045,'Omskaya oblast\'','OMS',1177,1), +(4046,'Orenburgskaya oblast\'','ORE',1177,1), +(4047,'Orlovskaya oblast\'','ORL',1177,1), +(4048,'Penzenskaya oblast\'','PNZ',1177,1), +(4049,'Perm krai\'','PEK',1177,1), +(4050,'Pskovskaya oblast\'','PSK',1177,1), +(4051,'Rostovskaya oblast\'','ROS',1177,1), +(4052,'Ryazanskaya oblast\'','RYA',1177,1), +(4053,'Sakhalinskaya oblast\'','SAK',1177,1), +(4054,'Samarskaya oblast\'','SAM',1177,1), +(4055,'Saratovskaya oblast\'','SAR',1177,1), +(4056,'Smolenskaya oblast\'','SMO',1177,1), +(4057,'Sverdlovskaya oblast\'','SVE',1177,1), +(4058,'Tambovskaya oblast\'','TAM',1177,1), +(4059,'Tomskaya oblast\'','TOM',1177,1), +(4060,'Tul\'skaya oblast\'','TUL',1177,1), +(4061,'Tverskaya oblast\'','TVE',1177,1), +(4062,'Tyumenskaya oblast\'','TYU',1177,1), +(4063,'Ul\'yanovskaya oblast\'','ULY',1177,1), +(4064,'Vladimirskaya oblast\'','VLA',1177,1), +(4065,'Volgogradskaya oblast\'','VGG',1177,1), +(4066,'Vologodskaya oblast\'','VLG',1177,1), +(4067,'Voronezhskaya oblast\'','VOR',1177,1), +(4068,'Yaroslavskaya oblast\'','YAR',1177,1), +(4069,'Moskva','MOW',1177,1), +(4070,'Sankt-Peterburg','SPE',1177,1), +(4071,'Yevreyskaya avtonomnaya oblast\'','YEV',1177,1), +(4072,'Chukotskiy avtonomnyy okrug','CHU',1177,1), +(4073,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177,1), +(4074,'Nenetskiy avtonomnyy okrug','NEN',1177,1), +(4075,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177,1), +(4076,'Butare','C',1178,1), +(4077,'Byumba','I',1178,1), +(4078,'Cyangugu','E',1178,1), +(4079,'Gikongoro','D',1178,1), +(4080,'Gisenyi','G',1178,1), +(4081,'Gitarama','B',1178,1), +(4082,'Kibungo','J',1178,1), +(4083,'Kibuye','F',1178,1), +(4084,'Kigali-Rural Kigali y\' Icyaro','K',1178,1), +(4085,'Kigali-Ville Kigali Ngari','L',1178,1), +(4086,'Mutara','M',1178,1), +(4087,'Ruhengeri','H',1178,1), +(4088,'Saint Kitts','K',1181,1), +(4089,'Nevis','N',1181,1), +(4090,'Al Bahah','11',1187,1), +(4091,'Al Hudud Ash Shamaliyah','08',1187,1), +(4092,'Al Jawf','12',1187,1), +(4093,'Al Madinah','03',1187,1), +(4094,'Al Qasim','05',1187,1), +(4095,'Ar Riyad','01',1187,1), +(4096,'Asir','14',1187,1), +(4097,'Ha\'il','06',1187,1), +(4098,'Jlzan','09',1187,1), +(4099,'Makkah','02',1187,1), +(4100,'Najran','10',1187,1), +(4101,'Tabuk','07',1187,1), +(4102,'Ash Sharqiyah','04',1187,1), +(4103,'Capital Territory (Honiara)','CT',1194,1), +(4104,'Guadalcanal','GU',1194,1), +(4105,'Isabel','IS',1194,1), +(4106,'Makira','MK',1194,1), +(4107,'Malaita','ML',1194,1), +(4108,'Temotu','TE',1194,1), +(4109,'A\'ali an Nil','23',1200,1), +(4110,'Al Bah al Ahmar','26',1200,1), +(4111,'Al Buhayrat','18',1200,1), +(4112,'Al Jazirah','07',1200,1), +(4113,'Al Khartum','03',1200,1), +(4114,'Al Qadarif','06',1200,1), +(4115,'Al Wahdah','22',1200,1), +(4116,'An Nil','04',1200,1), +(4117,'An Nil al Abyaq','08',1200,1), +(4118,'An Nil al Azraq','24',1200,1), +(4119,'Ash Shamallyah','01',1200,1), +(4120,'Bahr al Jabal','17',1200,1), +(4121,'Gharb al Istiwa\'iyah','16',1200,1), +(4122,'Gharb Ba~r al Ghazal','14',1200,1), +(4123,'Gharb Darfur','12',1200,1), +(4124,'Gharb Kurdufan','10',1200,1), +(4125,'Janub Darfur','11',1200,1), +(4126,'Janub Rurdufan','13',1200,1), +(4127,'Jnqall','20',1200,1), +(4128,'Kassala','05',1200,1), +(4129,'Shamal Batr al Ghazal','15',1200,1), +(4130,'Shamal Darfur','02',1200,1), +(4131,'Shamal Kurdufan','09',1200,1), +(4132,'Sharq al Istiwa\'iyah','19',1200,1), +(4133,'Sinnar','25',1200,1), +(4134,'Warab','21',1200,1), +(4135,'Blekinge län','K',1204,1), +(4136,'Dalarnas län','W',1204,1), +(4137,'Gotlands län','I',1204,1), +(4138,'Gävleborgs län','X',1204,1), +(4139,'Hallands län','N',1204,1), +(4140,'Jämtlands län','Z',1204,1), +(4141,'Jönkopings län','F',1204,1), +(4142,'Kalmar län','H',1204,1), +(4143,'Kronobergs län','G',1204,1), +(4144,'Norrbottens län','BD',1204,1), +(4145,'Skåne län','M',1204,1), +(4146,'Stockholms län','AB',1204,1), +(4147,'Södermanlands län','D',1204,1), +(4148,'Uppsala län','C',1204,1), +(4149,'Värmlands län','S',1204,1), +(4150,'Västerbottens län','AC',1204,1), +(4151,'Västernorrlands län','Y',1204,1), +(4152,'Västmanlands län','U',1204,1), +(4153,'Västra Götalands län','Q',1204,1), +(4154,'Örebro län','T',1204,1), +(4155,'Östergötlands län','E',1204,1), +(4156,'Saint Helena','SH',1180,1), +(4157,'Ascension','AC',1180,1), +(4158,'Tristan da Cunha','TA',1180,1), +(4159,'Ajdovščina','001',1193,1), +(4160,'Beltinci','002',1193,1), +(4161,'Benedikt','148',1193,1), +(4162,'Bistrica ob Sotli','149',1193,1), +(4163,'Bled','003',1193,1), +(4164,'Bloke','150',1193,1), +(4165,'Bohinj','004',1193,1), +(4166,'Borovnica','005',1193,1), +(4167,'Bovec','006',1193,1), +(4168,'Braslovče','151',1193,1), +(4169,'Brda','007',1193,1), +(4170,'Brezovica','008',1193,1), +(4171,'Brežice','009',1193,1), +(4172,'Cankova','152',1193,1), +(4173,'Celje','011',1193,1), +(4174,'Cerklje na Gorenjskem','012',1193,1), +(4175,'Cerknica','013',1193,1), +(4176,'Cerkno','014',1193,1), +(4177,'Cerkvenjak','153',1193,1), +(4178,'Črenšovci','015',1193,1), +(4179,'Črna na Koroškem','016',1193,1), +(4180,'Črnomelj','017',1193,1), +(4181,'Destrnik','018',1193,1), +(4182,'Divača','019',1193,1), +(4183,'Dobje','154',1193,1), +(4184,'Dobrepolje','020',1193,1), +(4185,'Dobrna','155',1193,1), +(4186,'Dobrova-Polhov Gradec','021',1193,1), +(4187,'Dobrovnik','156',1193,1), +(4188,'Dol pri Ljubljani','022',1193,1), +(4189,'Dolenjske Toplice','157',1193,1), +(4190,'Domžale','023',1193,1), +(4191,'Dornava','024',1193,1), +(4192,'Dravograd','025',1193,1), +(4193,'Duplek','026',1193,1), +(4194,'Gorenja vas-Poljane','027',1193,1), +(4195,'Gorišnica','028',1193,1), +(4196,'Gornja Radgona','029',1193,1), +(4197,'Gornji Grad','030',1193,1), +(4198,'Gornji Petrovci','031',1193,1), +(4199,'Grad','158',1193,1), +(4200,'Grosuplje','032',1193,1), +(4201,'Hajdina','159',1193,1), +(4202,'Hoče-Slivnica','160',1193,1), +(4203,'Hodoš','161',1193,1), +(4204,'Horjul','162',1193,1), +(4205,'Hrastnik','034',1193,1), +(4206,'Hrpelje-Kozina','035',1193,1), +(4207,'Idrija','036',1193,1), +(4208,'Ig','037',1193,1), +(4209,'Ilirska Bistrica','038',1193,1), +(4210,'Ivančna Gorica','039',1193,1), +(4211,'Izola','040',1193,1), +(4212,'Jesenice','041',1193,1), +(4213,'Jezersko','163',1193,1), +(4214,'Juršinci','042',1193,1), +(4215,'Kamnik','043',1193,1), +(4216,'Kanal','044',1193,1), +(4217,'Kidričevo','045',1193,1), +(4218,'Kobarid','046',1193,1), +(4219,'Kobilje','047',1193,1), +(4220,'Kočevje','048',1193,1), +(4221,'Komen','049',1193,1), +(4222,'Komenda','164',1193,1), +(4223,'Koper','050',1193,1), +(4224,'Kostel','165',1193,1), +(4225,'Kozje','051',1193,1), +(4226,'Kranj','052',1193,1), +(4227,'Kranjska Gora','053',1193,1), +(4228,'Križevci','166',1193,1), +(4229,'Krško','054',1193,1), +(4230,'Kungota','055',1193,1), +(4231,'Kuzma','056',1193,1), +(4232,'Laško','057',1193,1), +(4233,'Lenart','058',1193,1), +(4234,'Lendava','059',1193,1), +(4235,'Litija','060',1193,1), +(4236,'Ljubljana','061',1193,1), +(4237,'Ljubno','062',1193,1), +(4238,'Ljutomer','063',1193,1), +(4239,'Logatec','064',1193,1), +(4240,'Loška dolina','065',1193,1), +(4241,'Loški Potok','066',1193,1), +(4242,'Lovrenc na Pohorju','167',1193,1), +(4243,'Luče','067',1193,1), +(4244,'Lukovica','068',1193,1), +(4245,'Majšperk','069',1193,1), +(4246,'Maribor','070',1193,1), +(4247,'Markovci','168',1193,1), +(4248,'Medvode','071',1193,1), +(4249,'Mengeš','072',1193,1), +(4250,'Metlika','073',1193,1), +(4251,'Mežica','074',1193,1), +(4252,'Miklavž na Dravskem polju','169',1193,1), +(4253,'Miren-Kostanjevica','075',1193,1), +(4254,'Mirna Peč','170',1193,1), +(4255,'Mislinja','076',1193,1), +(4256,'Moravče','077',1193,1), +(4257,'Moravske Toplice','078',1193,1), +(4258,'Mozirje','079',1193,1), +(4259,'Murska Sobota','080',1193,1), +(4260,'Muta','081',1193,1), +(4261,'Naklo','082',1193,1), +(4262,'Nazarje','083',1193,1), +(4263,'Nova Gorica','084',1193,1), +(4264,'Novo mesto','085',1193,1), +(4265,'Sveta Ana','181',1193,1), +(4266,'Sveti Andraž v Slovenskih goricah','182',1193,1), +(4267,'Sveti Jurij','116',1193,1), +(4268,'Šalovci','033',1193,1), +(4269,'Šempeter-Vrtojba','183',1193,1), +(4270,'Šenčur','117',1193,1), +(4271,'Šentilj','118',1193,1), +(4272,'Šentjernej','119',1193,1), +(4273,'Šentjur','120',1193,1), +(4274,'Škocjan','121',1193,1), +(4275,'Škofja Loka','122',1193,1), +(4276,'Škofljica','123',1193,1), +(4277,'Šmarje pri Jelšah','124',1193,1), +(4278,'Šmartno ob Paki','125',1193,1), +(4279,'Šmartno pri Litiji','194',1193,1), +(4280,'Šoštanj','126',1193,1), +(4281,'Štore','127',1193,1), +(4282,'Tabor','184',1193,1), +(4283,'Tišina','010',1193,1), +(4284,'Tolmin','128',1193,1), +(4285,'Trbovlje','129',1193,1), +(4286,'Trebnje','130',1193,1), +(4287,'Trnovska vas','185',1193,1), +(4288,'Tržič','131',1193,1), +(4289,'Trzin','186',1193,1), +(4290,'Turnišče','132',1193,1), +(4291,'Velenje','133',1193,1), +(4292,'Velika Polana','187',1193,1), +(4293,'Velike Lašče','134',1193,1), +(4294,'Veržej','188',1193,1), +(4295,'Videm','135',1193,1), +(4296,'Vipava','136',1193,1), +(4297,'Vitanje','137',1193,1), +(4298,'Vojnik','138',1193,1), +(4299,'Vransko','189',1193,1), +(4300,'Vrhnika','140',1193,1), +(4301,'Vuzenica','141',1193,1), +(4302,'Zagorje ob Savi','142',1193,1), +(4303,'Zavrč','143',1193,1), +(4304,'Zreče','144',1193,1), +(4305,'Žalec','190',1193,1), +(4306,'Železniki','146',1193,1), +(4307,'Žetale','191',1193,1), +(4308,'Žiri','147',1193,1), +(4309,'Žirovnica','192',1193,1), +(4310,'Žužemberk','193',1193,1), +(4311,'Ankaran','86',1193,1), +(4312,'Apače','87',1193,1), +(4313,'Cirkulane','88',1193,1), +(4314,'Gorje','89',1193,1), +(4315,'Kostanjevica na Krki','90',1193,1), +(4316,'Log-Dragomer','91',1193,1), +(4317,'Makole','92',1193,1), +(4318,'Mirna','93',1193,1), +(4319,'Mokronog-Trebelno','94',1193,1), +(4320,'Odranci','95',1193,1), +(4321,'Oplotnica','96',1193,1), +(4322,'Ormož','97',1193,1), +(4323,'Osilnica','98',1193,1), +(4324,'Pesnica','99',1193,1), +(4325,'Piran','100',1193,1), +(4326,'Pivka','101',1193,1), +(4327,'Podčetrtek','102',1193,1), +(4328,'Podlehnik','103',1193,1), +(4329,'Podvelka','104',1193,1), +(4330,'Poljčane','105',1193,1), +(4331,'Polzela','106',1193,1), +(4332,'Postojna','107',1193,1), +(4333,'Prebold','108',1193,1), +(4334,'Preddvor','109',1193,1), +(4335,'Prevalje','110',1193,1), +(4336,'Ptuj','111',1193,1), +(4337,'Puconci','112',1193,1), +(4338,'Rače-Fram','113',1193,1), +(4339,'Radeče','114',1193,1), +(4340,'Radenci','115',1193,1), +(4341,'Radlje ob Dravi','139',1193,1), +(4342,'Radovljica','145',1193,1), +(4343,'Ravne na Koroškem','171',1193,1), +(4344,'Razkrižje','172',1193,1), +(4345,'Rečica ob Savinji','173',1193,1), +(4346,'Renče-Vogrsko','174',1193,1), +(4347,'Ribnica','175',1193,1), +(4348,'Ribnica na Pohorju','176',1193,1), +(4349,'Rogaška Slatina','177',1193,1), +(4350,'Rogašovci','178',1193,1), +(4351,'Rogatec','179',1193,1), +(4352,'Ruše','180',1193,1), +(4353,'Selnica ob Dravi','195',1193,1), +(4354,'Semič','196',1193,1), +(4355,'Šentrupert','197',1193,1), +(4356,'Sevnica','198',1193,1), +(4357,'Sežana','199',1193,1), +(4358,'Slovenj Gradec','200',1193,1), +(4359,'Slovenska Bistrica','201',1193,1), +(4360,'Slovenske Konjice','202',1193,1), +(4361,'Šmarješke Toplice','203',1193,1), +(4362,'Sodražica','204',1193,1), +(4363,'Solčava','205',1193,1), +(4364,'Središče ob Dravi','206',1193,1), +(4365,'Starše','207',1193,1), +(4366,'Straža','208',1193,1), +(4367,'Sveta Trojica v Slovenskih goricah','209',1193,1), +(4368,'Sveti Jurij v Slovenskih goricah','210',1193,1), +(4369,'Sveti Tomaž','211',1193,1), +(4370,'Vodice','212',1193,1), +(4371,'Banskobystrický kraj','BC',1192,1), +(4372,'Bratislavský kraj','BL',1192,1), +(4373,'Košický kraj','KI',1192,1), +(4374,'Nitriansky kraj','NJ',1192,1), +(4375,'Prešovský kraj','PV',1192,1), +(4376,'Trenčiansky kraj','TC',1192,1), +(4377,'Trnavský kraj','TA',1192,1), +(4378,'Žilinský kraj','ZI',1192,1), +(4379,'Western Area (Freetown)','W',1190,1), +(4380,'Eastern','E',1190,1), +(4381,'Northern','N',1190,1), +(4382,'Southern','S',1190,1), +(4383,'Dakar','DK',1188,1), +(4384,'Diourbel','DB',1188,1), +(4385,'Fatick','FK',1188,1), +(4386,'Kaolack','KL',1188,1), +(4387,'Kolda','KD',1188,1), +(4388,'Louga','LG',1188,1), +(4389,'Matam','MT',1188,1), +(4390,'Saint-Louis','SL',1188,1), +(4391,'Tambacounda','TC',1188,1), +(4392,'Thies','TH',1188,1), +(4393,'Ziguinchor','ZG',1188,1), +(4394,'Awdal','AW',1195,1), +(4395,'Bakool','BK',1195,1), +(4396,'Banaadir','BN',1195,1), +(4397,'Bay','BY',1195,1), +(4398,'Galguduud','GA',1195,1), +(4399,'Gedo','GE',1195,1), +(4400,'Hiirsan','HI',1195,1), +(4401,'Jubbada Dhexe','JD',1195,1), +(4402,'Jubbada Hoose','JH',1195,1), +(4403,'Mudug','MU',1195,1), +(4404,'Nugaal','NU',1195,1), +(4405,'Saneag','SA',1195,1), +(4406,'Shabeellaha Dhexe','SD',1195,1), +(4407,'Shabeellaha Hoose','SH',1195,1), +(4408,'Sool','SO',1195,1), +(4409,'Togdheer','TO',1195,1), +(4410,'Woqooyi Galbeed','WO',1195,1), +(4411,'Brokopondo','BR',1201,1), +(4412,'Commewijne','CM',1201,1), +(4413,'Coronie','CR',1201,1), +(4414,'Marowijne','MA',1201,1), +(4415,'Nickerie','NI',1201,1), +(4416,'Paramaribo','PM',1201,1), +(4417,'Saramacca','SA',1201,1), +(4418,'Sipaliwini','SI',1201,1), +(4419,'Wanica','WA',1201,1), +(4420,'Principe','P',1207,1), +(4421,'Sao Tome','S',1207,1), +(4422,'Ahuachapan','AH',1066,1), +(4423,'Cabanas','CA',1066,1), +(4424,'Cuscatlan','CU',1066,1), +(4425,'Chalatenango','CH',1066,1), +(4426,'Morazan','MO',1066,1), +(4427,'San Miguel','SM',1066,1), +(4428,'San Salvador','SS',1066,1), +(4429,'Santa Ana','SA',1066,1), +(4430,'San Vicente','SV',1066,1), +(4431,'Sonsonate','SO',1066,1), +(4432,'Usulutan','US',1066,1), +(4433,'La Libertad','LI',1066,1), +(4434,'La Paz','PA',1066,1), +(4435,'La Union','UN',1066,1), +(4436,'Al Hasakah','HA',1206,1), +(4437,'Al Ladhiqiyah','LA',1206,1), +(4438,'Al Qunaytirah','QU',1206,1), +(4439,'Ar Raqqah','RA',1206,1), +(4440,'As Suwayda\'','SU',1206,1), +(4441,'Dar\'a','DR',1206,1), +(4442,'Dayr az Zawr','DY',1206,1), +(4443,'Dimashq','DI',1206,1), +(4444,'Halab','HL',1206,1), +(4445,'Hamah','HM',1206,1), +(4446,'Jim\'','HI',1206,1), +(4447,'Idlib','ID',1206,1), +(4448,'Rif Dimashq','RD',1206,1), +(4449,'Tarts','TA',1206,1), +(4450,'Hhohho','HH',1203,1), +(4451,'Lubombo','LU',1203,1), +(4452,'Manzini','MA',1203,1), +(4453,'Shiselweni','SH',1203,1), +(4454,'Batha','BA',1043,1), +(4455,'Biltine','BI',1043,1), +(4456,'Borkou-Ennedi-Tibesti','BET',1043,1), +(4457,'Chari-Baguirmi','CB',1043,1), +(4458,'Guera','GR',1043,1), +(4459,'Kanem','KA',1043,1), +(4460,'Lac','LC',1043,1), +(4461,'Logone-Occidental','LO',1043,1), +(4462,'Logone-Oriental','LR',1043,1), +(4463,'Mayo-Kebbi','MK',1043,1), +(4464,'Moyen-Chari','MC',1043,1), +(4465,'Ouaddai','OD',1043,1), +(4466,'Salamat','SA',1043,1), +(4467,'Tandjile','TA',1043,1), +(4468,'Kara','K',1214,1), +(4469,'Maritime (Region)','M',1214,1), +(4470,'Savannes','S',1214,1), +(4471,'Krung Thep Maha Nakhon Bangkok','10',1211,1), +(4472,'Phatthaya','S',1211,1), +(4473,'Amnat Charoen','37',1211,1), +(4474,'Ang Thong','15',1211,1), +(4475,'Buri Ram','31',1211,1), +(4476,'Chachoengsao','24',1211,1), +(4477,'Chai Nat','18',1211,1), +(4478,'Chaiyaphum','36',1211,1), +(4479,'Chanthaburi','22',1211,1), +(4480,'Chiang Mai','50',1211,1), +(4481,'Chiang Rai','57',1211,1), +(4482,'Chon Buri','20',1211,1), +(4483,'Chumphon','86',1211,1), +(4484,'Kalasin','46',1211,1), +(4485,'Kamphasng Phet','62',1211,1), +(4486,'Kanchanaburi','71',1211,1), +(4487,'Khon Kaen','40',1211,1), +(4488,'Krabi','81',1211,1), +(4489,'Lampang','52',1211,1), +(4490,'Lamphun','51',1211,1), +(4491,'Loei','42',1211,1), +(4492,'Lop Buri','16',1211,1), +(4493,'Mae Hong Son','58',1211,1), +(4494,'Maha Sarakham','44',1211,1), +(4495,'Mukdahan','49',1211,1), +(4496,'Nakhon Nayok','26',1211,1), +(4497,'Nakhon Pathom','73',1211,1), +(4498,'Nakhon Phanom','48',1211,1), +(4499,'Nakhon Ratchasima','30',1211,1), +(4500,'Nakhon Sawan','60',1211,1), +(4501,'Nakhon Si Thammarat','80',1211,1), +(4502,'Nan','55',1211,1), +(4503,'Narathiwat','96',1211,1), +(4504,'Nong Bua Lam Phu','39',1211,1), +(4505,'Nong Khai','43',1211,1), +(4506,'Nonthaburi','12',1211,1), +(4507,'Pathum Thani','13',1211,1), +(4508,'Pattani','94',1211,1), +(4509,'Phangnga','82',1211,1), +(4510,'Phatthalung','93',1211,1), +(4511,'Phayao','56',1211,1), +(4512,'Phetchabun','67',1211,1), +(4513,'Phetchaburi','76',1211,1), +(4514,'Phichit','66',1211,1), +(4515,'Phitsanulok','65',1211,1), +(4516,'Phrae','54',1211,1), +(4517,'Phra Nakhon Si Ayutthaya','14',1211,1), +(4518,'Phuket','83',1211,1), +(4519,'Prachin Buri','25',1211,1), +(4520,'Prachuap Khiri Khan','77',1211,1), +(4521,'Ranong','85',1211,1), +(4522,'Ratchaburi','70',1211,1), +(4523,'Rayong','21',1211,1), +(4524,'Roi Et','45',1211,1), +(4525,'Sa Kaeo','27',1211,1), +(4526,'Sakon Nakhon','47',1211,1), +(4527,'Samut Prakan','11',1211,1), +(4528,'Samut Sakhon','74',1211,1), +(4529,'Samut Songkhram','75',1211,1), +(4530,'Saraburi','19',1211,1), +(4531,'Satun','91',1211,1), +(4532,'Sing Buri','17',1211,1), +(4533,'Si Sa Ket','33',1211,1), +(4534,'Songkhla','90',1211,1), +(4535,'Sukhothai','64',1211,1), +(4536,'Suphan Buri','72',1211,1), +(4537,'Surat Thani','84',1211,1), +(4538,'Surin','32',1211,1), +(4539,'Tak','63',1211,1), +(4540,'Trang','92',1211,1), +(4541,'Trat','23',1211,1), +(4542,'Ubon Ratchathani','34',1211,1), +(4543,'Udon Thani','41',1211,1), +(4544,'Uthai Thani','61',1211,1), +(4545,'Uttaradit','53',1211,1), +(4546,'Yala','95',1211,1), +(4547,'Yasothon','35',1211,1), +(4548,'Sughd','SU',1209,1), +(4549,'Khatlon','KT',1209,1), +(4550,'Gorno-Badakhshan','GB',1209,1), +(4551,'Dushanbe','DU',1209,1), +(4552,'Nohiyahoi Tobei Jumhurí','RA',1209,1), +(4553,'Ahal','A',1220,1), +(4554,'Balkan','B',1220,1), +(4555,'Dasoguz','D',1220,1), +(4556,'Lebap','L',1220,1), +(4557,'Mary','M',1220,1), +(4558,'Béja','31',1218,1), +(4559,'Ben Arous','13',1218,1), +(4560,'Bizerte','23',1218,1), +(4561,'Gabès','81',1218,1), +(4562,'Gafsa','71',1218,1), +(4563,'Jendouba','32',1218,1), +(4564,'Kairouan','41',1218,1), +(4565,'Rasserine','42',1218,1), +(4566,'Kebili','73',1218,1), +(4567,'L\'Ariana','12',1218,1), +(4568,'Le Ref','33',1218,1), +(4569,'Mahdia','53',1218,1), +(4570,'La Manouba','14',1218,1), +(4571,'Medenine','82',1218,1), +(4572,'Moneatir','52',1218,1), +(4573,'Naboul','21',1218,1), +(4574,'Sfax','61',1218,1), +(4575,'Sidi Bouxid','43',1218,1), +(4576,'Siliana','34',1218,1), +(4577,'Sousse','51',1218,1), +(4578,'Tataouine','83',1218,1), +(4579,'Tozeur','72',1218,1), +(4580,'Tunis','11',1218,1), +(4581,'Zaghouan','22',1218,1), +(4582,'Adana','01',1219,1), +(4583,'Ad yaman','02',1219,1), +(4584,'Afyon','03',1219,1), +(4585,'Ag r','04',1219,1), +(4586,'Aksaray','68',1219,1), +(4587,'Amasya','05',1219,1), +(4588,'Ankara','06',1219,1), +(4589,'Antalya','07',1219,1), +(4590,'Ardahan','75',1219,1), +(4591,'Artvin','08',1219,1), +(4592,'Aydin','09',1219,1), +(4593,'Bal kesir','10',1219,1), +(4594,'Bartin','74',1219,1), +(4595,'Batman','72',1219,1), +(4596,'Bayburt','69',1219,1), +(4597,'Bilecik','11',1219,1), +(4598,'Bingol','12',1219,1), +(4599,'Bitlis','13',1219,1), +(4600,'Bolu','14',1219,1), +(4601,'Burdur','15',1219,1), +(4602,'Bursa','16',1219,1), +(4603,'Canakkale','17',1219,1), +(4604,'Cankir','18',1219,1), +(4605,'Corum','19',1219,1), +(4606,'Denizli','20',1219,1), +(4607,'Diyarbakir','21',1219,1), +(4608,'Duzce','81',1219,1), +(4609,'Edirne','22',1219,1), +(4610,'Elazig','23',1219,1), +(4611,'Erzincan','24',1219,1), +(4612,'Erzurum','25',1219,1), +(4613,'Eskis\'ehir','26',1219,1), +(4614,'Gaziantep','27',1219,1), +(4615,'Giresun','28',1219,1), +(4616,'Gms\'hane','29',1219,1), +(4617,'Hakkari','30',1219,1), +(4618,'Hatay','31',1219,1), +(4619,'Igidir','76',1219,1), +(4620,'Isparta','32',1219,1), +(4621,'Icel','33',1219,1), +(4622,'Istanbul','34',1219,1), +(4623,'Izmir','35',1219,1), +(4624,'Kahramanmaras','46',1219,1), +(4625,'Karabk','78',1219,1), +(4626,'Karaman','70',1219,1), +(4627,'Kars','36',1219,1), +(4628,'Kastamonu','37',1219,1), +(4629,'Kayseri','38',1219,1), +(4630,'Kirikkale','71',1219,1), +(4631,'Kirklareli','39',1219,1), +(4632,'Kirs\'ehir','40',1219,1), +(4633,'Kilis','79',1219,1), +(4634,'Kocaeli','41',1219,1), +(4635,'Konya','42',1219,1), +(4636,'Ktahya','43',1219,1), +(4637,'Malatya','44',1219,1), +(4638,'Manisa','45',1219,1), +(4639,'Mardin','47',1219,1), +(4640,'Mugila','48',1219,1), +(4641,'Mus','49',1219,1), +(4642,'Nevs\'ehir','50',1219,1), +(4643,'Nigide','51',1219,1), +(4644,'Ordu','52',1219,1), +(4645,'Osmaniye','80',1219,1), +(4646,'Rize','53',1219,1), +(4647,'Sakarya','54',1219,1), +(4648,'Samsun','55',1219,1), +(4649,'Siirt','56',1219,1), +(4650,'Sinop','57',1219,1), +(4651,'Sivas','58',1219,1), +(4652,'S\'anliurfa','63',1219,1), +(4653,'S\'rnak','73',1219,1), +(4654,'Tekirdag','59',1219,1), +(4655,'Tokat','60',1219,1), +(4656,'Trabzon','61',1219,1), +(4657,'Tunceli','62',1219,1), +(4658,'Us\'ak','64',1219,1), +(4659,'Van','65',1219,1), +(4660,'Yalova','77',1219,1), +(4661,'Yozgat','66',1219,1), +(4662,'Zonguldak','67',1219,1), +(4663,'Couva-Tabaquite-Talparo','CTT',1217,1), +(4664,'Diego Martin','DMN',1217,1), +(4665,'Eastern Tobago','ETO',1217,1), +(4666,'Penal-Debe','PED',1217,1), +(4667,'Princes Town','PRT',1217,1), +(4668,'Rio Claro-Mayaro','RCM',1217,1), +(4669,'Sangre Grande','SGE',1217,1), +(4670,'San Juan-Laventille','SJL',1217,1), +(4671,'Siparia','SIP',1217,1), +(4672,'Tunapuna-Piarco','TUP',1217,1), +(4673,'Western Tobago','WTO',1217,1), +(4674,'Arima','ARI',1217,1), +(4675,'Chaguanas','CHA',1217,1), +(4676,'Point Fortin','PTF',1217,1), +(4677,'Port of Spain','POS',1217,1), +(4678,'San Fernando','SFO',1217,1), +(4679,'Aileu','AL',1063,1), +(4680,'Ainaro','AN',1063,1), +(4681,'Bacucau','BA',1063,1), +(4682,'Bobonaro','BO',1063,1), +(4683,'Cova Lima','CO',1063,1), +(4684,'Dili','DI',1063,1), +(4685,'Ermera','ER',1063,1), +(4686,'Laulem','LA',1063,1), +(4687,'Liquica','LI',1063,1), +(4688,'Manatuto','MT',1063,1), +(4689,'Manafahi','MF',1063,1), +(4690,'Oecussi','OE',1063,1), +(4691,'Viqueque','VI',1063,1), +(4692,'Changhua County','CHA',1208,1), +(4693,'Chiayi County','CYQ',1208,1), +(4694,'Hsinchu County','HSQ',1208,1), +(4695,'Hualien County','HUA',1208,1), +(4696,'Ilan County','ILA',1208,1), +(4697,'Kaohsiung County','KHQ',1208,1), +(4698,'Miaoli County','MIA',1208,1), +(4699,'Nantou County','NAN',1208,1), +(4700,'Penghu County','PEN',1208,1), +(4701,'Pingtung County','PIF',1208,1), +(4702,'Taichung County','TXQ',1208,1), +(4703,'Tainan County','TNQ',1208,1), +(4704,'Taipei County','TPQ',1208,1), +(4705,'Taitung County','TTT',1208,1), +(4706,'Taoyuan County','TAO',1208,1), +(4707,'Yunlin County','YUN',1208,1), +(4708,'Keelung City','KEE',1208,1), +(4709,'Taichung City','TXG',1208,1), +(4710,'Kaohsiung City','KHH',1208,1), +(4711,'Taipei City','TPE',1208,1), +(4712,'Chiayi City','CYI',1208,1), +(4713,'Hsinchu City','HSZ',1208,1), +(4714,'Tainan City','TNN',1208,1), +(4715,'Arusha','01',1210,1), +(4716,'Dar-es-Salaam','02',1210,1), +(4717,'Dodoma','03',1210,1), +(4718,'Iringa','04',1210,1), +(4719,'Kagera','05',1210,1), +(4720,'Kaskazini Pemba','06',1210,1), +(4721,'Kaskazini Unguja','07',1210,1), +(4722,'Xigoma','08',1210,1), +(4723,'Kilimanjaro','09',1210,1), +(4724,'Rusini Pemba','10',1210,1), +(4725,'Kusini Unguja','11',1210,1), +(4726,'Lindi','12',1210,1), +(4727,'Manyara','26',1210,1), +(4728,'Mara','13',1210,1), +(4729,'Mbeya','14',1210,1), +(4730,'Mjini Magharibi','15',1210,1), +(4731,'Morogoro','16',1210,1), +(4732,'Mtwara','17',1210,1), +(4733,'Pwani','19',1210,1), +(4734,'Rukwa','20',1210,1), +(4735,'Ruvuma','21',1210,1), +(4736,'Shinyanga','22',1210,1), +(4737,'Singida','23',1210,1), +(4738,'Tabora','24',1210,1), +(4739,'Tanga','25',1210,1), +(4740,'Cherkas\'ka Oblast\'','71',1224,1), +(4741,'Chernihivs\'ka Oblast\'','74',1224,1), +(4742,'Chernivets\'ka Oblast\'','77',1224,1), +(4743,'Dnipropetrovs\'ka Oblast\'','12',1224,1), +(4744,'Donets\'ka Oblast\'','14',1224,1), +(4745,'Ivano-Frankivs\'ka Oblast\'','26',1224,1), +(4746,'Kharkivs\'ka Oblast\'','63',1224,1), +(4747,'Khersons\'ka Oblast\'','65',1224,1), +(4748,'Khmel\'nyts\'ka Oblast\'','68',1224,1), +(4749,'Kirovohrads\'ka Oblast\'','35',1224,1), +(4750,'Kyivs\'ka Oblast\'','32',1224,1), +(4751,'Luhans\'ka Oblast\'','09',1224,1), +(4752,'L\'vivs\'ka Oblast\'','46',1224,1), +(4753,'Mykolaivs\'ka Oblast\'','48',1224,1), +(4754,'Odes \'ka Oblast\'','51',1224,1), +(4755,'Poltavs\'ka Oblast\'','53',1224,1), +(4756,'Rivnens\'ka Oblast\'','56',1224,1), +(4757,'Sums \'ka Oblast\'','59',1224,1), +(4758,'Ternopil\'s\'ka Oblast\'','61',1224,1), +(4759,'Vinnyts\'ka Oblast\'','05',1224,1), +(4760,'Volyos\'ka Oblast\'','07',1224,1), +(4761,'Zakarpats\'ka Oblast\'','21',1224,1), +(4762,'Zaporiz\'ka Oblast\'','23',1224,1), +(4763,'Zhytomyrs\'ka Oblast\'','18',1224,1), +(4764,'Respublika Krym','43',1224,1), +(4765,'Kyiv','30',1224,1), +(4766,'Sevastopol','40',1224,1), +(4767,'Adjumani','301',1223,1), +(4768,'Apac','302',1223,1), +(4769,'Arua','303',1223,1), +(4770,'Bugiri','201',1223,1), +(4771,'Bundibugyo','401',1223,1), +(4772,'Bushenyi','402',1223,1), +(4773,'Busia','202',1223,1), +(4774,'Gulu','304',1223,1), +(4775,'Hoima','403',1223,1), +(4776,'Iganga','203',1223,1), +(4777,'Jinja','204',1223,1), +(4778,'Kabale','404',1223,1), +(4779,'Kabarole','405',1223,1), +(4780,'Kaberamaido','213',1223,1), +(4781,'Kalangala','101',1223,1), +(4782,'Kampala','102',1223,1), +(4783,'Kamuli','205',1223,1), +(4784,'Kamwenge','413',1223,1), +(4785,'Kanungu','414',1223,1), +(4786,'Kapchorwa','206',1223,1), +(4787,'Kasese','406',1223,1), +(4788,'Katakwi','207',1223,1), +(4789,'Kayunga','112',1223,1), +(4790,'Kibaale','407',1223,1), +(4791,'Kiboga','103',1223,1), +(4792,'Kisoro','408',1223,1), +(4793,'Kitgum','305',1223,1), +(4794,'Kotido','306',1223,1), +(4795,'Kumi','208',1223,1), +(4796,'Kyenjojo','415',1223,1), +(4797,'Lira','307',1223,1), +(4798,'Luwero','104',1223,1), +(4799,'Masaka','105',1223,1), +(4800,'Masindi','409',1223,1), +(4801,'Mayuge','214',1223,1), +(4802,'Mbale','209',1223,1), +(4803,'Mbarara','410',1223,1), +(4804,'Moroto','308',1223,1), +(4805,'Moyo','309',1223,1), +(4806,'Mpigi','106',1223,1), +(4807,'Mubende','107',1223,1), +(4808,'Mukono','108',1223,1), +(4809,'Nakapiripirit','311',1223,1), +(4810,'Nakasongola','109',1223,1), +(4811,'Nebbi','310',1223,1), +(4812,'Ntungamo','411',1223,1), +(4813,'Pader','312',1223,1), +(4814,'Pallisa','210',1223,1), +(4815,'Rakai','110',1223,1), +(4816,'Rukungiri','412',1223,1), +(4817,'Sembabule','111',1223,1), +(4818,'Sironko','215',1223,1), +(4819,'Soroti','211',1223,1), +(4820,'Tororo','212',1223,1), +(4821,'Wakiso','113',1223,1), +(4822,'Yumbe','313',1223,1), +(4823,'Baker Island','81',1227,1), +(4824,'Howland Island','84',1227,1), +(4825,'Jarvis Island','86',1227,1), +(4826,'Johnston Atoll','67',1227,1), +(4827,'Kingman Reef','89',1227,1), +(4828,'Midway Islands','71',1227,1), +(4829,'Navassa Island','76',1227,1), +(4830,'Palmyra Atoll','95',1227,1), +(4831,'Wake Island','79',1227,1), +(4832,'Artigsa','AR',1229,1), +(4833,'Canelones','CA',1229,1), +(4834,'Cerro Largo','CL',1229,1), +(4835,'Colonia','CO',1229,1), +(4836,'Durazno','DU',1229,1), +(4837,'Flores','FS',1229,1), +(4838,'Lavalleja','LA',1229,1), +(4839,'Maldonado','MA',1229,1), +(4840,'Montevideo','MO',1229,1), +(4841,'Paysandu','PA',1229,1), +(4842,'Rivera','RV',1229,1), +(4843,'Rocha','RO',1229,1), +(4844,'Salto','SA',1229,1), +(4845,'Soriano','SO',1229,1), +(4846,'Tacuarembo','TA',1229,1), +(4847,'Treinta y Tres','TT',1229,1), +(4848,'Florida','FL',1229,1), +(4849,'Rio Negro','RN',1229,1), +(4850,'San Jose','SJ',1229,1), +(4851,'Toshkent (city)','TK',1230,1), +(4852,'Qoraqalpogiston Respublikasi','QR',1230,1), +(4853,'Andijon','AN',1230,1), +(4854,'Buxoro','BU',1230,1), +(4855,'Farg\'ona','FA',1230,1), +(4856,'Jizzax','JI',1230,1), +(4857,'Khorazm','KH',1230,1), +(4858,'Namangan','NG',1230,1), +(4859,'Navoiy','NW',1230,1), +(4860,'Qashqadaryo','QA',1230,1), +(4861,'Samarqand','SA',1230,1), +(4862,'Sirdaryo','SI',1230,1), +(4863,'Surxondaryo','SU',1230,1), +(4864,'Toshkent','TO',1230,1), +(4865,'Xorazm','XO',1230,1), +(4866,'Distrito Federal','A',1232,1), +(4867,'Anzoategui','B',1232,1), +(4868,'Apure','C',1232,1), +(4869,'Aragua','D',1232,1), +(4870,'Barinas','E',1232,1), +(4871,'Carabobo','G',1232,1), +(4872,'Cojedes','H',1232,1), +(4873,'Falcon','I',1232,1), +(4874,'Guarico','J',1232,1), +(4875,'Lara','K',1232,1), +(4876,'Merida','L',1232,1), +(4877,'Miranda','M',1232,1), +(4878,'Monagas','N',1232,1), +(4879,'Nueva Esparta','O',1232,1), +(4880,'Portuguesa','P',1232,1), +(4881,'Tachira','S',1232,1), +(4882,'Trujillo','T',1232,1), +(4883,'Vargas','X',1232,1), +(4884,'Yaracuy','U',1232,1), +(4885,'Zulia','V',1232,1), +(4886,'Delta Amacuro','Y',1232,1), +(4887,'Dependencias Federales','W',1232,1), +(4888,'An Giang','44',1233,1), +(4889,'Ba Ria - Vung Tau','43',1233,1), +(4890,'Bac Can','53',1233,1), +(4891,'Bac Giang','54',1233,1), +(4892,'Bac Lieu','55',1233,1), +(4893,'Bac Ninh','56',1233,1), +(4894,'Ben Tre','50',1233,1), +(4895,'Binh Dinh','31',1233,1), +(4896,'Binh Duong','57',1233,1), +(4897,'Binh Phuoc','58',1233,1), +(4898,'Binh Thuan','40',1233,1), +(4899,'Ca Mau','59',1233,1), +(4900,'Can Tho','48',1233,1), +(4901,'Cao Bang','04',1233,1), +(4902,'Da Nang, thanh pho','60',1233,1), +(4903,'Dong Nai','39',1233,1), +(4904,'Dong Thap','45',1233,1), +(4905,'Gia Lai','30',1233,1), +(4906,'Ha Giang','03',1233,1), +(4907,'Ha Nam','63',1233,1), +(4908,'Ha Noi, thu do','64',1233,1), +(4909,'Ha Tay','15',1233,1), +(4910,'Ha Tinh','23',1233,1), +(4911,'Hai Duong','61',1233,1), +(4912,'Hai Phong, thanh pho','62',1233,1), +(4913,'Hoa Binh','14',1233,1), +(4914,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233,1), +(4915,'Hung Yen','66',1233,1), +(4916,'Khanh Hoa','34',1233,1), +(4917,'Kien Giang','47',1233,1), +(4918,'Kon Tum','28',1233,1), +(4919,'Lai Chau','01',1233,1), +(4920,'Lam Dong','35',1233,1), +(4921,'Lang Son','09',1233,1), +(4922,'Lao Cai','02',1233,1), +(4923,'Long An','41',1233,1), +(4924,'Nam Dinh','67',1233,1), +(4925,'Nghe An','22',1233,1), +(4926,'Ninh Binh','18',1233,1), +(4927,'Ninh Thuan','36',1233,1), +(4928,'Phu Tho','68',1233,1), +(4929,'Phu Yen','32',1233,1), +(4930,'Quang Binh','24',1233,1), +(4931,'Quang Nam','27',1233,1), +(4932,'Quang Ngai','29',1233,1), +(4933,'Quang Ninh','13',1233,1), +(4934,'Quang Tri','25',1233,1), +(4935,'Soc Trang','52',1233,1), +(4936,'Son La','05',1233,1), +(4937,'Tay Ninh','37',1233,1), +(4938,'Thai Binh','20',1233,1), +(4939,'Thai Nguyen','69',1233,1), +(4940,'Thanh Hoa','21',1233,1), +(4941,'Thua Thien-Hue','26',1233,1), +(4942,'Tien Giang','46',1233,1), +(4943,'Tra Vinh','51',1233,1), +(4944,'Tuyen Quang','07',1233,1), +(4945,'Vinh Long','49',1233,1), +(4946,'Vinh Phuc','70',1233,1), +(4947,'Yen Bai','06',1233,1), +(4948,'Malampa','MAP',1231,1), +(4949,'Penama','PAM',1231,1), +(4950,'Sanma','SAM',1231,1), +(4951,'Shefa','SEE',1231,1), +(4952,'Tafea','TAE',1231,1), +(4953,'Torba','TOB',1231,1), +(4954,'A\'ana','AA',1185,1), +(4955,'Aiga-i-le-Tai','AL',1185,1), +(4956,'Atua','AT',1185,1), +(4957,'Fa\'aaaleleaga','FA',1185,1), +(4958,'Gaga\'emauga','GE',1185,1), +(4959,'Gagaifomauga','GI',1185,1), +(4960,'Palauli','PA',1185,1), +(4961,'Satupa\'itea','SA',1185,1), +(4962,'Tuamasaga','TU',1185,1), +(4963,'Va\'a-o-Fonoti','VF',1185,1), +(4964,'Vaisigano','VS',1185,1), +(4965,'Crna Gora','CG',1243,1), +(4966,'Srbija','SR',1242,1), +(4967,'Kosovo-Metohija','KM',1242,1), +(4968,'Vojvodina','VO',1242,1), +(4969,'Abyan','AB',1237,1), +(4970,'Adan','AD',1237,1), +(4971,'Ad Dali','DA',1237,1), +(4972,'Al Bayda\'','BA',1237,1), +(4973,'Al Hudaydah','MU',1237,1), +(4974,'Al Mahrah','MR',1237,1), +(4975,'Al Mahwit','MW',1237,1), +(4976,'Amran','AM',1237,1), +(4977,'Dhamar','DH',1237,1), +(4978,'Hadramawt','HD',1237,1), +(4979,'Hajjah','HJ',1237,1), +(4980,'Ibb','IB',1237,1), +(4981,'Lahij','LA',1237,1), +(4982,'Ma\'rib','MA',1237,1), +(4983,'Sa\'dah','SD',1237,1), +(4984,'San\'a\'','SN',1237,1), +(4985,'Shabwah','SH',1237,1), +(4986,'Ta\'izz','TA',1237,1), +(4987,'Eastern Cape','EC',1196,1), +(4988,'Free State','FS',1196,1), +(4989,'Gauteng','GT',1196,1), +(4990,'Kwazulu-Natal','NL',1196,1), +(4991,'Mpumalanga','MP',1196,1), +(4992,'Northern Cape','NC',1196,1), +(4993,'Limpopo','NP',1196,1), +(4994,'Western Cape','WC',1196,1), +(4995,'North West','NW',1196,1), +(4996,'Copperbelt','08',1239,1), +(4997,'Luapula','04',1239,1), +(4998,'Lusaka','09',1239,1), +(4999,'North-Western','06',1239,1), +(5000,'Central','C',1239,1), +(5001,'Eastern','E',1239,1), +(5002,'Muchinga','M',1239,1), +(5003,'Northern','N',1239,1), +(5004,'Southern','S',1239,1), +(5005,'Western','W',1239,1), +(5006,'Bulawayo','BU',1240,1), +(5007,'Harare','HA',1240,1), +(5008,'Manicaland','MA',1240,1), +(5009,'Mashonaland Central','MC',1240,1), +(5010,'Mashonaland East','ME',1240,1), +(5011,'Mashonaland West','MW',1240,1), +(5012,'Masvingo','MV',1240,1), +(5013,'Matabeleland North','MN',1240,1), +(5014,'Matabeleland South','MS',1240,1), +(5015,'Midlands','MI',1240,1), +(5016,'South Karelia','SK',1075,1), +(5017,'South Ostrobothnia','SO',1075,1), +(5018,'Etelä-Savo','ES',1075,1), +(5019,'Häme','HH',1075,1), +(5020,'Itä-Uusimaa','IU',1075,1), +(5021,'Kainuu','KA',1075,1), +(5022,'Central Ostrobothnia','CO',1075,1), +(5023,'Central Finland','CF',1075,1), +(5024,'Kymenlaakso','KY',1075,1), +(5025,'Lapland','LA',1075,1), +(5026,'Tampere Region','TR',1075,1), +(5027,'Ostrobothnia','OB',1075,1), +(5028,'North Karelia','NK',1075,1), +(5029,'Northern Ostrobothnia','NO',1075,1), +(5030,'Northern Savo','NS',1075,1), +(5031,'Päijät-Häme','PH',1075,1), +(5032,'Satakunta','SK',1075,1), +(5033,'Uusimaa','UM',1075,1), +(5034,'South-West Finland','SW',1075,1), +(5035,'Åland','AL',1075,1), +(5036,'Limburg','LI',1152,1), +(5037,'Central and Western','CW',1098,1), +(5038,'Eastern','EA',1098,1), +(5039,'Southern','SO',1098,1), +(5040,'Wan Chai','WC',1098,1), +(5041,'Kowloon City','KC',1098,1), +(5042,'Kwun Tong','KU',1098,1), +(5043,'Sham Shui Po','SS',1098,1), +(5044,'Wong Tai Sin','WT',1098,1), +(5045,'Yau Tsim Mong','YT',1098,1), +(5046,'Islands','IS',1098,1), +(5047,'Kwai Tsing','KI',1098,1), +(5048,'North','NO',1098,1), +(5049,'Sai Kung','SK',1098,1), +(5050,'Sha Tin','ST',1098,1), +(5051,'Tai Po','TP',1098,1), +(5052,'Tsuen Wan','TW',1098,1), +(5053,'Tuen Mun','TM',1098,1), +(5054,'Yuen Long','YL',1098,1), +(5055,'Manchester','MR',1108,1), +(5056,'Al Manāmah (Al ‘Āşimah)','13',1016,1), +(5057,'Al Janūbīyah','14',1016,1), +(5058,'Al Wusţá','16',1016,1), +(5059,'Ash Shamālīyah','17',1016,1), +(5060,'Anenii Noi','AN',1142,1), +(5061,'Basarabeasca','BS',1142,1), +(5062,'Briceni','BR',1142,1), +(5063,'Cantemir','CT',1142,1), +(5064,'Călărași','CL',1142,1), +(5065,'Căușeni','CS',1142,1), +(5066,'Cimislia','CM',1142,1), +(5067,'Criuleni','CR',1142,1), +(5068,'Dondușeni','DO',1142,1), +(5069,'Drochia','DR',1142,1), +(5070,'Dubăsari','DU',1142,1), +(5071,'Fălești','FA',1142,1), +(5072,'Florești','FL',1142,1), +(5073,'Glodeni','GL',1142,1), +(5074,'Hîncești','HI',1142,1), +(5075,'Ialoveni','IA',1142,1), +(5076,'Leova','LE',1142,1), +(5077,'Nisporeni','NI',1142,1), +(5078,'Ocnița','OC',1142,1), +(5079,'Rezina','RE',1142,1), +(5080,'Rîșcani','RI',1142,1), +(5081,'Sîngerei','SI',1142,1), +(5082,'Strășeni','ST',1142,1), +(5083,'Șoldănești','SD',1142,1), +(5084,'Ștefan Vodă','SV',1142,1), +(5085,'Telenești','TE',1142,1); /*!40000 ALTER TABLE `civicrm_state_province` ENABLE KEYS */; UNLOCK TABLES; @@ -12119,90 +12152,90 @@ UNLOCK TABLES; LOCK TABLES `civicrm_subscription_history` WRITE; /*!40000 ALTER TABLE `civicrm_subscription_history` DISABLE KEYS */; INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES - (1,40,2,'2024-05-28 04:59:33','Email','Added',NULL), - (2,84,2,'2024-12-08 20:13:50','Admin','Added',NULL), - (3,191,2,'2024-05-19 11:50:20','Admin','Added',NULL), - (4,101,2,'2024-02-15 17:16:07','Admin','Added',NULL), - (5,121,2,'2024-11-01 22:54:08','Admin','Added',NULL), - (6,153,2,'2024-11-12 05:14:50','Admin','Added',NULL), - (7,11,2,'2024-06-06 20:20:31','Email','Added',NULL), - (8,147,2,'2024-06-16 19:15:05','Email','Added',NULL), - (9,181,2,'2024-06-02 14:04:32','Email','Added',NULL), - (10,182,2,'2024-07-01 11:10:18','Email','Added',NULL), - (11,86,2,'2025-02-04 18:37:38','Email','Added',NULL), - (12,53,2,'2024-11-11 07:45:50','Admin','Added',NULL), - (13,4,2,'2024-04-30 08:46:22','Admin','Added',NULL), - (14,98,2,'2024-06-19 00:32:15','Email','Added',NULL), - (15,195,2,'2024-08-20 15:53:21','Admin','Added',NULL), - (16,172,2,'2024-12-23 16:24:17','Admin','Added',NULL), - (17,109,2,'2024-10-24 18:10:26','Admin','Added',NULL), - (18,136,2,'2025-01-10 19:33:34','Admin','Added',NULL), - (19,108,2,'2024-05-04 14:32:29','Admin','Added',NULL), - (20,95,2,'2024-10-29 05:15:28','Admin','Added',NULL), - (21,58,2,'2024-12-04 20:55:11','Admin','Added',NULL), - (22,21,2,'2024-12-28 11:50:21','Admin','Added',NULL), - (23,5,2,'2025-01-24 14:58:48','Email','Added',NULL), - (24,139,2,'2024-06-29 18:45:16','Admin','Added',NULL), - (25,76,2,'2024-12-12 02:51:41','Admin','Added',NULL), - (26,7,2,'2024-08-18 14:18:37','Email','Added',NULL), - (27,106,2,'2024-08-28 11:12:37','Admin','Added',NULL), - (28,43,2,'2024-07-21 10:42:58','Email','Added',NULL), - (29,179,2,'2024-11-09 06:00:21','Admin','Added',NULL), - (30,10,2,'2024-07-19 20:34:37','Admin','Added',NULL), - (31,39,2,'2024-06-15 00:51:48','Admin','Added',NULL), - (32,51,2,'2024-08-20 07:30:38','Email','Added',NULL), - (33,134,2,'2024-10-24 15:04:37','Admin','Added',NULL), - (34,128,2,'2024-03-05 16:45:44','Email','Added',NULL), - (35,105,2,'2024-09-27 16:50:28','Admin','Added',NULL), - (36,158,2,'2024-08-13 02:54:25','Admin','Added',NULL), - (37,19,2,'2024-12-13 22:11:17','Email','Added',NULL), - (38,143,2,'2024-05-29 08:27:19','Email','Added',NULL), - (39,114,2,'2024-05-21 01:34:20','Email','Added',NULL), - (40,92,2,'2024-06-13 23:41:38','Email','Added',NULL), - (41,70,2,'2024-12-16 01:29:14','Email','Added',NULL), - (42,164,2,'2024-03-20 21:18:48','Email','Added',NULL), - (43,174,2,'2024-10-27 07:21:59','Email','Added',NULL), - (44,186,2,'2024-03-15 16:40:49','Email','Added',NULL), - (45,99,2,'2024-09-01 06:19:55','Admin','Added',NULL), - (46,52,2,'2024-11-09 17:26:12','Email','Added',NULL), - (47,24,2,'2024-07-28 18:42:53','Email','Added',NULL), - (48,138,2,'2024-08-08 21:08:58','Admin','Added',NULL), - (49,14,2,'2024-02-10 01:04:55','Admin','Added',NULL), - (50,196,2,'2024-08-07 13:36:39','Email','Added',NULL), - (51,166,2,'2024-10-19 20:50:24','Email','Added',NULL), - (52,156,2,'2024-11-02 10:06:37','Email','Added',NULL), - (53,73,2,'2024-05-14 12:46:08','Admin','Added',NULL), - (54,149,2,'2024-07-03 16:02:20','Email','Added',NULL), - (55,113,2,'2024-10-21 05:21:02','Admin','Added',NULL), - (56,93,2,'2024-10-30 21:12:06','Admin','Added',NULL), - (57,175,2,'2024-09-04 00:14:07','Admin','Added',NULL), - (58,152,2,'2024-05-22 05:53:24','Email','Added',NULL), - (59,131,2,'2024-08-05 14:20:48','Email','Added',NULL), - (60,72,2,'2024-10-02 15:56:47','Email','Added',NULL), - (61,13,3,'2024-08-09 18:19:35','Admin','Added',NULL), - (62,155,3,'2024-08-27 03:53:29','Admin','Added',NULL), - (63,117,3,'2024-03-16 13:27:50','Email','Added',NULL), - (64,37,3,'2024-02-19 21:20:25','Admin','Added',NULL), - (65,64,3,'2024-06-24 19:09:41','Admin','Added',NULL), - (66,80,3,'2024-04-02 05:34:18','Email','Added',NULL), - (67,110,3,'2024-06-13 08:57:51','Email','Added',NULL), - (68,130,3,'2024-12-28 14:01:49','Email','Added',NULL), - (69,23,3,'2024-09-07 23:37:21','Email','Added',NULL), - (70,2,3,'2024-12-08 12:55:53','Admin','Added',NULL), - (71,54,3,'2024-09-06 03:47:33','Admin','Added',NULL), - (72,78,3,'2024-10-28 18:02:43','Email','Added',NULL), - (73,69,3,'2024-11-13 02:27:20','Email','Added',NULL), - (74,145,3,'2025-01-23 17:35:22','Admin','Added',NULL), - (75,162,3,'2024-07-06 13:47:26','Admin','Added',NULL), - (76,40,4,'2024-09-08 15:39:33','Email','Added',NULL), - (77,147,4,'2024-03-26 01:24:57','Admin','Added',NULL), - (78,195,4,'2024-08-31 08:17:30','Admin','Added',NULL), - (79,21,4,'2024-06-25 09:38:54','Email','Added',NULL), - (80,179,4,'2024-07-22 12:19:29','Email','Added',NULL), - (81,158,4,'2024-03-04 05:03:43','Email','Added',NULL), - (82,174,4,'2025-01-20 12:37:32','Email','Added',NULL), - (83,196,4,'2024-10-30 09:50:20','Email','Added',NULL), - (84,202,4,'2024-05-12 16:13:14','Admin','Added',NULL); + (1,147,2,'2024-12-05 19:27:56','Admin','Added',NULL), +(2,198,2,'2024-03-30 21:48:57','Email','Added',NULL), +(3,182,2,'2025-02-01 14:21:49','Admin','Added',NULL), +(4,123,2,'2024-08-29 20:53:45','Email','Added',NULL), +(5,192,2,'2024-06-07 02:06:57','Admin','Added',NULL), +(6,72,2,'2024-07-20 14:58:34','Email','Added',NULL), +(7,96,2,'2024-05-01 07:20:56','Email','Added',NULL), +(8,18,2,'2025-01-21 18:21:39','Email','Added',NULL), +(9,97,2,'2025-01-15 21:59:48','Email','Added',NULL), +(10,159,2,'2024-06-03 19:56:16','Email','Added',NULL), +(11,13,2,'2024-03-22 23:40:00','Email','Added',NULL), +(12,84,2,'2024-10-02 08:17:34','Email','Added',NULL), +(13,24,2,'2024-06-26 23:31:30','Admin','Added',NULL), +(14,66,2,'2024-03-01 01:13:35','Email','Added',NULL), +(15,4,2,'2025-01-07 22:59:36','Email','Added',NULL), +(16,154,2,'2024-08-06 05:36:02','Email','Added',NULL), +(17,23,2,'2025-02-04 14:08:22','Email','Added',NULL), +(18,17,2,'2024-07-18 10:33:27','Email','Added',NULL), +(19,64,2,'2024-04-07 20:47:06','Email','Added',NULL), +(20,133,2,'2024-03-17 03:13:21','Admin','Added',NULL), +(21,172,2,'2024-10-27 07:23:43','Admin','Added',NULL), +(22,61,2,'2024-07-22 23:54:33','Email','Added',NULL), +(23,59,2,'2024-08-23 16:12:35','Admin','Added',NULL), +(24,151,2,'2024-03-28 01:43:26','Admin','Added',NULL), +(25,121,2,'2024-05-29 17:01:24','Email','Added',NULL), +(26,70,2,'2024-06-20 18:40:27','Email','Added',NULL), +(27,79,2,'2025-01-02 03:33:56','Admin','Added',NULL), +(28,187,2,'2024-09-04 11:40:52','Email','Added',NULL), +(29,153,2,'2025-01-25 22:57:23','Admin','Added',NULL), +(30,7,2,'2024-06-29 05:01:55','Admin','Added',NULL), +(31,25,2,'2025-02-02 10:05:20','Email','Added',NULL), +(32,9,2,'2024-10-28 05:04:15','Email','Added',NULL), +(33,95,2,'2024-02-15 13:49:56','Email','Added',NULL), +(34,189,2,'2024-03-03 06:50:10','Email','Added',NULL), +(35,146,2,'2024-12-02 06:11:24','Email','Added',NULL), +(36,145,2,'2024-07-18 19:52:26','Admin','Added',NULL), +(37,186,2,'2024-08-13 00:08:12','Admin','Added',NULL), +(38,99,2,'2024-12-15 01:51:19','Admin','Added',NULL), +(39,185,2,'2024-11-19 21:18:20','Email','Added',NULL), +(40,125,2,'2024-11-02 22:04:47','Admin','Added',NULL), +(41,132,2,'2024-09-14 00:53:29','Email','Added',NULL), +(42,170,2,'2025-01-21 10:48:08','Email','Added',NULL), +(43,184,2,'2024-06-29 22:40:33','Admin','Added',NULL), +(44,86,2,'2024-12-17 14:31:23','Email','Added',NULL), +(45,163,2,'2024-04-19 05:50:17','Email','Added',NULL), +(46,107,2,'2024-08-05 11:24:50','Email','Added',NULL), +(47,10,2,'2024-09-11 08:24:45','Email','Added',NULL), +(48,126,2,'2024-06-17 08:19:15','Admin','Added',NULL), +(49,93,2,'2025-01-31 05:20:59','Email','Added',NULL), +(50,27,2,'2024-12-21 04:04:00','Email','Added',NULL), +(51,71,2,'2025-02-03 09:06:14','Admin','Added',NULL), +(52,69,2,'2024-11-06 18:45:49','Admin','Added',NULL), +(53,108,2,'2024-10-04 02:34:35','Admin','Added',NULL), +(54,62,2,'2025-01-09 01:47:46','Admin','Added',NULL), +(55,81,2,'2024-05-14 14:36:17','Email','Added',NULL), +(56,45,2,'2024-12-18 09:49:45','Email','Added',NULL), +(57,148,2,'2025-01-19 09:02:28','Email','Added',NULL), +(58,128,2,'2025-01-01 02:06:57','Email','Added',NULL), +(59,179,2,'2025-01-25 08:12:43','Admin','Added',NULL), +(60,37,2,'2024-04-18 04:07:35','Email','Added',NULL), +(61,85,3,'2024-10-01 06:29:50','Email','Added',NULL), +(62,5,3,'2024-10-12 00:18:30','Admin','Added',NULL), +(63,63,3,'2025-01-11 21:49:58','Email','Added',NULL), +(64,106,3,'2024-07-18 08:32:21','Email','Added',NULL), +(65,150,3,'2024-10-30 01:59:43','Admin','Added',NULL), +(66,200,3,'2024-06-28 08:59:56','Email','Added',NULL), +(67,177,3,'2024-05-06 06:13:07','Email','Added',NULL), +(68,166,3,'2024-03-29 13:24:16','Email','Added',NULL), +(69,193,3,'2024-10-11 23:05:16','Email','Added',NULL), +(70,39,3,'2024-09-08 03:49:48','Admin','Added',NULL), +(71,143,3,'2024-09-02 08:33:08','Email','Added',NULL), +(72,52,3,'2024-03-31 22:05:22','Admin','Added',NULL), +(73,77,3,'2024-10-07 00:58:06','Email','Added',NULL), +(74,139,3,'2024-11-24 11:21:53','Email','Added',NULL), +(75,32,3,'2025-01-07 00:36:31','Admin','Added',NULL), +(76,147,4,'2024-03-06 07:45:30','Email','Added',NULL), +(77,18,4,'2024-11-19 11:36:38','Email','Added',NULL), +(78,4,4,'2024-06-13 09:55:48','Admin','Added',NULL), +(79,61,4,'2024-09-05 14:43:22','Email','Added',NULL), +(80,153,4,'2024-06-06 09:43:03','Admin','Added',NULL), +(81,145,4,'2024-05-18 04:02:31','Admin','Added',NULL), +(82,184,4,'2024-08-19 21:54:04','Email','Added',NULL), +(83,27,4,'2024-11-11 17:49:33','Email','Added',NULL), +(84,202,4,'2024-03-21 07:19:28','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -12231,11 +12264,11 @@ UNLOCK TABLES; LOCK TABLES `civicrm_tag` WRITE; /*!40000 ALTER TABLE `civicrm_tag` DISABLE KEYS */; INSERT INTO `civicrm_tag` (`id`, `name`, `label`, `description`, `parent_id`, `is_selectable`, `is_reserved`, `is_tagset`, `used_for`, `created_id`, `color`, `created_date`) VALUES - (1,'Non_profit','Non-profit','Any not-for-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0bcb21','2025-02-06 20:13:13'), - (2,'Company','Company','For-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#2260c3','2025-02-06 20:13:13'), - (3,'Government_Entity','Government Entity','Any governmental entity.',NULL,1,0,0,'civicrm_contact',NULL,'#cd4b13','2025-02-06 20:13:13'), - (4,'Major_Donor','Major Donor','High-value supporter of our organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0cdae9','2025-02-06 20:13:13'), - (5,'Volunteer','Volunteer','Active volunteers.',NULL,1,0,0,'civicrm_contact',NULL,'#f0dc00','2025-02-06 20:13:13'); + (1,'Non_profit','Non-profit','Any not-for-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0bcb21','2025-02-11 21:13:43'), +(2,'Company','Company','For-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#2260c3','2025-02-11 21:13:43'), +(3,'Government_Entity','Government Entity','Any governmental entity.',NULL,1,0,0,'civicrm_contact',NULL,'#cd4b13','2025-02-11 21:13:43'), +(4,'Major_Donor','Major Donor','High-value supporter of our organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0cdae9','2025-02-11 21:13:43'), +(5,'Volunteer','Volunteer','Active volunteers.',NULL,1,0,0,'civicrm_contact',NULL,'#f0dc00','2025-02-11 21:13:43'); /*!40000 ALTER TABLE `civicrm_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -12274,79 +12307,79 @@ LOCK TABLES `civicrm_uf_field` WRITE; /*!40000 ALTER TABLE `civicrm_uf_field` DISABLE KEYS */; INSERT INTO `civicrm_uf_field` (`id`, `uf_group_id`, `field_name`, `is_active`, `is_view`, `is_required`, `weight`, `help_post`, `help_pre`, `visibility`, `in_selector`, `is_searchable`, `location_type_id`, `phone_type_id`, `website_type_id`, `label`, `field_type`, `is_reserved`, `is_multi_summary`) VALUES (1,1,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), - (2,1,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), - (3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',0,0), - (4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',0,0), - (5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), - (6,1,'country',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), - (7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), - (8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), - (9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), - (10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), - (11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Participant Status','Participant',1,0), - (12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), - (13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), - (14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), - (15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), - (16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), - (17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Household Name','Household',0,0), - (18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), - (19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,NULL,'Home Phone','Contact',0,0), - (20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,NULL,'Home Mobile','Contact',0,0), - (21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Address','Contact',0,0), - (22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'City','Contact',0,0), - (23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'State','Contact',0,0), - (24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Postal Code','Contact',0,0), - (25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Email','Contact',0,0), - (26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Groups','Contact',0,0), - (27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Tags','Contact',0,0), - (28,7,'gender_id',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Gender','Individual',0,0), - (29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Date of Birth','Individual',0,0), - (30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',1,0), - (31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',1,0), - (32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), - (33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), - (34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), - (35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), - (36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,NULL,'Phone (Main) ','Contact',0,0), - (37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Email (Main) ','Contact',0,0), - (38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Street Address','Contact',0,0), - (39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'City','Contact',0,0), - (40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Postal Code','Contact',0,0), - (41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Country','Contact',0,0), - (42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'State/Province','Contact',0,0), - (43,10,'financial_type',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Contribution',1,0), - (44,10,'total_amount',1,0,0,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Contribution',1,0), - (45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Status','Contribution',1,0), - (46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Contribution',1,0), - (47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Source','Contribution',0,0), - (48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Contribution',0,0), - (49,10,'contribution_check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Contribution',0,0), - (50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Contribution',0,0), - (51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Invoice ID','Contribution',0,0), - (52,10,'soft_credit',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Contribution',0,0), - (53,10,'soft_credit_type',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Contribution',0,0), - (54,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Type','Membership',1,0), - (55,11,'membership_join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Member Since','Membership',1,0), - (56,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Start Date','Membership',1,0), - (57,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'End Date','Membership',1,0), - (58,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Source','Membership',0,0), - (59,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Membership',0,0), - (60,11,'financial_type',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Membership',1,0), - (61,11,'total_amount',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Membership',1,0), - (62,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Membership',1,0), - (63,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Membership',0,0), - (64,11,'contribution_check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Membership',0,0), - (65,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Status','Membership',1,0), - (66,11,'soft_credit',1,0,0,13,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Membership',0,0), - (67,11,'soft_credit_type',1,0,0,14,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Membership',0,0), - (68,12,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), - (69,12,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), - (70,12,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), - (71,13,'prefix_id',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Individual Prefix','Individual',1,0), - (72,13,'first_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',1,0), - (73,13,'last_name',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',1,0), - (74,13,'email',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Email Address','Contact',1,0); +(2,1,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), +(3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',0,0), +(4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',0,0), +(5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), +(6,1,'country',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), +(7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), +(8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), +(9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), +(10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), +(11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Participant Status','Participant',1,0), +(12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), +(13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), +(14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), +(15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), +(16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), +(17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Household Name','Household',0,0), +(18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), +(19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,NULL,'Home Phone','Contact',0,0), +(20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,NULL,'Home Mobile','Contact',0,0), +(21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Address','Contact',0,0), +(22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'City','Contact',0,0), +(23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'State','Contact',0,0), +(24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Postal Code','Contact',0,0), +(25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Email','Contact',0,0), +(26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Groups','Contact',0,0), +(27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Tags','Contact',0,0), +(28,7,'gender_id',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Gender','Individual',0,0), +(29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Date of Birth','Individual',0,0), +(30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',1,0), +(31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',1,0), +(32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), +(33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), +(34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), +(35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), +(36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,NULL,'Phone (Main) ','Contact',0,0), +(37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Email (Main) ','Contact',0,0), +(38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Street Address','Contact',0,0), +(39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'City','Contact',0,0), +(40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Postal Code','Contact',0,0), +(41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Country','Contact',0,0), +(42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'State/Province','Contact',0,0), +(43,10,'financial_type',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Contribution',1,0), +(44,10,'total_amount',1,0,0,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Contribution',1,0), +(45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Status','Contribution',1,0), +(46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Contribution',1,0), +(47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Source','Contribution',0,0), +(48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Contribution',0,0), +(49,10,'contribution_check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Contribution',0,0), +(50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Contribution',0,0), +(51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Invoice ID','Contribution',0,0), +(52,10,'soft_credit',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Contribution',0,0), +(53,10,'soft_credit_type',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Contribution',0,0), +(54,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Type','Membership',1,0), +(55,11,'membership_join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Member Since','Membership',1,0), +(56,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Start Date','Membership',1,0), +(57,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'End Date','Membership',1,0), +(58,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Source','Membership',0,0), +(59,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Membership',0,0), +(60,11,'financial_type',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Membership',1,0), +(61,11,'total_amount',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Membership',1,0), +(62,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Membership',1,0), +(63,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Membership',0,0), +(64,11,'contribution_check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Membership',0,0), +(65,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Status','Membership',1,0), +(66,11,'soft_credit',1,0,0,13,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Membership',0,0), +(67,11,'soft_credit_type',1,0,0,14,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Membership',0,0), +(68,12,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), +(69,12,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), +(70,12,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), +(71,13,'prefix_id',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Individual Prefix','Individual',1,0), +(72,13,'first_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',1,0), +(73,13,'last_name',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',1,0), +(74,13,'email',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Email Address','Contact',1,0); /*!40000 ALTER TABLE `civicrm_uf_field` ENABLE KEYS */; UNLOCK TABLES; @@ -12358,18 +12391,18 @@ LOCK TABLES `civicrm_uf_group` WRITE; /*!40000 ALTER TABLE `civicrm_uf_group` DISABLE KEYS */; INSERT INTO `civicrm_uf_group` (`id`, `name`, `is_active`, `group_type`, `title`, `frontend_title`, `description`, `help_pre`, `help_post`, `limit_listings_group_id`, `post_url`, `add_to_group_id`, `add_captcha`, `is_map`, `is_edit_link`, `is_uf_link`, `is_update_dupe`, `cancel_url`, `is_cms_user`, `notify`, `is_reserved`, `created_id`, `created_date`, `is_proximity_search`, `cancel_button_text`, `submit_button_text`, `add_cancel_button`) VALUES (1,'name_and_address',1,'Individual,Contact','Name and Address','Name and Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), - (2,'supporter_profile',1,'Individual,Contact','Supporter Profile','Supporter Profile',NULL,NULL,'

The information you provide will NOT be shared with any third party organisations.

Thank you for getting involved in our campaign!

',NULL,NULL,NULL,0,0,0,0,0,NULL,2,NULL,0,NULL,NULL,0,NULL,NULL,1), - (3,'participant_status',1,'Participant','Participant Status','Participant Status',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (4,'new_individual',1,'Individual,Contact','New Individual','New Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (5,'new_organization',1,'Organization,Contact','New Organization','New Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (6,'new_household',1,'Household,Contact','New Household','New Household',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (7,'summary_overlay',1,'Contact','Summary Overlay','Summary Overlay',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (8,'shared_address',1,'Contact','Shared Address','Shared Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (9,'on_behalf_organization',1,'Contact,Organization','On Behalf Of Organization','On Behalf Of Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (10,'contribution_batch_entry',1,'Contribution','Contribution Bulk Entry','Contribution Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (11,'membership_batch_entry',1,'Membership','Membership Bulk Entry','Membership Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), - (12,'event_registration',1,'Individual,Contact','Your Registration Info','Your Registration Info',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), - (13,'honoree_individual',1,'Individual,Contact','Honoree Individual','Honoree Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1); +(2,'supporter_profile',1,'Individual,Contact','Supporter Profile','Supporter Profile',NULL,NULL,'

The information you provide will NOT be shared with any third party organisations.

Thank you for getting involved in our campaign!

',NULL,NULL,NULL,0,0,0,0,0,NULL,2,NULL,0,NULL,NULL,0,NULL,NULL,1), +(3,'participant_status',1,'Participant','Participant Status','Participant Status',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(4,'new_individual',1,'Individual,Contact','New Individual','New Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(5,'new_organization',1,'Organization,Contact','New Organization','New Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(6,'new_household',1,'Household,Contact','New Household','New Household',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(7,'summary_overlay',1,'Contact','Summary Overlay','Summary Overlay',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(8,'shared_address',1,'Contact','Shared Address','Shared Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(9,'on_behalf_organization',1,'Contact,Organization','On Behalf Of Organization','On Behalf Of Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(10,'contribution_batch_entry',1,'Contribution','Contribution Bulk Entry','Contribution Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(11,'membership_batch_entry',1,'Membership','Membership Bulk Entry','Membership Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), +(12,'event_registration',1,'Individual,Contact','Your Registration Info','Your Registration Info',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), +(13,'honoree_individual',1,'Individual,Contact','Honoree Individual','Honoree Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_uf_group` ENABLE KEYS */; UNLOCK TABLES; @@ -12381,16 +12414,16 @@ LOCK TABLES `civicrm_uf_join` WRITE; /*!40000 ALTER TABLE `civicrm_uf_join` DISABLE KEYS */; INSERT INTO `civicrm_uf_join` (`id`, `is_active`, `module`, `entity_table`, `entity_id`, `weight`, `uf_group_id`, `module_data`) VALUES (1,1,'User Registration',NULL,NULL,1,1,NULL), - (2,1,'User Account',NULL,NULL,1,1,NULL), - (3,1,'Profile',NULL,NULL,1,1,NULL), - (4,1,'Profile',NULL,NULL,2,2,NULL), - (5,1,'Profile',NULL,NULL,11,12,NULL), - (6,1,'CiviEvent','civicrm_event',6,1,12,NULL), - (7,1,'CiviEvent','civicrm_event',1,1,12,NULL), - (8,1,'CiviEvent','civicrm_event',3,1,12,NULL), - (9,1,'CiviEvent','civicrm_event',4,1,12,NULL), - (10,1,'CiviEvent','civicrm_event',5,1,12,NULL), - (11,1,'CiviEvent','civicrm_event',2,1,12,NULL); +(2,1,'User Account',NULL,NULL,1,1,NULL), +(3,1,'Profile',NULL,NULL,1,1,NULL), +(4,1,'Profile',NULL,NULL,2,2,NULL), +(5,1,'Profile',NULL,NULL,11,12,NULL), +(6,1,'CiviEvent','civicrm_event',6,1,12,NULL), +(7,1,'CiviEvent','civicrm_event',1,1,12,NULL), +(8,1,'CiviEvent','civicrm_event',3,1,12,NULL), +(9,1,'CiviEvent','civicrm_event',4,1,12,NULL), +(10,1,'CiviEvent','civicrm_event',5,1,12,NULL), +(11,1,'CiviEvent','civicrm_event',2,1,12,NULL); /*!40000 ALTER TABLE `civicrm_uf_join` ENABLE KEYS */; UNLOCK TABLES; @@ -12419,24 +12452,23 @@ UNLOCK TABLES; LOCK TABLES `civicrm_website` WRITE; /*!40000 ALTER TABLE `civicrm_website` DISABLE KEYS */; INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES - (1,62,'http://birchwoodschool.org',1), - (2,96,'http://sierrasolutions.org',1), - (3,3,'http://northpointeducationpartnership.org',1), - (4,50,'http://sierrapoetry.org',1), - (5,12,'http://globalpoetrypartners.org',1), - (6,6,'http://creativeempowermentnetwork.org',1), - (7,200,'http://baysustainabilityfellowship.org',1), - (8,148,'http://montanadevelopmentfellowship.org',1), - (9,116,'http://creativefellowship.org',1), - (10,49,'http://sierrahealthtrust.org',1), - (11,123,'http://localpartners.org',1), - (12,46,'http://lincolnenvironmentalfund.org',1), - (13,161,'http://peapacksoftware.org',1), - (14,67,'http://wveducationassociation.org',1), - (15,17,'http://elmaliteracy.org',1), - (16,168,'http://sradvocacyfund.org',1), - (17,82,'http://alaskahealthfellowship.org',1), - (18,140,'http://woodbridgenetwork.org',1); + (1,34,'http://valliantcenter.org',1), +(2,156,'http://beechdevelopment.org',1), +(3,22,'http://alabamafoodnetwork.org',1), +(4,195,'http://jacksonhealth.org',1), +(5,169,'http://mlkingfamily.org',1), +(6,46,'http://globalliteracyinitiative.org',1), +(7,40,'http://rurallegal.org',1), +(8,136,'http://friendsdevelopmentnetwork.org',1), +(9,33,'http://jacksonadvocacy.org',1), +(10,131,'http://oklahomasports.org',1), +(11,181,'http://sierrasports.org',1), +(12,149,'http://kentuckyassociation.org',1), +(13,196,'http://indianaaction.org',1), +(14,155,'http://chatsworthfund.org',1), +(15,83,'http://harmantechnologysystems.org',1), +(16,158,'http://progressiveempowermentsolutions.org',1), +(17,191,'http://secondtechnologyfellowship.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -12457,24 +12489,23 @@ LOCK TABLES `civicrm_worldregion` WRITE; /*!40000 ALTER TABLE `civicrm_worldregion` DISABLE KEYS */; INSERT INTO `civicrm_worldregion` (`id`, `name`) VALUES (1,'Europe and Central Asia'), - (2,'America South, Central, North and Caribbean'), - (3,'Middle East and North Africa'), - (4,'Asia-Pacific'), - (5,'Africa West, East, Central and Southern'), - (99,'unassigned'); +(2,'America South, Central, North and Caribbean'), +(3,'Middle East and North Africa'), +(4,'Asia-Pacific'), +(5,'Africa West, East, Central and Southern'), +(99,'unassigned'); /*!40000 ALTER TABLE `civicrm_worldregion` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2025-02-06 20:13:18 +-- Dump completed on 2025-02-11 21:14:18 -- +--------------------------------------------------------------------+ -- | Copyright CiviCRM LLC. All rights reserved. | -- | | From 76aa5784eebabbcc163c98745af61cee46c27815 Mon Sep 17 00:00:00 2001 From: eileen Date: Wed, 12 Feb 2025 10:57:39 +1300 Subject: [PATCH 71/85] Ensure modelProps has contributionID --- CRM/Contribute/BAO/ContributionPage.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CRM/Contribute/BAO/ContributionPage.php b/CRM/Contribute/BAO/ContributionPage.php index d8ee2f650658..24e882d3daba 100644 --- a/CRM/Contribute/BAO/ContributionPage.php +++ b/CRM/Contribute/BAO/ContributionPage.php @@ -396,11 +396,14 @@ public static function sendMail($contactID, $values, $isTest = FALSE, $returnMes // use either the contribution or membership receipt, based on whether it’s a membership-related contrib or not $tokenContext = ['contactId' => (int) $contactID]; - if (!empty($tplParams['contributionID'])) { - $tokenContext['contributionId'] = $tplParams['contributionID']; + $modelProps = $values['modelProps'] ?? []; + $modelProps['contactID'] = (int) $contactID; + if (!empty($values['contribution_id'])) { + $modelProps['contributionID'] = $tokenContext['contributionId'] = (int) $values['contribution_id']; } if (!empty($values['membership_id'])) { $tokenContext['membershipId'] = $values['membership_id']; + $modelProps['membershipID'] = (int) $values['membership_id']; } $sendTemplateParams = [ 'workflow' => !empty($values['membership_id']) ? 'membership_online_receipt' : 'contribution_online_receipt', @@ -409,7 +412,7 @@ public static function sendMail($contactID, $values, $isTest = FALSE, $returnMes 'tokenContext' => $tokenContext, 'isTest' => $isTest, 'PDFFilename' => 'receipt.pdf', - 'modelProps' => $values['modelProps'] ?? [], + 'modelProps' => $modelProps, ]; if ($returnMessageText) { From 71e5016921cccfe576c21ce933f9d6a79941d6ef Mon Sep 17 00:00:00 2001 From: benjamin Date: Thu, 6 Feb 2025 12:47:57 +0000 Subject: [PATCH 72/85] add deprecation message to ConfigSetting::doSiteMove --- CRM/Core/BAO/ConfigSetting.php | 7 ++++++- bin/migrate/move.php | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CRM/Core/BAO/ConfigSetting.php b/CRM/Core/BAO/ConfigSetting.php index 14a504954b45..9564fab2901b 100644 --- a/CRM/Core/BAO/ConfigSetting.php +++ b/CRM/Core/BAO/ConfigSetting.php @@ -245,12 +245,17 @@ public static function applyLocale($settings, $activatedLocales) { /** * @param array $defaultValues + * @deprecated + * + * Does anyone use this function? Does it do what you expect? * * @return string * @throws Exception */ public static function doSiteMove($defaultValues = []) { - $moveStatus = ts('Beginning site move process...') . '
'; + $deprecatedMessage = ts('WARNING: doSiteMove is deprecated and might not do what you want'); + \CRM_Core_Error::deprecatedWarning($deprecatedMessage); + $moveStatus = ts('Beginning site move process...') . '
' . $deprecatedMessage . '
'; $settings = Civi::settings(); foreach (array_merge(self::getPathSettings(), self::getUrlSettings()) as $key) { diff --git a/bin/migrate/move.php b/bin/migrate/move.php index c1021c1ce993..fa32b3423a18 100644 --- a/bin/migrate/move.php +++ b/bin/migrate/move.php @@ -28,6 +28,7 @@ function run() { CRM_Utils_System::authenticateAbort("User does not have required permission (administer CiviCRM).\n", TRUE); } + // doSiteMove is deprecated and slated for removal require_once 'CRM/Core/BAO/ConfigSetting.php'; $moveStatus = CRM_Core_BAO_ConfigSetting::doSiteMove(); From be4d9dc01079728d09e3f8f352172093d1486e06 Mon Sep 17 00:00:00 2001 From: benjamin Date: Thu, 6 Feb 2025 15:29:03 +0000 Subject: [PATCH 73/85] remove UpdateConfigBackend setting page --- .../Form/Setting/UpdateConfigBackend.php | 59 ------------------- CRM/Core/xml/Menu/Admin.xml | 8 --- CRM/Upgrade/Incremental/php/SixOne.php | 16 +++++ sql/test_data_second_domain.mysql | 1 - .../Form/Setting/UpdateConfigBackend.tpl | 22 ------- xml/templates/civicrm_navigation.tpl | 1 - 6 files changed, 16 insertions(+), 91 deletions(-) delete mode 100644 CRM/Admin/Form/Setting/UpdateConfigBackend.php delete mode 100644 templates/CRM/Admin/Form/Setting/UpdateConfigBackend.tpl diff --git a/CRM/Admin/Form/Setting/UpdateConfigBackend.php b/CRM/Admin/Form/Setting/UpdateConfigBackend.php deleted file mode 100644 index aa7231649c75..000000000000 --- a/CRM/Admin/Form/Setting/UpdateConfigBackend.php +++ /dev/null @@ -1,59 +0,0 @@ -setTitle(ts('Settings - Cleanup Caches and Update Paths')); - - $this->addButtons([ - [ - 'type' => 'next', - 'name' => ts('Cleanup Caches'), - 'subName' => 'cleanup', - 'icon' => 'fa-undo', - - ], - [ - 'type' => 'next', - 'name' => ts('Reset Paths'), - 'subName' => 'resetpaths', - 'icon' => 'fa-terminal', - ], - ]); - } - - public function postProcess() { - if (isset($_REQUEST['_qf_UpdateConfigBackend_next_cleanup'])) { - \Civi\Api4\System::flush(FALSE)->execute(); - CRM_Core_Session::setStatus(ts('Cache has been cleared and menu has been rebuilt successfully.'), ts("Success"), "success"); - } - elseif (isset($_REQUEST['_qf_UpdateConfigBackend_next_resetpaths'])) { - $msg = CRM_Core_BAO_ConfigSetting::doSiteMove(); - CRM_Core_Session::setStatus($msg, ts("Success"), "success"); - } - - CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/setting/updateConfigBackend', 'reset=1')); - } - -} diff --git a/CRM/Core/xml/Menu/Admin.xml b/CRM/Core/xml/Menu/Admin.xml index 5fccdab1a4a9..dd162f0872ed 100644 --- a/CRM/Core/xml/Menu/Admin.xml +++ b/CRM/Core/xml/Menu/Admin.xml @@ -515,14 +515,6 @@ System Settings 70 - - civicrm/admin/setting/updateConfigBackend - Cleanup Caches and Update Paths - Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain. - CRM_Admin_Form_Setting_UpdateConfigBackend - System Settings - 80 - civicrm/admin/setting/uf CMS Database Integration diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index 2ada821b94ac..02dd4d0268a6 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -29,6 +29,22 @@ class CRM_Upgrade_Incremental_php_SixOne extends CRM_Upgrade_Incremental_Base { */ public function upgrade_6_1_alpha1($rev): void { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); + + $this->addTask(ts('Remove Clear Caches & Reset Paths from Nav Menu'), 'updateUpdateConfigBackendNavItem'); + } + + /** + * The updateConfigBackend page has been removed - so remove any nav items linking to it + * + * @return bool + */ + public static function updateUpdateConfigBackendNavItem() { + // delete any entries to the path that no longer exists + \Civi\Api4\Navigation::delete(FALSE) + ->addWhere('url', '=', 'civicrm/admin/setting/updateConfigBackend?reset=1') + ->execute(); + + return TRUE; } } diff --git a/sql/test_data_second_domain.mysql b/sql/test_data_second_domain.mysql index 5f797bcc452d..a5281466e5fe 100644 --- a/sql/test_data_second_domain.mysql +++ b/sql/test_data_second_domain.mysql @@ -370,7 +370,6 @@ VALUES ( @domainID, 'civicrm/admin/setting/misc&reset=1', 'Undelete, Logging and ReCAPTCHA', 'Undelete, Logging and ReCAPTCHA', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 6 ), ( @domainID, 'civicrm/admin/setting/path&reset=1', 'Directories', 'Directories', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 7 ), ( @domainID, 'civicrm/admin/setting/url&reset=1', 'Resource URLs', 'Resource URLs', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 8 ), - ( @domainID, 'civicrm/admin/setting/updateConfigBackend&reset=1', 'Cleanup Caches and Update Paths', 'Cleanup Caches and Update Paths', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 9 ), ( @domainID, 'civicrm/admin/setting/uf&reset=1', 'CMS Database Integration', 'CMS Integration', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 10 ), ( @domainID, 'civicrm/admin/options/safe_file_extension&group=safe_file_extension&reset=1', 'Safe File Extensions', 'Safe File Extensions','administer CiviCRM', '',@systemSettingslastID, '1', NULL, 11 ), ( @domainID, 'civicrm/admin/options?reset=1', 'Option Groups', 'Option Groups', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 12 ), diff --git a/templates/CRM/Admin/Form/Setting/UpdateConfigBackend.tpl b/templates/CRM/Admin/Form/Setting/UpdateConfigBackend.tpl deleted file mode 100644 index d398f2c1f77b..000000000000 --- a/templates/CRM/Admin/Form/Setting/UpdateConfigBackend.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{* - +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC. All rights reserved. | - | | - | This work is published under the GNU AGPLv3 license with some | - | permitted exceptions and without any warranty. For full license | - | and copyright information, see https://civicrm.org/licensing | - +--------------------------------------------------------------------+ -*} -
-

- {ts}When migrating a site to a new server, the paths and URLs of your CiviCRM installation may change. {/ts} -

-

- {capture assign="pathsURL"}{crmURL p="civicrm/admin/setting/path" q="reset=1"}{/capture} - {capture assign="urlsURL"}{crmURL p="civicrm/admin/setting/url" q="reset=1"}{/capture} - {ts 1=$pathsURL 2=$urlsURL}The old paths and URLs may be retained in some database records. Use this form to clear caches or to reset paths to their defaults. If you need further customizations, then update the Directories and Resource URLs.{/ts} -

-
-
-
{include file="CRM/common/formButtons.tpl" location="bottom"}
-
diff --git a/xml/templates/civicrm_navigation.tpl b/xml/templates/civicrm_navigation.tpl index 56744739c7b6..026856f96fa9 100644 --- a/xml/templates/civicrm_navigation.tpl +++ b/xml/templates/civicrm_navigation.tpl @@ -352,7 +352,6 @@ VALUES ( @domainID, 'civicrm/admin/setting/component?reset=1', '{ts escape="sql" skip="true"}Components{/ts}', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/extensions?reset=1', '{ts escape="sql" skip="true"}Extensions{/ts}', 'Manage Extensions', 'administer CiviCRM', '', @systemSettingslastID, '1', 1, 3 ), - ( @domainID, 'civicrm/admin/setting/updateConfigBackend?reset=1', '{ts escape="sql" skip="true"}Cleanup Caches and Update Paths{/ts}', 'Cleanup Caches and Update Paths', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 4 ), ( @domainID, 'civicrm/admin/setting/uf?reset=1', '{ts escape="sql" skip="true"}CMS Database Integration{/ts}', 'CMS Integration', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 5 ), ( @domainID, 'civicrm/admin/setting/debug?reset=1', '{ts escape="sql" skip="true"}Debugging and Error Handling{/ts}','Debugging and Error Handling', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 6 ), ( @domainID, 'civicrm/admin/setting/path?reset=1', '{ts escape="sql" skip="true"}Directories{/ts}', 'Directories', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 7 ), From 84d01e45ff7fcb6e4afed49767ceaf983fae437f Mon Sep 17 00:00:00 2001 From: benjamin Date: Thu, 6 Feb 2025 15:31:12 +0000 Subject: [PATCH 74/85] add a direct Clear Caches nav menu item --- CRM/Upgrade/Incremental/php/SixOne.php | 24 +++++++++++++++++++++++- sql/test_data_second_domain.mysql | 5 +++-- xml/templates/civicrm_navigation.tpl | 1 + 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index 02dd4d0268a6..54d80ccd2b18 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -30,12 +30,14 @@ class CRM_Upgrade_Incremental_php_SixOne extends CRM_Upgrade_Incremental_Base { public function upgrade_6_1_alpha1($rev): void { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); - $this->addTask(ts('Remove Clear Caches & Reset Paths from Nav Menu'), 'updateUpdateConfigBackendNavItem'); + $this->addTask(ts('Replace Clear Caches & Reset Paths with Clear Caches in Nav Menu'), 'updateUpdateConfigBackendNavItem'); } /** * The updateConfigBackend page has been removed - so remove any nav items linking to it * + * Add a new menu item to Clear Caches directly + * * @return bool */ public static function updateUpdateConfigBackendNavItem() { @@ -44,6 +46,26 @@ public static function updateUpdateConfigBackendNavItem() { ->addWhere('url', '=', 'civicrm/admin/setting/updateConfigBackend?reset=1') ->execute(); + $systemSettingsNavItem = \Civi\Api4\Navigation::get(FALSE) + ->addWhere('name', '=', 'System Settings') + ->execute() + ->first()['id'] ?? NULL; + + if (!$systemSettingsNavItem) { + \Civi::log()->debug('Couldn\'t find System Settings Nav Menu Item to create new Clear Caches entry'); + return TRUE; + } + + // Q: how to handle multi domain? + \Civi\Api4\Navigation::create(FALSE) + ->addValue('url', 'civicrm/menu/rebuild?reset=1') + ->addValue('label', ts('Clear Caches')) + ->addValue('name', 'cache_clear') + ->addValue('has_separator', TRUE) + ->addValue('parent_id', $systemSettingsNavItem) + ->addValue('weight', 0) + ->execute(); + return TRUE; } diff --git a/sql/test_data_second_domain.mysql b/sql/test_data_second_domain.mysql index a5281466e5fe..0c1bfa6fc61c 100644 --- a/sql/test_data_second_domain.mysql +++ b/sql/test_data_second_domain.mysql @@ -362,8 +362,9 @@ SET @systemSettingslastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES - ( @domainID, 'civicrm/admin/setting/component&reset=1', 'Enable CiviCRM Components', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/extensions&reset=1', 'Manage Extensions', 'Manage Extensions', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/menu/rebuild?reset=1', 'Clear Caches', 'cache_clear', 'administer CiviCRM', '', @systemSettingslastID, '1', 1, 0 ), + ( @domainID, 'civicrm/admin/setting/component&reset=1', 'Enable CiviCRM Components', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/extensions&reset=1', 'Manage Extensions', 'Manage Extensions', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 2 ), ( @domainID, 'civicrm/admin/setting/smtp&reset=1', 'Outbound Email (SMTP/Sendmail)', 'Outbound Email', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', 'Payment Processors', 'Payment Processors', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 4 ), ( @domainID, 'civicrm/admin/setting/mapping&reset=1', 'Mapping and Geocoding', 'Mapping and Geocoding', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 5 ), diff --git a/xml/templates/civicrm_navigation.tpl b/xml/templates/civicrm_navigation.tpl index 026856f96fa9..89b6a3607638 100644 --- a/xml/templates/civicrm_navigation.tpl +++ b/xml/templates/civicrm_navigation.tpl @@ -349,6 +349,7 @@ INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES + ( @domainID, 'civicrm/menu/rebuild?reset=1', '{ts escape="sql" skip="true"}Clear Caches{/ts}', 'cache_clear', 'administer CiviCRM', '', @systemSettingslastID, '1', 1, 0 ), ( @domainID, 'civicrm/admin/setting/component?reset=1', '{ts escape="sql" skip="true"}Components{/ts}', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/extensions?reset=1', '{ts escape="sql" skip="true"}Extensions{/ts}', 'Manage Extensions', 'administer CiviCRM', '', @systemSettingslastID, '1', 1, 3 ), From e58f96977556843bd58aff65626a9095af0fc503 Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 20:01:56 +0000 Subject: [PATCH 75/85] 6.1 upgrader - use SQL rather than Api4 --- CRM/Upgrade/Incremental/php/SixOne.php | 42 +++++++++++++++----------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index 54d80ccd2b18..b0372c09135e 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -30,7 +30,7 @@ class CRM_Upgrade_Incremental_php_SixOne extends CRM_Upgrade_Incremental_Base { public function upgrade_6_1_alpha1($rev): void { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); - $this->addTask(ts('Replace Clear Caches & Reset Paths with Clear Caches in Nav Menu'), 'updateUpdateConfigBackendNavItem'); + $this->addTask('Replace Clear Caches & Reset Paths with Clear Caches in Nav Menu', 'updateUpdateConfigBackendNavItem'); } /** @@ -41,30 +41,38 @@ public function upgrade_6_1_alpha1($rev): void { * @return bool */ public static function updateUpdateConfigBackendNavItem() { + $domainID = CRM_Core_Config::domainID(); + // delete any entries to the path that no longer exists - \Civi\Api4\Navigation::delete(FALSE) - ->addWhere('url', '=', 'civicrm/admin/setting/updateConfigBackend?reset=1') - ->execute(); + // doesn't seem necessary to restrict by domain? + CRM_Core_DAO::executeQuery('DELETE FROM civicrm_navigation WHERE url = "civicrm/admin/setting/updateConfigBackend?reset=1"'); - $systemSettingsNavItem = \Civi\Api4\Navigation::get(FALSE) - ->addWhere('name', '=', 'System Settings') - ->execute() - ->first()['id'] ?? NULL; + $systemSettingsNavItem = CRM_Core_DAO::singleValueQuery("SELECT id + FROM civicrm_navigation + WHERE name = 'System Settings' AND domain_id = {$domainID} + "); if (!$systemSettingsNavItem) { \Civi::log()->debug('Couldn\'t find System Settings Nav Menu Item to create new Clear Caches entry'); return TRUE; } - // Q: how to handle multi domain? - \Civi\Api4\Navigation::create(FALSE) - ->addValue('url', 'civicrm/menu/rebuild?reset=1') - ->addValue('label', ts('Clear Caches')) - ->addValue('name', 'cache_clear') - ->addValue('has_separator', TRUE) - ->addValue('parent_id', $systemSettingsNavItem) - ->addValue('weight', 0) - ->execute(); + $exists = CRM_Core_DAO::singleValueQuery("SELECT id + FROM civicrm_navigation + WHERE name = 'cache_clear' AND domain_id = {$domainID} + "); + + if ($exists) { + // already exists, we can finish early + return TRUE; + } + + CRM_Core_DAO::executeQuery(" + INSERT INTO civicrm_navigation + (url, label, name, has_separator, parent_id, weight) + VALUES + ('civicrm/menu/rebuild?reset=1', 'cache_clear', 1, {$systemSettingsNavItem}, 0) + "); return TRUE; } From 94d4c8d95d35b29211f8aabb8a946a193f092cbb Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 19:49:01 +0000 Subject: [PATCH 76/85] update deleted files list --- deleted-files-list.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deleted-files-list.json b/deleted-files-list.json index 43440c60c5b7..aa888776b0c8 100644 --- a/deleted-files-list.json +++ b/deleted-files-list.json @@ -18,6 +18,7 @@ "CRM/Admin/Form/Preferences/Campaign.php", "CRM/Admin/Form/Preferences/Event.php", "CRM/Admin/Form/Preferences/Multisite.php", + "CRM/Admin/Form/Setting/UpdateConfigBackend.php", "CRM/Admin/Form/Tag.php", "CRM/Admin/Page/CKEditorConfig.php", "CRM/Admin/Page/CMSUser.php", @@ -215,8 +216,7 @@ "CRM/Upgrade/4.7.14.msg_template/*", "CRM/Upgrade/4.7.19.msg_template/*", "CRM/Upgrade/4.7.22.msg_template/*", - "CRM/Upgrade/4.7.23.msg_template/civicrm_msg_template.tpl", - "CRM/Upgrade/4.7.23.msg_template/message_templates/*", + "CRM/Upgrade/4.7.23.msg_template/*", "CRM/Upgrade/4.7.4.msg_template/*", "CRM/Upgrade/4.7.5.msg_template/*", "CRM/Upgrade/4.7.alpha1.msg_template/*", @@ -1309,6 +1309,7 @@ "templates/CRM/Admin/Form/Preferences/Multisite.tpl", "templates/CRM/Admin/Form/Setting/Event.tpl", "templates/CRM/Admin/Form/Setting/Localization.js", + "templates/CRM/Admin/Form/Setting/UpdateConfigBackend.tpl", "templates/CRM/Admin/Form/Setting/versionCheckOptions.js", "templates/CRM/Admin/Form/Tag.tpl", "templates/CRM/Admin/Page/CKEditorConfig.tpl", From b7ac756346914372324c994f92013524028f2dca Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 20:12:33 +0000 Subject: [PATCH 77/85] cache clear menu item - set permission in upgrader --- CRM/Upgrade/Incremental/php/SixOne.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index b0372c09135e..2d302894495d 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -69,9 +69,17 @@ public static function updateUpdateConfigBackendNavItem() { CRM_Core_DAO::executeQuery(" INSERT INTO civicrm_navigation - (url, label, name, has_separator, parent_id, weight) + ( + url, label, name, + has_separator, parent_id, weight, + permission, domain_id + ) VALUES - ('civicrm/menu/rebuild?reset=1', 'cache_clear', 1, {$systemSettingsNavItem}, 0) + ( + 'civicrm/menu/rebuild?reset=1', 'Clear Caches', 'cache_clear', + 1, {$systemSettingsNavItem}, 0, + 'administer CiviCRM', {$domainID} + ) "); return TRUE; From c5f87d25f18c44dad53500e711964bc18b07064e Mon Sep 17 00:00:00 2001 From: benjamin Date: Mon, 10 Feb 2025 12:33:27 +0000 Subject: [PATCH 78/85] System.ResetPaths - add deprecation notice --- Civi/Api4/Action/System/ResetPaths.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Civi/Api4/Action/System/ResetPaths.php b/Civi/Api4/Action/System/ResetPaths.php index 87b3365610f8..dfd7d39bd895 100644 --- a/Civi/Api4/Action/System/ResetPaths.php +++ b/Civi/Api4/Action/System/ResetPaths.php @@ -14,10 +14,13 @@ /** * Reset paths using doSiteMove(). + * + * @deprecated */ class ResetPaths extends \Civi\Api4\Generic\AbstractAction { public function _run(\Civi\Api4\Generic\Result $result) { + \CRM_Core_Error::deprecatedWarning('System.ResetPaths and underlying doSiteMove is deprecated and due to be removed around 6.7'); \CRM_Core_BAO_ConfigSetting::doSiteMove(); } From 9321f63428e38d55f12247ba53cbcd9d4bc7b4eb Mon Sep 17 00:00:00 2001 From: ufundo Date: Tue, 11 Feb 2025 22:13:35 +0000 Subject: [PATCH 79/85] regenerate civicrm_generated --- sql/civicrm_generated.mysql | 21942 +++++++++++++++++----------------- 1 file changed, 10966 insertions(+), 10976 deletions(-) diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index 15c63ee77d2b..b4d737098b83 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,15 +1,16 @@ --- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for debian-linux-gnu (x86_64) +-- MySQL dump 10.13 Distrib 8.0.41, for Linux (x86_64) -- --- Host: database Database: dmastercivicrm +-- Host: 127.0.0.1 Database: db -- ------------------------------------------------------ --- Server version 10.4.32-MariaDB-1:10.4.32+maria~ubu2004 +-- Server version 8.0.41 /*!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 utf8mb4 */; +/*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; @@ -22,7 +23,7 @@ LOCK TABLES `civicrm_acl` WRITE; /*!40000 ALTER TABLE `civicrm_acl` DISABLE KEYS */; INSERT INTO `civicrm_acl` (`id`, `name`, `deny`, `entity_table`, `entity_id`, `operation`, `object_table`, `object_id`, `acl_table`, `acl_id`, `is_active`, `priority`) VALUES (1,'Edit All Contacts',0,'civicrm_acl_role',1,'Edit','civicrm_group',0,NULL,NULL,1,1), -(2,'Advisory board access to volunteers',0,'civicrm_acl_role',2,'Edit','civicrm_group',3,NULL,NULL,1,2); + (2,'Advisory board access to volunteers',0,'civicrm_acl_role',2,'Edit','civicrm_group',3,NULL,NULL,1,2); /*!40000 ALTER TABLE `civicrm_acl` ENABLE KEYS */; UNLOCK TABLES; @@ -52,7 +53,7 @@ LOCK TABLES `civicrm_acl_entity_role` WRITE; /*!40000 ALTER TABLE `civicrm_acl_entity_role` DISABLE KEYS */; INSERT INTO `civicrm_acl_entity_role` (`id`, `acl_role_id`, `entity_table`, `entity_id`, `is_active`) VALUES (1,1,'civicrm_group',1,1), -(2,3,'civicrm_group',4,1); + (2,3,'civicrm_group',4,1); /*!40000 ALTER TABLE `civicrm_acl_entity_role` ENABLE KEYS */; UNLOCK TABLES; @@ -81,647 +82,647 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES - (1,NULL,56,'Subject for Interview','2024-12-10 21:24:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(2,NULL,9,'Subject for Tell a Friend','2024-10-13 16:27:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(3,NULL,22,'Subject for Print/Merge Document','2024-03-27 07:10:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(4,NULL,56,'Subject for Interview','2024-07-02 11:23:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(5,NULL,1,'Subject for Meeting','2025-02-05 04:38:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(6,NULL,2,'Subject for Phone Call','2024-03-09 23:27:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(7,NULL,22,'Subject for Print/Merge Document','2024-03-31 16:01:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(8,NULL,56,'Subject for Interview','2024-11-14 07:08:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(9,NULL,22,'Subject for Print/Merge Document','2025-02-06 19:46:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(10,NULL,22,'Subject for Print/Merge Document','2024-11-16 07:43:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(11,NULL,1,'Subject for Meeting','2024-10-16 03:13:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(12,NULL,9,'Subject for Tell a Friend','2024-12-12 08:01:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(13,NULL,2,'Subject for Phone Call','2024-07-19 16:33:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(14,NULL,22,'Subject for Print/Merge Document','2024-09-18 06:10:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(15,NULL,2,'Subject for Phone Call','2025-01-02 02:42:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(16,NULL,22,'Subject for Print/Merge Document','2024-11-27 23:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(17,NULL,22,'Subject for Print/Merge Document','2024-08-22 00:09:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:08','2025-02-11 21:14:08'), -(18,NULL,56,'Subject for Interview','2024-11-30 15:54:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(19,NULL,9,'Subject for Tell a Friend','2024-09-05 04:59:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(20,NULL,1,'Subject for Meeting','2024-09-28 01:21:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(21,NULL,56,'Subject for Interview','2024-11-01 02:39:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(22,NULL,9,'Subject for Tell a Friend','2024-08-15 14:14:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(23,NULL,56,'Subject for Interview','2024-12-18 19:54:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(24,NULL,1,'Subject for Meeting','2024-12-01 11:25:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(25,NULL,22,'Subject for Print/Merge Document','2024-03-01 23:09:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(26,NULL,56,'Subject for Interview','2024-05-23 10:31:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(27,NULL,9,'Subject for Tell a Friend','2024-09-02 10:43:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(28,NULL,22,'Subject for Print/Merge Document','2024-03-07 19:08:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(29,NULL,22,'Subject for Print/Merge Document','2024-05-24 05:03:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(30,NULL,56,'Subject for Interview','2025-01-02 01:00:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(31,NULL,1,'Subject for Meeting','2024-03-03 23:02:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(32,NULL,2,'Subject for Phone Call','2024-08-29 01:32:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(33,NULL,1,'Subject for Meeting','2024-09-23 17:33:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(34,NULL,1,'Subject for Meeting','2024-04-13 02:47:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(35,NULL,22,'Subject for Print/Merge Document','2024-11-01 03:19:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(36,NULL,22,'Subject for Print/Merge Document','2024-11-21 20:55:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(37,NULL,22,'Subject for Print/Merge Document','2024-07-26 05:17:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(38,NULL,56,'Subject for Interview','2024-09-24 08:16:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(39,NULL,22,'Subject for Print/Merge Document','2024-09-24 15:15:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(40,NULL,56,'Subject for Interview','2024-04-04 04:58:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(41,NULL,9,'Subject for Tell a Friend','2024-02-26 16:50:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(42,NULL,1,'Subject for Meeting','2024-07-16 21:41:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(43,NULL,2,'Subject for Phone Call','2024-04-01 18:10:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(44,NULL,2,'Subject for Phone Call','2024-03-17 09:19:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(45,NULL,2,'Subject for Phone Call','2025-01-18 15:25:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(46,NULL,56,'Subject for Interview','2024-07-26 21:56:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(47,NULL,56,'Subject for Interview','2024-07-25 07:10:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(48,NULL,22,'Subject for Print/Merge Document','2024-10-16 03:27:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(49,NULL,2,'Subject for Phone Call','2024-10-13 12:56:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(50,NULL,9,'Subject for Tell a Friend','2024-11-02 23:02:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(51,NULL,22,'Subject for Print/Merge Document','2024-06-01 19:29:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(52,NULL,9,'Subject for Tell a Friend','2024-08-31 10:50:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(53,NULL,56,'Subject for Interview','2024-10-31 02:37:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(54,NULL,2,'Subject for Phone Call','2024-03-16 00:11:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(55,NULL,2,'Subject for Phone Call','2024-03-26 04:47:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(56,NULL,56,'Subject for Interview','2024-12-26 15:47:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(57,NULL,2,'Subject for Phone Call','2024-09-04 06:06:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(58,NULL,22,'Subject for Print/Merge Document','2024-06-03 02:26:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(59,NULL,22,'Subject for Print/Merge Document','2024-10-25 23:04:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(60,NULL,56,'Subject for Interview','2024-10-26 10:30:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(61,NULL,22,'Subject for Print/Merge Document','2024-03-08 04:44:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(62,NULL,2,'Subject for Phone Call','2024-03-04 13:56:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(63,NULL,1,'Subject for Meeting','2024-11-30 15:17:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(64,NULL,9,'Subject for Tell a Friend','2024-12-13 19:59:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(65,NULL,9,'Subject for Tell a Friend','2024-05-23 04:35:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(66,NULL,1,'Subject for Meeting','2025-01-30 09:36:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(67,NULL,56,'Subject for Interview','2024-10-23 22:18:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(68,NULL,9,'Subject for Tell a Friend','2024-07-31 03:28:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(69,NULL,2,'Subject for Phone Call','2024-03-01 09:24:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(70,NULL,22,'Subject for Print/Merge Document','2024-04-07 04:57:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(71,NULL,9,'Subject for Tell a Friend','2024-06-08 04:22:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(72,NULL,9,'Subject for Tell a Friend','2024-09-01 14:41:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(73,NULL,56,'Subject for Interview','2024-11-12 03:08:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(74,NULL,2,'Subject for Phone Call','2025-01-03 16:58:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(75,NULL,2,'Subject for Phone Call','2024-07-01 22:13:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(76,NULL,22,'Subject for Print/Merge Document','2024-10-29 00:15:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(77,NULL,9,'Subject for Tell a Friend','2024-04-11 10:09:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(78,NULL,1,'Subject for Meeting','2024-08-18 08:08:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(79,NULL,9,'Subject for Tell a Friend','2024-07-23 11:24:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(80,NULL,22,'Subject for Print/Merge Document','2024-12-22 19:29:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(81,NULL,9,'Subject for Tell a Friend','2024-07-07 20:20:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(82,NULL,22,'Subject for Print/Merge Document','2024-11-13 15:52:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(83,NULL,9,'Subject for Tell a Friend','2025-01-29 17:10:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(84,NULL,9,'Subject for Tell a Friend','2024-05-02 05:08:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(85,NULL,9,'Subject for Tell a Friend','2024-08-10 04:29:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(86,NULL,2,'Subject for Phone Call','2024-08-06 14:37:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(87,NULL,56,'Subject for Interview','2024-12-13 14:08:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(88,NULL,22,'Subject for Print/Merge Document','2024-07-15 22:56:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(89,NULL,56,'Subject for Interview','2024-06-24 06:14:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(90,NULL,2,'Subject for Phone Call','2024-12-12 18:40:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(91,NULL,1,'Subject for Meeting','2024-06-29 15:09:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(92,NULL,22,'Subject for Print/Merge Document','2024-05-24 03:03:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(93,NULL,22,'Subject for Print/Merge Document','2024-07-22 15:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(94,NULL,9,'Subject for Tell a Friend','2024-06-19 13:53:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(95,NULL,9,'Subject for Tell a Friend','2024-12-26 06:37:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(96,NULL,9,'Subject for Tell a Friend','2024-09-18 03:54:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(97,NULL,9,'Subject for Tell a Friend','2024-09-08 01:18:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(98,NULL,22,'Subject for Print/Merge Document','2024-11-29 10:07:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(99,NULL,1,'Subject for Meeting','2024-07-09 19:58:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(100,NULL,56,'Subject for Interview','2024-12-15 03:09:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(101,NULL,2,'Subject for Phone Call','2024-03-14 22:37:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(102,NULL,2,'Subject for Phone Call','2024-10-10 23:02:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(103,NULL,56,'Subject for Interview','2024-04-16 04:38:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(104,NULL,2,'Subject for Phone Call','2024-11-20 11:13:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(105,NULL,1,'Subject for Meeting','2024-12-12 19:54:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(106,NULL,9,'Subject for Tell a Friend','2025-01-21 12:20:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(107,NULL,22,'Subject for Print/Merge Document','2024-10-13 14:45:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(108,NULL,56,'Subject for Interview','2024-12-14 07:49:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(109,NULL,22,'Subject for Print/Merge Document','2024-09-14 12:01:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(110,NULL,2,'Subject for Phone Call','2024-10-18 04:12:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(111,NULL,9,'Subject for Tell a Friend','2024-07-07 11:52:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(112,NULL,9,'Subject for Tell a Friend','2024-07-01 07:16:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(113,NULL,9,'Subject for Tell a Friend','2024-11-04 02:12:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(114,NULL,56,'Subject for Interview','2024-05-19 16:53:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(115,NULL,22,'Subject for Print/Merge Document','2024-11-25 16:53:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(116,NULL,9,'Subject for Tell a Friend','2024-08-04 01:07:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(117,NULL,2,'Subject for Phone Call','2024-06-29 22:25:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(118,NULL,22,'Subject for Print/Merge Document','2024-03-29 12:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(119,NULL,56,'Subject for Interview','2024-06-13 16:17:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(120,NULL,2,'Subject for Phone Call','2024-04-28 05:12:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(121,NULL,1,'Subject for Meeting','2024-04-01 19:23:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:09','2025-02-11 21:14:09'), -(122,NULL,9,'Subject for Tell a Friend','2024-07-05 06:01:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(123,NULL,1,'Subject for Meeting','2025-01-10 18:25:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(124,NULL,22,'Subject for Print/Merge Document','2024-10-25 05:09:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(125,NULL,2,'Subject for Phone Call','2024-07-01 01:08:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(126,NULL,22,'Subject for Print/Merge Document','2024-03-11 00:14:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(127,NULL,2,'Subject for Phone Call','2024-03-07 02:38:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(128,NULL,2,'Subject for Phone Call','2024-10-15 17:35:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(129,NULL,9,'Subject for Tell a Friend','2024-05-18 19:26:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(130,NULL,56,'Subject for Interview','2024-12-05 22:50:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(131,NULL,2,'Subject for Phone Call','2025-02-04 05:01:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(132,NULL,2,'Subject for Phone Call','2024-03-16 17:12:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(133,NULL,2,'Subject for Phone Call','2024-06-08 09:45:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(134,NULL,2,'Subject for Phone Call','2024-10-12 19:40:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(135,NULL,9,'Subject for Tell a Friend','2024-12-15 06:51:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(136,NULL,1,'Subject for Meeting','2024-12-27 15:35:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(137,NULL,2,'Subject for Phone Call','2024-08-22 17:07:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(138,NULL,2,'Subject for Phone Call','2024-02-19 22:39:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(139,NULL,9,'Subject for Tell a Friend','2024-08-13 05:27:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(140,NULL,9,'Subject for Tell a Friend','2024-09-16 04:01:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(141,NULL,1,'Subject for Meeting','2024-05-08 14:13:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(142,NULL,9,'Subject for Tell a Friend','2024-03-29 03:56:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(143,NULL,9,'Subject for Tell a Friend','2024-04-05 05:24:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(144,NULL,9,'Subject for Tell a Friend','2024-06-29 15:09:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(145,NULL,2,'Subject for Phone Call','2024-09-18 17:27:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(146,NULL,1,'Subject for Meeting','2024-10-05 11:18:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(147,NULL,22,'Subject for Print/Merge Document','2024-07-24 04:03:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(148,NULL,9,'Subject for Tell a Friend','2024-06-21 12:02:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(149,NULL,9,'Subject for Tell a Friend','2024-03-31 01:40:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(150,NULL,2,'Subject for Phone Call','2024-09-21 07:17:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(151,NULL,9,'Subject for Tell a Friend','2025-02-02 13:18:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(152,NULL,56,'Subject for Interview','2024-11-23 23:10:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(153,NULL,22,'Subject for Print/Merge Document','2024-08-23 12:00:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(154,NULL,2,'Subject for Phone Call','2024-09-26 01:57:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(155,NULL,22,'Subject for Print/Merge Document','2024-10-18 00:58:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(156,NULL,22,'Subject for Print/Merge Document','2024-06-05 06:38:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(157,NULL,1,'Subject for Meeting','2024-05-27 09:13:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(158,NULL,9,'Subject for Tell a Friend','2025-02-06 08:38:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(159,NULL,1,'Subject for Meeting','2024-06-10 10:58:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(160,NULL,56,'Subject for Interview','2024-03-26 11:46:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(161,NULL,1,'Subject for Meeting','2024-08-23 20:26:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(162,NULL,22,'Subject for Print/Merge Document','2024-02-16 01:16:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(163,NULL,2,'Subject for Phone Call','2024-11-15 21:00:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(164,NULL,22,'Subject for Print/Merge Document','2024-10-29 12:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(165,NULL,2,'Subject for Phone Call','2024-10-10 01:44:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(166,NULL,56,'Subject for Interview','2025-01-28 04:53:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(167,NULL,56,'Subject for Interview','2024-08-29 11:48:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(168,NULL,56,'Subject for Interview','2025-01-20 08:36:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(169,NULL,56,'Subject for Interview','2024-08-24 12:30:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(170,NULL,2,'Subject for Phone Call','2024-08-14 15:22:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(171,NULL,56,'Subject for Interview','2024-07-18 14:21:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(172,NULL,56,'Subject for Interview','2024-09-08 17:28:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(173,NULL,9,'Subject for Tell a Friend','2024-02-29 17:26:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(174,NULL,9,'Subject for Tell a Friend','2024-09-15 04:11:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(175,NULL,1,'Subject for Meeting','2024-04-02 12:55:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(176,NULL,56,'Subject for Interview','2024-05-02 15:48:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(177,NULL,1,'Subject for Meeting','2024-05-22 08:41:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(178,NULL,22,'Subject for Print/Merge Document','2024-12-11 11:24:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(179,NULL,2,'Subject for Phone Call','2024-04-05 09:41:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(180,NULL,9,'Subject for Tell a Friend','2025-01-09 05:28:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(181,NULL,2,'Subject for Phone Call','2024-05-05 21:27:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(182,NULL,22,'Subject for Print/Merge Document','2024-03-06 21:16:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(183,NULL,56,'Subject for Interview','2024-10-10 09:09:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(184,NULL,56,'Subject for Interview','2024-04-29 06:46:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(185,NULL,56,'Subject for Interview','2024-08-10 05:55:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(186,NULL,9,'Subject for Tell a Friend','2024-09-13 02:47:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(187,NULL,1,'Subject for Meeting','2024-03-03 04:12:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(188,NULL,9,'Subject for Tell a Friend','2024-10-03 18:13:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(189,NULL,1,'Subject for Meeting','2024-02-20 00:28:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(190,NULL,1,'Subject for Meeting','2024-03-02 17:41:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(191,NULL,2,'Subject for Phone Call','2024-10-24 05:25:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(192,NULL,1,'Subject for Meeting','2024-06-21 05:09:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(193,NULL,9,'Subject for Tell a Friend','2024-11-12 21:04:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(194,NULL,9,'Subject for Tell a Friend','2024-05-10 15:30:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(195,NULL,1,'Subject for Meeting','2024-07-19 22:07:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(196,NULL,56,'Subject for Interview','2024-02-15 08:08:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(197,NULL,2,'Subject for Phone Call','2024-06-22 07:44:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(198,NULL,22,'Subject for Print/Merge Document','2024-10-02 09:40:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(199,NULL,22,'Subject for Print/Merge Document','2024-08-02 02:04:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(200,NULL,2,'Subject for Phone Call','2024-09-23 14:59:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(201,NULL,56,'Subject for Interview','2024-04-11 09:09:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(202,NULL,1,'Subject for Meeting','2024-09-21 16:31:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(203,NULL,1,'Subject for Meeting','2024-10-28 19:49:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(204,NULL,2,'Subject for Phone Call','2024-12-31 04:44:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(205,NULL,22,'Subject for Print/Merge Document','2024-08-08 01:27:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(206,NULL,22,'Subject for Print/Merge Document','2024-08-10 23:53:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(207,NULL,1,'Subject for Meeting','2024-03-09 15:53:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(208,NULL,22,'Subject for Print/Merge Document','2024-04-15 01:39:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(209,NULL,9,'Subject for Tell a Friend','2024-06-22 16:43:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(210,NULL,56,'Subject for Interview','2024-10-10 19:42:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(211,NULL,9,'Subject for Tell a Friend','2024-03-18 07:50:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(212,NULL,56,'Subject for Interview','2024-02-13 07:50:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(213,NULL,1,'Subject for Meeting','2024-03-31 14:34:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(214,NULL,1,'Subject for Meeting','2024-06-27 20:04:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(215,NULL,9,'Subject for Tell a Friend','2024-11-26 21:53:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(216,NULL,9,'Subject for Tell a Friend','2025-02-02 20:46:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(217,NULL,2,'Subject for Phone Call','2024-03-27 10:44:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(218,NULL,9,'Subject for Tell a Friend','2024-07-21 09:36:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:10','2025-02-11 21:14:10'), -(219,NULL,22,'Subject for Print/Merge Document','2024-11-07 18:03:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(220,NULL,1,'Subject for Meeting','2024-11-22 18:31:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(221,NULL,2,'Subject for Phone Call','2024-09-18 11:38:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(222,NULL,9,'Subject for Tell a Friend','2024-07-28 23:55:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(223,NULL,2,'Subject for Phone Call','2024-11-22 21:23:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(224,NULL,56,'Subject for Interview','2025-02-06 02:46:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(225,NULL,56,'Subject for Interview','2024-06-16 15:07:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(226,NULL,56,'Subject for Interview','2024-06-26 18:06:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(227,NULL,1,'Subject for Meeting','2024-03-26 02:18:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(228,NULL,1,'Subject for Meeting','2024-02-14 12:39:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(229,NULL,1,'Subject for Meeting','2024-10-13 19:30:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(230,NULL,1,'Subject for Meeting','2024-05-25 01:11:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(231,NULL,9,'Subject for Tell a Friend','2024-02-12 22:41:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(232,NULL,2,'Subject for Phone Call','2024-07-07 00:13:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(233,NULL,2,'Subject for Phone Call','2024-09-05 01:24:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(234,NULL,1,'Subject for Meeting','2024-06-27 12:08:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(235,NULL,1,'Subject for Meeting','2024-02-21 19:40:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(236,NULL,22,'Subject for Print/Merge Document','2024-06-30 11:55:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(237,NULL,9,'Subject for Tell a Friend','2024-07-04 11:55:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(238,NULL,56,'Subject for Interview','2024-05-25 02:45:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(239,NULL,22,'Subject for Print/Merge Document','2024-10-08 15:43:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(240,NULL,56,'Subject for Interview','2024-07-24 15:37:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(241,NULL,1,'Subject for Meeting','2024-07-22 16:47:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(242,NULL,9,'Subject for Tell a Friend','2025-01-29 16:53:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(243,NULL,9,'Subject for Tell a Friend','2024-11-17 15:44:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(244,NULL,9,'Subject for Tell a Friend','2024-08-24 19:31:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(245,NULL,56,'Subject for Interview','2024-05-20 18:23:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(246,NULL,9,'Subject for Tell a Friend','2024-12-09 11:46:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(247,NULL,22,'Subject for Print/Merge Document','2024-03-14 05:11:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(248,NULL,9,'Subject for Tell a Friend','2024-08-01 06:34:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(249,NULL,2,'Subject for Phone Call','2024-05-12 11:05:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(250,NULL,2,'Subject for Phone Call','2024-08-03 15:34:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(251,NULL,2,'Subject for Phone Call','2024-07-11 19:55:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(252,NULL,22,'Subject for Print/Merge Document','2024-08-18 22:30:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(253,NULL,9,'Subject for Tell a Friend','2024-08-19 22:50:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(254,NULL,22,'Subject for Print/Merge Document','2024-04-12 00:43:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(255,NULL,2,'Subject for Phone Call','2024-06-21 21:56:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(256,NULL,9,'Subject for Tell a Friend','2025-01-30 07:56:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(257,NULL,9,'Subject for Tell a Friend','2024-05-01 23:59:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(258,NULL,56,'Subject for Interview','2024-05-21 05:52:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(259,NULL,9,'Subject for Tell a Friend','2024-04-28 05:15:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(260,NULL,22,'Subject for Print/Merge Document','2024-08-29 16:34:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(261,NULL,22,'Subject for Print/Merge Document','2024-09-03 15:35:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(262,NULL,56,'Subject for Interview','2024-05-23 08:33:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(263,NULL,1,'Subject for Meeting','2024-09-19 18:08:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(264,NULL,9,'Subject for Tell a Friend','2024-05-11 14:35:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(265,NULL,56,'Subject for Interview','2024-10-07 01:39:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(266,NULL,1,'Subject for Meeting','2024-08-26 04:38:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(267,NULL,56,'Subject for Interview','2025-01-01 21:33:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(268,NULL,22,'Subject for Print/Merge Document','2024-08-08 16:52:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(269,NULL,56,'Subject for Interview','2024-09-02 03:55:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(270,NULL,9,'Subject for Tell a Friend','2025-01-09 06:33:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(271,NULL,2,'Subject for Phone Call','2024-07-22 10:16:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(272,NULL,22,'Subject for Print/Merge Document','2024-06-10 20:53:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(273,NULL,22,'Subject for Print/Merge Document','2024-04-30 14:19:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(274,NULL,56,'Subject for Interview','2024-06-01 13:53:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(275,NULL,56,'Subject for Interview','2025-02-02 22:20:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(276,NULL,9,'Subject for Tell a Friend','2024-09-04 20:36:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(277,NULL,1,'Subject for Meeting','2024-05-22 23:37:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(278,NULL,2,'Subject for Phone Call','2024-11-06 02:51:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(279,NULL,1,'Subject for Meeting','2024-11-21 04:02:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(280,NULL,22,'Subject for Print/Merge Document','2024-06-28 18:18:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(281,NULL,56,'Subject for Interview','2025-02-06 04:13:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(282,NULL,2,'Subject for Phone Call','2025-01-14 03:36:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(283,NULL,2,'Subject for Phone Call','2024-07-26 20:03:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(284,NULL,1,'Subject for Meeting','2024-07-06 22:48:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(285,NULL,22,'Subject for Print/Merge Document','2024-12-26 21:33:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(286,NULL,9,'Subject for Tell a Friend','2024-12-31 22:37:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(287,NULL,22,'Subject for Print/Merge Document','2024-11-14 00:58:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(288,NULL,22,'Subject for Print/Merge Document','2025-02-11 09:23:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(289,NULL,56,'Subject for Interview','2024-03-27 17:48:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(290,NULL,9,'Subject for Tell a Friend','2024-08-05 07:00:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(291,NULL,1,'Subject for Meeting','2024-03-29 08:44:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(292,NULL,22,'Subject for Print/Merge Document','2024-06-18 22:38:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(293,NULL,22,'Subject for Print/Merge Document','2024-11-18 12:31:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(294,NULL,56,'Subject for Interview','2024-12-03 16:36:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(295,NULL,1,'Subject for Meeting','2024-11-16 18:34:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(296,NULL,9,'Subject for Tell a Friend','2024-09-09 11:28:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(297,NULL,22,'Subject for Print/Merge Document','2024-04-06 04:02:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(298,NULL,56,'Subject for Interview','2024-12-25 19:35:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(299,NULL,9,'Subject for Tell a Friend','2024-07-31 20:20:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(300,NULL,2,'Subject for Phone Call','2024-09-13 14:19:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(301,NULL,9,'Subject for Tell a Friend','2024-04-06 00:33:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(302,NULL,2,'Subject for Phone Call','2024-10-19 13:57:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(303,NULL,2,'Subject for Phone Call','2024-07-04 19:33:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(304,NULL,1,'Subject for Meeting','2024-08-20 07:07:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(305,NULL,1,'Subject for Meeting','2024-09-20 09:43:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(306,NULL,56,'Subject for Interview','2024-02-15 09:50:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(307,NULL,56,'Subject for Interview','2025-01-06 08:35:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(308,NULL,2,'Subject for Phone Call','2024-04-20 05:38:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(309,NULL,56,'Subject for Interview','2024-05-13 05:43:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(310,NULL,9,'Subject for Tell a Friend','2025-02-05 20:50:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(311,NULL,9,'Subject for Tell a Friend','2024-06-01 15:12:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(312,NULL,9,'Subject for Tell a Friend','2024-08-19 18:44:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(313,NULL,56,'Subject for Interview','2024-03-03 12:38:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(314,NULL,1,'Subject for Meeting','2024-07-17 21:18:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:11','2025-02-11 21:14:11'), -(315,NULL,1,'Subject for Meeting','2025-01-10 19:43:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(316,NULL,1,'Subject for Meeting','2024-07-26 11:14:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(317,NULL,1,'Subject for Meeting','2025-02-09 14:08:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(318,NULL,2,'Subject for Phone Call','2024-04-27 00:19:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(319,NULL,2,'Subject for Phone Call','2024-04-23 04:00:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(320,NULL,56,'Subject for Interview','2024-05-29 02:04:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(321,NULL,2,'Subject for Phone Call','2024-08-12 13:23:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(322,NULL,56,'Subject for Interview','2025-01-03 05:37:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(323,NULL,1,'Subject for Meeting','2024-10-21 07:44:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(324,NULL,2,'Subject for Phone Call','2024-08-06 19:48:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(325,NULL,9,'Subject for Tell a Friend','2024-07-19 13:48:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(326,NULL,22,'Subject for Print/Merge Document','2025-01-09 05:46:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(327,NULL,9,'Subject for Tell a Friend','2024-02-24 01:42:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(328,NULL,56,'Subject for Interview','2024-02-25 03:42:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(329,NULL,56,'Subject for Interview','2024-12-27 08:53:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(330,NULL,1,'Subject for Meeting','2025-01-24 13:29:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(331,NULL,1,'Subject for Meeting','2024-06-15 21:44:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(332,NULL,9,'Subject for Tell a Friend','2024-07-02 17:26:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(333,NULL,56,'Subject for Interview','2024-02-25 03:43:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(334,NULL,9,'Subject for Tell a Friend','2024-04-20 09:55:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(335,NULL,9,'Subject for Tell a Friend','2024-07-07 05:53:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(336,NULL,9,'Subject for Tell a Friend','2024-06-10 10:30:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(337,NULL,1,'Subject for Meeting','2024-03-10 20:59:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(338,NULL,56,'Subject for Interview','2024-10-27 09:15:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(339,NULL,56,'Subject for Interview','2024-10-30 20:50:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(340,NULL,56,'Subject for Interview','2024-12-06 17:11:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(341,NULL,2,'Subject for Phone Call','2024-03-10 18:19:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(342,NULL,56,'Subject for Interview','2024-09-28 03:05:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(343,NULL,1,'Subject for Meeting','2024-09-23 08:47:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(344,NULL,56,'Subject for Interview','2024-06-08 20:31:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(345,NULL,1,'Subject for Meeting','2024-04-22 23:08:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(346,NULL,22,'Subject for Print/Merge Document','2024-12-11 16:46:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(347,NULL,9,'Subject for Tell a Friend','2024-05-31 21:24:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(348,NULL,22,'Subject for Print/Merge Document','2024-05-12 23:52:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(349,NULL,1,'Subject for Meeting','2024-09-26 11:37:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(350,NULL,9,'Subject for Tell a Friend','2024-09-03 09:29:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(351,NULL,9,'Subject for Tell a Friend','2024-11-11 10:29:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(352,NULL,9,'Subject for Tell a Friend','2024-06-21 11:35:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(353,NULL,2,'Subject for Phone Call','2025-01-11 17:24:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(354,NULL,2,'Subject for Phone Call','2024-11-26 01:53:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(355,NULL,2,'Subject for Phone Call','2025-02-11 07:24:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(356,NULL,56,'Subject for Interview','2024-08-06 05:16:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(357,NULL,9,'Subject for Tell a Friend','2024-09-09 23:50:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(358,NULL,2,'Subject for Phone Call','2024-11-13 11:53:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(359,NULL,2,'Subject for Phone Call','2024-10-06 15:39:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(360,NULL,56,'Subject for Interview','2024-10-10 04:13:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(361,NULL,1,'Subject for Meeting','2024-02-21 02:52:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(362,NULL,22,'Subject for Print/Merge Document','2024-04-08 23:17:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(363,NULL,9,'Subject for Tell a Friend','2024-11-11 03:37:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(364,NULL,1,'Subject for Meeting','2025-02-02 06:43:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(365,NULL,2,'Subject for Phone Call','2024-06-01 08:28:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(366,NULL,1,'Subject for Meeting','2024-04-29 23:39:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(367,NULL,2,'Subject for Phone Call','2024-06-01 13:39:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(368,NULL,56,'Subject for Interview','2024-08-18 18:07:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(369,NULL,2,'Subject for Phone Call','2025-01-30 19:47:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(370,NULL,2,'Subject for Phone Call','2024-10-12 16:23:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(371,NULL,1,'Subject for Meeting','2024-07-16 22:01:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(372,NULL,9,'Subject for Tell a Friend','2024-06-15 08:22:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(373,NULL,2,'Subject for Phone Call','2024-11-17 18:26:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(374,NULL,56,'Subject for Interview','2024-05-10 14:02:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(375,NULL,2,'Subject for Phone Call','2024-03-24 09:32:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(376,NULL,56,'Subject for Interview','2024-08-06 16:42:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(377,NULL,9,'Subject for Tell a Friend','2024-06-02 13:22:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(378,NULL,1,'Subject for Meeting','2024-09-29 10:04:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(379,NULL,2,'Subject for Phone Call','2024-03-11 01:39:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(380,NULL,9,'Subject for Tell a Friend','2024-10-07 20:56:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(381,NULL,1,'Subject for Meeting','2025-02-07 02:59:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(382,NULL,1,'Subject for Meeting','2024-09-29 18:54:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(383,NULL,1,'Subject for Meeting','2024-03-31 00:27:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(384,NULL,56,'Subject for Interview','2024-10-18 06:43:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(385,NULL,1,'Subject for Meeting','2025-02-08 16:16:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(386,NULL,2,'Subject for Phone Call','2024-06-24 04:36:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(387,NULL,22,'Subject for Print/Merge Document','2024-02-13 06:34:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(388,NULL,22,'Subject for Print/Merge Document','2024-09-07 18:38:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(389,NULL,22,'Subject for Print/Merge Document','2024-08-07 07:37:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(390,NULL,22,'Subject for Print/Merge Document','2024-05-08 05:06:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(391,NULL,1,'Subject for Meeting','2024-12-02 17:28:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(392,NULL,22,'Subject for Print/Merge Document','2024-06-27 23:20:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(393,NULL,22,'Subject for Print/Merge Document','2024-06-13 08:04:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(394,NULL,56,'Subject for Interview','2024-05-19 16:05:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(395,NULL,56,'Subject for Interview','2025-01-21 15:24:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(396,NULL,56,'Subject for Interview','2024-12-21 19:23:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(397,NULL,2,'Subject for Phone Call','2024-03-17 20:01:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(398,NULL,22,'Subject for Print/Merge Document','2024-06-15 11:24:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(399,NULL,22,'Subject for Print/Merge Document','2024-05-31 08:08:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(400,NULL,56,'Subject for Interview','2024-07-25 14:56:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(401,NULL,9,'Subject for Tell a Friend','2024-06-01 05:04:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(402,NULL,22,'Subject for Print/Merge Document','2024-06-16 15:44:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(403,NULL,2,'Subject for Phone Call','2024-03-02 16:06:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(404,NULL,9,'Subject for Tell a Friend','2024-08-05 16:53:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(405,NULL,1,'Subject for Meeting','2024-04-19 10:31:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(406,NULL,22,'Subject for Print/Merge Document','2024-05-27 04:45:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(407,NULL,22,'Subject for Print/Merge Document','2024-03-18 08:34:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(408,NULL,56,'Subject for Interview','2024-09-27 23:59:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(409,NULL,9,'Subject for Tell a Friend','2024-05-24 06:26:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(410,NULL,56,'Subject for Interview','2024-08-07 01:45:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:12','2025-02-11 21:14:12'), -(411,NULL,1,'Subject for Meeting','2024-05-29 23:41:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(412,NULL,9,'Subject for Tell a Friend','2024-10-10 23:33:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(413,NULL,2,'Subject for Phone Call','2025-01-07 03:04:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(414,NULL,1,'Subject for Meeting','2024-09-30 12:04:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(415,NULL,1,'Subject for Meeting','2024-06-22 02:17:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(416,NULL,22,'Subject for Print/Merge Document','2024-05-04 22:06:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(417,NULL,22,'Subject for Print/Merge Document','2025-01-29 15:59:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(418,NULL,2,'Subject for Phone Call','2024-05-13 00:08:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(419,NULL,9,'Subject for Tell a Friend','2024-12-04 22:47:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(420,NULL,9,'Subject for Tell a Friend','2024-03-24 15:51:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(421,NULL,2,'Subject for Phone Call','2024-07-10 22:34:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(422,NULL,22,'Subject for Print/Merge Document','2024-08-03 17:06:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(423,NULL,22,'Subject for Print/Merge Document','2024-06-22 07:34:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(424,NULL,1,'Subject for Meeting','2024-04-17 06:59:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(425,NULL,2,'Subject for Phone Call','2025-01-09 15:39:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(426,NULL,2,'Subject for Phone Call','2024-06-02 18:57:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(427,NULL,1,'Subject for Meeting','2024-08-24 20:41:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(428,NULL,2,'Subject for Phone Call','2024-04-05 02:56:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(429,NULL,2,'Subject for Phone Call','2024-09-25 14:31:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(430,NULL,2,'Subject for Phone Call','2024-06-06 15:11:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(431,NULL,22,'Subject for Print/Merge Document','2025-01-28 15:41:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(432,NULL,22,'Subject for Print/Merge Document','2024-12-29 00:02:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(433,NULL,56,'Subject for Interview','2024-09-28 09:17:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(434,NULL,1,'Subject for Meeting','2024-09-24 13:54:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(435,NULL,22,'Subject for Print/Merge Document','2024-04-02 06:13:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(436,NULL,9,'Subject for Tell a Friend','2024-12-01 15:42:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(437,NULL,56,'Subject for Interview','2024-04-01 16:34:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(438,NULL,1,'Subject for Meeting','2024-09-26 03:13:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(439,NULL,1,'Subject for Meeting','2024-02-13 02:19:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(440,NULL,1,'Subject for Meeting','2025-01-25 14:15:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(441,NULL,22,'Subject for Print/Merge Document','2024-03-24 11:09:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(442,NULL,22,'Subject for Print/Merge Document','2025-01-07 18:08:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(443,NULL,2,'Subject for Phone Call','2024-05-27 00:15:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(444,NULL,56,'Subject for Interview','2024-06-14 06:18:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(445,NULL,56,'Subject for Interview','2024-12-15 04:42:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(446,NULL,2,'Subject for Phone Call','2024-12-27 23:21:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(447,NULL,1,'Subject for Meeting','2024-03-17 15:53:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(448,NULL,22,'Subject for Print/Merge Document','2024-09-10 00:18:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(449,NULL,22,'Subject for Print/Merge Document','2024-04-22 00:55:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(450,NULL,2,'Subject for Phone Call','2024-04-17 00:30:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(451,1,6,'$ 125 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(452,2,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(453,3,6,'£ 25 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(454,4,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(455,5,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(456,6,6,'$ 500 April Mailer 1','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(457,7,6,'$ 1750 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(458,8,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(459,9,6,'$ 10 Online: Help CiviCRM','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(460,10,6,'$ 250 Online: Help CiviCRM','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(461,11,6,'¥ 500 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(462,12,6,'$ 50 Online: Save the Penguins','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(463,13,6,'$ 50 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(464,14,6,'$ 50 ','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(465,15,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(466,16,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(467,17,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(468,18,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(469,19,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(470,20,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(471,21,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(472,22,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(473,23,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(474,24,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(475,25,6,'$ 25 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(476,26,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(477,27,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(478,28,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:13','2025-02-11 21:14:13'), -(479,29,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(480,30,6,'$ 10 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(481,31,6,'€ 5 Recurring contribution','2025-04-11 21:14:13',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(482,1,7,'General','2025-02-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(483,2,7,'Student','2025-02-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(484,3,7,'General','2025-02-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(485,4,7,'Student','2025-02-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(486,5,7,'General','2023-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(487,6,7,'Student','2025-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(488,7,7,'General','2025-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(489,8,7,'Student','2025-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(490,9,7,'General','2025-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(491,10,7,'General','2022-12-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(492,11,7,'Lifetime','2025-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(493,12,7,'Student','2025-01-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(494,13,7,'General','2025-01-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(495,14,7,'Student','2025-01-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(496,15,7,'General','2022-10-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(497,16,7,'Student','2025-01-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(498,17,7,'General','2025-01-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(499,18,7,'Student','2025-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(500,19,7,'General','2025-01-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(501,20,7,'General','2022-09-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(502,21,7,'General','2025-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(503,22,7,'Lifetime','2025-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(504,23,7,'General','2025-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(505,24,7,'Student','2025-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(506,25,7,'Student','2024-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(507,26,7,'Student','2025-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(508,27,7,'General','2025-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(509,28,7,'Student','2025-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(510,29,7,'General','2025-01-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(511,30,7,'General','2022-06-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(512,32,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(513,33,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(514,34,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(515,35,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(516,36,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(517,37,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(518,38,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(519,39,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(520,40,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(521,41,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(523,43,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(524,44,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(525,45,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(526,46,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(527,47,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(528,48,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(529,49,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(530,50,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(531,51,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(532,52,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(534,54,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(535,55,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(536,56,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(537,57,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(538,58,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(539,59,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(540,60,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(541,61,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(593,63,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(602,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(607,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(609,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(616,86,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(617,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(622,92,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(623,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(626,96,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(627,97,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(628,98,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(629,99,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(630,100,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(631,101,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(633,103,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(635,105,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(636,106,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(637,107,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(638,108,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(639,109,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(640,110,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(641,111,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'), -(642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 21:14:14',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 21:14:14','2025-02-11 21:14:14'); + (1,NULL,9,'Subject for Tell a Friend','2024-04-23 22:28:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (2,NULL,56,'Subject for Interview','2024-11-06 14:33:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (3,NULL,9,'Subject for Tell a Friend','2024-06-16 07:16:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (4,NULL,1,'Subject for Meeting','2025-01-14 12:35:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (5,NULL,22,'Subject for Print/Merge Document','2024-03-27 18:20:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (6,NULL,2,'Subject for Phone Call','2024-09-11 18:29:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (7,NULL,22,'Subject for Print/Merge Document','2024-11-03 08:22:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (8,NULL,9,'Subject for Tell a Friend','2024-10-04 01:45:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (9,NULL,56,'Subject for Interview','2024-05-02 02:38:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (10,NULL,56,'Subject for Interview','2024-05-14 17:41:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (11,NULL,56,'Subject for Interview','2024-03-19 10:17:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (12,NULL,9,'Subject for Tell a Friend','2024-12-05 02:10:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (13,NULL,22,'Subject for Print/Merge Document','2024-06-23 01:20:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (14,NULL,56,'Subject for Interview','2024-12-24 13:31:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (15,NULL,22,'Subject for Print/Merge Document','2024-10-08 17:15:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (16,NULL,1,'Subject for Meeting','2024-11-15 12:45:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (17,NULL,9,'Subject for Tell a Friend','2025-01-22 15:00:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (18,NULL,22,'Subject for Print/Merge Document','2025-02-03 07:02:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (19,NULL,1,'Subject for Meeting','2024-07-19 22:45:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (20,NULL,2,'Subject for Phone Call','2024-09-11 23:31:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (21,NULL,22,'Subject for Print/Merge Document','2024-05-12 21:42:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (22,NULL,1,'Subject for Meeting','2024-02-19 12:54:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (23,NULL,56,'Subject for Interview','2024-12-16 03:10:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (24,NULL,2,'Subject for Phone Call','2024-12-08 01:25:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (25,NULL,56,'Subject for Interview','2024-11-18 05:05:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (26,NULL,1,'Subject for Meeting','2025-01-17 15:58:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (27,NULL,1,'Subject for Meeting','2024-12-25 10:32:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (28,NULL,56,'Subject for Interview','2024-04-22 21:18:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (29,NULL,9,'Subject for Tell a Friend','2024-12-14 07:31:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (30,NULL,56,'Subject for Interview','2024-04-02 23:49:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (31,NULL,56,'Subject for Interview','2024-06-10 07:18:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (32,NULL,2,'Subject for Phone Call','2024-02-26 03:00:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (33,NULL,9,'Subject for Tell a Friend','2024-08-23 13:04:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (34,NULL,9,'Subject for Tell a Friend','2024-03-26 02:59:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (35,NULL,22,'Subject for Print/Merge Document','2024-02-26 03:59:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (36,NULL,22,'Subject for Print/Merge Document','2024-12-09 07:49:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (37,NULL,9,'Subject for Tell a Friend','2025-01-27 00:39:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (38,NULL,1,'Subject for Meeting','2025-01-27 15:45:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (39,NULL,2,'Subject for Phone Call','2024-08-31 06:20:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (40,NULL,9,'Subject for Tell a Friend','2025-01-29 14:01:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (41,NULL,1,'Subject for Meeting','2024-10-13 21:16:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (42,NULL,1,'Subject for Meeting','2024-06-29 02:13:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (43,NULL,1,'Subject for Meeting','2024-09-22 23:24:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (44,NULL,56,'Subject for Interview','2024-04-19 02:56:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (45,NULL,9,'Subject for Tell a Friend','2024-07-08 22:52:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (46,NULL,22,'Subject for Print/Merge Document','2024-02-15 00:42:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (47,NULL,2,'Subject for Phone Call','2024-09-08 06:40:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (48,NULL,1,'Subject for Meeting','2024-04-02 23:37:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (49,NULL,1,'Subject for Meeting','2025-01-05 09:30:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (50,NULL,2,'Subject for Phone Call','2024-11-24 07:10:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (51,NULL,2,'Subject for Phone Call','2024-06-17 01:27:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (52,NULL,22,'Subject for Print/Merge Document','2024-02-22 01:55:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (53,NULL,56,'Subject for Interview','2024-10-09 06:07:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (54,NULL,22,'Subject for Print/Merge Document','2024-06-06 13:20:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (55,NULL,56,'Subject for Interview','2024-04-29 05:40:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (56,NULL,2,'Subject for Phone Call','2024-04-30 02:03:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (57,NULL,1,'Subject for Meeting','2024-03-12 20:16:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (58,NULL,56,'Subject for Interview','2024-12-18 13:44:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (59,NULL,22,'Subject for Print/Merge Document','2024-03-31 13:15:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (60,NULL,1,'Subject for Meeting','2024-10-24 03:40:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (61,NULL,9,'Subject for Tell a Friend','2024-05-01 07:07:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (62,NULL,9,'Subject for Tell a Friend','2024-12-06 19:53:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (63,NULL,2,'Subject for Phone Call','2024-03-02 21:43:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (64,NULL,9,'Subject for Tell a Friend','2025-01-16 03:41:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (65,NULL,2,'Subject for Phone Call','2024-07-29 12:27:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (66,NULL,9,'Subject for Tell a Friend','2024-08-02 17:02:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (67,NULL,9,'Subject for Tell a Friend','2024-10-16 04:04:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (68,NULL,22,'Subject for Print/Merge Document','2024-12-17 14:53:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (69,NULL,2,'Subject for Phone Call','2024-12-02 05:22:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (70,NULL,9,'Subject for Tell a Friend','2024-07-19 17:48:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (71,NULL,2,'Subject for Phone Call','2024-08-07 04:33:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (72,NULL,56,'Subject for Interview','2024-09-04 06:46:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (73,NULL,1,'Subject for Meeting','2024-05-27 15:15:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (74,NULL,22,'Subject for Print/Merge Document','2024-12-18 04:33:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (75,NULL,2,'Subject for Phone Call','2025-02-02 19:00:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (76,NULL,1,'Subject for Meeting','2024-04-10 10:11:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (77,NULL,56,'Subject for Interview','2024-11-25 04:52:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (78,NULL,56,'Subject for Interview','2024-06-09 05:00:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (79,NULL,22,'Subject for Print/Merge Document','2024-06-15 19:26:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (80,NULL,9,'Subject for Tell a Friend','2024-12-30 00:19:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (81,NULL,56,'Subject for Interview','2024-04-04 02:58:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (82,NULL,56,'Subject for Interview','2024-06-19 06:14:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (83,NULL,9,'Subject for Tell a Friend','2025-01-20 00:16:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (84,NULL,56,'Subject for Interview','2024-04-13 13:36:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (85,NULL,22,'Subject for Print/Merge Document','2024-07-22 13:45:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (86,NULL,56,'Subject for Interview','2024-04-01 10:32:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (87,NULL,2,'Subject for Phone Call','2024-05-16 01:09:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (88,NULL,56,'Subject for Interview','2024-10-28 05:57:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (89,NULL,9,'Subject for Tell a Friend','2024-08-29 17:26:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (90,NULL,56,'Subject for Interview','2024-08-13 23:23:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (91,NULL,22,'Subject for Print/Merge Document','2024-12-20 19:23:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (92,NULL,56,'Subject for Interview','2024-09-23 21:27:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (93,NULL,2,'Subject for Phone Call','2024-11-02 13:32:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (94,NULL,22,'Subject for Print/Merge Document','2024-11-09 03:33:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (95,NULL,9,'Subject for Tell a Friend','2025-01-19 15:50:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (96,NULL,22,'Subject for Print/Merge Document','2025-01-02 11:55:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (97,NULL,9,'Subject for Tell a Friend','2024-08-18 20:15:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (98,NULL,22,'Subject for Print/Merge Document','2024-08-19 10:39:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (99,NULL,2,'Subject for Phone Call','2024-12-15 03:12:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (100,NULL,9,'Subject for Tell a Friend','2024-07-25 13:35:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (101,NULL,9,'Subject for Tell a Friend','2024-03-27 20:39:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (102,NULL,9,'Subject for Tell a Friend','2024-10-06 13:05:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (103,NULL,1,'Subject for Meeting','2024-02-17 11:13:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (104,NULL,56,'Subject for Interview','2024-04-15 22:59:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (105,NULL,22,'Subject for Print/Merge Document','2024-10-23 17:06:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (106,NULL,9,'Subject for Tell a Friend','2024-07-21 18:33:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (107,NULL,22,'Subject for Print/Merge Document','2024-07-03 03:58:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (108,NULL,2,'Subject for Phone Call','2024-09-15 22:21:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (109,NULL,1,'Subject for Meeting','2024-11-15 18:46:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (110,NULL,1,'Subject for Meeting','2025-01-19 02:26:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (111,NULL,22,'Subject for Print/Merge Document','2024-07-04 13:51:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (112,NULL,56,'Subject for Interview','2024-10-16 03:35:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (113,NULL,1,'Subject for Meeting','2024-04-06 18:12:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (114,NULL,1,'Subject for Meeting','2024-09-18 17:17:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (115,NULL,2,'Subject for Phone Call','2024-11-04 18:50:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (116,NULL,1,'Subject for Meeting','2025-01-17 17:07:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (117,NULL,1,'Subject for Meeting','2024-02-26 07:18:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (118,NULL,22,'Subject for Print/Merge Document','2024-09-29 04:38:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (119,NULL,9,'Subject for Tell a Friend','2024-03-27 10:05:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (120,NULL,9,'Subject for Tell a Friend','2024-12-08 01:01:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (121,NULL,22,'Subject for Print/Merge Document','2024-06-04 07:04:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (122,NULL,9,'Subject for Tell a Friend','2024-05-29 03:49:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (123,NULL,2,'Subject for Phone Call','2024-04-28 12:23:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (124,NULL,2,'Subject for Phone Call','2024-12-06 15:23:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (125,NULL,9,'Subject for Tell a Friend','2024-11-22 10:52:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (126,NULL,56,'Subject for Interview','2024-06-28 04:45:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (127,NULL,56,'Subject for Interview','2024-08-19 18:43:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (128,NULL,1,'Subject for Meeting','2025-01-24 17:08:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (129,NULL,2,'Subject for Phone Call','2024-04-05 00:15:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (130,NULL,1,'Subject for Meeting','2024-08-04 19:15:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (131,NULL,1,'Subject for Meeting','2025-02-08 21:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (132,NULL,1,'Subject for Meeting','2024-02-23 15:25:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (133,NULL,56,'Subject for Interview','2025-01-02 18:28:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (134,NULL,56,'Subject for Interview','2024-11-01 01:01:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (135,NULL,9,'Subject for Tell a Friend','2024-04-03 12:38:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (136,NULL,9,'Subject for Tell a Friend','2024-09-28 10:31:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (137,NULL,22,'Subject for Print/Merge Document','2025-02-08 13:08:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (138,NULL,2,'Subject for Phone Call','2024-09-22 20:01:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (139,NULL,2,'Subject for Phone Call','2024-10-26 10:00:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (140,NULL,2,'Subject for Phone Call','2024-12-29 02:41:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (141,NULL,9,'Subject for Tell a Friend','2024-12-11 18:47:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (142,NULL,2,'Subject for Phone Call','2024-07-20 18:24:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (143,NULL,9,'Subject for Tell a Friend','2024-07-03 14:57:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (144,NULL,56,'Subject for Interview','2024-07-06 23:07:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (145,NULL,56,'Subject for Interview','2024-04-19 08:58:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (146,NULL,56,'Subject for Interview','2024-10-07 05:43:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (147,NULL,9,'Subject for Tell a Friend','2024-07-21 18:16:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (148,NULL,56,'Subject for Interview','2024-10-25 06:22:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (149,NULL,56,'Subject for Interview','2024-11-13 17:08:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (150,NULL,22,'Subject for Print/Merge Document','2024-05-23 11:36:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (151,NULL,2,'Subject for Phone Call','2024-04-18 23:13:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (152,NULL,1,'Subject for Meeting','2025-01-03 06:26:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (153,NULL,9,'Subject for Tell a Friend','2024-09-15 05:21:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (154,NULL,1,'Subject for Meeting','2024-08-13 04:35:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (155,NULL,1,'Subject for Meeting','2024-02-19 16:41:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (156,NULL,2,'Subject for Phone Call','2024-12-09 10:43:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (157,NULL,22,'Subject for Print/Merge Document','2024-06-25 18:06:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (158,NULL,22,'Subject for Print/Merge Document','2024-03-26 09:53:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (159,NULL,1,'Subject for Meeting','2025-02-03 12:25:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (160,NULL,2,'Subject for Phone Call','2024-05-27 16:20:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (161,NULL,9,'Subject for Tell a Friend','2025-02-06 01:43:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (162,NULL,9,'Subject for Tell a Friend','2024-04-24 06:50:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (163,NULL,56,'Subject for Interview','2024-12-30 19:15:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (164,NULL,22,'Subject for Print/Merge Document','2024-06-22 20:55:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (165,NULL,1,'Subject for Meeting','2024-10-17 18:56:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (166,NULL,1,'Subject for Meeting','2024-11-08 06:10:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (167,NULL,56,'Subject for Interview','2025-02-06 01:26:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (168,NULL,2,'Subject for Phone Call','2024-03-09 09:35:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (169,NULL,56,'Subject for Interview','2024-07-15 14:01:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (170,NULL,2,'Subject for Phone Call','2024-08-07 10:26:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (171,NULL,9,'Subject for Tell a Friend','2024-10-12 11:26:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (172,NULL,22,'Subject for Print/Merge Document','2024-09-20 03:31:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (173,NULL,56,'Subject for Interview','2024-12-06 01:38:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (174,NULL,2,'Subject for Phone Call','2024-04-20 14:22:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (175,NULL,1,'Subject for Meeting','2024-11-28 14:25:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (176,NULL,2,'Subject for Phone Call','2024-03-14 13:37:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (177,NULL,9,'Subject for Tell a Friend','2025-01-13 13:20:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (178,NULL,9,'Subject for Tell a Friend','2024-03-28 08:49:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (179,NULL,56,'Subject for Interview','2024-12-06 00:53:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (180,NULL,56,'Subject for Interview','2024-10-02 23:40:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (181,NULL,56,'Subject for Interview','2024-02-17 10:11:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (182,NULL,56,'Subject for Interview','2024-09-10 01:53:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (183,NULL,2,'Subject for Phone Call','2024-06-01 10:40:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (184,NULL,1,'Subject for Meeting','2025-02-07 17:27:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (185,NULL,2,'Subject for Phone Call','2024-12-25 14:08:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (186,NULL,22,'Subject for Print/Merge Document','2024-07-18 02:09:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (187,NULL,22,'Subject for Print/Merge Document','2024-05-05 16:08:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (188,NULL,2,'Subject for Phone Call','2024-02-23 00:18:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (189,NULL,22,'Subject for Print/Merge Document','2024-11-16 05:27:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (190,NULL,1,'Subject for Meeting','2024-12-14 20:46:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (191,NULL,9,'Subject for Tell a Friend','2024-05-31 21:18:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (192,NULL,1,'Subject for Meeting','2024-05-02 05:47:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (193,NULL,56,'Subject for Interview','2024-12-06 10:44:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (194,NULL,56,'Subject for Interview','2024-10-29 12:40:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24'), + (195,NULL,1,'Subject for Meeting','2024-03-26 09:27:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (196,NULL,56,'Subject for Interview','2024-07-03 17:05:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (197,NULL,56,'Subject for Interview','2024-11-26 04:21:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (198,NULL,9,'Subject for Tell a Friend','2024-11-08 07:31:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (199,NULL,56,'Subject for Interview','2024-07-05 02:43:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (200,NULL,2,'Subject for Phone Call','2024-09-29 08:37:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (201,NULL,9,'Subject for Tell a Friend','2024-03-30 20:07:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (202,NULL,56,'Subject for Interview','2024-04-16 20:54:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (203,NULL,56,'Subject for Interview','2024-12-15 15:58:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (204,NULL,1,'Subject for Meeting','2024-08-11 02:49:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (205,NULL,2,'Subject for Phone Call','2024-06-11 22:33:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (206,NULL,9,'Subject for Tell a Friend','2025-01-11 13:53:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (207,NULL,56,'Subject for Interview','2024-12-11 02:23:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (208,NULL,2,'Subject for Phone Call','2024-10-31 04:42:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (209,NULL,22,'Subject for Print/Merge Document','2024-09-29 07:33:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (210,NULL,9,'Subject for Tell a Friend','2024-12-18 07:17:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (211,NULL,2,'Subject for Phone Call','2024-09-06 01:39:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (212,NULL,2,'Subject for Phone Call','2024-08-21 22:43:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (213,NULL,22,'Subject for Print/Merge Document','2024-08-20 15:29:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (214,NULL,56,'Subject for Interview','2025-02-10 07:06:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (215,NULL,2,'Subject for Phone Call','2024-12-17 12:05:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (216,NULL,22,'Subject for Print/Merge Document','2024-03-15 00:55:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (217,NULL,1,'Subject for Meeting','2024-06-28 02:43:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (218,NULL,22,'Subject for Print/Merge Document','2024-03-03 07:08:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (219,NULL,2,'Subject for Phone Call','2024-03-27 02:32:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (220,NULL,56,'Subject for Interview','2024-06-09 14:26:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (221,NULL,1,'Subject for Meeting','2024-05-21 01:25:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (222,NULL,22,'Subject for Print/Merge Document','2024-07-26 19:24:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (223,NULL,2,'Subject for Phone Call','2024-04-04 23:41:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (224,NULL,9,'Subject for Tell a Friend','2025-01-30 07:03:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (225,NULL,2,'Subject for Phone Call','2024-11-11 01:46:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (226,NULL,1,'Subject for Meeting','2024-05-02 01:41:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (227,NULL,22,'Subject for Print/Merge Document','2024-12-12 10:10:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (228,NULL,22,'Subject for Print/Merge Document','2024-05-24 12:04:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (229,NULL,56,'Subject for Interview','2024-08-28 04:28:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (230,NULL,56,'Subject for Interview','2024-03-25 17:19:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (231,NULL,9,'Subject for Tell a Friend','2025-02-04 06:07:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (232,NULL,2,'Subject for Phone Call','2024-03-16 05:02:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (233,NULL,9,'Subject for Tell a Friend','2024-03-27 22:41:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (234,NULL,2,'Subject for Phone Call','2024-04-25 17:19:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (235,NULL,56,'Subject for Interview','2024-11-14 16:37:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (236,NULL,22,'Subject for Print/Merge Document','2024-10-19 13:39:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (237,NULL,2,'Subject for Phone Call','2024-07-29 22:58:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (238,NULL,56,'Subject for Interview','2024-10-21 09:33:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (239,NULL,56,'Subject for Interview','2024-12-05 12:51:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (240,NULL,22,'Subject for Print/Merge Document','2024-11-11 07:24:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (241,NULL,56,'Subject for Interview','2024-05-29 17:23:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (242,NULL,1,'Subject for Meeting','2024-09-17 05:18:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (243,NULL,1,'Subject for Meeting','2024-07-11 07:10:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (244,NULL,1,'Subject for Meeting','2024-04-28 20:22:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (245,NULL,56,'Subject for Interview','2024-11-17 13:06:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (246,NULL,1,'Subject for Meeting','2024-10-21 19:47:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (247,NULL,2,'Subject for Phone Call','2024-09-19 11:55:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (248,NULL,2,'Subject for Phone Call','2024-09-27 12:36:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (249,NULL,22,'Subject for Print/Merge Document','2024-11-19 22:13:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (250,NULL,9,'Subject for Tell a Friend','2024-05-13 09:35:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (251,NULL,22,'Subject for Print/Merge Document','2024-02-24 17:33:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (252,NULL,1,'Subject for Meeting','2024-09-27 21:58:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (253,NULL,22,'Subject for Print/Merge Document','2024-06-28 09:16:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (254,NULL,9,'Subject for Tell a Friend','2024-03-02 23:16:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (255,NULL,2,'Subject for Phone Call','2025-01-25 05:27:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (256,NULL,2,'Subject for Phone Call','2024-06-16 03:19:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (257,NULL,22,'Subject for Print/Merge Document','2024-11-17 21:11:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (258,NULL,1,'Subject for Meeting','2024-04-20 07:25:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (259,NULL,2,'Subject for Phone Call','2024-08-23 08:28:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (260,NULL,2,'Subject for Phone Call','2024-08-15 21:40:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (261,NULL,22,'Subject for Print/Merge Document','2024-11-15 01:52:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (262,NULL,2,'Subject for Phone Call','2024-11-16 20:53:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (263,NULL,22,'Subject for Print/Merge Document','2024-06-04 17:14:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (264,NULL,2,'Subject for Phone Call','2025-01-08 04:32:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (265,NULL,9,'Subject for Tell a Friend','2025-01-31 20:45:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (266,NULL,1,'Subject for Meeting','2024-03-23 17:41:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (267,NULL,9,'Subject for Tell a Friend','2024-04-26 12:31:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (268,NULL,2,'Subject for Phone Call','2024-08-17 21:54:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (269,NULL,22,'Subject for Print/Merge Document','2024-11-27 12:25:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (270,NULL,2,'Subject for Phone Call','2024-05-27 00:47:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (271,NULL,22,'Subject for Print/Merge Document','2024-07-21 17:00:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (272,NULL,9,'Subject for Tell a Friend','2024-05-21 16:26:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (273,NULL,56,'Subject for Interview','2024-10-23 08:35:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (274,NULL,56,'Subject for Interview','2024-02-23 01:14:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (275,NULL,9,'Subject for Tell a Friend','2024-02-16 21:22:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (276,NULL,1,'Subject for Meeting','2025-01-03 11:35:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (277,NULL,56,'Subject for Interview','2024-08-20 16:32:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (278,NULL,1,'Subject for Meeting','2024-12-18 10:57:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (279,NULL,2,'Subject for Phone Call','2024-04-06 20:12:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (280,NULL,56,'Subject for Interview','2024-02-21 09:17:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (281,NULL,22,'Subject for Print/Merge Document','2024-05-31 23:39:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (282,NULL,2,'Subject for Phone Call','2024-06-26 06:53:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (283,NULL,2,'Subject for Phone Call','2024-07-13 15:03:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (284,NULL,2,'Subject for Phone Call','2024-12-07 12:28:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (285,NULL,56,'Subject for Interview','2024-08-27 00:42:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (286,NULL,22,'Subject for Print/Merge Document','2024-03-31 01:43:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (287,NULL,2,'Subject for Phone Call','2024-03-30 21:32:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (288,NULL,1,'Subject for Meeting','2024-07-30 23:20:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (289,NULL,1,'Subject for Meeting','2024-03-10 23:33:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (290,NULL,1,'Subject for Meeting','2024-03-08 16:23:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (291,NULL,2,'Subject for Phone Call','2024-06-20 09:39:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (292,NULL,2,'Subject for Phone Call','2024-12-27 09:42:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (293,NULL,56,'Subject for Interview','2024-12-04 17:54:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (294,NULL,22,'Subject for Print/Merge Document','2024-07-27 09:23:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (295,NULL,56,'Subject for Interview','2024-08-24 18:43:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (296,NULL,1,'Subject for Meeting','2024-10-19 22:59:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (297,NULL,56,'Subject for Interview','2024-05-21 21:00:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (298,NULL,1,'Subject for Meeting','2024-10-27 06:32:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (299,NULL,56,'Subject for Interview','2024-06-08 22:16:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (300,NULL,22,'Subject for Print/Merge Document','2024-05-16 06:07:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (301,NULL,2,'Subject for Phone Call','2024-03-12 02:42:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (302,NULL,2,'Subject for Phone Call','2024-05-11 01:08:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (303,NULL,22,'Subject for Print/Merge Document','2024-07-04 08:16:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (304,NULL,1,'Subject for Meeting','2024-04-22 11:42:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (305,NULL,2,'Subject for Phone Call','2024-03-31 14:50:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (306,NULL,2,'Subject for Phone Call','2024-12-09 05:38:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (307,NULL,9,'Subject for Tell a Friend','2025-01-14 06:03:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (308,NULL,22,'Subject for Print/Merge Document','2024-10-02 05:53:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (309,NULL,22,'Subject for Print/Merge Document','2025-02-03 21:35:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (310,NULL,9,'Subject for Tell a Friend','2024-11-17 14:11:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (311,NULL,2,'Subject for Phone Call','2024-04-21 12:47:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (312,NULL,56,'Subject for Interview','2024-12-25 21:25:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (313,NULL,1,'Subject for Meeting','2024-03-24 04:02:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (314,NULL,22,'Subject for Print/Merge Document','2024-12-12 13:14:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (315,NULL,2,'Subject for Phone Call','2024-10-14 15:20:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (316,NULL,22,'Subject for Print/Merge Document','2024-11-09 01:41:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (317,NULL,56,'Subject for Interview','2024-03-31 15:40:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (318,NULL,22,'Subject for Print/Merge Document','2024-10-30 00:33:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (319,NULL,22,'Subject for Print/Merge Document','2024-06-25 12:18:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (320,NULL,1,'Subject for Meeting','2024-07-09 11:35:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (321,NULL,1,'Subject for Meeting','2024-11-20 19:10:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (322,NULL,2,'Subject for Phone Call','2024-12-28 23:40:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (323,NULL,1,'Subject for Meeting','2024-12-03 12:31:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (324,NULL,2,'Subject for Phone Call','2024-09-02 22:49:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (325,NULL,22,'Subject for Print/Merge Document','2024-03-25 05:10:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (326,NULL,9,'Subject for Tell a Friend','2024-06-10 17:11:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (327,NULL,2,'Subject for Phone Call','2025-01-23 22:38:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (328,NULL,56,'Subject for Interview','2024-12-26 14:05:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (329,NULL,22,'Subject for Print/Merge Document','2024-06-26 14:46:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (330,NULL,9,'Subject for Tell a Friend','2025-01-23 15:36:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (331,NULL,2,'Subject for Phone Call','2024-05-25 15:37:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (332,NULL,9,'Subject for Tell a Friend','2024-08-11 04:55:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (333,NULL,2,'Subject for Phone Call','2024-03-12 04:14:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (334,NULL,2,'Subject for Phone Call','2024-11-24 21:49:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (335,NULL,9,'Subject for Tell a Friend','2025-01-25 02:00:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (336,NULL,9,'Subject for Tell a Friend','2024-09-11 21:23:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (337,NULL,22,'Subject for Print/Merge Document','2024-07-23 09:46:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (338,NULL,1,'Subject for Meeting','2024-11-14 15:48:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (339,NULL,56,'Subject for Interview','2025-01-24 06:58:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (340,NULL,22,'Subject for Print/Merge Document','2024-08-20 22:10:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (341,NULL,9,'Subject for Tell a Friend','2024-05-01 13:50:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (342,NULL,9,'Subject for Tell a Friend','2024-08-19 15:00:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (343,NULL,9,'Subject for Tell a Friend','2025-01-16 08:30:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (344,NULL,56,'Subject for Interview','2024-04-28 17:36:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (345,NULL,9,'Subject for Tell a Friend','2024-06-15 07:49:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (346,NULL,22,'Subject for Print/Merge Document','2024-09-25 05:37:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (347,NULL,9,'Subject for Tell a Friend','2024-06-26 19:35:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (348,NULL,56,'Subject for Interview','2024-11-04 23:07:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (349,NULL,22,'Subject for Print/Merge Document','2024-10-24 09:37:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (350,NULL,2,'Subject for Phone Call','2024-07-22 23:21:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (351,NULL,9,'Subject for Tell a Friend','2024-09-12 16:13:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (352,NULL,2,'Subject for Phone Call','2024-09-17 03:42:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (353,NULL,22,'Subject for Print/Merge Document','2024-03-28 14:23:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (354,NULL,1,'Subject for Meeting','2025-02-05 04:31:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (355,NULL,22,'Subject for Print/Merge Document','2024-08-24 23:42:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (356,NULL,2,'Subject for Phone Call','2024-09-23 17:43:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (357,NULL,22,'Subject for Print/Merge Document','2024-12-27 21:57:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (358,NULL,9,'Subject for Tell a Friend','2024-12-06 23:53:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (359,NULL,22,'Subject for Print/Merge Document','2024-04-23 11:44:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (360,NULL,1,'Subject for Meeting','2024-03-11 22:27:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (361,NULL,1,'Subject for Meeting','2024-07-03 16:56:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (362,NULL,1,'Subject for Meeting','2024-05-03 13:20:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (363,NULL,22,'Subject for Print/Merge Document','2024-10-29 18:01:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (364,NULL,2,'Subject for Phone Call','2025-01-26 13:37:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (365,NULL,22,'Subject for Print/Merge Document','2024-06-19 05:58:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (366,NULL,22,'Subject for Print/Merge Document','2024-11-10 22:34:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (367,NULL,22,'Subject for Print/Merge Document','2024-08-13 21:29:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (368,NULL,1,'Subject for Meeting','2025-02-01 14:47:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (369,NULL,2,'Subject for Phone Call','2024-11-07 08:10:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (370,NULL,2,'Subject for Phone Call','2024-10-23 17:04:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (371,NULL,9,'Subject for Tell a Friend','2024-09-09 09:04:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (372,NULL,22,'Subject for Print/Merge Document','2024-04-28 07:47:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (373,NULL,1,'Subject for Meeting','2024-07-26 13:12:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (374,NULL,1,'Subject for Meeting','2024-08-13 12:50:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (375,NULL,2,'Subject for Phone Call','2024-03-14 06:41:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (376,NULL,56,'Subject for Interview','2024-12-13 18:40:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (377,NULL,2,'Subject for Phone Call','2024-06-16 21:43:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (378,NULL,1,'Subject for Meeting','2024-04-14 01:51:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (379,NULL,22,'Subject for Print/Merge Document','2024-04-23 01:14:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (380,NULL,22,'Subject for Print/Merge Document','2024-12-13 08:10:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (381,NULL,56,'Subject for Interview','2025-01-07 22:22:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (382,NULL,56,'Subject for Interview','2024-04-12 15:06:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (383,NULL,56,'Subject for Interview','2024-11-24 15:06:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (384,NULL,2,'Subject for Phone Call','2024-12-21 01:52:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (385,NULL,9,'Subject for Tell a Friend','2024-10-24 04:48:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (386,NULL,2,'Subject for Phone Call','2024-03-10 20:51:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (387,NULL,22,'Subject for Print/Merge Document','2024-04-23 08:07:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (388,NULL,22,'Subject for Print/Merge Document','2025-01-21 10:09:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (389,NULL,1,'Subject for Meeting','2024-06-08 23:44:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (390,NULL,56,'Subject for Interview','2024-03-14 12:21:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (391,NULL,1,'Subject for Meeting','2024-09-24 08:39:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (392,NULL,56,'Subject for Interview','2024-10-25 02:55:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (393,NULL,22,'Subject for Print/Merge Document','2024-05-27 05:34:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (394,NULL,1,'Subject for Meeting','2024-09-30 10:03:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (395,NULL,56,'Subject for Interview','2024-12-27 17:52:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (396,NULL,22,'Subject for Print/Merge Document','2024-02-28 22:13:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (397,NULL,2,'Subject for Phone Call','2024-12-27 20:06:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (398,NULL,22,'Subject for Print/Merge Document','2024-10-17 05:53:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (399,NULL,2,'Subject for Phone Call','2025-01-16 06:53:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (400,NULL,22,'Subject for Print/Merge Document','2024-12-16 22:11:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (401,NULL,56,'Subject for Interview','2024-04-18 05:28:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (402,NULL,56,'Subject for Interview','2024-06-23 14:10:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (403,NULL,22,'Subject for Print/Merge Document','2025-01-02 03:09:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (404,NULL,1,'Subject for Meeting','2024-11-20 14:10:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (405,NULL,1,'Subject for Meeting','2024-06-11 02:13:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (406,NULL,2,'Subject for Phone Call','2024-11-09 22:22:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (407,NULL,2,'Subject for Phone Call','2024-10-09 12:00:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (408,NULL,9,'Subject for Tell a Friend','2024-11-23 10:35:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (409,NULL,1,'Subject for Meeting','2024-06-15 16:52:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (410,NULL,56,'Subject for Interview','2024-12-20 23:08:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (411,NULL,2,'Subject for Phone Call','2024-07-04 11:52:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (412,NULL,56,'Subject for Interview','2024-08-02 00:48:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (413,NULL,22,'Subject for Print/Merge Document','2024-05-21 23:37:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (414,NULL,22,'Subject for Print/Merge Document','2024-11-12 17:57:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (415,NULL,56,'Subject for Interview','2024-12-10 02:03:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (416,NULL,1,'Subject for Meeting','2024-05-27 17:14:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (417,NULL,1,'Subject for Meeting','2024-07-30 14:19:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (418,NULL,56,'Subject for Interview','2025-01-05 23:51:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (419,NULL,2,'Subject for Phone Call','2024-05-11 01:08:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (420,NULL,9,'Subject for Tell a Friend','2024-08-10 02:45:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (421,NULL,2,'Subject for Phone Call','2024-09-02 07:00:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (422,NULL,56,'Subject for Interview','2024-11-16 02:56:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (423,NULL,56,'Subject for Interview','2024-11-14 23:23:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (424,NULL,9,'Subject for Tell a Friend','2024-12-04 06:55:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (425,NULL,1,'Subject for Meeting','2024-09-18 14:10:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (426,NULL,22,'Subject for Print/Merge Document','2024-05-01 06:47:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (427,NULL,2,'Subject for Phone Call','2024-05-23 01:06:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (428,NULL,22,'Subject for Print/Merge Document','2024-07-05 08:17:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (429,NULL,22,'Subject for Print/Merge Document','2024-04-12 01:31:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (430,NULL,56,'Subject for Interview','2024-03-13 11:25:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (431,NULL,2,'Subject for Phone Call','2024-10-30 01:15:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (432,NULL,1,'Subject for Meeting','2024-03-27 21:24:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (433,NULL,9,'Subject for Tell a Friend','2024-08-14 13:28:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (434,NULL,1,'Subject for Meeting','2024-07-12 05:53:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (435,NULL,1,'Subject for Meeting','2024-07-17 07:24:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (436,NULL,22,'Subject for Print/Merge Document','2024-04-09 13:00:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (437,NULL,56,'Subject for Interview','2024-05-02 01:11:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (438,NULL,22,'Subject for Print/Merge Document','2024-03-10 12:48:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (439,NULL,1,'Subject for Meeting','2024-12-05 12:03:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (440,NULL,2,'Subject for Phone Call','2024-04-01 10:42:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (441,NULL,9,'Subject for Tell a Friend','2024-07-17 15:40:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (442,NULL,2,'Subject for Phone Call','2024-10-23 07:58:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (443,NULL,1,'Subject for Meeting','2024-10-25 16:51:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (444,NULL,1,'Subject for Meeting','2024-02-13 20:01:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (445,NULL,22,'Subject for Print/Merge Document','2024-09-01 05:41:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (446,NULL,56,'Subject for Interview','2024-02-29 06:26:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (447,NULL,1,'Subject for Meeting','2024-10-07 01:04:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (448,NULL,9,'Subject for Tell a Friend','2024-04-06 19:01:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (449,NULL,56,'Subject for Interview','2024-10-28 12:42:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (450,NULL,9,'Subject for Tell a Friend','2024-09-02 08:15:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (451,1,6,'$ 125 April Mailer 1','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (452,2,6,'$ 50 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (453,3,6,'£ 25 April Mailer 1','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (454,4,6,'$ 50 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (455,5,6,'$ 50 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (456,6,6,'$ 500 April Mailer 1','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (457,7,6,'$ 1750 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (458,8,6,'$ 50 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (459,9,6,'$ 10 Online: Help CiviCRM','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (460,10,6,'$ 250 Online: Help CiviCRM','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (461,11,6,'¥ 500 ','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (462,12,6,'$ 50 Online: Save the Penguins','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (463,13,6,'$ 50 ','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (464,14,6,'$ 50 ','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (465,15,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:25','2025-02-11 22:13:25'), + (466,16,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (467,17,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (468,18,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (469,19,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (470,20,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (471,21,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (472,22,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (473,23,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (474,24,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (475,25,6,'$ 25 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (476,26,6,'$ 10 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (477,27,6,'$ 10 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (478,28,6,'$ 10 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (479,29,6,'$ 10 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (480,30,6,'$ 10 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (481,31,6,'€ 5 Recurring contribution','2025-04-11 22:13:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (482,1,7,'General','2025-02-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (483,2,7,'Student','2025-02-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (484,3,7,'General','2025-02-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (485,4,7,'Student','2025-02-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (486,5,7,'Student','2024-02-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (487,6,7,'Student','2025-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (488,7,7,'General','2025-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (489,8,7,'Student','2025-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (490,9,7,'General','2025-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (491,10,7,'Student','2024-02-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (492,11,7,'Lifetime','2025-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (493,12,7,'Student','2025-01-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (494,13,7,'General','2025-01-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (495,14,7,'Student','2025-01-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (496,15,7,'Student','2024-01-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (497,16,7,'Student','2025-01-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (498,17,7,'General','2025-01-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (499,18,7,'Student','2025-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (500,19,7,'General','2025-01-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (501,20,7,'Student','2024-01-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (502,21,7,'General','2025-01-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (503,22,7,'Lifetime','2025-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (504,23,7,'General','2025-01-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (505,24,7,'Student','2025-01-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (506,25,7,'General','2022-08-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (507,26,7,'Student','2025-01-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (508,27,7,'General','2025-01-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (509,28,7,'Student','2025-01-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (510,29,7,'General','2025-01-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (511,30,7,'General','2022-06-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (512,32,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (513,33,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (514,34,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (515,35,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (516,36,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (517,37,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (518,38,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (519,39,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (520,40,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (521,41,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (523,43,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (524,44,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (525,45,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (526,46,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (527,47,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (528,48,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (529,49,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (530,50,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (531,51,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (532,52,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (534,54,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (535,55,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (536,56,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (537,57,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (538,58,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (539,59,6,'$ 50.00 - Student Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (540,60,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (541,61,6,'$ 100.00 - General Membership: Offline signup','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (543,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (544,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (545,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (546,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (547,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (548,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (549,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (550,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (551,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (552,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (553,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (554,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (555,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (556,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (557,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (558,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (559,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (560,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (561,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (562,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (563,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (564,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (565,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (566,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (567,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (568,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (569,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (570,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (571,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (572,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (573,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (574,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (575,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (576,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (577,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (578,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (579,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (580,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (581,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (582,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (583,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (584,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (585,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (586,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (587,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (588,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (589,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (590,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (591,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (592,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (628,98,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (633,103,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (640,110,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'), + (642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2025-02-11 22:13:26',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2025-02-11 22:13:26','2025-02-11 22:13:26'); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -732,957 +733,953 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_contact` WRITE; /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */; INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES - (66,40,1,3), -(374,210,1,3), -(390,218,1,3), -(529,296,1,3), -(544,304,1,3), -(680,374,1,3), -(741,410,1,3), -(22,13,2,3), -(102,60,2,3), -(137,79,2,3), -(166,96,2,3), -(268,151,2,3), -(761,421,2,3), -(802,445,2,3), -(811,451,2,2), -(107,63,3,3), -(320,180,3,3), -(351,196,3,3), -(403,225,3,3), -(605,335,3,3), -(812,452,4,2), -(815,455,4,2), -(128,74,5,3), -(243,138,5,3), -(437,243,5,3), -(645,356,5,3), -(936,576,5,2), -(191,110,6,3), -(313,176,6,3), -(329,185,6,3), -(593,329,6,3), -(813,453,6,2), -(952,592,6,2), -(68,41,7,3), -(207,119,7,3), -(455,253,7,3), -(637,352,7,3), -(9,5,8,3), -(140,81,8,3), -(237,135,8,3), -(653,360,8,3), -(747,413,8,3), -(814,454,8,2), -(35,21,9,3), -(72,43,9,3), -(105,62,9,3), -(322,181,9,3), -(446,248,9,3), -(595,330,9,3), -(168,97,10,3), -(676,372,10,3), -(299,169,11,3), -(704,386,11,3), -(729,403,11,3), -(767,425,11,3), -(857,497,11,2), -(872,527,11,2), -(923,563,11,2), -(202,116,12,3), -(428,238,12,3), -(718,396,12,3), -(426,237,13,3), -(527,295,13,3), -(556,310,13,3), -(664,366,13,3), -(868,508,13,2), -(873,538,13,2), -(937,577,13,2), -(538,301,14,3), -(781,433,14,3), -(359,201,15,3), -(678,373,15,3), -(88,52,16,3), -(135,78,16,3), -(700,384,16,3), -(816,456,16,2), -(25,15,17,3), -(376,211,17,3), -(941,581,17,2), -(119,69,18,3), -(458,255,18,3), -(702,385,18,3), -(739,409,18,3), -(743,411,18,3), -(175,101,19,3), -(209,120,19,3), -(548,306,19,3), -(817,457,19,2), -(863,503,19,2), -(874,533,19,2), -(143,83,20,3), -(197,113,20,3), -(337,189,20,3), -(433,241,20,3), -(918,558,20,2), -(173,100,21,3), -(301,170,21,3), -(536,300,21,3), -(698,383,21,3), -(117,68,22,3), -(341,191,22,3), -(562,313,22,3), -(37,22,23,3), -(247,140,23,3), -(591,328,23,3), -(617,341,23,3), -(466,259,24,3), -(662,365,24,3), -(737,408,24,3), -(464,258,25,3), -(692,380,25,3), -(20,12,26,3), -(333,187,26,3), -(380,213,26,3), -(407,227,26,3), -(483,269,26,3), -(861,501,26,2), -(875,531,26,2), -(52,31,27,3), -(177,102,27,3), -(405,226,27,3), -(716,395,27,3), -(751,415,27,3), -(870,510,27,2), -(876,540,27,2), -(325,183,28,3), -(495,276,28,3), -(603,334,28,3), -(749,414,28,3), -(911,551,28,2), -(417,232,29,3), -(485,270,29,3), -(519,290,29,3), -(546,305,29,3), -(349,195,30,3), -(409,228,30,3), -(810,450,30,3), -(925,565,30,2), -(450,250,31,3), -(694,381,31,3), -(724,400,31,3), -(798,443,31,3), -(130,75,32,3), -(204,117,32,3), -(249,141,32,3), -(823,463,32,2), -(824,464,32,2), -(745,412,33,3), -(786,436,33,3), -(378,212,34,3), -(435,242,34,3), -(820,460,34,2), -(938,578,34,2), -(386,216,35,3), -(682,375,35,3), -(794,440,35,3), -(462,257,36,3), -(80,47,37,3), -(582,323,37,3), -(950,590,37,2), -(92,54,38,3), -(305,172,38,3), -(413,230,38,3), -(696,382,38,3), -(365,204,39,3), -(651,359,39,3), -(775,429,39,3), -(229,131,40,3), -(415,231,40,3), -(765,424,40,3), -(291,165,41,3), -(476,265,41,3), -(124,72,42,3), -(388,217,42,3), -(601,333,42,3), -(773,428,42,3), -(443,246,43,3), -(578,321,43,3), -(755,418,43,3), -(822,462,43,2), -(4,2,44,3), -(635,351,44,3), -(94,55,45,3), -(193,111,45,3), -(223,128,45,3), -(281,159,45,3), -(311,175,45,3), -(361,202,45,3), -(499,278,45,3), -(920,560,45,2), -(331,186,46,3), -(625,345,47,3), -(633,350,47,3), -(568,316,48,3), -(560,312,49,3), -(686,377,49,3), -(922,562,49,2), -(423,235,50,3), -(558,311,50,3), -(643,355,50,3), -(18,11,51,3), -(231,132,51,3), -(623,344,51,3), -(720,397,51,3), -(771,427,51,3), -(213,122,52,3), -(318,179,52,3), -(672,370,52,3), -(800,444,52,3), -(98,57,53,3), -(113,66,53,3), -(251,142,53,3), -(259,146,53,3), -(315,177,53,3), -(363,203,53,3), -(470,262,53,3), -(33,20,54,3), -(227,130,54,3), -(288,163,54,3), -(399,223,54,3), -(431,240,54,3), -(480,267,54,3), -(858,498,54,2), -(877,528,54,2), -(905,545,54,2), -(56,33,55,3), -(649,358,55,3), -(921,561,55,2), -(353,197,56,3), -(421,234,56,3), -(478,266,56,3), -(607,336,56,3), -(757,419,56,3), -(7,4,57,3), -(218,125,57,3), -(382,214,57,3), -(564,314,57,3), -(621,343,57,3), -(221,127,58,3), -(510,284,58,3), -(777,430,58,3), -(788,437,58,3), -(493,275,59,3), -(574,319,59,3), -(628,347,59,3), -(769,426,59,3), -(825,465,59,2), -(826,466,59,2), -(827,467,59,2), -(828,468,59,2), -(829,469,59,2), -(830,470,59,2), -(831,471,59,2), -(832,472,59,2), -(833,473,59,2), -(834,474,59,2), -(835,475,59,2), -(74,44,60,3), -(76,45,60,3), -(255,144,60,3), -(935,575,60,2), -(181,104,61,3), -(401,224,61,3), -(411,229,61,3), -(14,8,62,3), -(50,30,62,3), -(264,149,62,3), -(441,245,62,3), -(452,251,62,3), -(615,340,62,3), -(641,354,62,3), -(63,38,63,3), -(162,94,63,3), -(599,332,63,3), -(611,338,63,3), -(666,367,63,3), -(31,19,64,3), -(154,89,64,3), -(199,114,64,3), -(343,192,64,3), -(597,331,64,3), -(714,394,64,3), -(943,583,64,2), -(188,108,65,3), -(327,184,65,3), -(474,264,65,3), -(566,315,65,3), -(933,573,65,2), -(554,309,66,3), -(731,404,66,3), -(792,439,66,3), -(29,18,67,3), -(570,317,67,3), -(658,363,67,3), -(670,369,67,3), -(690,379,67,3), -(733,405,67,3), -(584,324,68,3), -(393,220,69,3), -(540,302,69,3), -(688,378,69,3), -(846,486,69,2), -(878,516,69,2), -(151,87,70,3), -(211,121,70,3), -(472,263,70,3), -(491,274,70,3), -(506,282,70,3), -(96,56,71,3), -(126,73,71,3), -(164,95,71,3), -(241,137,71,3), -(552,308,71,3), -(631,349,71,3), -(821,461,71,2), -(303,171,72,3), -(487,271,72,3), -(149,86,73,3), -(347,194,73,3), -(262,148,74,3), -(270,152,74,3), -(576,320,74,3), -(647,357,75,3), -(11,6,76,3), -(115,67,76,3), -(235,134,76,3), -(266,150,76,3), -(297,168,76,3), -(517,289,76,3), -(915,555,76,2), -(46,27,77,3), -(133,77,77,3), -(171,99,77,3), -(233,133,77,3), -(245,139,77,3), -(279,158,77,3), -(345,193,77,3), -(534,299,77,3), -(860,500,77,2), -(879,530,77,2), -(39,23,78,3), -(929,569,78,2), -(147,85,79,3), -(397,222,79,3), -(917,557,79,2), -(58,34,80,3), -(156,90,80,3), -(508,283,80,3), -(913,553,80,2), -(109,64,81,3), -(111,65,81,3), -(395,221,81,3), -(619,342,81,3), -(862,502,81,2), -(880,532,81,2), -(277,157,82,3), -(501,279,82,3), -(525,294,82,3), -(580,322,82,3), -(783,434,82,3), -(818,458,82,2), -(847,487,82,2), -(881,517,82,2), -(257,145,83,3), -(309,174,83,3), -(497,277,83,3), -(550,307,83,3), -(41,24,84,3), -(145,84,84,3), -(253,143,84,3), -(572,318,84,3), -(674,371,84,3), -(844,484,84,2), -(882,514,84,2), -(928,568,84,2), -(83,49,85,3), -(158,91,85,3), -(185,106,85,3), -(215,123,85,3), -(806,447,85,3), -(2,1,86,3), -(295,167,86,3), -(521,291,86,3), -(609,337,87,3), -(942,582,87,2), -(44,26,88,3), -(122,71,88,3), -(372,209,88,3), -(586,325,88,3), -(866,506,88,2), -(883,536,88,2), -(85,50,89,3), -(293,166,90,3), -(726,401,90,3), -(70,42,91,3), -(183,105,91,3), -(460,256,92,3), -(504,281,92,3), -(819,459,92,2), -(842,482,92,2), -(884,512,92,2), -(285,161,93,3), -(439,244,93,3), -(759,420,93,3), -(179,103,94,3), -(655,361,94,3), -(684,376,94,3), -(273,154,95,3), -(283,160,95,3), -(339,190,95,3), -(384,215,95,3), -(54,32,96,3), -(239,136,96,3), -(369,207,96,3), -(419,233,96,3), -(542,303,96,3), -(660,364,96,3), -(1,1,97,2), -(3,2,97,2), -(5,3,97,2), -(6,4,97,2), -(8,5,97,2), -(10,6,97,2), -(12,7,97,2), -(13,8,97,2), -(15,9,97,2), -(16,10,97,2), -(17,11,97,2), -(19,12,97,2), -(21,13,97,2), -(23,14,97,2), -(24,15,97,2), -(26,16,97,2), -(27,17,97,2), -(28,18,97,2), -(30,19,97,2), -(32,20,97,2), -(34,21,97,2), -(36,22,97,2), -(38,23,97,2), -(40,24,97,2), -(42,25,97,2), -(43,26,97,2), -(45,27,97,2), -(47,28,97,2), -(48,29,97,2), -(49,30,97,2), -(51,31,97,2), -(53,32,97,2), -(55,33,97,2), -(57,34,97,2), -(59,35,97,2), -(60,36,97,2), -(61,37,97,2), -(62,38,97,2), -(64,39,97,2), -(65,40,97,2), -(67,41,97,2), -(69,42,97,2), -(71,43,97,2), -(73,44,97,2), -(75,45,97,2), -(77,46,97,2), -(79,47,97,2), -(81,48,97,2), -(82,49,97,2), -(84,50,97,2), -(86,51,97,2), -(87,52,97,2), -(89,53,97,2), -(91,54,97,2), -(93,55,97,2), -(95,56,97,2), -(97,57,97,2), -(99,58,97,2), -(100,59,97,2), -(101,60,97,2), -(103,61,97,2), -(104,62,97,2), -(106,63,97,2), -(108,64,97,2), -(110,65,97,2), -(112,66,97,2), -(114,67,97,2), -(116,68,97,2), -(118,69,97,2), -(120,70,97,2), -(121,71,97,2), -(123,72,97,2), -(125,73,97,2), -(127,74,97,2), -(129,75,97,2), -(131,76,97,2), -(132,77,97,2), -(134,78,97,2), -(136,79,97,2), -(138,80,97,2), -(139,81,97,2), -(141,82,97,2), -(142,83,97,2), -(144,84,97,2), -(146,85,97,2), -(148,86,97,2), -(150,87,97,2), -(152,88,97,2), -(153,89,97,2), -(155,90,97,2), -(157,91,97,2), -(159,92,97,2), -(160,93,97,2), -(161,94,97,2), -(163,95,97,2), -(165,96,97,2), -(167,97,97,2), -(169,98,97,2), -(170,99,97,2), -(172,100,97,2), -(174,101,97,2), -(176,102,97,2), -(178,103,97,2), -(180,104,97,2), -(182,105,97,2), -(184,106,97,2), -(186,107,97,2), -(187,108,97,2), -(189,109,97,2), -(190,110,97,2), -(192,111,97,2), -(194,112,97,2), -(195,112,97,3), -(196,113,97,2), -(198,114,97,2), -(200,115,97,2), -(201,116,97,2), -(203,117,97,2), -(205,118,97,2), -(206,119,97,2), -(208,120,97,2), -(210,121,97,2), -(212,122,97,2), -(214,123,97,2), -(216,124,97,2), -(217,125,97,2), -(219,126,97,2), -(220,127,97,2), -(222,128,97,2), -(224,129,97,2), -(225,129,97,3), -(226,130,97,2), -(228,131,97,2), -(230,132,97,2), -(232,133,97,2), -(234,134,97,2), -(236,135,97,2), -(238,136,97,2), -(240,137,97,2), -(242,138,97,2), -(244,139,97,2), -(246,140,97,2), -(248,141,97,2), -(250,142,97,2), -(252,143,97,2), -(254,144,97,2), -(256,145,97,2), -(258,146,97,2), -(260,147,97,2), -(261,148,97,2), -(263,149,97,2), -(265,150,97,2), -(307,173,97,3), -(532,298,97,3), -(668,368,97,3), -(357,200,99,3), -(589,327,99,3), -(836,476,99,2), -(837,477,99,2), -(838,478,99,2), -(839,479,99,2), -(840,480,99,2), -(843,483,99,2), -(885,513,99,2), -(78,46,100,3), -(335,188,100,3), -(448,249,100,3), -(513,286,100,3), -(639,353,100,3), -(710,391,100,3), -(804,446,100,3), -(859,499,100,2), -(886,529,100,2), -(90,53,101,3), -(613,339,101,3), -(790,438,101,3), -(841,481,103,2), -(949,589,110,2), -(934,574,111,2), -(865,505,113,2), -(887,535,113,2), -(908,548,113,2), -(864,504,115,2), -(888,534,115,2), -(850,490,116,2), -(889,520,116,2), -(855,495,117,2), -(890,525,117,2), -(916,556,117,2), -(945,585,118,2), -(903,543,125,2), -(906,546,129,2), -(871,511,130,2), -(891,541,130,2), -(946,586,134,2), -(912,552,137,2), -(910,550,139,2), -(909,549,140,2), -(869,509,141,2), -(892,539,141,2), -(947,587,146,2), -(940,580,147,2), -(853,493,148,2), -(893,523,148,2), -(944,584,148,2), -(907,547,149,2), -(852,492,152,2), -(894,522,152,2), -(926,566,152,2), -(867,507,159,2), -(895,537,159,2), -(845,485,160,2), -(896,515,160,2), -(939,579,162,2), -(914,554,163,2), -(904,544,167,2), -(537,301,168,2), -(539,302,168,2), -(541,303,168,2), -(543,304,168,2), -(545,305,168,2), -(547,306,168,2), -(549,307,168,2), -(551,308,168,2), -(553,309,168,2), -(555,310,168,2), -(557,311,168,2), -(559,312,168,2), -(561,313,168,2), -(563,314,168,2), -(565,315,168,2), -(567,316,168,2), -(569,317,168,2), -(571,318,168,2), -(573,319,168,2), -(575,320,168,2), -(577,321,168,2), -(579,322,168,2), -(581,323,168,2), -(583,324,168,2), -(585,325,168,2), -(587,326,168,2), -(588,327,168,2), -(590,328,168,2), -(592,329,168,2), -(594,330,168,2), -(596,331,168,2), -(598,332,168,2), -(600,333,168,2), -(602,334,168,2), -(604,335,168,2), -(606,336,168,2), -(608,337,168,2), -(610,338,168,2), -(612,339,168,2), -(614,340,168,2), -(616,341,168,2), -(618,342,168,2), -(620,343,168,2), -(622,344,168,2), -(624,345,168,2), -(626,346,168,2), -(627,347,168,2), -(629,348,168,2), -(630,349,168,2), -(632,350,168,2), -(634,351,168,2), -(636,352,168,2), -(638,353,168,2), -(640,354,168,2), -(642,355,168,2), -(644,356,168,2), -(646,357,168,2), -(648,358,168,2), -(650,359,168,2), -(652,360,168,2), -(654,361,168,2), -(656,362,168,2), -(657,363,168,2), -(659,364,168,2), -(661,365,168,2), -(663,366,168,2), -(665,367,168,2), -(667,368,168,2), -(669,369,168,2), -(671,370,168,2), -(673,371,168,2), -(675,372,168,2), -(677,373,168,2), -(679,374,168,2), -(681,375,168,2), -(683,376,168,2), -(685,377,168,2), -(687,378,168,2), -(689,379,168,2), -(691,380,168,2), -(693,381,168,2), -(695,382,168,2), -(697,383,168,2), -(699,384,168,2), -(701,385,168,2), -(703,386,168,2), -(705,387,168,2), -(706,388,168,2), -(707,389,168,2), -(708,390,168,2), -(709,391,168,2), -(711,392,168,2), -(712,393,168,2), -(713,394,168,2), -(715,395,168,2), -(717,396,168,2), -(719,397,168,2), -(721,398,168,2), -(722,399,168,2), -(723,400,168,2), -(725,401,168,2), -(727,402,168,2), -(728,403,168,2), -(730,404,168,2), -(732,405,168,2), -(734,406,168,2), -(735,407,168,2), -(736,408,168,2), -(738,409,168,2), -(740,410,168,2), -(742,411,168,2), -(744,412,168,2), -(746,413,168,2), -(748,414,168,2), -(750,415,168,2), -(752,416,168,2), -(753,417,168,2), -(754,418,168,2), -(756,419,168,2), -(758,420,168,2), -(760,421,168,2), -(762,422,168,2), -(763,423,168,2), -(764,424,168,2), -(766,425,168,2), -(768,426,168,2), -(770,427,168,2), -(772,428,168,2), -(774,429,168,2), -(776,430,168,2), -(778,431,168,2), -(779,432,168,2), -(780,433,168,2), -(782,434,168,2), -(784,435,168,2), -(785,436,168,2), -(787,437,168,2), -(789,438,168,2), -(791,439,168,2), -(793,440,168,2), -(795,441,168,2), -(796,442,168,2), -(797,443,168,2), -(799,444,168,2), -(801,445,168,2), -(803,446,168,2), -(805,447,168,2), -(807,448,168,2), -(808,449,168,2), -(809,450,168,2), -(267,151,172,2), -(269,152,172,2), -(271,153,172,2), -(272,154,172,2), -(274,155,172,2), -(275,156,172,2), -(276,157,172,2), -(278,158,172,2), -(280,159,172,2), -(282,160,172,2), -(284,161,172,2), -(286,162,172,2), -(287,163,172,2), -(289,164,172,2), -(290,165,172,2), -(292,166,172,2), -(294,167,172,2), -(296,168,172,2), -(298,169,172,2), -(300,170,172,2), -(302,171,172,2), -(304,172,172,2), -(306,173,172,2), -(308,174,172,2), -(310,175,172,2), -(312,176,172,2), -(314,177,172,2), -(316,178,172,2), -(317,179,172,2), -(319,180,172,2), -(321,181,172,2), -(323,182,172,2), -(324,183,172,2), -(326,184,172,2), -(328,185,172,2), -(330,186,172,2), -(332,187,172,2), -(334,188,172,2), -(336,189,172,2), -(338,190,172,2), -(340,191,172,2), -(342,192,172,2), -(344,193,172,2), -(346,194,172,2), -(348,195,172,2), -(350,196,172,2), -(352,197,172,2), -(354,198,172,2), -(355,199,172,2), -(356,200,172,2), -(358,201,172,2), -(360,202,172,2), -(362,203,172,2), -(364,204,172,2), -(366,205,172,2), -(367,206,172,2), -(368,207,172,2), -(370,208,172,2), -(371,209,172,2), -(373,210,172,2), -(375,211,172,2), -(377,212,172,2), -(379,213,172,2), -(381,214,172,2), -(383,215,172,2), -(385,216,172,2), -(387,217,172,2), -(389,218,172,2), -(391,219,172,2), -(392,220,172,2), -(394,221,172,2), -(396,222,172,2), -(398,223,172,2), -(400,224,172,2), -(402,225,172,2), -(404,226,172,2), -(406,227,172,2), -(408,228,172,2), -(410,229,172,2), -(412,230,172,2), -(414,231,172,2), -(416,232,172,2), -(418,233,172,2), -(420,234,172,2), -(422,235,172,2), -(424,236,172,2), -(425,237,172,2), -(427,238,172,2), -(429,239,172,2), -(430,240,172,2), -(432,241,172,2), -(434,242,172,2), -(436,243,172,2), -(438,244,172,2), -(440,245,172,2), -(442,246,172,2), -(444,247,172,2), -(445,248,172,2), -(447,249,172,2), -(449,250,172,2), -(451,251,172,2), -(453,252,172,2), -(454,253,172,2), -(456,254,172,2), -(457,255,172,2), -(459,256,172,2), -(461,257,172,2), -(463,258,172,2), -(465,259,172,2), -(467,260,172,2), -(468,261,172,2), -(469,262,172,2), -(471,263,172,2), -(473,264,172,2), -(475,265,172,2), -(477,266,172,2), -(479,267,172,2), -(481,268,172,2), -(482,269,172,2), -(484,270,172,2), -(486,271,172,2), -(488,272,172,2), -(489,273,172,2), -(490,274,172,2), -(492,275,172,2), -(494,276,172,2), -(496,277,172,2), -(498,278,172,2), -(500,279,172,2), -(502,280,172,2), -(503,281,172,2), -(505,282,172,2), -(507,283,172,2), -(509,284,172,2), -(511,285,172,2), -(512,286,172,2), -(514,287,172,2), -(515,288,172,2), -(516,289,172,2), -(518,290,172,2), -(520,291,172,2), -(522,292,172,2), -(523,293,172,2), -(524,294,172,2), -(526,295,172,2), -(528,296,172,2), -(530,297,172,2), -(531,298,172,2), -(533,299,172,2), -(535,300,172,2), -(848,488,172,2), -(897,518,172,2), -(856,496,174,2), -(898,526,174,2), -(854,494,180,2), -(899,524,180,2), -(924,564,180,2), -(948,588,181,2), -(930,570,184,2), -(851,491,185,2), -(900,521,185,2), -(919,559,186,2), -(849,489,189,2), -(901,519,189,2), -(932,572,190,2), -(951,591,192,2), -(931,571,194,2), -(927,567,197,2); + (96,53,1,3), + (214,119,1,3), + (229,127,1,3), + (4,2,2,3), + (247,136,2,3), + (568,313,2,3), + (779,435,2,3), + (807,451,2,2), + (293,161,3,3), + (490,270,3,3), + (899,543,3,2), + (501,276,4,3), + (808,452,4,2), + (811,455,4,2), + (542,298,5,3), + (714,399,5,3), + (754,421,5,3), + (76,42,6,3), + (184,102,6,3), + (331,181,6,3), + (402,220,6,3), + (483,266,6,3), + (809,453,6,2), + (25,14,7,3), + (140,77,7,3), + (118,65,8,3), + (432,237,8,3), + (810,454,8,2), + (68,38,9,3), + (370,202,9,3), + (750,419,9,3), + (839,483,9,2), + (869,513,9,2), + (312,171,10,3), + (346,190,10,3), + (589,326,10,3), + (639,354,10,3), + (730,408,10,3), + (235,130,11,3), + (343,188,11,3), + (434,238,11,3), + (512,282,11,3), + (738,412,11,3), + (194,108,12,3), + (664,370,12,3), + (160,88,13,3), + (254,140,13,3), + (642,356,13,3), + (645,358,13,3), + (593,328,14,3), + (6,3,15,3), + (499,275,15,3), + (677,377,15,3), + (935,579,15,2), + (42,24,16,3), + (54,30,16,3), + (89,49,16,3), + (279,153,16,3), + (812,456,16,2), + (38,22,17,3), + (374,204,17,3), + (423,232,17,3), + (699,390,17,3), + (722,404,18,3), + (756,422,18,3), + (847,491,18,2), + (877,521,18,2), + (18,10,19,3), + (252,139,19,3), + (547,301,19,3), + (813,457,19,2), + (323,177,20,3), + (164,90,21,3), + (719,402,21,3), + (904,548,21,2), + (777,434,22,3), + (281,154,23,3), + (793,443,23,3), + (798,446,23,3), + (748,418,24,3), + (838,482,24,2), + (868,512,24,2), + (58,32,25,3), + (366,200,25,3), + (580,321,25,3), + (850,494,25,2), + (880,524,25,2), + (70,39,26,3), + (216,120,26,3), + (329,180,26,3), + (842,486,26,2), + (872,516,26,2), + (245,135,27,3), + (525,289,27,3), + (789,441,27,3), + (921,565,27,2), + (600,332,28,3), + (775,433,28,3), + (791,442,28,3), + (297,163,29,3), + (728,407,29,3), + (8,4,30,3), + (211,117,30,3), + (479,264,30,3), + (806,450,30,3), + (85,47,31,3), + (87,48,31,3), + (385,210,31,3), + (552,304,31,3), + (627,347,31,3), + (711,397,31,3), + (285,156,32,3), + (521,287,32,3), + (736,411,32,3), + (819,463,32,2), + (820,464,32,2), + (946,590,32,2), + (14,8,33,3), + (250,138,33,3), + (571,315,33,3), + (578,320,33,3), + (591,327,33,3), + (804,449,33,3), + (304,167,34,3), + (394,215,34,3), + (449,246,34,3), + (703,392,34,3), + (744,416,34,3), + (816,460,34,2), + (20,11,35,3), + (283,155,35,3), + (620,343,35,3), + (337,184,36,3), + (419,230,36,3), + (582,322,36,3), + (2,1,37,3), + (101,56,37,3), + (256,141,37,3), + (923,567,37,2), + (325,178,38,3), + (671,374,38,3), + (40,23,39,3), + (46,26,39,3), + (207,115,39,3), + (266,146,39,3), + (540,297,39,3), + (742,415,39,3), + (147,81,40,3), + (505,278,40,3), + (634,351,40,3), + (746,417,40,3), + (795,444,40,3), + (800,447,40,3), + (151,83,41,3), + (536,295,41,3), + (650,361,41,3), + (188,104,42,3), + (227,126,42,3), + (409,224,42,3), + (495,273,42,3), + (683,381,42,3), + (844,488,42,2), + (874,518,42,2), + (142,78,43,3), + (219,122,43,3), + (275,151,43,3), + (507,279,43,3), + (562,310,43,3), + (673,375,43,3), + (765,427,43,3), + (818,462,43,2), + (933,577,43,2), + (116,64,44,3), + (464,255,44,3), + (105,58,45,3), + (180,100,45,3), + (321,176,45,3), + (556,306,45,3), + (679,378,45,3), + (910,554,45,2), + (201,112,46,3), + (413,226,46,3), + (72,40,47,3), + (262,144,47,3), + (333,182,47,3), + (487,268,47,3), + (503,277,47,3), + (752,420,47,3), + (335,183,48,3), + (447,245,48,3), + (622,344,48,3), + (906,550,48,2), + (186,103,49,3), + (389,212,49,3), + (400,219,49,3), + (518,285,49,3), + (598,331,49,3), + (80,44,50,3), + (319,175,50,3), + (785,439,50,3), + (175,97,51,3), + (459,252,51,3), + (462,254,51,3), + (760,424,51,3), + (28,16,52,3), + (203,113,52,3), + (417,229,52,3), + (529,291,52,3), + (586,324,52,3), + (802,448,52,3), + (901,545,52,2), + (726,406,53,3), + (16,9,54,3), + (471,259,54,3), + (533,293,54,3), + (732,409,54,3), + (913,557,54,2), + (22,12,55,3), + (476,262,55,3), + (862,506,55,2), + (892,536,55,2), + (30,17,56,3), + (110,61,56,3), + (378,206,56,3), + (382,208,56,3), + (516,284,56,3), + (660,368,56,3), + (855,499,56,2), + (885,529,56,2), + (902,546,56,2), + (429,235,57,3), + (636,352,57,3), + (108,60,58,3), + (514,283,58,3), + (239,132,59,3), + (356,195,59,3), + (387,211,59,3), + (602,333,59,3), + (662,369,59,3), + (762,425,59,3), + (821,465,59,2), + (822,466,59,2), + (823,467,59,2), + (824,468,59,2), + (825,469,59,2), + (826,470,59,2), + (827,471,59,2), + (828,472,59,2), + (829,473,59,2), + (830,474,59,2), + (831,475,59,2), + (843,487,59,2), + (873,517,59,2), + (112,62,60,3), + (289,159,60,3), + (310,170,60,3), + (348,191,60,3), + (544,299,60,3), + (129,71,61,3), + (156,86,61,3), + (350,192,61,3), + (380,207,61,3), + (632,350,61,3), + (60,33,62,3), + (376,205,62,3), + (404,221,62,3), + (596,330,62,3), + (606,335,62,3), + (133,73,63,3), + (277,152,63,3), + (295,162,63,3), + (425,233,63,3), + (611,338,63,3), + (701,391,63,3), + (114,63,64,3), + (122,67,64,3), + (145,80,64,3), + (172,95,64,3), + (538,296,64,3), + (652,362,64,3), + (697,389,64,3), + (11,6,65,3), + (158,87,65,3), + (308,169,65,3), + (616,341,65,3), + (618,342,65,3), + (655,364,65,3), + (693,386,65,3), + (182,101,66,3), + (456,250,66,3), + (466,256,66,3), + (558,307,66,3), + (66,37,67,3), + (241,133,67,3), + (453,248,67,3), + (258,142,68,3), + (421,231,68,3), + (687,383,68,3), + (268,147,69,3), + (531,292,69,3), + (613,339,69,3), + (669,373,69,3), + (841,485,69,2), + (871,515,69,2), + (162,89,70,3), + (191,106,70,3), + (270,148,70,3), + (441,242,70,3), + (443,243,70,3), + (445,244,70,3), + (724,405,70,3), + (136,75,71,3), + (225,125,71,3), + (584,323,71,3), + (817,461,71,2), + (93,51,72,3), + (411,225,72,3), + (178,99,73,3), + (360,197,73,3), + (372,203,73,3), + (911,555,73,2), + (74,41,74,3), + (167,92,74,3), + (364,199,74,3), + (62,34,75,3), + (339,185,75,3), + (849,493,75,2), + (879,523,75,2), + (82,45,76,3), + (473,260,76,3), + (685,382,76,3), + (945,589,76,2), + (624,345,77,3), + (689,384,77,3), + (198,110,78,3), + (272,149,78,3), + (666,371,78,3), + (939,583,78,2), + (78,43,79,3), + (564,311,79,3), + (944,588,79,2), + (223,124,80,3), + (231,128,80,3), + (291,160,80,3), + (149,82,81,3), + (209,116,81,3), + (675,376,81,3), + (771,431,81,3), + (840,484,81,2), + (870,514,81,2), + (327,179,82,3), + (368,201,82,3), + (734,410,82,3), + (787,440,82,3), + (814,458,82,2), + (131,72,83,3), + (264,145,83,3), + (493,272,83,3), + (604,334,83,3), + (44,25,84,3), + (99,55,84,3), + (302,166,84,3), + (352,193,84,3), + (527,290,84,3), + (125,69,85,3), + (315,173,85,3), + (481,265,85,3), + (497,274,85,3), + (91,50,86,3), + (407,223,86,3), + (485,267,86,3), + (523,288,86,3), + (56,31,87,3), + (103,57,87,3), + (691,385,88,3), + (317,174,89,3), + (436,239,89,3), + (554,305,89,3), + (708,395,89,3), + (782,437,89,3), + (853,497,89,2), + (883,527,89,2), + (928,572,89,2), + (306,168,90,3), + (354,194,90,3), + (574,317,90,3), + (773,432,90,3), + (917,561,90,2), + (929,573,91,2), + (153,84,92,3), + (439,241,92,3), + (769,430,92,3), + (815,459,92,2), + (864,508,92,2), + (894,538,92,2), + (50,28,93,3), + (52,29,93,3), + (243,134,93,3), + (549,302,93,3), + (608,336,93,3), + (758,423,93,3), + (221,123,94,3), + (35,20,95,3), + (205,114,95,3), + (260,143,95,3), + (362,198,95,3), + (858,502,95,2), + (888,532,95,2), + (918,562,95,2), + (127,70,96,3), + (848,492,96,2), + (878,522,96,2), + (1,1,97,2), + (3,2,97,2), + (5,3,97,2), + (7,4,97,2), + (9,5,97,2), + (10,6,97,2), + (12,7,97,2), + (13,8,97,2), + (15,9,97,2), + (17,10,97,2), + (19,11,97,2), + (21,12,97,2), + (23,13,97,2), + (24,14,97,2), + (26,15,97,2), + (27,16,97,2), + (29,17,97,2), + (31,18,97,2), + (32,19,97,2), + (34,20,97,2), + (36,21,97,2), + (37,22,97,2), + (39,23,97,2), + (41,24,97,2), + (43,25,97,2), + (45,26,97,2), + (47,27,97,2), + (49,28,97,2), + (51,29,97,2), + (53,30,97,2), + (55,31,97,2), + (57,32,97,2), + (59,33,97,2), + (61,34,97,2), + (63,35,97,2), + (64,36,97,2), + (65,37,97,2), + (67,38,97,2), + (69,39,97,2), + (71,40,97,2), + (73,41,97,2), + (75,42,97,2), + (77,43,97,2), + (79,44,97,2), + (81,45,97,2), + (83,46,97,2), + (84,47,97,2), + (86,48,97,2), + (88,49,97,2), + (90,50,97,2), + (92,51,97,2), + (94,52,97,2), + (95,53,97,2), + (97,54,97,2), + (98,55,97,2), + (100,56,97,2), + (102,57,97,2), + (104,58,97,2), + (106,59,97,2), + (107,60,97,2), + (109,61,97,2), + (111,62,97,2), + (113,63,97,2), + (115,64,97,2), + (117,65,97,2), + (119,66,97,2), + (121,67,97,2), + (123,68,97,2), + (124,69,97,2), + (126,70,97,2), + (128,71,97,2), + (130,72,97,2), + (132,73,97,2), + (134,74,97,2), + (135,75,97,2), + (137,76,97,2), + (138,76,97,3), + (139,77,97,2), + (141,78,97,2), + (143,79,97,2), + (144,80,97,2), + (146,81,97,2), + (148,82,97,2), + (150,83,97,2), + (152,84,97,2), + (154,85,97,2), + (155,86,97,2), + (157,87,97,2), + (159,88,97,2), + (161,89,97,2), + (163,90,97,2), + (165,91,97,2), + (166,92,97,2), + (168,93,97,2), + (170,94,97,2), + (171,95,97,2), + (173,96,97,2), + (174,97,97,2), + (176,98,97,2), + (177,99,97,2), + (179,100,97,2), + (181,101,97,2), + (183,102,97,2), + (185,103,97,2), + (187,104,97,2), + (189,105,97,2), + (190,106,97,2), + (192,107,97,2), + (193,108,97,2), + (195,109,97,2), + (197,110,97,2), + (199,111,97,2), + (200,112,97,2), + (202,113,97,2), + (204,114,97,2), + (206,115,97,2), + (208,116,97,2), + (210,117,97,2), + (212,118,97,2), + (213,119,97,2), + (215,120,97,2), + (217,121,97,2), + (218,122,97,2), + (220,123,97,2), + (222,124,97,2), + (224,125,97,2), + (226,126,97,2), + (228,127,97,2), + (230,128,97,2), + (232,129,97,2), + (234,130,97,2), + (236,131,97,2), + (238,132,97,2), + (240,133,97,2), + (242,134,97,2), + (244,135,97,2), + (246,136,97,2), + (248,137,97,2), + (249,138,97,2), + (251,139,97,2), + (253,140,97,2), + (255,141,97,2), + (257,142,97,2), + (259,143,97,2), + (261,144,97,2), + (263,145,97,2), + (265,146,97,2), + (267,147,97,2), + (269,148,97,2), + (271,149,97,2), + (273,150,97,2), + (930,574,97,2), + (237,131,98,3), + (397,217,98,3), + (629,348,98,3), + (717,401,98,3), + (358,196,99,3), + (392,214,99,3), + (832,476,99,2), + (833,477,99,2), + (834,478,99,2), + (835,479,99,2), + (836,480,99,2), + (857,501,99,2), + (887,531,99,2), + (912,556,99,2), + (33,19,100,3), + (120,66,100,3), + (169,93,100,3), + (233,129,100,3), + (300,165,100,3), + (509,280,100,3), + (648,360,100,3), + (706,394,100,3), + (922,566,100,2), + (48,27,101,3), + (196,109,101,3), + (427,234,101,3), + (451,247,101,3), + (469,258,101,3), + (566,312,101,3), + (863,507,102,2), + (893,537,102,2), + (837,481,103,2), + (861,505,105,2), + (891,535,105,2), + (905,549,105,2), + (932,576,106,2), + (943,587,107,2), + (934,578,108,2), + (942,586,112,2), + (948,592,113,2), + (925,569,118,2), + (947,591,121,2), + (927,571,122,2), + (909,553,125,2), + (845,489,126,2), + (875,519,126,2), + (846,490,129,2), + (876,520,129,2), + (937,581,130,2), + (926,570,133,2), + (941,585,134,2), + (936,580,138,2), + (907,551,139,2), + (908,552,143,2), + (915,559,144,2), + (866,510,146,2), + (896,540,146,2), + (924,568,146,2), + (546,301,149,2), + (548,302,149,2), + (550,303,149,2), + (551,304,149,2), + (553,305,149,2), + (555,306,149,2), + (557,307,149,2), + (559,308,149,2), + (560,309,149,2), + (561,310,149,2), + (563,311,149,2), + (565,312,149,2), + (567,313,149,2), + (569,314,149,2), + (570,315,149,2), + (572,316,149,2), + (573,317,149,2), + (575,318,149,2), + (576,319,149,2), + (577,320,149,2), + (579,321,149,2), + (581,322,149,2), + (583,323,149,2), + (585,324,149,2), + (587,325,149,2), + (588,326,149,2), + (590,327,149,2), + (592,328,149,2), + (594,329,149,2), + (595,330,149,2), + (597,331,149,2), + (599,332,149,2), + (601,333,149,2), + (603,334,149,2), + (605,335,149,2), + (607,336,149,2), + (609,337,149,2), + (610,338,149,2), + (612,339,149,2), + (614,340,149,2), + (615,341,149,2), + (617,342,149,2), + (619,343,149,2), + (621,344,149,2), + (623,345,149,2), + (625,346,149,2), + (626,347,149,2), + (628,348,149,2), + (630,349,149,2), + (631,350,149,2), + (633,351,149,2), + (635,352,149,2), + (637,353,149,2), + (638,354,149,2), + (640,355,149,2), + (641,356,149,2), + (643,357,149,2), + (644,358,149,2), + (646,359,149,2), + (647,360,149,2), + (649,361,149,2), + (651,362,149,2), + (653,363,149,2), + (654,364,149,2), + (656,365,149,2), + (657,366,149,2), + (658,367,149,2), + (659,368,149,2), + (661,369,149,2), + (663,370,149,2), + (665,371,149,2), + (667,372,149,2), + (668,373,149,2), + (670,374,149,2), + (672,375,149,2), + (674,376,149,2), + (676,377,149,2), + (678,378,149,2), + (680,379,149,2), + (681,380,149,2), + (682,381,149,2), + (684,382,149,2), + (686,383,149,2), + (688,384,149,2), + (690,385,149,2), + (692,386,149,2), + (694,387,149,2), + (695,388,149,2), + (696,389,149,2), + (698,390,149,2), + (700,391,149,2), + (702,392,149,2), + (704,393,149,2), + (705,394,149,2), + (707,395,149,2), + (709,396,149,2), + (710,397,149,2), + (712,398,149,2), + (713,399,149,2), + (715,400,149,2), + (716,401,149,2), + (718,402,149,2), + (720,403,149,2), + (721,404,149,2), + (723,405,149,2), + (725,406,149,2), + (727,407,149,2), + (729,408,149,2), + (731,409,149,2), + (733,410,149,2), + (735,411,149,2), + (737,412,149,2), + (739,413,149,2), + (740,414,149,2), + (741,415,149,2), + (743,416,149,2), + (745,417,149,2), + (747,418,149,2), + (749,419,149,2), + (751,420,149,2), + (753,421,149,2), + (755,422,149,2), + (757,423,149,2), + (759,424,149,2), + (761,425,149,2), + (763,426,149,2), + (764,427,149,2), + (766,428,149,2), + (767,429,149,2), + (768,430,149,2), + (770,431,149,2), + (772,432,149,2), + (774,433,149,2), + (776,434,149,2), + (778,435,149,2), + (780,436,149,2), + (781,437,149,2), + (783,438,149,2), + (784,439,149,2), + (786,440,149,2), + (788,441,149,2), + (790,442,149,2), + (792,443,149,2), + (794,444,149,2), + (796,445,149,2), + (797,446,149,2), + (799,447,149,2), + (801,448,149,2), + (803,449,149,2), + (805,450,149,2), + (860,504,153,2), + (890,534,153,2), + (851,495,154,2), + (881,525,154,2), + (919,563,157,2), + (914,558,162,2), + (274,151,165,2), + (276,152,165,2), + (278,153,165,2), + (280,154,165,2), + (282,155,165,2), + (284,156,165,2), + (286,157,165,2), + (287,158,165,2), + (288,159,165,2), + (290,160,165,2), + (292,161,165,2), + (294,162,165,2), + (296,163,165,2), + (298,164,165,2), + (299,165,165,2), + (301,166,165,2), + (303,167,165,2), + (305,168,165,2), + (307,169,165,2), + (309,170,165,2), + (311,171,165,2), + (313,172,165,2), + (314,173,165,2), + (316,174,165,2), + (318,175,165,2), + (320,176,165,2), + (322,177,165,2), + (324,178,165,2), + (326,179,165,2), + (328,180,165,2), + (330,181,165,2), + (332,182,165,2), + (334,183,165,2), + (336,184,165,2), + (338,185,165,2), + (340,186,165,2), + (341,187,165,2), + (342,188,165,2), + (344,189,165,2), + (345,190,165,2), + (347,191,165,2), + (349,192,165,2), + (351,193,165,2), + (353,194,165,2), + (355,195,165,2), + (357,196,165,2), + (359,197,165,2), + (361,198,165,2), + (363,199,165,2), + (365,200,165,2), + (367,201,165,2), + (369,202,165,2), + (371,203,165,2), + (373,204,165,2), + (375,205,165,2), + (377,206,165,2), + (379,207,165,2), + (381,208,165,2), + (383,209,165,2), + (384,210,165,2), + (386,211,165,2), + (388,212,165,2), + (390,213,165,2), + (391,214,165,2), + (393,215,165,2), + (395,216,165,2), + (396,217,165,2), + (398,218,165,2), + (399,219,165,2), + (401,220,165,2), + (403,221,165,2), + (405,222,165,2), + (406,223,165,2), + (408,224,165,2), + (410,225,165,2), + (412,226,165,2), + (414,227,165,2), + (415,228,165,2), + (416,229,165,2), + (418,230,165,2), + (420,231,165,2), + (422,232,165,2), + (424,233,165,2), + (426,234,165,2), + (428,235,165,2), + (430,236,165,2), + (431,237,165,2), + (433,238,165,2), + (435,239,165,2), + (437,240,165,2), + (438,241,165,2), + (440,242,165,2), + (442,243,165,2), + (444,244,165,2), + (446,245,165,2), + (448,246,165,2), + (450,247,165,2), + (452,248,165,2), + (454,249,165,2), + (455,250,165,2), + (457,251,165,2), + (458,252,165,2), + (460,253,165,2), + (461,254,165,2), + (463,255,165,2), + (465,256,165,2), + (467,257,165,2), + (468,258,165,2), + (470,259,165,2), + (472,260,165,2), + (474,261,165,2), + (475,262,165,2), + (477,263,165,2), + (478,264,165,2), + (480,265,165,2), + (482,266,165,2), + (484,267,165,2), + (486,268,165,2), + (488,269,165,2), + (489,270,165,2), + (491,271,165,2), + (492,272,165,2), + (494,273,165,2), + (496,274,165,2), + (498,275,165,2), + (500,276,165,2), + (502,277,165,2), + (504,278,165,2), + (506,279,165,2), + (508,280,165,2), + (510,281,165,2), + (511,282,165,2), + (513,283,165,2), + (515,284,165,2), + (517,285,165,2), + (519,286,165,2), + (520,287,165,2), + (522,288,165,2), + (524,289,165,2), + (526,290,165,2), + (528,291,165,2), + (530,292,165,2), + (532,293,165,2), + (534,294,165,2), + (535,295,165,2), + (537,296,165,2), + (539,297,165,2), + (541,298,165,2), + (543,299,165,2), + (545,300,165,2), + (859,503,165,2), + (889,533,165,2), + (938,582,168,2), + (867,511,169,2), + (897,541,169,2), + (916,560,172,2), + (920,564,175,2), + (865,509,178,2), + (895,539,178,2), + (856,500,181,2), + (886,530,181,2), + (852,496,184,2), + (882,526,184,2), + (940,584,185,2), + (900,544,189,2), + (931,575,197,2), + (903,547,199,2), + (854,498,201,2), + (884,528,201,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -1693,188 +1690,183 @@ UNLOCK TABLES; LOCK TABLES `civicrm_address` WRITE; /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */; INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES - (1,198,1,1,0,'200G Cadell Blvd S',200,'G',NULL,'Cadell','Blvd','S',NULL,NULL,NULL,NULL,'Okmulgee',1,1035,NULL,'74447',NULL,1228,35.628612,-95.9734,0,NULL,NULL,NULL), -(2,123,1,1,0,'956W Green Path S',956,'W',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Linton',1,1013,NULL,'47441',NULL,1228,39.039636,-87.16987,0,NULL,NULL,NULL), -(3,192,1,1,0,'7W Northpoint Rd SW',7,'W',NULL,'Northpoint','Rd','SW',NULL,NULL,NULL,NULL,'Owenton',1,1016,NULL,'40359',NULL,1228,38.467809,-84.81023,0,NULL,NULL,NULL), -(4,72,1,1,0,'788Y Northpoint St SE',788,'Y',NULL,'Northpoint','St','SE',NULL,NULL,NULL,NULL,'Hamel',1,1012,NULL,'62046',NULL,1228,38.889879,-89.84638,0,NULL,NULL,NULL), -(5,96,1,1,0,'393Q Woodbridge Ave N',393,'Q',NULL,'Woodbridge','Ave','N',NULL,NULL,NULL,NULL,'Quitaque',1,1042,NULL,'79255',NULL,1228,34.362997,-101.05209,0,NULL,NULL,NULL), -(6,97,1,1,0,'808D Green Path NW',808,'D',NULL,'Green','Path','NW',NULL,NULL,NULL,NULL,'Wilkes Barre',1,1037,NULL,'18710',NULL,1228,41.272248,-75.880146,0,NULL,NULL,NULL), -(7,66,1,1,0,'970W Northpoint St S',970,'W',NULL,'Northpoint','St','S',NULL,NULL,NULL,NULL,'Lake Charles',1,1017,NULL,'70601',NULL,1228,30.226399,-93.20496,0,NULL,NULL,NULL), -(8,4,1,1,0,'31L Bay Ln NW',31,'L',NULL,'Bay','Ln','NW',NULL,NULL,NULL,NULL,'Gorum',1,1017,NULL,'71434',NULL,1228,31.440908,-92.94724,0,NULL,NULL,NULL), -(9,154,1,1,0,'709O Caulder Blvd S',709,'O',NULL,'Caulder','Blvd','S',NULL,NULL,NULL,NULL,'Gleneden Beach',1,1036,NULL,'97388',NULL,1228,44.885,-123.994219,0,NULL,NULL,NULL), -(10,17,1,1,0,'417O Dowlen Rd S',417,'O',NULL,'Dowlen','Rd','S',NULL,NULL,NULL,NULL,'Jackson',1,1013,NULL,'47718',NULL,1228,38.420839,-86.570962,0,NULL,NULL,NULL), -(11,64,1,1,0,'196F Maple St NW',196,'F',NULL,'Maple','St','NW',NULL,NULL,NULL,NULL,'Bison',1,1035,NULL,'73720',NULL,1228,36.200563,-97.88883,0,NULL,NULL,NULL), -(12,172,1,1,0,'760O Beech St E',760,'O',NULL,'Beech','St','E',NULL,NULL,NULL,NULL,'Abrams',1,1048,NULL,'54101',NULL,1228,44.788898,-88.04535,0,NULL,NULL,NULL), -(13,61,1,1,0,'791Z Pine Path S',791,'Z',NULL,'Pine','Path','S',NULL,NULL,NULL,NULL,'Kimper',1,1016,NULL,'41539',NULL,1228,37.504315,-82.32797,0,NULL,NULL,NULL), -(14,151,1,1,0,'200G Main Blvd NW',200,'G',NULL,'Main','Blvd','NW',NULL,NULL,NULL,NULL,'Cascade Locks',1,1036,NULL,'97014',NULL,1228,45.655523,-121.89435,0,NULL,NULL,NULL), -(15,187,1,1,0,'915J Dowlen St N',915,'J',NULL,'Dowlen','St','N',NULL,NULL,NULL,NULL,'Grinnell',1,1014,NULL,'50177',NULL,1228,41.685742,-92.532032,0,NULL,NULL,NULL), -(16,7,1,1,0,'879F Northpoint Way S',879,'F',NULL,'Northpoint','Way','S',NULL,NULL,NULL,NULL,'New Holland',1,1012,NULL,'62671',NULL,1228,40.186852,-89.56053,0,NULL,NULL,NULL), -(17,25,1,1,0,'288J Martin Luther King Ln N',288,'J',NULL,'Martin Luther King','Ln','N',NULL,NULL,NULL,NULL,'Oaks',1,1037,NULL,'19456',NULL,1228,40.133355,-75.453631,0,NULL,NULL,NULL), -(18,95,1,1,0,'787W Green Pl NE',787,'W',NULL,'Green','Pl','NE',NULL,NULL,NULL,NULL,'Kingsbury',1,1027,NULL,'89779',NULL,1228,38.971319,-119.922973,0,NULL,NULL,NULL), -(19,146,1,1,0,'185U Pine Pl E',185,'U',NULL,'Pine','Pl','E',NULL,NULL,NULL,NULL,'Kempton',1,1013,NULL,'46049',NULL,1228,40.292007,-86.22757,0,NULL,NULL,NULL), -(20,145,1,1,0,'33S Beech Way E',33,'S',NULL,'Beech','Way','E',NULL,NULL,NULL,NULL,'Guffey',1,1005,NULL,'80820',NULL,1228,38.783844,-105.63616,0,NULL,NULL,NULL), -(21,185,1,1,0,'124C Cadell Rd W',124,'C',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'Miami',1,1008,NULL,'33242',NULL,1228,25.558428,-80.458168,0,NULL,NULL,NULL), -(22,125,1,1,0,'862N Dowlen Ln NW',862,'N',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Naperville',1,1012,NULL,'60564',NULL,1228,41.707118,-88.19634,0,NULL,NULL,NULL), -(23,132,1,1,0,'274L El Camino Way W',274,'L',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Jewett',1,1012,NULL,'62436',NULL,1228,39.190088,-88.2601,0,NULL,NULL,NULL), -(24,170,1,1,0,'517B Green Ave S',517,'B',NULL,'Green','Ave','S',NULL,NULL,NULL,NULL,'Okemos',1,1021,NULL,'48805',NULL,1228,42.599184,-84.371973,0,NULL,NULL,NULL), -(25,86,1,1,0,'271Z College Blvd W',271,'Z',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40259',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL), -(26,163,1,1,0,'930R College Ln E',930,'R',NULL,'College','Ln','E',NULL,NULL,NULL,NULL,'Oak Hall',1,1045,NULL,'23396',NULL,1228,37.923682,-75.555142,0,NULL,NULL,NULL), -(27,10,1,1,0,'97L Main Blvd NW',97,'L',NULL,'Main','Blvd','NW',NULL,NULL,NULL,NULL,'Flat Rock',1,1034,NULL,'44828',NULL,1228,41.234403,-82.86059,0,NULL,NULL,NULL), -(28,126,1,1,0,'832Z Dowlen Ave SE',832,'Z',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93724',NULL,1228,36.746375,-119.639658,0,NULL,NULL,NULL), -(29,93,1,1,0,'454J Beech Ln W',454,'J',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Mentone',1,1042,NULL,'79754',NULL,1228,31.72285,-103.57449,0,NULL,NULL,NULL), -(30,71,1,1,0,'862E Main Ln NW',862,'E',NULL,'Main','Ln','NW',NULL,NULL,NULL,NULL,'Scottsburg',1,1036,NULL,'97473',NULL,1228,43.669352,-123.8141,0,NULL,NULL,NULL), -(31,69,1,1,0,'535T Lincoln St NE',535,'T',NULL,'Lincoln','St','NE',NULL,NULL,NULL,NULL,'Philipsburg',1,1025,NULL,'59858',NULL,1228,46.293656,-113.36273,0,NULL,NULL,NULL), -(32,81,1,1,0,'204P Second Path SW',204,'P',NULL,'Second','Path','SW',NULL,NULL,NULL,NULL,'Short Hills',1,1029,NULL,'07078',NULL,1228,40.73915,-74.32749,0,NULL,NULL,NULL), -(33,45,1,1,0,'371L El Camino Ave W',371,'L',NULL,'El Camino','Ave','W',NULL,NULL,NULL,NULL,'Lapine',1,1000,NULL,'36046',NULL,1228,32.025367,-86.34182,0,NULL,NULL,NULL), -(34,148,1,1,0,'818I Lincoln Way NE',818,'I',NULL,'Lincoln','Way','NE',NULL,NULL,NULL,NULL,'Spivey',1,1015,NULL,'67142',NULL,1228,37.468889,-98.21584,0,NULL,NULL,NULL), -(35,128,1,1,0,'948K Woodbridge Path N',948,'K',NULL,'Woodbridge','Path','N',NULL,NULL,NULL,NULL,'Des Moines',1,1014,NULL,'50320',NULL,1228,41.537059,-93.58072,0,NULL,NULL,NULL), -(36,37,1,1,0,'289J College Rd NE',289,'J',NULL,'College','Rd','NE',NULL,NULL,NULL,NULL,'Mission',1,1042,NULL,'78512',NULL,1228,26.232613,-98.348534,0,NULL,NULL,NULL), -(37,85,1,1,0,'533E Pine Path N',533,'E',NULL,'Pine','Path','N',NULL,NULL,NULL,NULL,'Framingham',1,1020,NULL,'01705',NULL,1228,42.446396,-71.459405,0,NULL,NULL,NULL), -(38,5,1,1,0,'737I College Way E',737,'I',NULL,'College','Way','E',NULL,NULL,NULL,NULL,'Greenville',1,1039,NULL,'29605',NULL,1228,34.798035,-82.39289,0,NULL,NULL,NULL), -(39,63,1,1,0,'752W College Path S',752,'W',NULL,'College','Path','S',NULL,NULL,NULL,NULL,'Carbon',1,1042,NULL,'76435',NULL,1228,32.236449,-98.83268,0,NULL,NULL,NULL), -(40,106,1,1,0,'721K Dowlen Pl S',721,'K',NULL,'Dowlen','Pl','S',NULL,NULL,NULL,NULL,'Little Cedar',1,1014,NULL,'50454',NULL,1228,43.38301,-92.7293,0,NULL,NULL,NULL), -(41,150,1,1,0,'536M Martin Luther King Ln SE',536,'M',NULL,'Martin Luther King','Ln','SE',NULL,NULL,NULL,NULL,'Sewaren',1,1029,NULL,'07077',NULL,1228,40.553971,-74.25938,0,NULL,NULL,NULL), -(42,200,1,1,0,'331S Martin Luther King St NW',331,'S',NULL,'Martin Luther King','St','NW',NULL,NULL,NULL,NULL,'Lake Cormorant',1,1023,NULL,'38641',NULL,1228,34.904881,-90.19353,0,NULL,NULL,NULL), -(43,193,1,1,0,'947M Van Ness Rd W',947,'M',NULL,'Van Ness','Rd','W',NULL,NULL,NULL,NULL,'San Juan Capistrano',1,1004,NULL,'92675',NULL,1228,33.500843,-117.65866,0,NULL,NULL,NULL), -(44,143,1,1,0,'19G States St NW',19,'G',NULL,'States','St','NW',NULL,NULL,NULL,NULL,'Gifford',1,1039,NULL,'29923',NULL,1228,32.866195,-81.24215,0,NULL,NULL,NULL), -(45,52,1,1,0,'427U Caulder Rd N',427,'U',NULL,'Caulder','Rd','N',NULL,NULL,NULL,NULL,'Carey',1,1011,NULL,'83320',NULL,1228,43.356224,-113.89078,0,NULL,NULL,NULL), -(46,139,1,1,0,'468C States Blvd W',468,'C',NULL,'States','Blvd','W',NULL,NULL,NULL,NULL,'Lynn',1,1032,NULL,'28750',NULL,1228,35.236179,-82.236198,0,NULL,NULL,NULL), -(47,32,1,1,0,'663T Northpoint Path NW',663,'T',NULL,'Northpoint','Path','NW',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44111',NULL,1228,41.459399,-81.78174,0,NULL,NULL,NULL), -(48,94,1,1,0,'927O Northpoint Rd NW',927,'O',NULL,'Northpoint','Rd','NW',NULL,NULL,NULL,NULL,'Brooklyn',1,1023,NULL,'39425',NULL,1228,31.059327,-89.09164,0,NULL,NULL,NULL), -(49,118,1,1,0,'212S Bay Blvd NW',212,'S',NULL,'Bay','Blvd','NW',NULL,NULL,NULL,NULL,'Athens',1,1041,NULL,'37303',NULL,1228,35.441378,-84.61975,0,NULL,NULL,NULL), -(50,119,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,NULL), -(51,129,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,NULL), -(52,78,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,NULL), -(53,36,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,NULL), -(54,43,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,NULL), -(55,124,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,NULL), -(56,135,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,NULL), -(57,194,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,NULL), -(58,15,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,NULL), -(59,127,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,NULL), -(60,47,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,NULL), -(61,134,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,NULL), -(62,2,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,NULL), -(63,51,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,NULL), -(64,53,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,NULL), -(65,41,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,NULL), -(66,28,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,NULL), -(67,42,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,NULL), -(68,111,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,NULL), -(69,183,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,NULL), -(70,34,3,1,0,'484Z Green Ave E',484,'Z',NULL,'Green','Ave','E',NULL,'Cuffe Parade',NULL,NULL,'Valliant',1,1035,NULL,'74764',NULL,1228,34.038794,-95.07793,0,NULL,NULL,NULL), -(71,156,3,1,0,'42J Beech Path S',42,'J',NULL,'Beech','Path','S',NULL,'Urgent',NULL,NULL,'McNeil',1,1003,NULL,'71752',NULL,1228,33.362351,-93.20045,0,NULL,NULL,NULL), -(72,22,3,1,0,'831Y Green Rd SW',831,'Y',NULL,'Green','Rd','SW',NULL,'Subscriptions Dept',NULL,NULL,'Huntsville',1,1000,NULL,'35810',NULL,1228,34.77624,-86.61339,0,NULL,NULL,NULL), -(73,195,3,1,0,'180C Jackson Way E',180,'C',NULL,'Jackson','Way','E',NULL,'Urgent',NULL,NULL,'Troy',1,1044,NULL,'05868',NULL,1228,44.902837,-72.408,0,NULL,NULL,NULL), -(74,169,3,1,0,'962T Martin Luther King St W',962,'T',NULL,'Martin Luther King','St','W',NULL,'Receiving',NULL,NULL,'Clear Lake',1,1048,NULL,'54005',NULL,1228,45.237727,-92.22901,0,NULL,NULL,NULL), -(75,46,3,1,0,'82P States Way W',82,'P',NULL,'States','Way','W',NULL,'c/o OPDC',NULL,NULL,'Centerville',1,1040,NULL,'57014',NULL,1228,43.111838,-96.9563,0,NULL,NULL,NULL), -(76,91,2,1,0,'82P States Way W',82,'P',NULL,'States','Way','W',NULL,'c/o OPDC',NULL,NULL,'Centerville',1,1040,NULL,'57014',NULL,1228,43.111838,-96.9563,0,NULL,NULL,75), -(77,40,3,1,0,'308E Van Ness Way S',308,'E',NULL,'Van Ness','Way','S',NULL,'Editorial Dept',NULL,NULL,'Germantown',1,1019,NULL,'20876',NULL,1228,39.191769,-77.24329,0,NULL,NULL,NULL), -(78,136,3,1,0,'730D College Path S',730,'D',NULL,'College','Path','S',NULL,'Disbursements',NULL,NULL,'San Francisco',1,1004,NULL,'94106',NULL,1228,37.784827,-122.727802,0,NULL,NULL,NULL), -(79,143,2,0,0,'730D College Path S',730,'D',NULL,'College','Path','S',NULL,'Disbursements',NULL,NULL,'San Francisco',1,1004,NULL,'94106',NULL,1228,37.784827,-122.727802,0,NULL,NULL,78), -(80,33,3,1,0,'177P Jackson Pl E',177,'P',NULL,'Jackson','Pl','E',NULL,'Editorial Dept',NULL,NULL,'Springfield',1,1045,NULL,'22161',NULL,1228,38.807462,-77.219354,0,NULL,NULL,NULL), -(81,131,3,1,0,'593D Bay Path NW',593,'D',NULL,'Bay','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Tulsa',1,1035,NULL,'74112',NULL,1228,36.148444,-95.90841,0,NULL,NULL,NULL), -(82,162,2,1,0,'593D Bay Path NW',593,'D',NULL,'Bay','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Tulsa',1,1035,NULL,'74112',NULL,1228,36.148444,-95.90841,0,NULL,NULL,81), -(83,181,3,1,0,'172M Woodbridge St E',172,'M',NULL,'Woodbridge','St','E',NULL,'Mailstop 101',NULL,NULL,'Cruger',1,1023,NULL,'38924',NULL,1228,33.309896,-90.21172,0,NULL,NULL,NULL), -(84,56,2,1,0,'172M Woodbridge St E',172,'M',NULL,'Woodbridge','St','E',NULL,'Mailstop 101',NULL,NULL,'Cruger',1,1023,NULL,'38924',NULL,1228,33.309896,-90.21172,0,NULL,NULL,83), -(85,149,3,1,0,'302L Van Ness Blvd NE',302,'L',NULL,'Van Ness','Blvd','NE',NULL,'Urgent',NULL,NULL,'Lynch',1,1016,NULL,'40855',NULL,1228,36.96222,-82.90522,0,NULL,NULL,NULL), -(86,68,2,1,0,'302L Van Ness Blvd NE',302,'L',NULL,'Van Ness','Blvd','NE',NULL,'Urgent',NULL,NULL,'Lynch',1,1016,NULL,'40855',NULL,1228,36.96222,-82.90522,0,NULL,NULL,85), -(87,196,3,1,0,'894V Woodbridge St S',894,'V',NULL,'Woodbridge','St','S',NULL,'Disbursements',NULL,NULL,'Noble',1,1013,NULL,'46692',NULL,1228,40.752777,-85.744328,0,NULL,NULL,NULL), -(88,155,3,1,0,'126S Woodbridge Path N',126,'S',NULL,'Woodbridge','Path','N',NULL,'Attn: Accounting',NULL,NULL,'Chatsworth',1,1004,NULL,'91311',NULL,1228,34.259052,-118.59426,0,NULL,NULL,NULL), -(89,58,2,1,0,'126S Woodbridge Path N',126,'S',NULL,'Woodbridge','Path','N',NULL,'Attn: Accounting',NULL,NULL,'Chatsworth',1,1004,NULL,'91311',NULL,1228,34.259052,-118.59426,0,NULL,NULL,88), -(90,83,3,1,0,'123W Lincoln Blvd SW',123,'W',NULL,'Lincoln','Blvd','SW',NULL,'c/o PO Plus',NULL,NULL,'Harman',1,1047,NULL,'26270',NULL,1228,38.915141,-79.53066,0,NULL,NULL,NULL), -(91,158,3,1,0,'704N Martin Luther King Dr SW',704,'N',NULL,'Martin Luther King','Dr','SW',NULL,'Attn: Accounting',NULL,NULL,'Southfield',1,1020,NULL,'01259',NULL,1228,42.0645,-73.24674,0,NULL,NULL,NULL), -(92,191,3,1,0,'619H Second Rd N',619,'H',NULL,'Second','Rd','N',NULL,'Urgent',NULL,NULL,'Ritzville',1,1046,NULL,'99169',NULL,1228,47.107228,-118.43136,0,NULL,NULL,NULL), -(93,125,2,0,0,'619H Second Rd N',619,'H',NULL,'Second','Rd','N',NULL,'Urgent',NULL,NULL,'Ritzville',1,1046,NULL,'99169',NULL,1228,47.107228,-118.43136,0,NULL,NULL,92), -(94,144,3,1,0,'368G El Camino Way E',368,'G',NULL,'El Camino','Way','E',NULL,'Payables Dept.',NULL,NULL,'Boston',1,1020,NULL,'02106',NULL,1228,42.354318,-71.073449,0,NULL,NULL,NULL), -(95,30,2,1,0,'368G El Camino Way E',368,'G',NULL,'El Camino','Way','E',NULL,'Payables Dept.',NULL,NULL,'Boston',1,1020,NULL,'02106',NULL,1228,42.354318,-71.073449,0,NULL,NULL,94), -(96,109,3,1,0,'135A Jackson Blvd SE',135,'A',NULL,'Jackson','Blvd','SE',NULL,'Attn: Accounting',NULL,NULL,'Meyersdale',1,1037,NULL,'15552',NULL,1228,39.805436,-79.00013,0,NULL,NULL,NULL), -(97,97,2,0,0,'135A Jackson Blvd SE',135,'A',NULL,'Jackson','Blvd','SE',NULL,'Attn: Accounting',NULL,NULL,'Meyersdale',1,1037,NULL,'15552',NULL,1228,39.805436,-79.00013,0,NULL,NULL,96), -(98,3,3,1,0,'304K Lincoln Ln N',304,'K',NULL,'Lincoln','Ln','N',NULL,'Community Relations',NULL,NULL,'Carey',1,1042,NULL,'79222',NULL,1228,34.529678,-100.207642,0,NULL,NULL,NULL), -(99,18,2,1,0,'304K Lincoln Ln N',304,'K',NULL,'Lincoln','Ln','N',NULL,'Community Relations',NULL,NULL,'Carey',1,1042,NULL,'79222',NULL,1228,34.529678,-100.207642,0,NULL,NULL,98), -(100,67,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), -(101,31,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), -(102,35,1,1,0,'542C Pine Blvd N',542,'C',NULL,'Pine','Blvd','N',NULL,NULL,NULL,NULL,'Elgin',1,1041,NULL,'37732',NULL,1228,36.327029,-84.60898,0,NULL,NULL,50), -(103,118,1,0,0,'728K Caulder Dr NW',728,'K',NULL,'Caulder','Dr','NW',NULL,NULL,NULL,NULL,'Jackson',1,1023,NULL,'39216',NULL,1228,32.334738,-90.16933,0,NULL,NULL,NULL), -(104,137,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), -(105,6,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), -(106,176,1,1,0,'776E Martin Luther King St E',776,'E',NULL,'Martin Luther King','St','E',NULL,NULL,NULL,NULL,'San Anselmo',1,1004,NULL,'94979',NULL,1228,38.068036,-122.740988,0,NULL,NULL,51), -(107,140,1,1,0,'654H Green Pl SE',654,'H',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40231',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL), -(108,102,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), -(109,26,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), -(110,44,1,1,0,'190W Jackson Ave E',190,'W',NULL,'Jackson','Ave','E',NULL,NULL,NULL,NULL,'Courtland',1,1000,NULL,'35618',NULL,1228,34.665033,-87.30978,0,NULL,NULL,52), -(111,101,1,1,0,'2Q Van Ness St S',2,'Q',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28255',NULL,1228,35.26002,-80.804151,0,NULL,NULL,NULL), -(112,74,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), -(113,152,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), -(114,142,1,1,0,'824X Van Ness Blvd NW',824,'X',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Burgoon',1,1034,NULL,'43407',NULL,1228,41.277969,-83.24578,0,NULL,NULL,53), -(115,91,1,0,0,'361V Bay Path W',361,'V',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Hampton',1,1008,NULL,'32044',NULL,1228,29.863141,-82.15623,0,NULL,NULL,NULL), -(116,56,1,0,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), -(117,98,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), -(118,165,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), -(119,201,1,1,0,'224X El Camino St W',224,'X',NULL,'El Camino','St','W',NULL,NULL,NULL,NULL,'North Clarendon',1,1044,NULL,'05759',NULL,1228,43.553904,-72.96168,0,NULL,NULL,54), -(120,11,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), -(121,141,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), -(122,82,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), -(123,60,1,1,0,'624N Lincoln Path SE',624,'N',NULL,'Lincoln','Path','SE',NULL,NULL,NULL,NULL,'Midland',1,1036,NULL,'97634',NULL,1228,42.129926,-121.81778,0,NULL,NULL,55), -(124,168,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), -(125,20,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), -(126,112,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), -(127,19,1,1,0,'380X Second Pl S',380,'X',NULL,'Second','Pl','S',NULL,NULL,NULL,NULL,'Joliet',1,1012,NULL,'60436',NULL,1228,41.50798,-88.10553,0,NULL,NULL,56), -(128,113,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), -(129,110,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), -(130,49,1,1,0,'439B Martin Luther King Rd NE',439,'B',NULL,'Martin Luther King','Rd','NE',NULL,NULL,NULL,NULL,'Marion',1,1048,NULL,'54950',NULL,1228,44.669461,-88.89693,0,NULL,NULL,57), -(131,178,1,1,0,'324D Woodbridge Ave NW',324,'D',NULL,'Woodbridge','Ave','NW',NULL,NULL,NULL,NULL,'Alexandria',1,1017,NULL,'71309',NULL,1228,31.30473,-92.619593,0,NULL,NULL,NULL), -(132,190,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), -(133,122,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), -(134,197,1,1,0,'565V El Camino Rd NW',565,'V',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30389',NULL,1228,33.844371,-84.47405,0,NULL,NULL,58), -(135,115,1,1,0,'583H Green Dr S',583,'H',NULL,'Green','Dr','S',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33609',NULL,1228,27.943549,-82.50656,0,NULL,NULL,NULL), -(136,68,1,0,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), -(137,75,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), -(138,103,1,1,0,'151I Maple Path NW',151,'I',NULL,'Maple','Path','NW',NULL,NULL,NULL,NULL,'Adams',1,1016,NULL,'41201',NULL,1228,38.076051,-82.73975,0,NULL,NULL,59), -(139,87,1,1,0,'967V Main Ln W',967,'V',NULL,'Main','Ln','W',NULL,NULL,NULL,NULL,'Vicksburg',1,1023,NULL,'39180',NULL,1228,32.292761,-90.87184,0,NULL,NULL,NULL), -(140,157,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), -(141,130,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), -(142,188,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), -(143,14,1,1,0,'120H Second Way N',120,'H',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Danbury',1,1006,NULL,'06817',NULL,1228,41.308873,-73.363661,0,NULL,NULL,60), -(144,16,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), -(145,58,1,0,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), -(146,114,1,1,0,'810P States Pl S',810,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Pine Mountain',1,1009,NULL,'31822',NULL,1228,32.867211,-84.88437,0,NULL,NULL,61), -(147,164,1,1,0,'181A Main Dr W',181,'A',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Harper',1,1015,NULL,'67058',NULL,1228,37.297898,-98.03916,0,NULL,NULL,NULL), -(148,30,1,0,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), -(149,100,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), -(150,120,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), -(151,76,1,1,0,'263P Cadell Blvd NE',263,'P',NULL,'Cadell','Blvd','NE',NULL,NULL,NULL,NULL,'Blue Mountain',1,1003,NULL,'72826',NULL,1228,35.161856,-93.65615,0,NULL,NULL,62), -(152,21,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), -(153,55,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), -(154,65,1,1,0,'284N Van Ness Ave N',284,'N',NULL,'Van Ness','Ave','N',NULL,NULL,NULL,NULL,'Newport Beach',1,1004,NULL,'92658',NULL,1228,33.640302,-117.769442,0,NULL,NULL,63), -(155,90,1,1,0,'769P Jackson Blvd NE',769,'P',NULL,'Jackson','Blvd','NE',NULL,NULL,NULL,NULL,'Windsor',1,1005,NULL,'80550',NULL,1228,40.47997,-104.90227,0,NULL,NULL,NULL), -(156,173,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), -(157,162,1,0,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), -(158,180,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), -(159,117,1,1,0,'957V Bay St NW',957,'V',NULL,'Bay','St','NW',NULL,NULL,NULL,NULL,'West Union',1,1022,NULL,'56389',NULL,1228,45.799542,-95.08213,0,NULL,NULL,64), -(160,105,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), -(161,175,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), -(162,80,1,1,0,'801H Cadell Way NE',801,'H',NULL,'Cadell','Way','NE',NULL,NULL,NULL,NULL,'Davenport',1,1014,NULL,'52801',NULL,1228,41.522832,-90.57503,0,NULL,NULL,65), -(163,199,1,1,0,'159S States Ave NE',159,'S',NULL,'States','Ave','NE',NULL,NULL,NULL,NULL,'Kathleen',1,1008,NULL,'33849',NULL,1228,28.24625,-82.06358,0,NULL,NULL,NULL), -(164,57,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), -(165,29,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), -(166,160,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), -(167,104,1,1,0,'745A Pine Pl NW',745,'A',NULL,'Pine','Pl','NW',NULL,NULL,NULL,NULL,'Vernon',1,1042,NULL,'76384',NULL,1228,34.142094,-99.29649,0,NULL,NULL,66), -(168,171,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), -(169,92,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), -(170,48,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), -(171,8,1,1,0,'618Y Martin Luther King Blvd SW',618,'Y',NULL,'Martin Luther King','Blvd','SW',NULL,NULL,NULL,NULL,'Belfry',1,1016,NULL,'41514',NULL,1228,37.672296,-82.30442,0,NULL,NULL,67), -(172,89,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), -(173,161,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), -(174,54,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), -(175,138,1,1,0,'275K Lincoln Path N',275,'K',NULL,'Lincoln','Path','N',NULL,NULL,NULL,NULL,'Niobrara',1,1026,NULL,'68760',NULL,1228,42.776379,-98.07011,0,NULL,NULL,68), -(176,50,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), -(177,167,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), -(178,38,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), -(179,88,1,1,0,'953Q Martin Luther King Blvd N',953,'Q',NULL,'Martin Luther King','Blvd','N',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30331',NULL,1228,33.715558,-84.52728,0,NULL,NULL,69), -(180,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL), -(181,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL), -(182,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); + (1,31,1,1,0,'416B Northpoint St NE',416,'B',NULL,'Northpoint','St','NE',NULL,NULL,NULL,NULL,'Brogan',1,1036,NULL,'97903',NULL,1228,44.187379,-117.62629,0,NULL,NULL,NULL), + (2,50,1,1,0,'536D Green St E',536,'D',NULL,'Green','St','E',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40203',NULL,1228,38.248106,-85.7665,0,NULL,NULL,NULL), + (3,49,1,1,0,'172P Second Blvd E',172,'P',NULL,'Second','Blvd','E',NULL,NULL,NULL,NULL,'Puyallup',1,1046,NULL,'98372',NULL,1228,47.198591,-122.27131,0,NULL,NULL,NULL), + (4,95,1,1,0,'206S Martin Luther King Dr N',206,'S',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Upland',1,1004,NULL,'91785',NULL,1228,34.839964,-115.967051,0,NULL,NULL,NULL), + (5,84,1,1,0,'654F Woodbridge Ln NE',654,'F',NULL,'Woodbridge','Ln','NE',NULL,NULL,NULL,NULL,'Frankenmuth',1,1021,NULL,'48734',NULL,1228,43.340413,-83.74123,0,NULL,NULL,NULL), + (6,182,1,1,0,'227B Second Ave E',227,'B',NULL,'Second','Ave','E',NULL,NULL,NULL,NULL,'Kalaheo',1,1010,NULL,'96741',NULL,1228,21.999721,-159.4776,0,NULL,NULL,NULL), + (7,57,1,1,0,'554Z Van Ness Ln N',554,'Z',NULL,'Van Ness','Ln','N',NULL,NULL,NULL,NULL,'Mesena',1,1009,NULL,'30819',NULL,1228,33.432384,-82.625213,0,NULL,NULL,NULL), + (8,153,1,1,0,'122J Cadell Pl W',122,'J',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Mango',1,1008,NULL,'33550',NULL,1228,27.871964,-82.438841,0,NULL,NULL,NULL), + (9,193,1,1,0,'338E Van Ness Path NE',338,'E',NULL,'Van Ness','Path','NE',NULL,NULL,NULL,NULL,'Jackson',1,1037,NULL,'18825',NULL,1228,41.822157,-75.59506,0,NULL,NULL,NULL), + (10,101,1,1,0,'166T Cadell Blvd SW',166,'T',NULL,'Cadell','Blvd','SW',NULL,NULL,NULL,NULL,'Longwood',1,1032,NULL,'28452',NULL,1228,33.997345,-78.5565,0,NULL,NULL,NULL), + (11,41,1,1,0,'64H Northpoint Way NW',64,'H',NULL,'Northpoint','Way','NW',NULL,NULL,NULL,NULL,'Mannington',1,1047,NULL,'26582',NULL,1228,39.527817,-80.3586,0,NULL,NULL,NULL), + (12,55,1,1,0,'698L Cadell Blvd NW',698,'L',NULL,'Cadell','Blvd','NW',NULL,NULL,NULL,NULL,'Buffalo Mills',1,1037,NULL,'15534',NULL,1228,39.904209,-78.70159,0,NULL,NULL,NULL), + (13,62,1,1,0,'74X Cadell Path E',74,'X',NULL,'Cadell','Path','E',NULL,NULL,NULL,NULL,'McKenzie',1,1000,NULL,'36456',NULL,1228,31.54668,-86.77355,0,NULL,NULL,NULL), + (14,138,1,1,0,'332G Green Dr NW',332,'G',NULL,'Green','Dr','NW',NULL,NULL,NULL,NULL,'Tenakee Springs',1,1001,NULL,'99841',NULL,1228,57.777622,-135.20777,0,NULL,NULL,NULL), + (15,154,1,1,0,'318S States Dr W',318,'S',NULL,'States','Dr','W',NULL,NULL,NULL,NULL,'Cleveland',1,1043,NULL,'84518',NULL,1228,39.350034,-110.87184,0,NULL,NULL,NULL), + (16,157,1,1,0,'220C States Ave W',220,'C',NULL,'States','Ave','W',NULL,NULL,NULL,NULL,'Woolstock',1,1014,NULL,'50599',NULL,1228,42.579038,-93.80387,0,NULL,NULL,NULL), + (17,176,1,1,0,'804V Jackson Way NE',804,'V',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Greenbush',1,1022,NULL,'56726',NULL,1228,48.698749,-96.20637,0,NULL,NULL,NULL), + (18,35,1,1,0,'92U Lincoln Rd N',92,'U',NULL,'Lincoln','Rd','N',NULL,NULL,NULL,NULL,'Magnolia',1,1042,NULL,'77355',NULL,1228,30.158706,-95.74464,0,NULL,NULL,NULL), + (19,114,1,1,0,'384T Beech Dr W',384,'T',NULL,'Beech','Dr','W',NULL,NULL,NULL,NULL,'Ellenwood',1,1009,NULL,'30294',NULL,1228,33.639658,-84.26822,0,NULL,NULL,NULL), + (20,143,1,1,0,'874Y Green Dr NW',874,'Y',NULL,'Green','Dr','NW',NULL,NULL,NULL,NULL,'Fredonia',1,1016,NULL,'42011',NULL,1228,37.220735,-88.061294,0,NULL,NULL,NULL), + (21,166,1,1,0,'965I Beech Ln SW',965,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Dallas',1,1009,NULL,'30132',NULL,1228,33.945735,-84.84463,0,NULL,NULL,NULL), + (22,91,1,1,0,'936T Second St E',936,'T',NULL,'Second','St','E',NULL,NULL,NULL,NULL,'Mint Spring',1,1045,NULL,'24463',NULL,1228,38.064112,-79.10979,0,NULL,NULL,NULL), + (23,17,1,1,0,'564T College Ln SE',564,'T',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Casa Grande',1,1002,NULL,'85222',NULL,1228,32.878138,-111.73499,0,NULL,NULL,NULL), + (24,160,1,1,0,'500S Martin Luther King Ln S',500,'S',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Ravia',1,1035,NULL,'73455',NULL,1228,34.240761,-96.75726,0,NULL,NULL,NULL), + (25,156,1,1,0,'66X Jackson Ave SE',66,'X',NULL,'Jackson','Ave','SE',NULL,NULL,NULL,NULL,'Northboro',1,1014,NULL,'51647',NULL,1228,40.599361,-95.36419,0,NULL,NULL,NULL), + (26,96,1,1,0,'121B El Camino St NE',121,'B',NULL,'El Camino','St','NE',NULL,NULL,NULL,NULL,'Lakewood',1,1046,NULL,'98499',NULL,1228,47.16632,-122.50844,0,NULL,NULL,NULL), + (27,135,1,1,0,'822W Beech Path W',822,'W',NULL,'Beech','Path','W',NULL,NULL,NULL,NULL,'Annandale',1,1029,NULL,'08801',NULL,1228,40.624538,-74.89118,0,NULL,NULL,NULL), + (28,108,1,1,0,'820M Beech Ln N',820,'M',NULL,'Beech','Ln','N',NULL,NULL,NULL,NULL,'Baileyville',1,1015,NULL,'66404',NULL,1228,39.891751,-96.17343,0,NULL,NULL,NULL), + (29,117,1,1,0,'739L Beech Blvd NW',739,'L',NULL,'Beech','Blvd','NW',NULL,NULL,NULL,NULL,'Arlington',1,1020,NULL,'02474',NULL,1228,42.419496,-71.15635,0,NULL,NULL,NULL), + (30,59,1,1,0,'658S Northpoint Pl SE',658,'S',NULL,'Northpoint','Pl','SE',NULL,NULL,NULL,NULL,'Reading',1,1021,NULL,'49274',NULL,1228,41.843254,-84.75263,0,NULL,NULL,NULL), + (31,198,1,1,0,'251P Main Pl E',251,'P',NULL,'Main','Pl','E',NULL,NULL,NULL,NULL,'Andover',1,1022,NULL,'55304',NULL,1228,45.254715,-93.28652,0,NULL,NULL,NULL), + (32,23,1,1,0,'855B Bay Way SW',855,'B',NULL,'Bay','Way','SW',NULL,NULL,NULL,NULL,'Laredo',1,1042,NULL,'78046',NULL,1228,27.435814,-99.45996,0,NULL,NULL,NULL), + (33,11,1,1,0,'803F Dowlen St N',803,'F',NULL,'Dowlen','St','N',NULL,NULL,NULL,NULL,'Little Rock',1,1003,NULL,'72216',NULL,1228,34.817834,-92.235668,0,NULL,NULL,NULL), + (34,6,1,1,0,'26U College Blvd SW',26,'U',NULL,'College','Blvd','SW',NULL,NULL,NULL,NULL,'South Mansfield',1,1017,NULL,'71053',NULL,1228,32.048905,-93.608059,0,NULL,NULL,NULL), + (35,10,1,1,0,'731K Martin Luther King Pl NW',731,'K',NULL,'Martin Luther King','Pl','NW',NULL,NULL,NULL,NULL,'Sarasota',1,1008,NULL,'34241',NULL,1228,27.272873,-82.41676,0,NULL,NULL,NULL), + (36,18,1,1,0,'986X El Camino Pl SW',986,'X',NULL,'El Camino','Pl','SW',NULL,NULL,NULL,NULL,'Altus',1,1003,NULL,'72821',NULL,1228,35.44477,-93.747,0,NULL,NULL,NULL), + (37,133,1,1,0,'839S Woodbridge Ave SW',839,'S',NULL,'Woodbridge','Ave','SW',NULL,NULL,NULL,NULL,'Riverton',1,1026,NULL,'68972',NULL,1228,40.083133,-98.78853,0,NULL,NULL,NULL), + (38,163,1,1,0,'505G Beech Rd SE',505,'G',NULL,'Beech','Rd','SE',NULL,NULL,NULL,NULL,'Petersburg',1,1042,NULL,'79250',NULL,1228,33.870404,-101.60467,0,NULL,NULL,NULL), + (39,142,1,1,0,'366P States Dr E',366,'P',NULL,'States','Dr','E',NULL,NULL,NULL,NULL,'Hardinsburg',1,1016,NULL,'40143',NULL,1228,37.777083,-86.48345,0,NULL,NULL,NULL), + (40,116,1,1,0,'135C Beech Ln W',135,'C',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Sneads',1,1008,NULL,'32460',NULL,1228,30.735645,-84.94563,0,NULL,NULL,NULL), + (41,63,1,1,0,'270E Pine Way N',270,'E',NULL,'Pine','Way','N',NULL,NULL,NULL,NULL,'Smoketown',1,1037,NULL,'17576',NULL,1228,40.038648,-76.1964,0,NULL,NULL,NULL), + (42,34,1,1,0,'93P Beech St NE',93,'P',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Gatesville',1,1042,NULL,'76599',NULL,1228,31.470598,-97.734728,0,NULL,NULL,NULL), + (43,110,1,1,0,'809H Maple Pl N',809,'H',NULL,'Maple','Pl','N',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78766',NULL,1228,30.442202,-97.62333,0,NULL,NULL,NULL), + (44,158,1,1,0,'415F Woodbridge Blvd SE',415,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Cape Neddick',1,1018,NULL,'03902',NULL,1228,43.216251,-70.62856,0,NULL,NULL,NULL), + (45,113,1,1,0,'907K College Ave W',907,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Grosse Ile',1,1021,NULL,'48138',NULL,1228,42.130091,-83.16017,0,NULL,NULL,NULL), + (46,155,1,1,0,'69L Van Ness Way NW',69,'L',NULL,'Van Ness','Way','NW',NULL,NULL,NULL,NULL,'Lovejoy',1,1009,NULL,'30250',NULL,1228,33.437428,-84.31519,0,NULL,NULL,NULL), + (47,47,1,1,0,'847B Van Ness Path NW',847,'B',NULL,'Van Ness','Path','NW',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,NULL), + (48,130,1,1,0,'846A Second Dr SW',846,'A',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Middle Falls',1,1031,NULL,'12848',NULL,1228,43.100123,-73.524554,0,NULL,NULL,NULL), + (49,167,1,1,0,'232O Caulder St E',232,'O',NULL,'Caulder','St','E',NULL,NULL,NULL,NULL,'Lonaconing',1,1019,NULL,'21539',NULL,1228,39.580942,-78.99073,0,NULL,NULL,NULL), + (50,197,1,1,0,'584I States Rd NW',584,'I',NULL,'States','Rd','NW',NULL,NULL,NULL,NULL,'Murfreesboro',1,1041,NULL,'37128',NULL,1228,35.813319,-86.4455,0,NULL,NULL,NULL), + (51,127,1,1,0,'759P Green Dr SE',759,'P',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Woodside',1,1031,NULL,'11377',NULL,1228,40.742869,-73.90377,0,NULL,NULL,NULL), + (52,61,1,1,0,'975V Maple Path S',975,'V',NULL,'Maple','Path','S',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15259',NULL,1228,40.434436,-80.024817,0,NULL,NULL,NULL), + (53,82,1,1,0,'954B Martin Luther King Ave NW',954,'B',NULL,'Martin Luther King','Ave','NW',NULL,NULL,NULL,NULL,'Allenton',1,1021,NULL,'48002',NULL,1228,42.938385,-82.91582,0,NULL,NULL,NULL), + (54,80,1,1,0,'960Z Van Ness St N',960,'Z',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Provo',1,1043,NULL,'84602',NULL,1228,40.356343,-111.732476,0,NULL,NULL,NULL), + (55,51,1,1,0,'542D Dowlen Dr N',542,'D',NULL,'Dowlen','Dr','N',NULL,NULL,NULL,NULL,'Oakmont',1,1037,NULL,'15139',NULL,1228,40.519518,-79.83762,0,NULL,NULL,NULL), + (56,180,1,1,0,'692Z Van Ness St S',692,'Z',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Stem',1,1032,NULL,'27581',NULL,1228,36.195036,-78.72657,0,NULL,NULL,NULL), + (57,8,1,1,0,'631Q Bay Path SW',631,'Q',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'McDonald',1,1015,NULL,'67745',NULL,1228,39.792736,-101.36332,0,NULL,NULL,NULL), + (58,179,1,1,0,'829R Bay Ave E',829,'R',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'Madeline',1,1004,NULL,'96119',NULL,1228,41.021344,-120.52472,0,NULL,NULL,NULL), + (59,7,1,1,0,'751F Green St NW',751,'F',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Wiggins',1,1005,NULL,'80654',NULL,1228,40.196296,-104.07361,0,NULL,NULL,NULL), + (60,32,1,1,0,'243W Martin Luther King Path NE',243,'W',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Millville',1,1022,NULL,'55957',NULL,1228,44.244633,-92.29074,0,NULL,NULL,NULL), + (61,40,1,1,0,'232S Caulder St NE',232,'S',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46291',NULL,1228,39.779492,-86.132837,0,NULL,NULL,NULL), + (62,136,3,1,0,'450X Lincoln Pl SE',450,'X',NULL,'Lincoln','Pl','SE',NULL,'Mailstop 101',NULL,NULL,'Memphis',1,1041,NULL,'38116',NULL,1228,35.03319,-90.01128,0,NULL,NULL,NULL), + (63,175,2,1,0,'450X Lincoln Pl SE',450,'X',NULL,'Lincoln','Pl','SE',NULL,'Mailstop 101',NULL,NULL,'Memphis',1,1041,NULL,'38116',NULL,1228,35.03319,-90.01128,0,NULL,NULL,62), + (64,85,3,1,0,'227C Beech Path NW',227,'C',NULL,'Beech','Path','NW',NULL,'Donor Relations',NULL,NULL,'Dalmatia',1,1037,NULL,'17017',NULL,1228,40.644085,-76.87648,0,NULL,NULL,NULL), + (65,22,2,1,0,'227C Beech Path NW',227,'C',NULL,'Beech','Path','NW',NULL,'Donor Relations',NULL,NULL,'Dalmatia',1,1037,NULL,'17017',NULL,1228,40.644085,-76.87648,0,NULL,NULL,64), + (66,152,3,1,0,'251E States Blvd S',251,'E',NULL,'States','Blvd','S',NULL,'Payables Dept.',NULL,NULL,'Saint George',1,1043,NULL,'84791',NULL,1228,37.309231,-113.476182,0,NULL,NULL,NULL), + (67,95,2,0,0,'251E States Blvd S',251,'E',NULL,'States','Blvd','S',NULL,'Payables Dept.',NULL,NULL,'Saint George',1,1043,NULL,'84791',NULL,1228,37.309231,-113.476182,0,NULL,NULL,66), + (68,106,3,1,0,'922X States Ln NW',922,'X',NULL,'States','Ln','NW',NULL,'Editorial Dept',NULL,NULL,'Ruskin',1,1026,NULL,'68974',NULL,1228,40.126094,-97.87696,0,NULL,NULL,NULL), + (69,134,3,1,0,'396W Pine Ave S',396,'W',NULL,'Pine','Ave','S',NULL,'c/o OPDC',NULL,NULL,'Carolina',1,1038,NULL,'02812',NULL,1228,41.46603,-71.66408,0,NULL,NULL,NULL), + (70,103,3,1,0,'581W Pine Rd W',581,'W',NULL,'Pine','Rd','W',NULL,'Attn: Accounting',NULL,NULL,'Polk',1,1024,NULL,'64464',NULL,1228,40.024499,-94.551058,0,NULL,NULL,NULL), + (71,139,2,1,0,'581W Pine Rd W',581,'W',NULL,'Pine','Rd','W',NULL,'Attn: Accounting',NULL,NULL,'Polk',1,1024,NULL,'64464',NULL,1228,40.024499,-94.551058,0,NULL,NULL,70), + (72,173,3,1,0,'888X Bay St SW',888,'X',NULL,'Bay','St','SW',NULL,'Editorial Dept',NULL,NULL,'Cherokee',1,1000,NULL,'35616',NULL,1228,34.748498,-87.9986,0,NULL,NULL,NULL), + (73,58,3,1,0,'788V Maple Ave NE',788,'V',NULL,'Maple','Ave','NE',NULL,'Payables Dept.',NULL,NULL,'Dulles',1,1045,NULL,'20101',NULL,1228,39.002125,-77.442066,0,NULL,NULL,NULL), + (74,36,3,1,0,'471O Maple St W',471,'O',NULL,'Maple','St','W',NULL,'Community Relations',NULL,NULL,'Littleton',1,1005,NULL,'80163',NULL,1228,39.347863,-104.994708,0,NULL,NULL,NULL), + (75,86,2,1,0,'471O Maple St W',471,'O',NULL,'Maple','St','W',NULL,'Community Relations',NULL,NULL,'Littleton',1,1005,NULL,'80163',NULL,1228,39.347863,-104.994708,0,NULL,NULL,74), + (76,83,3,1,0,'142H College Path N',142,'H',NULL,'College','Path','N',NULL,'Attn: Development',NULL,NULL,'Prairieburg',1,1014,NULL,'52219',NULL,1228,42.235999,-91.42313,0,NULL,NULL,NULL), + (77,30,2,1,0,'142H College Path N',142,'H',NULL,'College','Path','N',NULL,'Attn: Development',NULL,NULL,'Prairieburg',1,1014,NULL,'52219',NULL,1228,42.235999,-91.42313,0,NULL,NULL,76), + (78,128,3,1,0,'684M Dowlen Path NE',684,'M',NULL,'Dowlen','Path','NE',NULL,'c/o OPDC',NULL,NULL,'Fawnskin',1,1004,NULL,'92333',NULL,1228,34.268344,-116.93842,0,NULL,NULL,NULL), + (79,11,2,0,0,'684M Dowlen Path NE',684,'M',NULL,'Dowlen','Path','NE',NULL,'c/o OPDC',NULL,NULL,'Fawnskin',1,1004,NULL,'92333',NULL,1228,34.268344,-116.93842,0,NULL,NULL,78), + (80,21,3,1,0,'855K Northpoint St N',855,'K',NULL,'Northpoint','St','N',NULL,'Community Relations',NULL,NULL,'Severn',1,1045,NULL,'23155',NULL,1228,37.418242,-76.508402,0,NULL,NULL,NULL), + (81,171,2,1,0,'855K Northpoint St N',855,'K',NULL,'Northpoint','St','N',NULL,'Community Relations',NULL,NULL,'Severn',1,1045,NULL,'23155',NULL,1228,37.418242,-76.508402,0,NULL,NULL,80), + (82,170,3,1,0,'788Q Lincoln Pl E',788,'Q',NULL,'Lincoln','Pl','E',NULL,'Donor Relations',NULL,NULL,'Day',1,1008,NULL,'32013',NULL,1228,30.193758,-83.29266,0,NULL,NULL,NULL), + (83,198,2,0,0,'788Q Lincoln Pl E',788,'Q',NULL,'Lincoln','Pl','E',NULL,'Donor Relations',NULL,NULL,'Day',1,1008,NULL,'32013',NULL,1228,30.193758,-83.29266,0,NULL,NULL,82), + (84,90,3,1,0,'778S College Rd NE',778,'S',NULL,'College','Rd','NE',NULL,'Donor Relations',NULL,NULL,'Brandon',1,1008,NULL,'33509',NULL,1228,28.119579,-82.451959,0,NULL,NULL,NULL), + (85,72,2,1,0,'778S College Rd NE',778,'S',NULL,'College','Rd','NE',NULL,'Donor Relations',NULL,NULL,'Brandon',1,1008,NULL,'33509',NULL,1228,28.119579,-82.451959,0,NULL,NULL,84), + (86,100,3,1,0,'914K States Path N',914,'K',NULL,'States','Path','N',NULL,'Subscriptions Dept',NULL,NULL,'Chana',1,1012,NULL,'61015',NULL,1228,41.982993,-89.2128,0,NULL,NULL,NULL), + (87,107,3,1,0,'707R Cadell Blvd S',707,'R',NULL,'Cadell','Blvd','S',NULL,'Donor Relations',NULL,NULL,'Salt Lake City',1,1043,NULL,'84134',NULL,1228,40.668068,-111.908297,0,NULL,NULL,NULL), + (88,54,2,1,0,'707R Cadell Blvd S',707,'R',NULL,'Cadell','Blvd','S',NULL,'Donor Relations',NULL,NULL,'Salt Lake City',1,1043,NULL,'84134',NULL,1228,40.668068,-111.908297,0,NULL,NULL,87), + (89,188,3,1,0,'267T College Rd E',267,'T',NULL,'College','Rd','E',NULL,'Urgent',NULL,NULL,'Oak Park',1,1012,NULL,'60301',NULL,1228,41.887981,-87.79562,0,NULL,NULL,NULL), + (90,52,3,1,0,'624E Second Way NE',624,'E',NULL,'Second','Way','NE',NULL,'Disbursements',NULL,NULL,'East Aurora',1,1031,NULL,'14052',NULL,1228,42.770859,-78.59804,0,NULL,NULL,NULL), + (91,3,3,1,0,'988A Maple Blvd SE',988,'A',NULL,'Maple','Blvd','SE',NULL,'Disbursements',NULL,NULL,'Corvallis',1,1036,NULL,'97330',NULL,1228,44.608694,-123.2752,0,NULL,NULL,NULL), + (92,145,2,1,0,'988A Maple Blvd SE',988,'A',NULL,'Maple','Blvd','SE',NULL,'Disbursements',NULL,NULL,'Corvallis',1,1036,NULL,'97330',NULL,1228,44.608694,-123.2752,0,NULL,NULL,91), + (93,77,3,1,0,'658M Jackson Ln N',658,'M',NULL,'Jackson','Ln','N',NULL,'Payables Dept.',NULL,NULL,'Dryden',1,1031,NULL,'13053',NULL,1228,42.483348,-76.27901,0,NULL,NULL,NULL), + (94,96,2,0,0,'658M Jackson Ln N',658,'M',NULL,'Jackson','Ln','N',NULL,'Payables Dept.',NULL,NULL,'Dryden',1,1031,NULL,'13053',NULL,1228,42.483348,-76.27901,0,NULL,NULL,93), + (95,30,1,0,0,'93P Beech St NE',93,'P',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Gatesville',1,1042,NULL,'76599',NULL,1228,31.470598,-97.734728,0,NULL,NULL,42), + (96,144,1,1,0,'93P Beech St NE',93,'P',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Gatesville',1,1042,NULL,'76599',NULL,1228,31.470598,-97.734728,0,NULL,NULL,42), + (97,28,1,1,0,'93P Beech St NE',93,'P',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Gatesville',1,1042,NULL,'76599',NULL,1228,31.470598,-97.734728,0,NULL,NULL,42), + (98,63,1,0,0,'93P Beech St NE',93,'P',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Gatesville',1,1042,NULL,'76599',NULL,1228,31.470598,-97.734728,0,NULL,NULL,42), + (99,15,1,1,0,'809H Maple Pl N',809,'H',NULL,'Maple','Pl','N',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78766',NULL,1228,30.442202,-97.62333,0,NULL,NULL,43), + (100,76,1,1,0,'809H Maple Pl N',809,'H',NULL,'Maple','Pl','N',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78766',NULL,1228,30.442202,-97.62333,0,NULL,NULL,43), + (101,192,1,1,0,'809H Maple Pl N',809,'H',NULL,'Maple','Pl','N',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78766',NULL,1228,30.442202,-97.62333,0,NULL,NULL,43), + (102,4,1,1,0,'601C El Camino Dr S',601,'C',NULL,'El Camino','Dr','S',NULL,NULL,NULL,NULL,'Rosebud',1,1025,NULL,'59347',NULL,1228,46.632549,-106.39641,0,NULL,NULL,NULL), + (103,45,1,1,0,'415F Woodbridge Blvd SE',415,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Cape Neddick',1,1018,NULL,'03902',NULL,1228,43.216251,-70.62856,0,NULL,NULL,44), + (104,20,1,1,0,'415F Woodbridge Blvd SE',415,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Cape Neddick',1,1018,NULL,'03902',NULL,1228,43.216251,-70.62856,0,NULL,NULL,44), + (105,161,1,1,0,'415F Woodbridge Blvd SE',415,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Cape Neddick',1,1018,NULL,'03902',NULL,1228,43.216251,-70.62856,0,NULL,NULL,44), + (106,200,1,1,0,'415F Woodbridge Blvd SE',415,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Cape Neddick',1,1018,NULL,'03902',NULL,1228,43.216251,-70.62856,0,NULL,NULL,44), + (107,174,1,1,0,'907K College Ave W',907,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Grosse Ile',1,1021,NULL,'48138',NULL,1228,42.130091,-83.16017,0,NULL,NULL,45), + (108,48,1,1,0,'907K College Ave W',907,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Grosse Ile',1,1021,NULL,'48138',NULL,1228,42.130091,-83.16017,0,NULL,NULL,45), + (109,68,1,1,0,'907K College Ave W',907,'K',NULL,'College','Ave','W',NULL,NULL,NULL,NULL,'Grosse Ile',1,1021,NULL,'48138',NULL,1228,42.130091,-83.16017,0,NULL,NULL,45), + (110,171,1,0,0,'7P Martin Luther King Ln NW',7,'P',NULL,'Martin Luther King','Ln','NW',NULL,NULL,NULL,NULL,'Granite Falls',1,1032,NULL,'28630',NULL,1228,35.811919,-81.43478,0,NULL,NULL,NULL), + (111,175,1,0,0,'69L Van Ness Way NW',69,'L',NULL,'Van Ness','Way','NW',NULL,NULL,NULL,NULL,'Lovejoy',1,1009,NULL,'30250',NULL,1228,33.437428,-84.31519,0,NULL,NULL,46), + (112,191,1,1,0,'69L Van Ness Way NW',69,'L',NULL,'Van Ness','Way','NW',NULL,NULL,NULL,NULL,'Lovejoy',1,1009,NULL,'30250',NULL,1228,33.437428,-84.31519,0,NULL,NULL,46), + (113,66,1,1,0,'69L Van Ness Way NW',69,'L',NULL,'Van Ness','Way','NW',NULL,NULL,NULL,NULL,'Lovejoy',1,1009,NULL,'30250',NULL,1228,33.437428,-84.31519,0,NULL,NULL,46), + (114,168,1,1,0,'69L Van Ness Way NW',69,'L',NULL,'Van Ness','Way','NW',NULL,NULL,NULL,NULL,'Lovejoy',1,1009,NULL,'30250',NULL,1228,33.437428,-84.31519,0,NULL,NULL,46), + (115,122,1,1,0,'847B Van Ness Path NW',847,'B',NULL,'Van Ness','Path','NW',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,47), + (116,75,1,1,0,'847B Van Ness Path NW',847,'B',NULL,'Van Ness','Path','NW',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,47), + (117,187,1,1,0,'847B Van Ness Path NW',847,'B',NULL,'Van Ness','Path','NW',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,47), + (118,111,1,1,0,'847B Van Ness Path NW',847,'B',NULL,'Van Ness','Path','NW',NULL,NULL,NULL,NULL,'Athens',1,1047,NULL,'24712',NULL,1228,37.448532,-81.0032,0,NULL,NULL,47), + (119,64,1,1,0,'846A Second Dr SW',846,'A',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Middle Falls',1,1031,NULL,'12848',NULL,1228,43.100123,-73.524554,0,NULL,NULL,48), + (120,126,1,1,0,'846A Second Dr SW',846,'A',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Middle Falls',1,1031,NULL,'12848',NULL,1228,43.100123,-73.524554,0,NULL,NULL,48), + (121,73,1,1,0,'846A Second Dr SW',846,'A',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Middle Falls',1,1031,NULL,'12848',NULL,1228,43.100123,-73.524554,0,NULL,NULL,48), + (122,92,1,1,0,'846A Second Dr SW',846,'A',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Middle Falls',1,1031,NULL,'12848',NULL,1228,43.100123,-73.524554,0,NULL,NULL,48), + (123,162,1,1,0,'232O Caulder St E',232,'O',NULL,'Caulder','St','E',NULL,NULL,NULL,NULL,'Lonaconing',1,1019,NULL,'21539',NULL,1228,39.580942,-78.99073,0,NULL,NULL,49), + (124,123,1,1,0,'232O Caulder St E',232,'O',NULL,'Caulder','St','E',NULL,NULL,NULL,NULL,'Lonaconing',1,1019,NULL,'21539',NULL,1228,39.580942,-78.99073,0,NULL,NULL,49), + (125,201,1,1,0,'232O Caulder St E',232,'O',NULL,'Caulder','St','E',NULL,NULL,NULL,NULL,'Lonaconing',1,1019,NULL,'21539',NULL,1228,39.580942,-78.99073,0,NULL,NULL,49), + (126,105,1,1,0,'763A Lincoln Rd NW',763,'A',NULL,'Lincoln','Rd','NW',NULL,NULL,NULL,NULL,'Gasburg',1,1045,NULL,'23857',NULL,1228,36.576549,-77.88467,0,NULL,NULL,NULL), + (127,16,1,1,0,'584I States Rd NW',584,'I',NULL,'States','Rd','NW',NULL,NULL,NULL,NULL,'Murfreesboro',1,1041,NULL,'37128',NULL,1228,35.813319,-86.4455,0,NULL,NULL,50), + (128,79,1,1,0,'584I States Rd NW',584,'I',NULL,'States','Rd','NW',NULL,NULL,NULL,NULL,'Murfreesboro',1,1041,NULL,'37128',NULL,1228,35.813319,-86.4455,0,NULL,NULL,50), + (129,88,1,1,0,'584I States Rd NW',584,'I',NULL,'States','Rd','NW',NULL,NULL,NULL,NULL,'Murfreesboro',1,1041,NULL,'37128',NULL,1228,35.813319,-86.4455,0,NULL,NULL,50), + (130,5,1,1,0,'47M Bay Ln S',47,'M',NULL,'Bay','Ln','S',NULL,NULL,NULL,NULL,'Fort Worth',1,1042,NULL,'76107',NULL,1228,32.738481,-97.38424,0,NULL,NULL,NULL), + (131,194,1,1,0,'759P Green Dr SE',759,'P',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Woodside',1,1031,NULL,'11377',NULL,1228,40.742869,-73.90377,0,NULL,NULL,51), + (132,14,1,1,0,'759P Green Dr SE',759,'P',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Woodside',1,1031,NULL,'11377',NULL,1228,40.742869,-73.90377,0,NULL,NULL,51), + (133,26,1,1,0,'759P Green Dr SE',759,'P',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Woodside',1,1031,NULL,'11377',NULL,1228,40.742869,-73.90377,0,NULL,NULL,51), + (134,141,1,1,0,'759P Green Dr SE',759,'P',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Woodside',1,1031,NULL,'11377',NULL,1228,40.742869,-73.90377,0,NULL,NULL,51), + (135,71,1,1,0,'975V Maple Path S',975,'V',NULL,'Maple','Path','S',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15259',NULL,1228,40.434436,-80.024817,0,NULL,NULL,52), + (136,150,1,1,0,'975V Maple Path S',975,'V',NULL,'Maple','Path','S',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15259',NULL,1228,40.434436,-80.024817,0,NULL,NULL,52), + (137,37,1,1,0,'975V Maple Path S',975,'V',NULL,'Maple','Path','S',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15259',NULL,1228,40.434436,-80.024817,0,NULL,NULL,52), + (138,65,1,1,0,'219V Beech Ln SE',219,'V',NULL,'Beech','Ln','SE',NULL,NULL,NULL,NULL,'Tulare',1,1004,NULL,'93275',NULL,1228,36.26699,-118.776902,0,NULL,NULL,NULL), + (139,120,1,1,0,'954B Martin Luther King Ave NW',954,'B',NULL,'Martin Luther King','Ave','NW',NULL,NULL,NULL,NULL,'Allenton',1,1021,NULL,'48002',NULL,1228,42.938385,-82.91582,0,NULL,NULL,53), + (140,89,1,1,0,'954B Martin Luther King Ave NW',954,'B',NULL,'Martin Luther King','Ave','NW',NULL,NULL,NULL,NULL,'Allenton',1,1021,NULL,'48002',NULL,1228,42.938385,-82.91582,0,NULL,NULL,53), + (141,181,1,1,0,'954B Martin Luther King Ave NW',954,'B',NULL,'Martin Luther King','Ave','NW',NULL,NULL,NULL,NULL,'Allenton',1,1021,NULL,'48002',NULL,1228,42.938385,-82.91582,0,NULL,NULL,53), + (142,124,1,1,0,'883B Cadell Ln N',883,'B',NULL,'Cadell','Ln','N',NULL,NULL,NULL,NULL,'Sharon',1,1015,NULL,'67138',NULL,1228,37.253964,-98.41429,0,NULL,NULL,NULL), + (143,19,1,1,0,'960Z Van Ness St N',960,'Z',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Provo',1,1043,NULL,'84602',NULL,1228,40.356343,-111.732476,0,NULL,NULL,54), + (144,27,1,1,0,'960Z Van Ness St N',960,'Z',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Provo',1,1043,NULL,'84602',NULL,1228,40.356343,-111.732476,0,NULL,NULL,54), + (145,189,1,1,0,'960Z Van Ness St N',960,'Z',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Provo',1,1043,NULL,'84602',NULL,1228,40.356343,-111.732476,0,NULL,NULL,54), + (146,25,1,1,0,'960Z Van Ness St N',960,'Z',NULL,'Van Ness','St','N',NULL,NULL,NULL,NULL,'Provo',1,1043,NULL,'84602',NULL,1228,40.356343,-111.732476,0,NULL,NULL,54), + (147,87,1,1,0,'542D Dowlen Dr N',542,'D',NULL,'Dowlen','Dr','N',NULL,NULL,NULL,NULL,'Oakmont',1,1037,NULL,'15139',NULL,1228,40.519518,-79.83762,0,NULL,NULL,55), + (148,98,1,1,0,'542D Dowlen Dr N',542,'D',NULL,'Dowlen','Dr','N',NULL,NULL,NULL,NULL,'Oakmont',1,1037,NULL,'15139',NULL,1228,40.519518,-79.83762,0,NULL,NULL,55), + (149,43,1,1,0,'542D Dowlen Dr N',542,'D',NULL,'Dowlen','Dr','N',NULL,NULL,NULL,NULL,'Oakmont',1,1037,NULL,'15139',NULL,1228,40.519518,-79.83762,0,NULL,NULL,55), + (150,86,1,0,0,'542D Dowlen Dr N',542,'D',NULL,'Dowlen','Dr','N',NULL,NULL,NULL,NULL,'Oakmont',1,1037,NULL,'15139',NULL,1228,40.519518,-79.83762,0,NULL,NULL,55), + (151,24,1,1,0,'692Z Van Ness St S',692,'Z',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Stem',1,1032,NULL,'27581',NULL,1228,36.195036,-78.72657,0,NULL,NULL,56), + (152,145,1,0,0,'692Z Van Ness St S',692,'Z',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Stem',1,1032,NULL,'27581',NULL,1228,36.195036,-78.72657,0,NULL,NULL,56), + (153,54,1,0,0,'692Z Van Ness St S',692,'Z',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Stem',1,1032,NULL,'27581',NULL,1228,36.195036,-78.72657,0,NULL,NULL,56), + (154,121,1,1,0,'692Z Van Ness St S',692,'Z',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Stem',1,1032,NULL,'27581',NULL,1228,36.195036,-78.72657,0,NULL,NULL,56), + (155,172,1,1,0,'631Q Bay Path SW',631,'Q',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'McDonald',1,1015,NULL,'67745',NULL,1228,39.792736,-101.36332,0,NULL,NULL,57), + (156,184,1,1,0,'631Q Bay Path SW',631,'Q',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'McDonald',1,1015,NULL,'67745',NULL,1228,39.792736,-101.36332,0,NULL,NULL,57), + (157,199,1,1,0,'631Q Bay Path SW',631,'Q',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'McDonald',1,1015,NULL,'67745',NULL,1228,39.792736,-101.36332,0,NULL,NULL,57), + (158,60,1,1,0,'787E Green Pl N',787,'E',NULL,'Green','Pl','N',NULL,NULL,NULL,NULL,'Black Earth',1,1048,NULL,'53515',NULL,1228,43.131939,-89.7438,0,NULL,NULL,NULL), + (159,132,1,1,0,'829R Bay Ave E',829,'R',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'Madeline',1,1004,NULL,'96119',NULL,1228,41.021344,-120.52472,0,NULL,NULL,58), + (160,97,1,1,0,'829R Bay Ave E',829,'R',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'Madeline',1,1004,NULL,'96119',NULL,1228,41.021344,-120.52472,0,NULL,NULL,58), + (161,165,1,1,0,'829R Bay Ave E',829,'R',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'Madeline',1,1004,NULL,'96119',NULL,1228,41.021344,-120.52472,0,NULL,NULL,58), + (162,149,1,1,0,'140F Jackson Ave NW',140,'F',NULL,'Jackson','Ave','NW',NULL,NULL,NULL,NULL,'Canby',1,1036,NULL,'97013',NULL,1228,45.247004,-122.68208,0,NULL,NULL,NULL), + (163,151,1,1,0,'751F Green St NW',751,'F',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Wiggins',1,1005,NULL,'80654',NULL,1228,40.196296,-104.07361,0,NULL,NULL,59), + (164,13,1,1,0,'751F Green St NW',751,'F',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Wiggins',1,1005,NULL,'80654',NULL,1228,40.196296,-104.07361,0,NULL,NULL,59), + (165,56,1,1,0,'751F Green St NW',751,'F',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Wiggins',1,1005,NULL,'80654',NULL,1228,40.196296,-104.07361,0,NULL,NULL,59), + (166,42,1,1,0,'751F Green St NW',751,'F',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Wiggins',1,1005,NULL,'80654',NULL,1228,40.196296,-104.07361,0,NULL,NULL,59), + (167,186,1,1,0,'243W Martin Luther King Path NE',243,'W',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Millville',1,1022,NULL,'55957',NULL,1228,44.244633,-92.29074,0,NULL,NULL,60), + (168,139,1,0,0,'243W Martin Luther King Path NE',243,'W',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Millville',1,1022,NULL,'55957',NULL,1228,44.244633,-92.29074,0,NULL,NULL,60), + (169,129,1,1,0,'243W Martin Luther King Path NE',243,'W',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Millville',1,1022,NULL,'55957',NULL,1228,44.244633,-92.29074,0,NULL,NULL,60), + (170,102,1,1,0,'243W Martin Luther King Path NE',243,'W',NULL,'Martin Luther King','Path','NE',NULL,NULL,NULL,NULL,'Millville',1,1022,NULL,'55957',NULL,1228,44.244633,-92.29074,0,NULL,NULL,60), + (171,99,1,1,0,'232S Caulder St NE',232,'S',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46291',NULL,1228,39.779492,-86.132837,0,NULL,NULL,61), + (172,12,1,1,0,'232S Caulder St NE',232,'S',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46291',NULL,1228,39.779492,-86.132837,0,NULL,NULL,61), + (173,159,1,1,0,'232S Caulder St NE',232,'S',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46291',NULL,1228,39.779492,-86.132837,0,NULL,NULL,61), + (174,93,1,1,0,'232S Caulder St NE',232,'S',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46291',NULL,1228,39.779492,-86.132837,0,NULL,NULL,61), + (175,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL), + (176,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL), + (177,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */; UNLOCK TABLES; @@ -1967,13 +1959,13 @@ LOCK TABLES `civicrm_component` WRITE; /*!40000 ALTER TABLE `civicrm_component` DISABLE KEYS */; INSERT INTO `civicrm_component` (`id`, `name`, `namespace`) VALUES (1,'CiviEvent','CRM_Event'), -(2,'CiviContribute','CRM_Contribute'), -(3,'CiviMember','CRM_Member'), -(4,'CiviMail','CRM_Mailing'), -(6,'CiviPledge','CRM_Pledge'), -(7,'CiviCase','CRM_Case'), -(8,'CiviReport','CRM_Report'), -(9,'CiviCampaign','CRM_Campaign'); + (2,'CiviContribute','CRM_Contribute'), + (3,'CiviMember','CRM_Member'), + (4,'CiviMail','CRM_Mailing'), + (6,'CiviPledge','CRM_Pledge'), + (7,'CiviCase','CRM_Case'), + (8,'CiviReport','CRM_Report'), + (9,'CiviCampaign','CRM_Campaign'); /*!40000 ALTER TABLE `civicrm_component` ENABLE KEYS */; UNLOCK TABLES; @@ -1984,208 +1976,208 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contact` WRITE; /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */; INSERT INTO `civicrm_contact` (`id`, `contact_type`, `external_identifier`, `display_name`, `organization_name`, `contact_sub_type`, `first_name`, `middle_name`, `last_name`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `sort_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `hash`, `api_key`, `source`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`, `preferred_mail_format`) VALUES - (1,'Organization',NULL,'Default Organization','Default Organization',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Default Organization',NULL,'Default Organization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-02-11 21:13:43','Both'), -(2,'Household',NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Ivanov family',NULL,NULL,NULL,'2',NULL,'2450779112',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:03','Both'), -(3,'Organization',NULL,'Texas Sports Fellowship','Texas Sports Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Texas Sports Fellowship',NULL,NULL,NULL,NULL,NULL,'3990995306',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Sports Fellowship',NULL,NULL,NULL,0,NULL,NULL,18,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:04','Both'), -(4,'Individual',NULL,'jjensen52@sample.com',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'jjensen52@sample.com',NULL,NULL,NULL,'5',NULL,'2700000115',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear jjensen52@sample.com',1,NULL,'Dear jjensen52@sample.com',1,NULL,'jjensen52@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:57','2025-02-11 21:14:00','Both'), -(5,'Individual',NULL,'Andrew Samson III',NULL,NULL,'Andrew','P','Samson',0,0,0,0,0,0,NULL,'Samson, Andrew',NULL,NULL,NULL,'5',NULL,'2323395058',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Samson III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(6,'Individual',NULL,'Nicole Grant',NULL,NULL,'Nicole','E','Grant',0,0,0,0,0,0,NULL,'Grant, Nicole',NULL,NULL,NULL,NULL,NULL,'2858185937',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Grant',NULL,NULL,'1986-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(7,'Individual',NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,'1',NULL,'2016003946',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear wagner.heidi@testmail.co.nz',1,NULL,'Dear wagner.heidi@testmail.co.nz',1,NULL,'wagner.heidi@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(8,'Individual',NULL,'Dr. Shad Wattson',NULL,NULL,'Shad','','Wattson',0,1,0,0,0,0,NULL,'Wattson, Shad',NULL,NULL,NULL,'1',NULL,'2057635546',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Wattson',NULL,2,'1991-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(9,'Individual',NULL,'Rosario Nielsen II',NULL,NULL,'Rosario','','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Rosario',NULL,NULL,NULL,'1',NULL,'615615044',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Nielsen II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(10,'Individual',NULL,'Omar Ivanov',NULL,NULL,'Omar','','Ivanov',1,0,0,0,0,0,NULL,'Ivanov, Omar',NULL,NULL,NULL,NULL,NULL,'474284391',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Ivanov',NULL,2,'1938-05-31',1,'2024-03-31',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(11,'Individual',NULL,'Kacey Robertson',NULL,NULL,'Kacey','Q','Robertson',0,1,0,0,0,0,NULL,'Robertson, Kacey',NULL,NULL,NULL,NULL,NULL,'3458101883',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Robertson',NULL,NULL,'1983-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(12,'Individual',NULL,'Dr. Juliann Blackwell',NULL,NULL,'Juliann','L','Blackwell',1,1,0,0,0,0,NULL,'Blackwell, Juliann',NULL,NULL,NULL,NULL,NULL,'4227449212',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann Blackwell',NULL,1,'1964-06-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(13,'Individual',NULL,'Princess Bachman',NULL,NULL,'Princess','','Bachman',0,0,0,0,1,0,NULL,'Bachman, Princess',NULL,NULL,NULL,NULL,NULL,'2581077622',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Bachman',NULL,1,'1935-03-24',1,'2024-05-28',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(14,'Individual',NULL,'Mr. Carlos Blackwell',NULL,NULL,'Carlos','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Carlos',NULL,NULL,NULL,NULL,NULL,'3674253965',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Mr. Carlos Blackwell',NULL,2,'1982-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(15,'Household',NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Barkley family',NULL,NULL,NULL,'3',NULL,'2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(16,'Individual',NULL,'Dr. Carylon Wilson',NULL,NULL,'Carylon','','Wilson',0,0,0,0,1,0,NULL,'Wilson, Carylon',NULL,NULL,NULL,'1',NULL,'2619345674',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Wilson',NULL,1,'1969-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(17,'Individual',NULL,'Maxwell Barkley II',NULL,NULL,'Maxwell','W','Barkley',0,0,0,0,1,0,NULL,'Barkley, Maxwell',NULL,NULL,NULL,'5',NULL,'3720432108',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Barkley II',NULL,2,'1976-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(18,'Individual',NULL,'ts.jameson7@fishmail.org','Texas Sports Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'ts.jameson7@fishmail.org',NULL,NULL,NULL,NULL,NULL,'2065420241',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear ts.jameson7@fishmail.org',1,NULL,'Dear ts.jameson7@fishmail.org',1,NULL,'ts.jameson7@fishmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,3,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(19,'Individual',NULL,'Teddy Jensen',NULL,NULL,'Teddy','V','Jensen',1,0,0,0,0,0,NULL,'Jensen, Teddy',NULL,NULL,NULL,NULL,NULL,'1565680627',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jensen',NULL,2,'1961-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(20,'Individual',NULL,'Winford Jensen-Bachman',NULL,NULL,'Winford','X','Jensen-Bachman',0,1,0,0,0,0,NULL,'Jensen-Bachman, Winford',NULL,NULL,NULL,NULL,NULL,'2996564668',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Jensen-Bachman',NULL,2,'2015-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(21,'Individual',NULL,'Dr. Troy Terrell',NULL,NULL,'Troy','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Troy',NULL,NULL,NULL,'4',NULL,'2532022550',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Terrell',NULL,2,'1984-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(22,'Organization',NULL,'Alabama Food Network','Alabama Food Network',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Alabama Food Network',NULL,NULL,NULL,'2',NULL,'113819934',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Alabama Food Network',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(23,'Individual',NULL,'Delana Terry',NULL,NULL,'Delana','K','Terry',0,1,0,0,0,0,NULL,'Terry, Delana',NULL,NULL,NULL,'2',NULL,'588631021',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(24,'Individual',NULL,'Mr. Maxwell Prentice Jr.',NULL,NULL,'Maxwell','','Prentice',0,0,0,0,0,0,NULL,'Prentice, Maxwell',NULL,NULL,NULL,NULL,NULL,'1532112278',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Prentice Jr.',NULL,2,'1958-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(25,'Individual',NULL,'Mr. Sonny Terrell',NULL,NULL,'Sonny','','Terrell',1,1,0,0,0,0,NULL,'Terrell, Sonny',NULL,NULL,NULL,NULL,NULL,'462144814',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(26,'Individual',NULL,'Jina Nielsen',NULL,NULL,'Jina','','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Jina',NULL,NULL,NULL,NULL,NULL,'1591443627',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Nielsen',NULL,1,'2019-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(27,'Individual',NULL,'Mr. Maxwell Terrell Sr.','Indiana Action Academy',NULL,'Maxwell','D','Terrell',1,0,0,0,0,0,NULL,'Terrell, Maxwell',NULL,NULL,NULL,'4',NULL,'4143618431',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Terrell Sr.',NULL,2,'1964-11-10',0,NULL,NULL,NULL,NULL,NULL,196,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(28,'Household',NULL,'Patel family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Patel family',NULL,NULL,NULL,'1',NULL,'1669281794',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Patel family',5,NULL,'Dear Patel family',2,NULL,'Patel family',NULL,NULL,NULL,0,NULL,'Patel family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(29,'Individual',NULL,'Kacey Patel',NULL,NULL,'Kacey','','Patel',1,0,0,0,1,0,NULL,'Patel, Kacey',NULL,NULL,NULL,'2',NULL,'1613499781',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Patel',NULL,1,'1979-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(30,'Individual',NULL,'Ashley Ivanov','Friends Literacy Network',NULL,'Ashley','','Ivanov',0,0,0,0,0,0,NULL,'Ivanov, Ashley',NULL,NULL,NULL,NULL,NULL,'2740657237',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Ivanov',NULL,1,'1977-04-28',0,NULL,NULL,NULL,NULL,NULL,144,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(31,'Individual',NULL,'Eleonor Wattson',NULL,NULL,'Eleonor','','Wattson',1,0,0,0,0,0,NULL,'Wattson, Eleonor',NULL,NULL,NULL,'5',NULL,'746639902',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Wattson',NULL,1,'1998-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(32,'Individual',NULL,'Brent Smith',NULL,NULL,'Brent','','Smith',0,0,0,0,0,0,NULL,'Smith, Brent',NULL,NULL,NULL,NULL,NULL,'645749990',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Smith',NULL,2,'1976-02-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(33,'Organization',NULL,'Jackson Advocacy Association','Jackson Advocacy Association',NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Jackson Advocacy Association',NULL,NULL,NULL,NULL,NULL,'645727743',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Advocacy Association',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(34,'Organization',NULL,'Valliant Sustainability Center','Valliant Sustainability Center',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Valliant Sustainability Center',NULL,NULL,NULL,'3',NULL,'2968341550',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Valliant Sustainability Center',NULL,NULL,NULL,0,NULL,NULL,87,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(35,'Individual',NULL,'Mr. Toby Wattson',NULL,NULL,'Toby','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Toby',NULL,NULL,NULL,NULL,NULL,'2853574652',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Wattson',NULL,NULL,'1984-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(36,'Household',NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Lee family',NULL,NULL,NULL,'5',NULL,'845831176',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Lee family',5,NULL,'Dear Lee family',2,NULL,'Lee family',NULL,NULL,NULL,0,NULL,'Lee family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(37,'Individual',NULL,'Mrs. Esta Grant',NULL,NULL,'Esta','B','Grant',0,0,0,0,1,0,NULL,'Grant, Esta',NULL,NULL,NULL,'4',NULL,'3391242752',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Grant',NULL,NULL,'1963-02-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(38,'Individual',NULL,'Mr. Irvin Łąchowski',NULL,NULL,'Irvin','D','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Irvin',NULL,NULL,NULL,'5',NULL,'2177704001',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Łąchowski',NULL,2,'1981-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:06','Both'), -(39,'Individual',NULL,'Dr. Josefa Jacobs','Beech Development Initiative',NULL,'Josefa','','Jacobs',0,0,0,0,0,0,NULL,'Jacobs, Josefa',NULL,NULL,NULL,NULL,NULL,'4224564328',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Jacobs',NULL,NULL,'1950-02-07',0,NULL,NULL,NULL,NULL,NULL,156,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(40,'Organization',NULL,'Rural Legal Collective','Rural Legal Collective',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Rural Legal Collective',NULL,NULL,NULL,NULL,NULL,'432107588',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Legal Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(41,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(42,'Household',NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Wattson family',NULL,NULL,NULL,'5',NULL,'2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(43,'Household',NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Wilson family',NULL,NULL,NULL,'1',NULL,'350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(44,'Individual',NULL,'Bryon Nielsen',NULL,NULL,'Bryon','W','Nielsen',0,1,0,0,1,0,NULL,'Nielsen, Bryon',NULL,NULL,NULL,'3',NULL,'164626710',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(45,'Individual',NULL,'Iris Cruz',NULL,NULL,'Iris','Z','Cruz',1,0,0,0,0,0,NULL,'Cruz, Iris',NULL,NULL,NULL,NULL,NULL,'2567937727',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Cruz',NULL,1,'1950-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(46,'Organization',NULL,'Global Literacy Initiative','Global Literacy Initiative',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Global Literacy Initiative',NULL,NULL,NULL,NULL,NULL,'1038098677',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Initiative',NULL,NULL,NULL,0,NULL,NULL,91,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(47,'Household',NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Blackwell family',NULL,NULL,NULL,'1',NULL,'3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(48,'Individual',NULL,'Rebekah Wattson',NULL,NULL,'Rebekah','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Rebekah',NULL,NULL,NULL,NULL,NULL,'289475581',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Wattson',NULL,1,'1996-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(49,'Individual',NULL,'Beula Terry',NULL,NULL,'Beula','E','Terry',0,0,0,0,0,0,NULL,'Terry, Beula',NULL,NULL,NULL,'4',NULL,'2053123123',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Terry',NULL,1,'2009-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(50,'Individual',NULL,'Arlyne Barkley-Łąchowski',NULL,NULL,'Arlyne','V','Barkley-Łąchowski',0,0,0,0,0,0,NULL,'Barkley-Łąchowski, Arlyne',NULL,NULL,NULL,'4',NULL,'2470147529',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Barkley-Łąchowski',NULL,1,'2002-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(51,'Household',NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,'1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(52,'Individual',NULL,'Alexia Parker',NULL,NULL,'Alexia','','Parker',0,1,0,0,1,0,NULL,'Parker, Alexia',NULL,NULL,NULL,NULL,NULL,'1459104008',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Parker',NULL,1,'1964-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(53,'Household',NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,'3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(54,'Individual',NULL,'Jerome Grant Sr.',NULL,NULL,'Jerome','','Grant',1,0,0,0,0,0,NULL,'Grant, Jerome',NULL,NULL,NULL,'5',NULL,'92527229',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Grant Sr.',NULL,2,'1998-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(55,'Individual',NULL,'Jina Terrell',NULL,NULL,'Jina','','Terrell',1,0,0,0,1,0,NULL,'Terrell, Jina',NULL,NULL,NULL,NULL,NULL,'1009343548',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Terrell',NULL,1,'1983-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(56,'Individual',NULL,'Nicole Barkley-Wilson','Sierra Sports Initiative',NULL,'Nicole','','Barkley-Wilson',0,1,0,0,0,0,NULL,'Barkley-Wilson, Nicole',NULL,NULL,NULL,'3',NULL,'368415563',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Barkley-Wilson',NULL,1,'1965-06-09',0,NULL,NULL,NULL,NULL,NULL,181,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(57,'Individual',NULL,'Dr. Jina Patel',NULL,NULL,'Jina','','Patel',0,0,0,0,0,0,NULL,'Patel, Jina',NULL,NULL,NULL,'2',NULL,'2542120009',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Patel',NULL,NULL,'2000-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(58,'Individual',NULL,'Ashlie Roberts-Wilson','Chatsworth Advocacy Fund',NULL,'Ashlie','','Roberts-Wilson',0,1,0,0,1,0,NULL,'Roberts-Wilson, Ashlie',NULL,NULL,NULL,NULL,NULL,'998915681',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Roberts-Wilson',NULL,NULL,'2009-12-29',0,NULL,NULL,NULL,NULL,NULL,155,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(59,'Individual',NULL,'Dr. Mei Wagner',NULL,NULL,'Mei','','Wagner',0,0,0,0,0,0,NULL,'Wagner, Mei',NULL,NULL,NULL,NULL,NULL,'2525344479',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Dr. Mei Wagner',NULL,1,'1950-04-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(60,'Individual',NULL,'Dr. Kenny Robertson','Progressive Empowerment Solutions',NULL,'Kenny','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Kenny',NULL,NULL,NULL,'4',NULL,'2857414580',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Robertson',NULL,2,'1976-10-30',0,NULL,NULL,NULL,NULL,NULL,158,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(61,'Individual',NULL,'olsend26@testing.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'olsend26@testing.org',NULL,NULL,NULL,NULL,NULL,'756204564',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear olsend26@testing.org',1,NULL,'Dear olsend26@testing.org',1,NULL,'olsend26@testing.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(62,'Individual',NULL,'Damaris Jameson',NULL,NULL,'Damaris','','Jameson',0,0,0,0,1,0,NULL,'Jameson, Damaris',NULL,NULL,NULL,'2',NULL,'2629827382',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Jameson',NULL,NULL,'1989-09-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(63,'Individual',NULL,'Mr. Elbert Jacobs Jr.',NULL,NULL,'Elbert','N','Jacobs',1,0,0,0,0,0,NULL,'Jacobs, Elbert',NULL,NULL,NULL,'5',NULL,'3874322217',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Jacobs Jr.',NULL,NULL,'1992-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(64,'Individual',NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,'2',NULL,'3150814155',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear cruz.juliann@airmail.biz',1,NULL,'Dear cruz.juliann@airmail.biz',1,NULL,'cruz.juliann@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(65,'Individual',NULL,'Alida Terrell',NULL,NULL,'Alida','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Alida',NULL,NULL,NULL,NULL,NULL,'4292003963',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Terrell',NULL,1,'2005-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(66,'Individual',NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,'3',NULL,'1896548687',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear santinaw@notmail.co.uk',1,NULL,'Dear santinaw@notmail.co.uk',1,NULL,'santinaw@notmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(67,'Individual',NULL,'Mrs. Princess Wattson',NULL,NULL,'Princess','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Princess',NULL,NULL,NULL,'4',NULL,'1322463207',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Mrs. Princess Wattson',NULL,NULL,'1966-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(68,'Individual',NULL,'Magan Samson','Kentucky Development Association',NULL,'Magan','','Samson',0,0,0,0,0,0,NULL,'Samson, Magan',NULL,NULL,NULL,NULL,NULL,'2138748254',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,149,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(69,'Individual',NULL,'Iris Parker',NULL,NULL,'Iris','V','Parker',0,0,0,0,1,0,NULL,'Parker, Iris',NULL,NULL,NULL,'4',NULL,'1685537074',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(70,'Individual',NULL,'Merrie Parker',NULL,NULL,'Merrie','','Parker',0,0,0,0,0,0,NULL,'Parker, Merrie',NULL,NULL,NULL,NULL,NULL,'3944654315',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Parker',NULL,NULL,'1963-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(71,'Individual',NULL,'Scarlet Jensen',NULL,NULL,'Scarlet','','Jensen',0,0,0,0,1,0,NULL,'Jensen, Scarlet',NULL,NULL,NULL,NULL,NULL,'1368448205',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Jensen',NULL,NULL,'1975-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(72,'Individual',NULL,'Mr. Clint Samson Sr.',NULL,NULL,'Clint','','Samson',0,0,0,0,0,0,NULL,'Samson, Clint',NULL,NULL,NULL,'5',NULL,'1111759709',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Samson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(73,'Individual',NULL,'Dr. Ray Lee Sr.',NULL,NULL,'Ray','','Lee',0,0,0,0,0,0,NULL,'Lee, Ray',NULL,NULL,NULL,NULL,NULL,'77853179',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Lee Sr.',NULL,NULL,'1970-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(74,'Individual',NULL,'leek@notmail.biz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'leek@notmail.biz',NULL,NULL,NULL,NULL,NULL,'1191187531',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear leek@notmail.biz',1,NULL,'Dear leek@notmail.biz',1,NULL,'leek@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(75,'Individual',NULL,'Russell Samson',NULL,NULL,'Russell','Y','Samson',0,0,0,0,0,0,NULL,'Samson, Russell',NULL,NULL,NULL,NULL,NULL,'961724057',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Samson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(76,'Individual',NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,'4231702399',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear maxwellivanov@infomail.co.nz',1,NULL,'Dear maxwellivanov@infomail.co.nz',1,NULL,'maxwellivanov@infomail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(77,'Individual',NULL,'Dr. Truman Terrell',NULL,NULL,'Truman','F','Terrell',0,0,0,0,0,0,NULL,'Terrell, Truman',NULL,NULL,NULL,NULL,NULL,'653635789',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Terrell',NULL,NULL,'1946-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(78,'Household',NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Nielsen family',NULL,NULL,NULL,'5',NULL,'766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:03','Both'), -(79,'Individual',NULL,'Mrs. Josefa Díaz',NULL,NULL,'Josefa','G','Díaz',0,0,0,0,0,0,NULL,'Díaz, Josefa',NULL,NULL,NULL,'5',NULL,'3732568656',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Díaz',NULL,1,'1943-03-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(80,'Individual',NULL,'Dr. Bob Grant',NULL,NULL,'Bob','','Grant',0,0,0,0,0,0,NULL,'Grant, Bob',NULL,NULL,NULL,NULL,NULL,'2147877951',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Grant',NULL,NULL,'1994-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(81,'Individual',NULL,'Dr. Rodrigo Smith',NULL,NULL,'Rodrigo','','Smith',0,0,0,0,0,0,NULL,'Smith, Rodrigo',NULL,NULL,NULL,NULL,NULL,'928415905',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Smith',NULL,NULL,'1994-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(82,'Individual',NULL,'Ashley Robertson II',NULL,NULL,'Ashley','J','Robertson',0,1,0,0,0,0,NULL,'Robertson, Ashley',NULL,NULL,NULL,NULL,NULL,'3118372484',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Robertson II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(83,'Organization',NULL,'Harman Technology Systems','Harman Technology Systems',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Harman Technology Systems',NULL,NULL,NULL,'5',NULL,'820916704',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Harman Technology Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(84,'Individual',NULL,'Herminia Jones',NULL,NULL,'Herminia','','Jones',0,0,0,0,0,0,NULL,'Jones, Herminia',NULL,NULL,NULL,'3',NULL,'3666467845',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(85,'Individual',NULL,'Sanford González II',NULL,NULL,'Sanford','M','González',0,1,0,0,1,0,NULL,'González, Sanford',NULL,NULL,NULL,NULL,NULL,'216196838',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford González II',NULL,2,'1935-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(86,'Individual',NULL,'Brigette Deforest',NULL,NULL,'Brigette','A','Deforest',1,1,0,0,0,0,NULL,'Deforest, Brigette',NULL,NULL,NULL,NULL,NULL,'3260851036',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Deforest',NULL,1,'1969-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(87,'Individual',NULL,'Dr. Roland Samson II','Valliant Sustainability Center',NULL,'Roland','P','Samson',0,0,0,0,0,0,NULL,'Samson, Roland',NULL,NULL,NULL,'5',NULL,'2394998180',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Samson II',NULL,2,'1974-11-01',0,NULL,NULL,NULL,NULL,NULL,34,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(88,'Individual',NULL,'Dr. Jacob Łąchowski',NULL,NULL,'Jacob','D','Łąchowski',0,1,0,0,0,0,NULL,'Łąchowski, Jacob',NULL,NULL,NULL,'1',NULL,'3250596054',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Łąchowski',NULL,2,'1971-06-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:06','Both'), -(89,'Individual',NULL,'Dr. Elina Grant',NULL,NULL,'Elina','P','Grant',1,0,0,0,0,0,NULL,'Grant, Elina',NULL,NULL,NULL,NULL,NULL,'1935800100',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(90,'Individual',NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,'615437026',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear tobyt@airmail.co.uk',1,NULL,'Dear tobyt@airmail.co.uk',1,NULL,'tobyt@airmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(91,'Individual',NULL,'Dr. Maria Lee Sr.','Global Literacy Initiative',NULL,'Maria','','Lee',1,0,0,0,0,0,NULL,'Lee, Maria',NULL,NULL,NULL,'5',NULL,'474251826',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Lee Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,46,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(92,'Individual',NULL,'Megan Wattson',NULL,NULL,'Megan','H','Wattson',0,0,0,0,1,0,NULL,'Wattson, Megan',NULL,NULL,NULL,'1',NULL,'1244939479',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Wattson',NULL,1,'1983-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(93,'Individual',NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,'4',NULL,'1853646682',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear jacobs.kathleen@sample.co.pl',1,NULL,'Dear jacobs.kathleen@sample.co.pl',1,NULL,'jacobs.kathleen@sample.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(94,'Individual',NULL,'parkera@airmail.biz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'parkera@airmail.biz',NULL,NULL,NULL,'5',NULL,'2554978998',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear parkera@airmail.biz',1,NULL,'Dear parkera@airmail.biz',1,NULL,'parkera@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(95,'Individual',NULL,'Dr. Bob Robertson III',NULL,NULL,'Bob','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Bob',NULL,NULL,NULL,NULL,NULL,'2136994257',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Robertson III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(96,'Individual',NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,NULL,NULL,'2877950421',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear omarnielsen92@infomail.com',1,NULL,'Dear omarnielsen92@infomail.com',1,NULL,'omarnielsen92@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(97,'Individual',NULL,'Ms. Valene Adams','Pennsylvania Peace Partners',NULL,'Valene','','Adams',0,0,0,0,0,0,NULL,'Adams, Valene',NULL,NULL,NULL,NULL,NULL,'3741125103',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Adams',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,109,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(98,'Individual',NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,'3',NULL,'4088954839',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear wilsonm91@example.co.in',1,NULL,'Dear wilsonm91@example.co.in',1,NULL,'wilsonm91@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(99,'Individual',NULL,'Clint Jones',NULL,NULL,'Clint','Y','Jones',0,0,0,0,1,0,NULL,'Jones, Clint',NULL,NULL,NULL,NULL,NULL,'329949700',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Jones',NULL,2,'1983-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:00','Both'), -(100,'Individual',NULL,'Esta Ivanov',NULL,NULL,'Esta','','Ivanov',1,0,0,0,0,0,NULL,'Ivanov, Esta',NULL,NULL,NULL,'4',NULL,'3595290803',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Ivanov',NULL,1,'1997-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(101,'Individual',NULL,'Dr. Shad Nielsen II',NULL,NULL,'Shad','E','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Shad',NULL,NULL,NULL,NULL,NULL,'2247760585',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Nielsen II',NULL,NULL,'1964-12-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(102,'Individual',NULL,'Megan Nielsen',NULL,NULL,'Megan','V','Nielsen',1,0,0,0,0,0,NULL,'Nielsen, Megan',NULL,NULL,NULL,NULL,NULL,'3463797269',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Nielsen',NULL,1,'1991-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(103,'Individual',NULL,'Ashley Samson',NULL,NULL,'Ashley','J','Samson',0,1,0,0,0,0,NULL,'Samson, Ashley',NULL,NULL,NULL,'2',NULL,'2849668612',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(104,'Individual',NULL,'Craig Patel',NULL,NULL,'Craig','V','Patel',0,0,0,0,0,0,NULL,'Patel, Craig',NULL,NULL,NULL,'3',NULL,'1204688948',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Patel',NULL,2,'1965-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(105,'Individual',NULL,'Ms. Brittney Cruz-Grant',NULL,NULL,'Brittney','','Cruz-Grant',1,1,0,0,0,0,NULL,'Cruz-Grant, Brittney',NULL,NULL,NULL,'2',NULL,'2310432877',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Cruz-Grant',NULL,1,'1974-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:05','Both'), -(106,'Individual',NULL,'Mr. Elbert Robertson',NULL,NULL,'Elbert','N','Robertson',0,0,0,0,0,0,NULL,'Robertson, Elbert',NULL,NULL,NULL,NULL,NULL,'3684824833',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Robertson',NULL,2,'1961-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(107,'Individual',NULL,'Beula Wattson',NULL,NULL,'Beula','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Beula',NULL,NULL,NULL,'3',NULL,'4074227652',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Wattson',NULL,1,'1979-12-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(108,'Individual',NULL,'Esta Deforest',NULL,NULL,'Esta','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Esta',NULL,NULL,NULL,NULL,NULL,'2058701056',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Deforest',NULL,1,'1943-02-25',1,'2024-08-12',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:01','Both'), -(109,'Organization',NULL,'Pennsylvania Peace Partners','Pennsylvania Peace Partners',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Pennsylvania Peace Partners',NULL,NULL,NULL,'3',NULL,'2069211084',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pennsylvania Peace Partners',NULL,NULL,NULL,0,NULL,NULL,97,NULL,NULL,NULL,0,'2025-02-11 21:13:58','2025-02-11 21:14:04','Both'), -(110,'Individual',NULL,'Allan Terry',NULL,NULL,'Allan','L','Terry',0,1,0,0,0,0,NULL,'Terry, Allan',NULL,NULL,NULL,'2',NULL,'1982784074',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Terry',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(111,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(112,'Individual',NULL,'Josefa Jensen-Bachman',NULL,NULL,'Josefa','Z','Jensen-Bachman',1,1,0,0,0,0,NULL,'Jensen-Bachman, Josefa',NULL,NULL,NULL,NULL,NULL,'3973237650',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Jensen-Bachman',NULL,1,'1991-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(113,'Individual',NULL,'Ms. Arlyne Yadav-Terry',NULL,NULL,'Arlyne','','Yadav-Terry',0,0,0,0,0,0,NULL,'Yadav-Terry, Arlyne',NULL,NULL,NULL,NULL,NULL,'542176948',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Yadav-Terry',NULL,1,'1976-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(114,'Individual',NULL,'Josefa Roberts-Wilson',NULL,NULL,'Josefa','C','Roberts-Wilson',0,1,0,0,0,0,NULL,'Roberts-Wilson, Josefa',NULL,NULL,NULL,NULL,NULL,'4234250214',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Roberts-Wilson',NULL,1,'2007-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(115,'Individual',NULL,'Mr. Troy Barkley',NULL,NULL,'Troy','X','Barkley',0,0,0,0,1,0,NULL,'Barkley, Troy',NULL,NULL,NULL,NULL,NULL,'3703467861',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Barkley',NULL,2,'1977-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(116,'Individual',NULL,'Dr. Lawerence Wattson Sr.',NULL,NULL,'Lawerence','X','Wattson',0,0,0,0,0,0,NULL,'Wattson, Lawerence',NULL,NULL,NULL,'2',NULL,'933286419',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Dr. Lawerence Wattson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(117,'Individual',NULL,'Mr. Ray McReynolds',NULL,NULL,'Ray','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Ray',NULL,NULL,NULL,'2',NULL,'3928590704',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray McReynolds',NULL,2,'1962-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(118,'Individual',NULL,'Nicole Roberts',NULL,NULL,'Nicole','M','Roberts',0,0,0,0,0,0,NULL,'Roberts, Nicole',NULL,NULL,NULL,'2',NULL,'998604159',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Roberts',NULL,1,'1946-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(119,'Household',NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Wattson family',NULL,NULL,NULL,'4',NULL,'2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(120,'Individual',NULL,'Mrs. Eleonor Ivanov',NULL,NULL,'Eleonor','Z','Ivanov',0,1,0,0,0,0,NULL,'Ivanov, Eleonor',NULL,NULL,NULL,NULL,NULL,'2341250254',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Mrs. Eleonor Ivanov',NULL,1,'1993-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(121,'Individual',NULL,'Dr. Ray Lee',NULL,NULL,'Ray','S','Lee',1,0,0,0,0,0,NULL,'Lee, Ray',NULL,NULL,NULL,'1',NULL,'77853179',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Lee',NULL,NULL,'1999-09-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(122,'Individual',NULL,'Dr. Jay Barkley Sr.',NULL,NULL,'Jay','S','Barkley',0,0,0,0,1,0,NULL,'Barkley, Jay',NULL,NULL,NULL,'3',NULL,'3834351816',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Barkley Sr.',NULL,2,'2002-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(123,'Individual',NULL,'Mr. Lincoln Barkley III',NULL,NULL,'Lincoln','I','Barkley',1,0,0,0,0,0,NULL,'Barkley, Lincoln',NULL,NULL,NULL,NULL,NULL,'1151829541',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Barkley III',NULL,NULL,NULL,1,'2024-03-23',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(124,'Household',NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,'3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(125,'Individual',NULL,'Dr. Kacey Terrell','Second Technology Fellowship',NULL,'Kacey','','Terrell',0,0,0,0,1,0,NULL,'Terrell, Kacey',NULL,NULL,NULL,NULL,NULL,'1088955590',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Dr. Kacey Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,191,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(126,'Individual',NULL,'Miguel Deforest',NULL,NULL,'Miguel','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Miguel',NULL,NULL,NULL,'5',NULL,'2379734396',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Deforest',NULL,2,'1945-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(127,'Household',NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Samson family',NULL,NULL,NULL,'5',NULL,'333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(128,'Individual',NULL,'Dr. Scott Grant Sr.',NULL,NULL,'Scott','Z','Grant',0,0,0,0,1,0,NULL,'Grant, Scott',NULL,NULL,NULL,'4',NULL,'501213138',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Grant Sr.',NULL,2,'1995-11-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(129,'Household',NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Grant family',NULL,NULL,NULL,'3',NULL,'3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(130,'Individual',NULL,'Mr. Lincoln Blackwell',NULL,NULL,'Lincoln','K','Blackwell',0,1,0,0,0,0,NULL,'Blackwell, Lincoln',NULL,NULL,NULL,'3',NULL,'3253258794',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Blackwell',NULL,NULL,'1985-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(131,'Organization',NULL,'Oklahoma Sports Center','Oklahoma Sports Center',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Oklahoma Sports Center',NULL,NULL,NULL,NULL,NULL,'2535066196',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Oklahoma Sports Center',NULL,NULL,NULL,0,NULL,NULL,162,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(132,'Individual',NULL,'nielsenm@airmail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'nielsenm@airmail.info',NULL,NULL,NULL,NULL,NULL,'4213460638',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear nielsenm@airmail.info',1,NULL,'Dear nielsenm@airmail.info',1,NULL,'nielsenm@airmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(133,'Individual',NULL,'Jacob Deforest III',NULL,NULL,'Jacob','','Deforest',0,0,0,0,1,0,NULL,'Deforest, Jacob',NULL,NULL,NULL,NULL,NULL,'2389625358',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Deforest III',NULL,2,'1950-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(134,'Household',NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,NULL,'2561093533',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts-Wilson family',5,NULL,'Dear Roberts-Wilson family',2,NULL,'Roberts-Wilson family',NULL,NULL,NULL,0,NULL,'Roberts-Wilson family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(135,'Household',NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,NULL,'4052812039',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Bachman family',5,NULL,'Dear Jensen-Bachman family',2,NULL,'Jensen-Bachman family',NULL,NULL,NULL,0,NULL,'Jensen-Bachman family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(136,'Organization',NULL,'Friends Development Network','Friends Development Network',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Friends Development Network',NULL,NULL,NULL,'4',NULL,'2176703575',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Development Network',NULL,NULL,NULL,0,NULL,NULL,143,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(137,'Individual',NULL,'Junko Grant',NULL,NULL,'Junko','','Grant',0,0,0,0,0,0,NULL,'Grant, Junko',NULL,NULL,NULL,NULL,NULL,'1134606119',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Grant',NULL,1,'1967-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(138,'Individual',NULL,'Claudio Grant II',NULL,NULL,'Claudio','','Grant',0,0,0,0,0,0,NULL,'Grant, Claudio',NULL,NULL,NULL,NULL,NULL,'682174254',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Grant II',NULL,2,'1985-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(139,'Individual',NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,'3',NULL,'2157634243',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear elbertg@mymail.co.uk',1,NULL,'Dear elbertg@mymail.co.uk',1,NULL,'elbertg@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(140,'Individual',NULL,'Bryon Grant III',NULL,NULL,'Bryon','','Grant',0,0,0,0,0,0,NULL,'Grant, Bryon',NULL,NULL,NULL,'3',NULL,'3825566776',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Grant III',NULL,2,'1982-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(141,'Individual',NULL,'Mr. Lou Robertson Sr.',NULL,NULL,'Lou','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Lou',NULL,NULL,NULL,'2',NULL,'4128397596',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Robertson Sr.',NULL,2,'1985-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(142,'Individual',NULL,'Sharyn Lee',NULL,NULL,'Sharyn','H','Lee',0,0,0,0,1,0,NULL,'Lee, Sharyn',NULL,NULL,NULL,'5',NULL,'1422629875',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Lee',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(143,'Individual',NULL,'Mr. Irvin Díaz','Friends Development Network',NULL,'Irvin','','Díaz',0,0,0,0,0,0,NULL,'Díaz, Irvin',NULL,NULL,NULL,NULL,NULL,'2415400429',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Díaz',NULL,2,'1985-01-21',0,NULL,NULL,NULL,NULL,NULL,136,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(144,'Organization',NULL,'Friends Literacy Network','Friends Literacy Network',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Friends Literacy Network',NULL,NULL,NULL,NULL,NULL,'3436827839',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Literacy Network',NULL,NULL,NULL,0,NULL,NULL,30,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(145,'Individual',NULL,'Ms. Heidi Reynolds',NULL,NULL,'Heidi','','Reynolds',0,0,0,0,0,0,NULL,'Reynolds, Heidi',NULL,NULL,NULL,'4',NULL,'925137718',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Reynolds',NULL,1,'1950-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(146,'Individual',NULL,'Jina Łąchowski',NULL,NULL,'Jina','','Łąchowski',0,0,0,0,1,0,NULL,'Łąchowski, Jina',NULL,NULL,NULL,NULL,NULL,'4065988488',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Łąchowski',NULL,1,'1977-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(147,'Individual',NULL,'chowskia@mymail.net',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'chowskia@mymail.net',NULL,NULL,NULL,NULL,NULL,'1843702133',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear chowskia@mymail.net',1,NULL,'Dear chowskia@mymail.net',1,NULL,'chowskia@mymail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:13:59','Both'), -(148,'Individual',NULL,'Princess Cooper',NULL,NULL,'Princess','','Cooper',0,1,0,0,0,0,NULL,'Cooper, Princess',NULL,NULL,NULL,NULL,NULL,'3515918144',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Cooper',NULL,1,'1973-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(149,'Organization',NULL,'Kentucky Development Association','Kentucky Development Association',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Kentucky Development Association',NULL,NULL,NULL,NULL,NULL,'1017244655',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Kentucky Development Association',NULL,NULL,NULL,0,NULL,NULL,68,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(150,'Individual',NULL,'Mr. Lou Lee',NULL,NULL,'Lou','','Lee',0,1,0,0,1,0,NULL,'Lee, Lou',NULL,NULL,NULL,NULL,NULL,'2234392100',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Lee',NULL,2,'1938-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(151,'Individual',NULL,'Lashawnda Patel',NULL,NULL,'Lashawnda','X','Patel',0,1,0,0,1,0,NULL,'Patel, Lashawnda',NULL,NULL,NULL,NULL,NULL,'3886858056',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Patel',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(152,'Individual',NULL,'Mrs. Delana Lee',NULL,NULL,'Delana','R','Lee',0,1,0,0,0,0,NULL,'Lee, Delana',NULL,NULL,NULL,NULL,NULL,'3418239378',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Mrs. Delana Lee',NULL,NULL,'1997-02-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(153,'Individual',NULL,'Dr. Irvin Jones III',NULL,NULL,'Irvin','M','Jones',0,0,0,0,0,0,NULL,'Jones, Irvin',NULL,NULL,NULL,NULL,NULL,'1283789305',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Jones III',NULL,2,'1947-06-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(154,'Individual',NULL,'Andrew Wagner',NULL,NULL,'Andrew','','Wagner',1,0,0,0,0,0,NULL,'Wagner, Andrew',NULL,NULL,NULL,NULL,NULL,'1096023784',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Wagner',NULL,NULL,'1969-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(155,'Organization',NULL,'Chatsworth Advocacy Fund','Chatsworth Advocacy Fund',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Chatsworth Advocacy Fund',NULL,NULL,NULL,'1',NULL,'62311103',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Chatsworth Advocacy Fund',NULL,NULL,NULL,0,NULL,NULL,58,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(156,'Organization',NULL,'Beech Development Initiative','Beech Development Initiative',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Beech Development Initiative',NULL,NULL,NULL,NULL,NULL,'370253589',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Development Initiative',NULL,NULL,NULL,0,NULL,NULL,39,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(157,'Individual',NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,'4',NULL,'2121702447',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear iveyb@mymail.co.nz',1,NULL,'Dear iveyb@mymail.co.nz',1,NULL,'iveyb@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(158,'Organization',NULL,'Progressive Empowerment Solutions','Progressive Empowerment Solutions',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Progressive Empowerment Solutions',NULL,NULL,NULL,'1',NULL,'2023631586',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Empowerment Solutions',NULL,NULL,NULL,0,NULL,NULL,60,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(159,'Individual',NULL,'Dr. Claudio Wilson Jr.',NULL,NULL,'Claudio','V','Wilson',0,0,0,0,1,0,NULL,'Wilson, Claudio',NULL,NULL,NULL,NULL,NULL,'1650887830',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Dr. Claudio Wilson Jr.',NULL,2,'2002-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(160,'Individual',NULL,'Jay Patel',NULL,NULL,'Jay','','Patel',0,0,0,0,0,0,NULL,'Patel, Jay',NULL,NULL,NULL,'1',NULL,'320192131',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Patel',NULL,NULL,'2001-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(161,'Individual',NULL,'Jed Grant',NULL,NULL,'Jed','','Grant',0,1,0,0,0,0,NULL,'Grant, Jed',NULL,NULL,NULL,'2',NULL,'2644056120',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Grant',NULL,NULL,'2005-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(162,'Individual',NULL,'Herminia McReynolds','Oklahoma Sports Center',NULL,'Herminia','V','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Herminia',NULL,NULL,NULL,NULL,NULL,'2752519462',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia McReynolds',NULL,NULL,'1998-05-02',0,NULL,NULL,NULL,NULL,NULL,131,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(163,'Individual',NULL,'Mei Müller',NULL,NULL,'Mei','W','Müller',0,0,0,0,1,0,NULL,'Müller, Mei',NULL,NULL,NULL,NULL,NULL,'726297805',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Müller',NULL,NULL,'1959-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(164,'Individual',NULL,'Dr. Maxwell Roberts',NULL,NULL,'Maxwell','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Maxwell',NULL,NULL,NULL,NULL,NULL,'3618827003',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Roberts',NULL,NULL,'1968-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(165,'Individual',NULL,'Merrie Wilson',NULL,NULL,'Merrie','','Wilson',1,0,0,0,0,0,NULL,'Wilson, Merrie',NULL,NULL,NULL,NULL,NULL,'2015028870',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Wilson',NULL,1,'1989-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(166,'Individual',NULL,'Betty Blackwell',NULL,NULL,'Betty','G','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Betty',NULL,NULL,NULL,'4',NULL,'1950991394',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Blackwell',NULL,1,'1984-03-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(167,'Individual',NULL,'Brigette Łąchowski',NULL,NULL,'Brigette','E','Łąchowski',1,0,0,0,0,0,NULL,'Łąchowski, Brigette',NULL,NULL,NULL,'2',NULL,'484497434',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Łąchowski',NULL,1,'1982-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(168,'Individual',NULL,'Lashawnda Bachman',NULL,NULL,'Lashawnda','Q','Bachman',1,0,0,0,0,0,NULL,'Bachman, Lashawnda',NULL,NULL,NULL,'2',NULL,'1842507173',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Bachman',NULL,1,'1966-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(169,'Organization',NULL,'Martin Luther King Family Partnership','Martin Luther King Family Partnership',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Martin Luther King Family Partnership',NULL,NULL,NULL,NULL,NULL,'1748619433',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Family Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(170,'Individual',NULL,'Ms. Heidi Smith',NULL,NULL,'Heidi','D','Smith',0,0,0,0,0,0,NULL,'Smith, Heidi',NULL,NULL,NULL,NULL,NULL,'837834326',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Smith',NULL,1,'1960-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(171,'Individual',NULL,'Kathleen Wattson',NULL,NULL,'Kathleen','','Wattson',0,0,0,0,1,0,NULL,'Wattson, Kathleen',NULL,NULL,NULL,'5',NULL,'784443764',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(172,'Individual',NULL,'Dr. Landon Bachman Sr.',NULL,NULL,'Landon','H','Bachman',1,0,0,0,0,0,NULL,'Bachman, Landon',NULL,NULL,NULL,'2',NULL,'1765533665',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Bachman Sr.',NULL,2,'1962-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(173,'Individual',NULL,'Princess McReynolds',NULL,NULL,'Princess','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Princess',NULL,NULL,NULL,'1',NULL,'2818218342',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess McReynolds',NULL,NULL,'1970-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(174,'Individual',NULL,'Erik Müller Sr.',NULL,NULL,'Erik','','Müller',0,1,0,0,0,0,NULL,'Müller, Erik',NULL,NULL,NULL,NULL,NULL,'826359334',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Müller Sr.',NULL,2,'1977-06-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(175,'Individual',NULL,'Dr. Shad Grant III',NULL,NULL,'Shad','','Grant',0,0,0,0,0,0,NULL,'Grant, Shad',NULL,NULL,NULL,'3',NULL,'3908834377',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Grant III',NULL,2,'1985-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(176,'Individual',NULL,'Sonny Grant',NULL,NULL,'Sonny','N','Grant',0,0,0,0,0,0,NULL,'Grant, Sonny',NULL,NULL,NULL,NULL,NULL,'2555884603',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Grant',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(177,'Individual',NULL,'Norris Łąchowski',NULL,NULL,'Norris','','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Norris',NULL,NULL,NULL,'1',NULL,'1332829607',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Łąchowski',NULL,NULL,'1977-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(178,'Individual',NULL,'Bryon Terry',NULL,NULL,'Bryon','','Terry',0,0,0,0,0,0,NULL,'Terry, Bryon',NULL,NULL,NULL,NULL,NULL,'86438947',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Terry',NULL,2,'1990-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(179,'Individual',NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,'1',NULL,'351830283',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear maxwellcooper@example.co.in',1,NULL,'Dear maxwellcooper@example.co.in',1,NULL,'maxwellcooper@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(180,'Individual',NULL,'Ms. Kathlyn McReynolds',NULL,NULL,'Kathlyn','Z','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Kathlyn',NULL,NULL,NULL,'2',NULL,'1098429926',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Ms. Kathlyn McReynolds',NULL,1,'1989-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(181,'Organization',NULL,'Sierra Sports Initiative','Sierra Sports Initiative',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Sierra Sports Initiative',NULL,NULL,NULL,'2',NULL,'644051549',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Sports Initiative',NULL,NULL,NULL,0,NULL,NULL,56,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(182,'Individual',NULL,'Ashlie Nielsen',NULL,NULL,'Ashlie','','Nielsen',1,1,0,0,1,0,NULL,'Nielsen, Ashlie',NULL,NULL,NULL,'3',NULL,'89218160',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Nielsen',NULL,NULL,'1988-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(183,'Household',NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Łąchowski family',NULL,NULL,NULL,'1',NULL,'2407077255',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(184,'Individual',NULL,'Truman Samuels',NULL,NULL,'Truman','','Samuels',1,0,0,0,0,0,NULL,'Samuels, Truman',NULL,NULL,NULL,NULL,NULL,'818816780',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Samuels',NULL,2,'1965-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(185,'Individual',NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,'4',NULL,'3995084433',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear jacobr22@infomail.biz',1,NULL,'Dear jacobr22@infomail.biz',1,NULL,'jacobr22@infomail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(186,'Individual',NULL,'Mr. Lincoln Jameson III',NULL,NULL,'Lincoln','W','Jameson',0,0,0,0,0,0,NULL,'Jameson, Lincoln',NULL,NULL,NULL,'2',NULL,'2753899992',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Jameson III',NULL,2,'1937-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(187,'Individual',NULL,'Allan Blackwell',NULL,NULL,'Allan','X','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Allan',NULL,NULL,NULL,'3',NULL,'3904004195',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Blackwell',NULL,NULL,'1986-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(188,'Individual',NULL,'Angelika Blackwell',NULL,NULL,'Angelika','G','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Angelika',NULL,NULL,NULL,'2',NULL,'2888403240',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(189,'Individual',NULL,'Dr. Toby Bachman',NULL,NULL,'Toby','','Bachman',0,0,0,0,1,0,NULL,'Bachman, Toby',NULL,NULL,NULL,'4',NULL,'3370727882',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Bachman',NULL,NULL,'1956-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(190,'Individual',NULL,'Ms. Lashawnda Olsen-Barkley',NULL,NULL,'Lashawnda','','Olsen-Barkley',0,0,0,0,0,0,NULL,'Olsen-Barkley, Lashawnda',NULL,NULL,NULL,'2',NULL,'201900052',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Ms. Lashawnda Olsen-Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(191,'Organization',NULL,'Second Technology Fellowship','Second Technology Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Second Technology Fellowship',NULL,NULL,NULL,NULL,NULL,'584862025',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Technology Fellowship',NULL,NULL,NULL,0,NULL,NULL,125,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(192,'Individual',NULL,'Mrs. Teresa Wagner',NULL,NULL,'Teresa','G','Wagner',0,0,0,0,0,0,NULL,'Wagner, Teresa',NULL,NULL,NULL,NULL,NULL,'3788497377',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Mrs. Teresa Wagner',NULL,1,'1942-04-16',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:00','Both'), -(193,'Individual',NULL,'Mrs. Alida Zope',NULL,NULL,'Alida','','Zope',0,0,0,0,0,0,NULL,'Zope, Alida',NULL,NULL,NULL,'3',NULL,'3726796517',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(194,'Household',NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,'558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:03','Both'), -(195,'Organization',NULL,'Jackson Health Fellowship','Jackson Health Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Jackson Health Fellowship',NULL,NULL,NULL,'3',NULL,'4134926307',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Health Fellowship',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(196,'Organization',NULL,'Indiana Action Academy','Indiana Action Academy',NULL,NULL,NULL,NULL,0,1,0,0,1,0,NULL,'Indiana Action Academy',NULL,NULL,NULL,'4',NULL,'1753573103',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Indiana Action Academy',NULL,NULL,NULL,0,NULL,NULL,27,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:04','Both'), -(197,'Individual',NULL,'Arlyne Barkley',NULL,NULL,'Arlyne','R','Barkley',0,0,0,0,1,0,NULL,'Barkley, Arlyne',NULL,NULL,NULL,NULL,NULL,'3692098721',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Barkley',NULL,1,'2011-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(198,'Individual',NULL,'Dr. Margaret Díaz',NULL,NULL,'Margaret','','Díaz',0,0,0,0,0,0,NULL,'Díaz, Margaret',NULL,NULL,NULL,NULL,NULL,'1820455973',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Díaz',NULL,NULL,'1962-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:13:59','Both'), -(199,'Individual',NULL,'Dr. Jerome Grant',NULL,NULL,'Jerome','','Grant',0,0,0,0,1,0,NULL,'Grant, Jerome',NULL,NULL,NULL,'4',NULL,'92527229',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Grant',NULL,2,'1972-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(200,'Individual',NULL,'Mrs. Merrie Terry',NULL,NULL,'Merrie','','Terry',0,0,0,0,0,0,NULL,'Terry, Merrie',NULL,NULL,NULL,NULL,NULL,'3801150846',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Terry',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:01','Both'), -(201,'Individual',NULL,'Ray Wilson II',NULL,NULL,'Ray','B','Wilson',0,0,0,0,1,0,NULL,'Wilson, Ray',NULL,NULL,NULL,NULL,NULL,'1585243279',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wilson II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:13:59','2025-02-11 21:14:05','Both'), -(202,'Individual',NULL,'Jenny Lee',NULL,NULL,'Jenny',NULL,'Lee',0,0,0,0,0,0,NULL,'Lee, Jenny',NULL,NULL,NULL,NULL,'en_US','fb1963cbdb9976cef89521d74dcac85f',NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 21:14:07','2025-02-11 21:14:07','Both'); + (1,'Organization',NULL,'Default Organization','Default Organization',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Default Organization',NULL,'Default Organization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-02-11 22:13:16','Both'), + (2,'Individual',NULL,'Dr. Elina Terrell',NULL,NULL,'Elina','X','Terrell',0,0,0,0,0,0,NULL,'Terrell, Elina',NULL,NULL,NULL,NULL,NULL,'4038952497',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina Terrell',NULL,1,'1975-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (3,'Organization',NULL,'United Health Academy','United Health Academy',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'United Health Academy',NULL,NULL,NULL,NULL,NULL,'1926860361',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Health Academy',NULL,NULL,NULL,0,NULL,NULL,145,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (4,'Individual',NULL,'Lincoln Terry',NULL,NULL,'Lincoln','','Terry',0,0,0,0,0,0,NULL,'Terry, Lincoln',NULL,NULL,NULL,'5',NULL,'2249730385',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Terry',NULL,NULL,'1968-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (5,'Individual',NULL,'Mr. Ashley Samuels',NULL,NULL,'Ashley','','Samuels',0,0,0,0,0,0,NULL,'Samuels, Ashley',NULL,NULL,NULL,'3',NULL,'448477218',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Samuels',NULL,2,'1996-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (6,'Individual',NULL,'Mr. Jackson Wattson',NULL,NULL,'Jackson','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Jackson',NULL,NULL,NULL,'4',NULL,'1720434610',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Wattson',NULL,2,'1990-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (7,'Household',NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Müller family',NULL,NULL,NULL,'3',NULL,'1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (8,'Household',NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,'2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (9,'Individual',NULL,'Mr. Norris Díaz II',NULL,NULL,'Norris','','Díaz',1,1,0,0,0,0,NULL,'Díaz, Norris',NULL,NULL,NULL,'2',NULL,'2417985361',NULL,'Sample Data',3,3,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Díaz II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (10,'Individual',NULL,'Damaris Terrell',NULL,NULL,'Damaris','','Terrell',0,0,0,0,1,0,NULL,'Terrell, Damaris',NULL,NULL,NULL,'2',NULL,'1460043864',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Terrell',NULL,1,'1993-09-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (11,'Individual',NULL,'Dr. Troy Deforest','Dowlen Agriculture Partnership',NULL,'Troy','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Troy',NULL,NULL,NULL,NULL,NULL,'696795137',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Deforest',NULL,NULL,'2000-05-12',0,NULL,NULL,NULL,NULL,NULL,128,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (12,'Individual',NULL,'Lincoln Lee II',NULL,NULL,'Lincoln','U','Lee',0,0,0,0,1,0,NULL,'Lee, Lincoln',NULL,NULL,NULL,NULL,NULL,'1179315718',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Lee II',NULL,2,'2010-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (13,'Individual',NULL,'Mr. Jacob Müller',NULL,NULL,'Jacob','','Müller',0,0,0,0,0,0,NULL,'Müller, Jacob',NULL,NULL,NULL,'3',NULL,'176489544',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (14,'Individual',NULL,'lawerencemcreynolds@fishmail.co.uk',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'lawerencemcreynolds@fishmail.co.uk',NULL,NULL,NULL,NULL,NULL,'1992189486',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear lawerencemcreynolds@fishmail.co.uk',1,NULL,'Dear lawerencemcreynolds@fishmail.co.uk',1,NULL,'lawerencemcreynolds@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (15,'Individual',NULL,'Mrs. Heidi Roberts-Terry',NULL,NULL,'Heidi','B','Roberts-Terry',0,0,0,0,0,0,NULL,'Roberts-Terry, Heidi',NULL,NULL,NULL,NULL,NULL,'1944308962',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Mrs. Heidi Roberts-Terry',NULL,1,'1975-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (16,'Individual',NULL,'Teresa Bachman',NULL,NULL,'Teresa','','Bachman',0,0,0,0,1,0,NULL,'Bachman, Teresa',NULL,NULL,NULL,'4',NULL,'519766795',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Bachman',NULL,1,'1989-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (17,'Individual',NULL,'Dr. Barry Zope',NULL,NULL,'Barry','','Zope',1,0,0,0,0,0,NULL,'Zope, Barry',NULL,NULL,NULL,NULL,NULL,'1953474040',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Zope',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (18,'Individual',NULL,'Mrs. Mei Cooper',NULL,NULL,'Mei','O','Cooper',0,0,0,0,0,0,NULL,'Cooper, Mei',NULL,NULL,NULL,NULL,NULL,'1149940772',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mrs. Mei Cooper',NULL,1,'1994-06-30',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (19,'Individual',NULL,'Juliann Roberts',NULL,NULL,'Juliann','','Roberts',0,1,0,0,0,0,NULL,'Roberts, Juliann',NULL,NULL,NULL,'1',NULL,'1959079524',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (20,'Individual',NULL,'Brzęczysław Dimitrov II',NULL,NULL,'Brzęczysław','O','Dimitrov',1,0,0,0,0,0,NULL,'Dimitrov, Brzęczysław',NULL,NULL,NULL,'1',NULL,'1759214817',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Dimitrov II',NULL,NULL,'2004-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (21,'Organization',NULL,'Severn Software Services','Severn Software Services',NULL,NULL,NULL,NULL,1,0,0,0,1,0,NULL,'Severn Software Services',NULL,NULL,NULL,NULL,NULL,'1531490111',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Severn Software Services',NULL,NULL,NULL,0,NULL,NULL,171,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (22,'Individual',NULL,'Ms. Damaris Jameson','Beech Action Alliance',NULL,'Damaris','','Jameson',0,0,0,0,1,0,NULL,'Jameson, Damaris',NULL,NULL,NULL,'1',NULL,'2629827382',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Ms. Damaris Jameson',NULL,NULL,'1998-10-01',0,NULL,NULL,NULL,NULL,NULL,85,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (23,'Individual',NULL,'alidabarkley@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'alidabarkley@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,'957644057',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear alidabarkley@mymail.co.nz',1,NULL,'Dear alidabarkley@mymail.co.nz',1,NULL,'alidabarkley@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (24,'Individual',NULL,'Dr. Errol Lee-McReynolds Sr.',NULL,NULL,'Errol','','Lee-McReynolds',0,1,0,0,0,0,NULL,'Lee-McReynolds, Errol',NULL,NULL,NULL,NULL,NULL,'1958643944',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Lee-McReynolds Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (25,'Individual',NULL,'Scott Roberts',NULL,NULL,'Scott','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Scott',NULL,NULL,NULL,'1',NULL,'2696601244',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Roberts',NULL,2,'1965-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (26,'Individual',NULL,'Dr. Billy McReynolds III',NULL,NULL,'Billy','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Billy',NULL,NULL,NULL,'2',NULL,'2779416929',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Dr. Billy McReynolds III',NULL,2,'2000-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (27,'Individual',NULL,'Dr. Merrie Roberts',NULL,NULL,'Merrie','G','Roberts',1,0,0,0,1,0,NULL,'Roberts, Merrie',NULL,NULL,NULL,'1',NULL,'4190967372',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Roberts',NULL,1,'1987-09-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (28,'Individual',NULL,'alexiay8@infomail.org',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'alexiay8@infomail.org',NULL,NULL,NULL,NULL,NULL,'712596408',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear alexiay8@infomail.org',1,NULL,'Dear alexiay8@infomail.org',1,NULL,'alexiay8@infomail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (29,'Individual',NULL,'Josefa Nielsen',NULL,NULL,'Josefa','','Nielsen',0,1,0,0,1,0,NULL,'Nielsen, Josefa',NULL,NULL,NULL,NULL,NULL,'3267028471',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Nielsen',NULL,NULL,'1990-01-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (30,'Individual',NULL,'Dr. Maria Yadav','College Legal Partnership',NULL,'Maria','','Yadav',0,0,0,0,0,0,NULL,'Yadav, Maria',NULL,NULL,NULL,NULL,NULL,'1203839406',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Dr. Maria Yadav',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,83,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (31,'Individual',NULL,'Dr. Erik Samson Sr.',NULL,NULL,'Erik','','Samson',0,0,0,0,1,0,NULL,'Samson, Erik',NULL,NULL,NULL,NULL,NULL,'3125830738',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Dr. Erik Samson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (32,'Household',NULL,'Deforest-González family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Deforest-González family',NULL,NULL,NULL,NULL,NULL,'774468500',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest-González family',5,NULL,'Dear Deforest-González family',2,NULL,'Deforest-González family',NULL,NULL,NULL,0,NULL,'Deforest-González family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (33,'Individual',NULL,'Elbert Lee III',NULL,NULL,'Elbert','D','Lee',0,0,0,0,0,0,NULL,'Lee, Elbert',NULL,NULL,NULL,NULL,NULL,'1636754975',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Lee III',NULL,2,'1978-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (34,'Household',NULL,'Yadav family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Yadav family',NULL,NULL,NULL,NULL,NULL,'1777336212',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav family',5,NULL,'Dear Yadav family',2,NULL,'Yadav family',NULL,NULL,NULL,0,NULL,'Yadav family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (35,'Individual',NULL,'Mrs. Kathleen Robertson',NULL,NULL,'Kathleen','','Robertson',0,0,0,0,0,0,NULL,'Robertson, Kathleen',NULL,NULL,NULL,'1',NULL,'1039921971',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Mrs. Kathleen Robertson',NULL,1,'1959-06-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (36,'Organization',NULL,'Littleton Education Services','Littleton Education Services',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Littleton Education Services',NULL,NULL,NULL,NULL,NULL,'1468433127',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Littleton Education Services',NULL,NULL,NULL,0,NULL,NULL,86,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (37,'Individual',NULL,'Lou Terrell',NULL,NULL,'Lou','','Terrell',1,0,0,0,1,0,NULL,'Terrell, Lou',NULL,NULL,NULL,'3',NULL,'4250963899',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Terrell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (38,'Individual',NULL,'Teddy Díaz',NULL,NULL,'Teddy','G','Díaz',0,0,0,0,0,0,NULL,'Díaz, Teddy',NULL,NULL,NULL,'4',NULL,'4086932844',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Díaz',NULL,NULL,'1989-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (39,'Individual',NULL,'Dr. Roland Łąchowski Sr.',NULL,NULL,'Roland','','Łąchowski',1,0,0,0,0,0,NULL,'Łąchowski, Roland',NULL,NULL,NULL,NULL,NULL,'1498526146',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Łąchowski Sr.',NULL,NULL,'1992-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (40,'Household',NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,'845831176',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Lee family',5,NULL,'Dear Lee family',2,NULL,'Lee family',NULL,NULL,NULL,0,NULL,'Lee family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (41,'Individual',NULL,'Mr. Sonny McReynolds II',NULL,NULL,'Sonny','','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Sonny',NULL,NULL,NULL,NULL,NULL,'3975405155',NULL,'Sample Data',3,3,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny McReynolds II',NULL,2,'1968-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (42,'Individual',NULL,'Teddy Müller',NULL,NULL,'Teddy','','Müller',0,1,0,0,0,0,NULL,'Müller, Teddy',NULL,NULL,NULL,NULL,NULL,'921287774',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Müller',NULL,2,'1979-01-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (43,'Individual',NULL,'Dr. Merrie Smith',NULL,NULL,'Merrie','B','Smith',0,0,0,0,1,0,NULL,'Smith, Merrie',NULL,NULL,NULL,'4',NULL,'2728255522',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Smith',NULL,NULL,'1986-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (44,'Individual',NULL,'Mr. Brzęczysław Nielsen Jr.',NULL,NULL,'Brzęczysław','','Nielsen',1,0,0,0,0,0,NULL,'Nielsen, Brzęczysław',NULL,NULL,NULL,NULL,NULL,'3387173587',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Nielsen Jr.',NULL,2,'1984-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (45,'Individual',NULL,'Rebekah Dimitrov',NULL,NULL,'Rebekah','W','Dimitrov',1,0,0,0,0,0,NULL,'Dimitrov, Rebekah',NULL,NULL,NULL,'5',NULL,'4037028038',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Dimitrov',NULL,1,'1971-04-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (46,'Individual',NULL,'Dr. Margaret Nielsen',NULL,NULL,'Margaret','','Nielsen',0,0,0,0,0,0,NULL,'Nielsen, Margaret',NULL,NULL,NULL,'2',NULL,'3984018462',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Nielsen',NULL,1,'1951-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (47,'Household',NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,'3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (48,'Individual',NULL,'Mrs. Heidi Łąchowski-Olsen',NULL,NULL,'Heidi','P','Łąchowski-Olsen',1,0,0,0,0,0,NULL,'Łąchowski-Olsen, Heidi',NULL,NULL,NULL,'1',NULL,'314374103',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Mrs. Heidi Łąchowski-Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (49,'Individual',NULL,'Dr. Russell Cruz',NULL,NULL,'Russell','','Cruz',1,0,0,0,0,0,NULL,'Cruz, Russell',NULL,NULL,NULL,NULL,NULL,'3756174623',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Cruz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (50,'Individual',NULL,'Barry Deforest Jr.',NULL,NULL,'Barry','','Deforest',0,0,0,0,0,0,NULL,'Deforest, Barry',NULL,NULL,NULL,'1',NULL,'3606310264',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Deforest Jr.',NULL,2,'1952-01-04',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (51,'Household',NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,'4082772645',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (52,'Organization',NULL,'Local Advocacy Partnership','Local Advocacy Partnership',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Local Advocacy Partnership',NULL,NULL,NULL,'5',NULL,'617259803',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Advocacy Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (53,'Individual',NULL,'Sharyn Terrell',NULL,NULL,'Sharyn','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Sharyn',NULL,NULL,NULL,NULL,NULL,'1538962314',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Terrell',NULL,1,'1940-07-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (54,'Individual',NULL,'Ms. Arlyne McReynolds','Urban Poetry Association',NULL,'Arlyne','','McReynolds',0,1,0,0,0,0,NULL,'McReynolds, Arlyne',NULL,NULL,NULL,'2',NULL,'1526771757',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne McReynolds',NULL,1,'1994-03-12',0,NULL,NULL,NULL,NULL,NULL,107,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (55,'Individual',NULL,'Ashley Olsen',NULL,NULL,'Ashley','','Olsen',0,0,0,0,0,0,NULL,'Olsen, Ashley',NULL,NULL,NULL,NULL,NULL,'3915396324',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Olsen',NULL,1,'1985-11-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (56,'Individual',NULL,'Dr. Craig Müller Jr.',NULL,NULL,'Craig','','Müller',0,0,0,0,0,0,NULL,'Müller, Craig',NULL,NULL,NULL,'2',NULL,'1619859759',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Müller Jr.',NULL,NULL,'1981-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (57,'Individual',NULL,'Juliann Wagner',NULL,NULL,'Juliann','R','Wagner',1,0,0,0,0,0,NULL,'Wagner, Juliann',NULL,NULL,NULL,'1',NULL,'2532288095',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Wagner',NULL,1,'1957-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (58,'Organization',NULL,'Maple Education Fellowship','Maple Education Fellowship',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Maple Education Fellowship',NULL,NULL,NULL,NULL,NULL,'2189822421',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Education Fellowship',NULL,NULL,NULL,0,NULL,NULL,115,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (59,'Individual',NULL,'Sherman Nielsen',NULL,NULL,'Sherman','','Nielsen',0,1,0,0,1,0,NULL,'Nielsen, Sherman',NULL,NULL,NULL,'2',NULL,'2590733768',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Nielsen',NULL,2,'1981-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (60,'Individual',NULL,'Mr. Clint Wattson',NULL,NULL,'Clint','','Wattson',0,0,0,0,0,0,NULL,'Wattson, Clint',NULL,NULL,NULL,NULL,NULL,'4167597443',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Wattson',NULL,2,'1982-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (61,'Household',NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Terrell family',NULL,NULL,NULL,'5',NULL,'1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (62,'Individual',NULL,'Dr. Roland Blackwell Sr.',NULL,NULL,'Roland','','Blackwell',0,0,0,0,1,0,NULL,'Blackwell, Roland',NULL,NULL,NULL,'5',NULL,'2389492395',NULL,'Sample Data',4,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Blackwell Sr.',NULL,2,'1935-10-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (63,'Individual',NULL,'Kacey Wagner',NULL,NULL,'Kacey','Z','Wagner',1,0,0,0,1,0,NULL,'Wagner, Kacey',NULL,NULL,NULL,'2',NULL,'1592802897',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Wagner',NULL,1,'2000-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (64,'Individual',NULL,'Dr. Craig Samson',NULL,NULL,'Craig','G','Samson',0,0,0,0,0,0,NULL,'Samson, Craig',NULL,NULL,NULL,NULL,NULL,'930004304',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Samson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (65,'Individual',NULL,'Alexia Terrell',NULL,NULL,'Alexia','L','Terrell',0,0,0,0,0,0,NULL,'Terrell, Alexia',NULL,NULL,NULL,'4',NULL,'3098323867',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (66,'Individual',NULL,'Winford Cruz',NULL,NULL,'Winford','','Cruz',1,0,0,0,0,0,NULL,'Cruz, Winford',NULL,NULL,NULL,NULL,NULL,'3514074877',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Cruz',NULL,2,'2006-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (67,'Individual',NULL,'Dr. Beula Blackwell',NULL,NULL,'Beula','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Beula',NULL,NULL,NULL,'2',NULL,'3841764890',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Dr. Beula Blackwell',NULL,1,'1994-04-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (68,'Individual',NULL,'Dr. Sanford Łąchowski-Olsen',NULL,NULL,'Sanford','','Łąchowski-Olsen',0,0,0,0,0,0,NULL,'Łąchowski-Olsen, Sanford',NULL,NULL,NULL,NULL,NULL,'423847962',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Dr. Sanford Łąchowski-Olsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (69,'Individual',NULL,'Mr. Sherman Barkley',NULL,NULL,'Sherman','','Barkley',0,0,0,0,0,0,NULL,'Barkley, Sherman',NULL,NULL,NULL,'4',NULL,'926028399',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Barkley',NULL,NULL,'1992-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (70,'Individual',NULL,'Dr. Scott Łąchowski',NULL,NULL,'Scott','Z','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Scott',NULL,NULL,NULL,NULL,NULL,'1388417537',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Łąchowski',NULL,2,'1940-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (71,'Individual',NULL,'heiditerrell29@airmail.com',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'heiditerrell29@airmail.com',NULL,NULL,NULL,'4',NULL,'843969276',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear heiditerrell29@airmail.com',1,NULL,'Dear heiditerrell29@airmail.com',1,NULL,'heiditerrell29@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (72,'Individual',NULL,'Herminia Yadav','Local Health Alliance',NULL,'Herminia','','Yadav',0,0,0,0,0,0,NULL,'Yadav, Herminia',NULL,NULL,NULL,NULL,NULL,'201559464',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Yadav',NULL,1,'1975-12-17',0,NULL,NULL,NULL,NULL,NULL,90,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (73,'Individual',NULL,'Magan Zope-Samson',NULL,NULL,'Magan','','Zope-Samson',0,0,0,0,0,0,NULL,'Zope-Samson, Magan',NULL,NULL,NULL,NULL,NULL,'4036555087',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Zope-Samson',NULL,NULL,'2014-06-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (74,'Individual',NULL,'Jay Deforest',NULL,NULL,'Jay','M','Deforest',0,1,0,0,0,0,NULL,'Deforest, Jay',NULL,NULL,NULL,'5',NULL,'3714093983',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Deforest',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (75,'Individual',NULL,'Mrs. Kiara González',NULL,NULL,'Kiara','B','González',0,1,0,0,0,0,NULL,'González, Kiara',NULL,NULL,NULL,NULL,NULL,'285519144',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Mrs. Kiara González',NULL,1,'1976-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (76,'Individual',NULL,'Dr. Ray Terry',NULL,NULL,'Ray','','Terry',0,1,0,0,0,0,NULL,'Terry, Ray',NULL,NULL,NULL,NULL,NULL,'1646953938',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Terry',NULL,2,'1986-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (77,'Organization',NULL,'Local Music Solutions','Local Music Solutions',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Local Music Solutions',NULL,NULL,NULL,NULL,NULL,'3792380829',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Music Solutions',NULL,NULL,NULL,0,NULL,NULL,96,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (78,'Individual',NULL,'Merrie Wattson',NULL,NULL,'Merrie','S','Wattson',0,0,0,0,1,0,NULL,'Wattson, Merrie',NULL,NULL,NULL,NULL,NULL,'3250660650',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Wattson',NULL,NULL,'1966-09-11',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (79,'Individual',NULL,'Mr. Jed Samuels-Bachman',NULL,NULL,'Jed','','Samuels-Bachman',0,0,0,0,1,0,NULL,'Samuels-Bachman, Jed',NULL,NULL,NULL,NULL,NULL,'607837200',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Samuels-Bachman',NULL,2,'1997-01-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (80,'Household',NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,'2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (81,'Individual',NULL,'sh.prentice@mymail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'sh.prentice@mymail.info',NULL,NULL,NULL,NULL,NULL,'1988631038',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear sh.prentice@mymail.info',1,NULL,'Dear sh.prentice@mymail.info',1,NULL,'sh.prentice@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (82,'Household',NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,'1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (83,'Organization',NULL,'College Legal Partnership','College Legal Partnership',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'College Legal Partnership',NULL,NULL,NULL,'4',NULL,'1882382420',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Legal Partnership',NULL,NULL,NULL,0,NULL,NULL,30,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (84,'Individual',NULL,'Mr. Brent Lee Jr.',NULL,NULL,'Brent','F','Lee',0,0,0,0,1,0,NULL,'Lee, Brent',NULL,NULL,NULL,'2',NULL,'3880593995',NULL,'Sample Data',3,1,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Lee Jr.',NULL,2,'1999-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (85,'Organization',NULL,'Beech Action Alliance','Beech Action Alliance',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Beech Action Alliance',NULL,NULL,NULL,'5',NULL,'3174675246',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Action Alliance',NULL,NULL,NULL,0,NULL,NULL,22,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (86,'Individual',NULL,'smith.toby@sample.com','Littleton Education Services',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'smith.toby@sample.com',NULL,NULL,NULL,NULL,NULL,'230059427',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear smith.toby@sample.com',1,NULL,'Dear smith.toby@sample.com',1,NULL,'smith.toby@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,36,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (87,'Individual',NULL,'Eleonor Smith',NULL,NULL,'Eleonor','','Smith',1,1,0,0,1,0,NULL,'Smith, Eleonor',NULL,NULL,NULL,NULL,NULL,'574097129',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (88,'Individual',NULL,'Laree Samuels-Bachman',NULL,NULL,'Laree','P','Samuels-Bachman',0,0,0,0,0,0,NULL,'Samuels-Bachman, Laree',NULL,NULL,NULL,NULL,NULL,'3114601835',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Samuels-Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (89,'Individual',NULL,'Sanford Bachman',NULL,NULL,'Sanford','V','Bachman',0,0,0,0,0,0,NULL,'Bachman, Sanford',NULL,NULL,NULL,'1',NULL,'2454837812',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Bachman',NULL,NULL,'2013-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (90,'Organization',NULL,'Local Health Alliance','Local Health Alliance',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Local Health Alliance',NULL,NULL,NULL,NULL,NULL,'3977336119',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Health Alliance',NULL,NULL,NULL,0,NULL,NULL,72,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (91,'Individual',NULL,'Ray Reynolds II',NULL,NULL,'Ray','','Reynolds',1,0,0,0,0,0,NULL,'Reynolds, Ray',NULL,NULL,NULL,NULL,NULL,'4106710934',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Reynolds II',NULL,2,'2000-09-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (92,'Individual',NULL,'Dr. Maxwell Zope',NULL,NULL,'Maxwell','C','Zope',0,1,0,0,0,0,NULL,'Zope, Maxwell',NULL,NULL,NULL,'3',NULL,'676762100',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Zope',NULL,2,'1987-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (93,'Individual',NULL,'Mr. Jerome Lee Sr.',NULL,NULL,'Jerome','K','Lee',0,0,0,0,0,0,NULL,'Lee, Jerome',NULL,NULL,NULL,'5',NULL,'1739377310',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Lee Sr.',NULL,2,'1977-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (94,'Individual',NULL,'Ms. Laree González',NULL,NULL,'Laree','X','González',1,0,0,0,0,0,NULL,'González, Laree',NULL,NULL,NULL,NULL,NULL,'2048787569',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree González',NULL,1,'1965-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (95,'Individual',NULL,'Mei Dimitrov','Utah Legal Services',NULL,'Mei','O','Dimitrov',0,0,0,0,0,0,NULL,'Dimitrov, Mei',NULL,NULL,NULL,'4',NULL,'1645477105',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,152,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (96,'Individual',NULL,'Daren Wattson','Local Music Solutions',NULL,'Daren','','Wattson',0,1,0,0,0,0,NULL,'Wattson, Daren',NULL,NULL,NULL,'2',NULL,'3066500462',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Wattson',NULL,2,'2002-02-16',0,NULL,NULL,NULL,NULL,NULL,77,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (97,'Individual',NULL,'Irvin Adams-McReynolds Sr.',NULL,NULL,'Irvin','E','Adams-McReynolds',0,0,0,0,0,0,NULL,'Adams-McReynolds, Irvin',NULL,NULL,NULL,NULL,NULL,'2434954896',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Adams-McReynolds Sr.',NULL,2,'2000-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (98,'Individual',NULL,'Daren Smith',NULL,NULL,'Daren','R','Smith',0,0,0,0,1,0,NULL,'Smith, Daren',NULL,NULL,NULL,NULL,NULL,'3966682227',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Smith',NULL,NULL,'2004-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (99,'Individual',NULL,'Shauna Lee',NULL,NULL,'Shauna','','Lee',1,0,0,0,0,0,NULL,'Lee, Shauna',NULL,NULL,NULL,'3',NULL,'3300398193',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Lee',NULL,1,'1970-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (100,'Organization',NULL,'Illinois Peace Academy','Illinois Peace Academy',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Illinois Peace Academy',NULL,NULL,NULL,NULL,NULL,'2462195252',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Illinois Peace Academy',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (101,'Individual',NULL,'Jed Zope',NULL,NULL,'Jed','','Zope',1,1,0,0,0,0,NULL,'Zope, Jed',NULL,NULL,NULL,'5',NULL,'934575133',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Zope',NULL,2,'1953-09-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (102,'Individual',NULL,'Dr. Carlos Deforest',NULL,NULL,'Carlos','X','Deforest',0,0,0,0,0,0,NULL,'Deforest, Carlos',NULL,NULL,NULL,NULL,NULL,'2222599648',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Deforest',NULL,NULL,'1987-11-25',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (103,'Organization',NULL,'Progressive Wellness Services','Progressive Wellness Services',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Progressive Wellness Services',NULL,NULL,NULL,NULL,NULL,'900079396',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Wellness Services',NULL,NULL,NULL,0,NULL,NULL,139,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (104,'Individual',NULL,'Dr. Sherman Zope III',NULL,NULL,'Sherman','S','Zope',0,0,0,0,1,0,NULL,'Zope, Sherman',NULL,NULL,NULL,'5',NULL,'3265645175',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Dr. Sherman Zope III',NULL,NULL,'1958-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (105,'Individual',NULL,'Miguel Blackwell III',NULL,NULL,'Miguel','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Miguel',NULL,NULL,NULL,'1',NULL,'3534576145',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Blackwell III',NULL,2,'1983-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (106,'Organization',NULL,'Ruskin Agriculture Partnership','Ruskin Agriculture Partnership',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Ruskin Agriculture Partnership',NULL,NULL,NULL,'1',NULL,'2431443057',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ruskin Agriculture Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (107,'Organization',NULL,'Urban Poetry Association','Urban Poetry Association',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Urban Poetry Association',NULL,NULL,NULL,'3',NULL,'2838153462',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Poetry Association',NULL,NULL,NULL,0,NULL,NULL,54,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (108,'Individual',NULL,'Rosario Jones',NULL,NULL,'Rosario','','Jones',0,0,0,0,1,0,NULL,'Jones, Rosario',NULL,NULL,NULL,'4',NULL,'1172090017',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Jones',NULL,NULL,'1984-07-06',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (109,'Individual',NULL,'Landon Wagner III',NULL,NULL,'Landon','D','Wagner',0,0,0,0,0,0,NULL,'Wagner, Landon',NULL,NULL,NULL,NULL,NULL,'2517566731',NULL,'Sample Data',NULL,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Wagner III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (110,'Household',NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Terry family',NULL,NULL,NULL,'5',NULL,'558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (111,'Individual',NULL,'Omar González Jr.',NULL,NULL,'Omar','','González',0,0,0,0,0,0,NULL,'González, Omar',NULL,NULL,NULL,'3',NULL,'2191997719',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar González Jr.',NULL,2,'1959-05-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (112,'Individual',NULL,'Margaret Terrell',NULL,NULL,'Margaret','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Margaret',NULL,NULL,NULL,NULL,NULL,'3427129884',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (113,'Household',NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,NULL,NULL,'3491138340',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Olsen family',5,NULL,'Dear Łąchowski-Olsen family',2,NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,0,NULL,'Łąchowski-Olsen family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (114,'Individual',NULL,'Santina Yadav',NULL,NULL,'Santina','M','Yadav',0,0,0,0,0,0,NULL,'Yadav, Santina',NULL,NULL,NULL,'1',NULL,'3262021642',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Yadav',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (115,'Individual',NULL,'chowski.damaris@fishmail.co.nz','Maple Education Fellowship',NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'chowski.damaris@fishmail.co.nz',NULL,NULL,NULL,NULL,NULL,'1658885464',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear chowski.damaris@fishmail.co.nz',1,NULL,'Dear chowski.damaris@fishmail.co.nz',1,NULL,'chowski.damaris@fishmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,58,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (116,'Individual',NULL,'Mrs. Lashawnda Cooper',NULL,NULL,'Lashawnda','E','Cooper',0,0,0,0,0,0,NULL,'Cooper, Lashawnda',NULL,NULL,NULL,'1',NULL,'2720051333',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (117,'Individual',NULL,'Dr. Laree Olsen',NULL,NULL,'Laree','Z','Olsen',0,1,0,0,0,0,NULL,'Olsen, Laree',NULL,NULL,NULL,'5',NULL,'3456657171',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Dr. Laree Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (118,'Individual',NULL,'Mr. Sherman Terry III',NULL,NULL,'Sherman','','Terry',0,0,0,0,1,0,NULL,'Terry, Sherman',NULL,NULL,NULL,NULL,NULL,'4119706907',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Terry III',NULL,2,'1951-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (119,'Individual',NULL,'Mr. Ashley Parker III',NULL,NULL,'Ashley','W','Parker',0,1,0,0,0,0,NULL,'Parker, Ashley',NULL,NULL,NULL,'5',NULL,'3805556080',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Parker III',NULL,2,'1953-12-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (120,'Individual',NULL,'Dr. Jed Bachman III',NULL,NULL,'Jed','','Bachman',1,1,0,0,1,0,NULL,'Bachman, Jed',NULL,NULL,NULL,NULL,NULL,'876018088',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Bachman III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (121,'Individual',NULL,'Mr. Shad McReynolds III',NULL,NULL,'Shad','U','McReynolds',0,1,0,0,0,0,NULL,'McReynolds, Shad',NULL,NULL,NULL,NULL,NULL,'4249147082',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Mr. Shad McReynolds III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (122,'Individual',NULL,'Dr. Elizabeth González',NULL,NULL,'Elizabeth','','González',0,0,0,0,0,0,NULL,'González, Elizabeth',NULL,NULL,NULL,'5',NULL,'321456431',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Dr. Elizabeth González',NULL,1,'1966-09-09',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (123,'Individual',NULL,'Dr. Ashley Blackwell III',NULL,NULL,'Ashley','','Blackwell',1,0,0,0,0,0,NULL,'Blackwell, Ashley',NULL,NULL,NULL,NULL,NULL,'2843113739',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Blackwell III',NULL,NULL,'1988-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (124,'Individual',NULL,'Rolando Bachman Jr.',NULL,NULL,'Rolando','Z','Bachman',0,1,0,0,0,0,NULL,'Bachman, Rolando',NULL,NULL,NULL,NULL,NULL,'1672731969',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Bachman Jr.',NULL,2,'1966-05-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (125,'Individual',NULL,'Mr. Sonny Wagner Sr.',NULL,NULL,'Sonny','','Wagner',0,0,0,0,0,0,NULL,'Wagner, Sonny',NULL,NULL,NULL,'4',NULL,'93577145',NULL,'Sample Data',3,2,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Wagner Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (126,'Individual',NULL,'Nicole Zope-Samson',NULL,NULL,'Nicole','','Zope-Samson',0,0,0,0,0,0,NULL,'Zope-Samson, Nicole',NULL,NULL,NULL,'5',NULL,'140992282',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Zope-Samson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (127,'Household',NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'McReynolds family',NULL,NULL,NULL,'1',NULL,'3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (128,'Organization',NULL,'Dowlen Agriculture Partnership','Dowlen Agriculture Partnership',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'Dowlen Agriculture Partnership',NULL,NULL,NULL,'2',NULL,'753296700',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dowlen Agriculture Partnership',NULL,NULL,NULL,0,NULL,NULL,11,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (129,'Individual',NULL,'migueld94@testmail.biz',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'migueld94@testmail.biz',NULL,NULL,NULL,NULL,NULL,'1477470060',NULL,'Sample Data',NULL,3,NULL,NULL,1,NULL,'Dear migueld94@testmail.biz',1,NULL,'Dear migueld94@testmail.biz',1,NULL,'migueld94@testmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (130,'Household',NULL,'Zope-Samson family',NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,0,NULL,'Zope-Samson family',NULL,NULL,NULL,'2',NULL,'2621299063',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Samson family',5,NULL,'Dear Zope-Samson family',2,NULL,'Zope-Samson family',NULL,NULL,NULL,0,NULL,'Zope-Samson family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (131,'Individual',NULL,'Ms. Herminia Blackwell',NULL,NULL,'Herminia','','Blackwell',0,0,0,0,1,0,NULL,'Blackwell, Herminia',NULL,NULL,NULL,NULL,NULL,'3534592549',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Blackwell',NULL,1,'1942-04-27',1,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (132,'Individual',NULL,'Ms. Megan McReynolds',NULL,NULL,'Megan','M','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Megan',NULL,NULL,NULL,'2',NULL,'1459926371',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Ms. Megan McReynolds',NULL,1,'1963-07-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (133,'Individual',NULL,'Ms. Scarlet Smith',NULL,NULL,'Scarlet','B','Smith',0,0,0,0,0,0,NULL,'Smith, Scarlet',NULL,NULL,NULL,NULL,NULL,'2426121627',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet Smith',NULL,1,'1995-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (134,'Organization',NULL,'Rhode Island Sports Trust','Rhode Island Sports Trust',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Rhode Island Sports Trust',NULL,NULL,NULL,'3',NULL,'4154718252',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rhode Island Sports Trust',NULL,NULL,NULL,0,NULL,NULL,201,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (135,'Individual',NULL,'Eleonor Prentice',NULL,NULL,'Eleonor','A','Prentice',0,1,0,0,0,0,NULL,'Prentice, Eleonor',NULL,NULL,NULL,NULL,NULL,'76143917',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (136,'Organization',NULL,'Memphis Technology Collective','Memphis Technology Collective',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Memphis Technology Collective',NULL,NULL,NULL,'4',NULL,'80386314',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Memphis Technology Collective',NULL,NULL,NULL,0,NULL,NULL,175,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (137,'Individual',NULL,'Ashlie Prentice',NULL,NULL,'Ashlie','','Prentice',0,0,0,0,0,0,NULL,'Prentice, Ashlie',NULL,NULL,NULL,NULL,NULL,'2064126922',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (138,'Individual',NULL,'Mr. Brzęczysław Díaz III',NULL,NULL,'Brzęczysław','','Díaz',0,0,0,0,1,0,NULL,'Díaz, Brzęczysław',NULL,NULL,NULL,NULL,NULL,'1409442649',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Díaz III',NULL,2,'1982-06-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (139,'Individual',NULL,'Elizabeth Deforest-González','Progressive Wellness Services',NULL,'Elizabeth','','Deforest-González',0,0,0,0,0,0,NULL,'Deforest-González, Elizabeth',NULL,NULL,NULL,'3',NULL,'90080717',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Deforest-González',NULL,NULL,'2005-11-26',0,NULL,NULL,NULL,NULL,NULL,103,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (140,'Individual',NULL,'Iris Olsen',NULL,NULL,'Iris','','Olsen',1,0,0,0,0,0,NULL,'Olsen, Iris',NULL,NULL,NULL,NULL,NULL,'313880548',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Olsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (141,'Individual',NULL,'Lawerence McReynolds',NULL,NULL,'Lawerence','','McReynolds',1,1,0,0,0,0,NULL,'McReynolds, Lawerence',NULL,NULL,NULL,NULL,NULL,'2918598675',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence McReynolds',NULL,2,'1982-05-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (142,'Individual',NULL,'Mr. Clint McReynolds III',NULL,NULL,'Clint','E','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Clint',NULL,NULL,NULL,'2',NULL,'3847785527',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint McReynolds III',NULL,2,'1939-02-01',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (143,'Individual',NULL,'Maxwell Cooper Sr.',NULL,NULL,'Maxwell','Z','Cooper',0,0,0,0,1,0,NULL,'Cooper, Maxwell',NULL,NULL,NULL,NULL,NULL,'2402754787',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Cooper Sr.',NULL,2,'1987-04-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (144,'Individual',NULL,'Dr. Roland Yadav',NULL,NULL,'Roland','R','Yadav',0,0,0,0,0,0,NULL,'Yadav, Roland',NULL,NULL,NULL,NULL,NULL,'3708380918',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Yadav',NULL,2,'1987-11-03',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (145,'Individual',NULL,'Troy McReynolds Jr.','United Health Academy',NULL,'Troy','H','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Troy',NULL,NULL,NULL,'1',NULL,'2359789954',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy McReynolds Jr.',NULL,2,'2020-04-16',0,NULL,NULL,NULL,NULL,NULL,3,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (146,'Individual',NULL,'Mr. Lou Cruz III',NULL,NULL,'Lou','','Cruz',1,1,0,0,0,0,NULL,'Cruz, Lou',NULL,NULL,NULL,'3',NULL,'3825436654',NULL,'Sample Data',3,4,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Cruz III',NULL,2,'1968-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (147,'Individual',NULL,'Carlos González',NULL,NULL,'Carlos','Q','González',0,0,0,0,0,0,NULL,'González, Carlos',NULL,NULL,NULL,'2',NULL,'941551989',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos González',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (148,'Individual',NULL,'Craig Smith Jr.',NULL,NULL,'Craig','','Smith',0,0,0,0,1,0,NULL,'Smith, Craig',NULL,NULL,NULL,NULL,NULL,'3622505107',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Smith Jr.',NULL,NULL,'1952-02-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (149,'Individual',NULL,'Dr. Lincoln Adams',NULL,NULL,'Lincoln','T','Adams',1,0,0,0,0,0,NULL,'Adams, Lincoln',NULL,NULL,NULL,NULL,NULL,'3895803165',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Adams',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (150,'Individual',NULL,'Lincoln Terrell Jr.',NULL,NULL,'Lincoln','','Terrell',0,0,0,0,0,0,NULL,'Terrell, Lincoln',NULL,NULL,NULL,'5',NULL,'1872516790',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Terrell Jr.',NULL,2,'1998-04-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (151,'Individual',NULL,'mller.elina@sample.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'mller.elina@sample.co.pl',NULL,NULL,NULL,NULL,NULL,'727768679',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear mller.elina@sample.co.pl',1,NULL,'Dear mller.elina@sample.co.pl',1,NULL,'mller.elina@sample.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (152,'Organization',NULL,'Utah Legal Services','Utah Legal Services',NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Utah Legal Services',NULL,NULL,NULL,NULL,NULL,'1569757511',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Utah Legal Services',NULL,NULL,NULL,0,NULL,NULL,95,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (153,'Individual',NULL,'Mr. Jackson Patel',NULL,NULL,'Jackson','','Patel',0,0,0,0,0,0,NULL,'Patel, Jackson',NULL,NULL,NULL,'4',NULL,'2060230662',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Patel',NULL,NULL,'1947-03-29',1,'2025-02-09',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (154,'Individual',NULL,'wilson.rebekah56@testing.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'wilson.rebekah56@testing.co.pl',NULL,NULL,NULL,'1',NULL,'221170506',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear wilson.rebekah56@testing.co.pl',1,NULL,'Dear wilson.rebekah56@testing.co.pl',1,NULL,'wilson.rebekah56@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (155,'Household',NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Cruz family',NULL,NULL,NULL,'2',NULL,'2326538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (156,'Individual',NULL,'Craig Lee',NULL,NULL,'Craig','S','Lee',0,0,0,0,0,0,NULL,'Lee, Craig',NULL,NULL,NULL,'3',NULL,'383482942',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Lee',NULL,2,'1946-09-07',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (157,'Individual',NULL,'Ashley González',NULL,NULL,'Ashley','','González',0,0,0,0,1,0,NULL,'González, Ashley',NULL,NULL,NULL,NULL,NULL,'1248338675',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley González',NULL,NULL,'1940-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (158,'Household',NULL,'Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Dimitrov family',NULL,NULL,NULL,NULL,NULL,'3351288571',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Dimitrov family',5,NULL,'Dear Dimitrov family',2,NULL,'Dimitrov family',NULL,NULL,NULL,0,NULL,'Dimitrov family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (159,'Individual',NULL,'Mr. Billy Lee II',NULL,NULL,'Billy','H','Lee',0,0,0,0,1,0,NULL,'Lee, Billy',NULL,NULL,NULL,'4',NULL,'587456357',NULL,'Sample Data',3,3,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Lee II',NULL,NULL,'2001-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (160,'Individual',NULL,'tl.gonzlez87@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'tl.gonzlez87@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,'2352636640',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear tl.gonzlez87@infomail.co.pl',1,NULL,'Dear tl.gonzlez87@infomail.co.pl',1,NULL,'tl.gonzlez87@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (161,'Individual',NULL,'Shauna Dimitrov',NULL,NULL,'Shauna','R','Dimitrov',1,1,0,0,0,0,NULL,'Dimitrov, Shauna',NULL,NULL,NULL,NULL,NULL,'3774422289',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Dimitrov',NULL,1,'2012-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (162,'Individual',NULL,'Ms. Beula Blackwell',NULL,NULL,'Beula','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Beula',NULL,NULL,NULL,'4',NULL,'3841764890',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Ms. Beula Blackwell',NULL,1,'1963-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (163,'Individual',NULL,'Errol Grant Jr.',NULL,NULL,'Errol','D','Grant',1,0,0,0,0,0,NULL,'Grant, Errol',NULL,NULL,NULL,'4',NULL,'3028211429',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Grant Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (164,'Individual',NULL,'Jacob Wattson Sr.',NULL,NULL,'Jacob','E','Wattson',0,0,0,0,1,0,NULL,'Wattson, Jacob',NULL,NULL,NULL,NULL,NULL,'3880437481',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Wattson Sr.',NULL,2,'1939-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (165,'Individual',NULL,'Toby Adams-McReynolds',NULL,NULL,'Toby','Z','Adams-McReynolds',0,0,0,0,1,0,NULL,'Adams-McReynolds, Toby',NULL,NULL,NULL,'4',NULL,'3437498198',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Adams-McReynolds',NULL,2,'1988-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (166,'Individual',NULL,'Troy Samson Sr.',NULL,NULL,'Troy','','Samson',0,1,0,0,0,0,NULL,'Samson, Troy',NULL,NULL,NULL,'3',NULL,'4145447526',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Samson Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (167,'Household',NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,'3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (168,'Individual',NULL,'Dr. Daren Cruz',NULL,NULL,'Daren','N','Cruz',0,0,0,0,0,0,NULL,'Cruz, Daren',NULL,NULL,NULL,NULL,NULL,'2509817815',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Cruz',NULL,2,'1982-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (169,'Individual',NULL,'Ray Müller Jr.',NULL,NULL,'Ray','','Müller',0,1,0,0,0,0,NULL,'Müller, Ray',NULL,NULL,NULL,NULL,NULL,'1173052896',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Müller Jr.',NULL,2,'1955-09-05',1,'2024-04-18',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (170,'Organization',NULL,'Day Sustainability Collective','Day Sustainability Collective',NULL,NULL,NULL,NULL,1,1,0,0,1,0,NULL,'Day Sustainability Collective',NULL,NULL,NULL,'5',NULL,'3997918080',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Day Sustainability Collective',NULL,NULL,NULL,0,NULL,NULL,198,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (171,'Individual',NULL,'Dr. Truman Łąchowski Jr.','Severn Software Services',NULL,'Truman','Z','Łąchowski',0,0,0,0,0,0,NULL,'Łąchowski, Truman',NULL,NULL,NULL,'5',NULL,'1413354828',NULL,'Sample Data',4,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Łąchowski Jr.',NULL,NULL,'1972-10-23',0,NULL,NULL,NULL,NULL,NULL,21,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (172,'Individual',NULL,'Ray Wattson Jr.',NULL,NULL,'Ray','F','Wattson',0,0,0,0,0,0,NULL,'Wattson, Ray',NULL,NULL,NULL,'4',NULL,'56249313',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wattson Jr.',NULL,2,'1964-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (173,'Organization',NULL,'United Development Alliance','United Development Alliance',NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'United Development Alliance',NULL,NULL,NULL,'2',NULL,'3942880735',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Development Alliance',NULL,NULL,NULL,0,NULL,NULL,199,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (174,'Individual',NULL,'margaretolsen@notmail.com',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'margaretolsen@notmail.com',NULL,NULL,NULL,NULL,NULL,'3657704863',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear margaretolsen@notmail.com',1,NULL,'Dear margaretolsen@notmail.com',1,NULL,'margaretolsen@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (175,'Individual',NULL,'Ms. Rebekah McReynolds-Cruz','Memphis Technology Collective',NULL,'Rebekah','G','McReynolds-Cruz',1,0,0,0,0,0,NULL,'McReynolds-Cruz, Rebekah',NULL,NULL,NULL,NULL,NULL,'2449231026',NULL,'Sample Data',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah McReynolds-Cruz',NULL,1,'1961-06-24',0,NULL,NULL,NULL,NULL,NULL,136,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (176,'Individual',NULL,'Mrs. Elizabeth Samson',NULL,NULL,'Elizabeth','D','Samson',0,0,0,0,0,0,NULL,'Samson, Elizabeth',NULL,NULL,NULL,NULL,NULL,'2428742753',NULL,'Sample Data',1,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Mrs. Elizabeth Samson',NULL,1,'1992-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (177,'Individual',NULL,'Delana Dimitrov',NULL,NULL,'Delana','Z','Dimitrov',0,0,0,0,0,0,NULL,'Dimitrov, Delana',NULL,NULL,NULL,NULL,NULL,'4026480882',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Dimitrov',NULL,1,'1967-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (178,'Individual',NULL,'Valene Wilson',NULL,NULL,'Valene','','Wilson',0,1,0,0,1,0,NULL,'Wilson, Valene',NULL,NULL,NULL,'3',NULL,'40219008',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Wilson',NULL,1,'1981-07-30',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (179,'Household',NULL,'Adams-McReynolds family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Adams-McReynolds family',NULL,NULL,NULL,NULL,NULL,'2677424982',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-McReynolds family',5,NULL,'Dear Adams-McReynolds family',2,NULL,'Adams-McReynolds family',NULL,NULL,NULL,0,NULL,'Adams-McReynolds family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (180,'Household',NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,'3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (181,'Individual',NULL,'bachman.brittney@mymail.info',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'bachman.brittney@mymail.info',NULL,NULL,NULL,NULL,NULL,'279362473',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear bachman.brittney@mymail.info',1,NULL,'Dear bachman.brittney@mymail.info',1,NULL,'bachman.brittney@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (182,'Individual',NULL,'Mr. Scott Lee',NULL,NULL,'Scott','','Lee',0,1,0,0,0,0,NULL,'Lee, Scott',NULL,NULL,NULL,NULL,NULL,'4023573390',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Lee',NULL,NULL,'1942-10-27',1,'2024-10-27',NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (183,'Individual',NULL,'Daren Barkley',NULL,NULL,'Daren','W','Barkley',0,0,0,0,0,0,NULL,'Barkley, Daren',NULL,NULL,NULL,'1',NULL,'3004217931',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Barkley',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:22','Both'), + (184,'Individual',NULL,'Megan Wattson',NULL,NULL,'Megan','Q','Wattson',0,0,0,0,0,0,NULL,'Wattson, Megan',NULL,NULL,NULL,NULL,NULL,'1244939479',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:21','2025-02-11 22:13:23','Both'), + (185,'Individual',NULL,'Dr. Iris Grant',NULL,NULL,'Iris','','Grant',0,0,0,0,0,0,NULL,'Grant, Iris',NULL,NULL,NULL,NULL,NULL,'2380499675',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (186,'Individual',NULL,'Magan González',NULL,NULL,'Magan','A','González',0,0,0,0,0,0,NULL,'González, Magan',NULL,NULL,NULL,'1',NULL,'2922205398',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (187,'Individual',NULL,'jacksongonzlez@mymail.net',NULL,NULL,NULL,NULL,NULL,1,0,0,0,0,0,NULL,'jacksongonzlez@mymail.net',NULL,NULL,NULL,'1',NULL,'227363016',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear jacksongonzlez@mymail.net',1,NULL,'Dear jacksongonzlez@mymail.net',1,NULL,'jacksongonzlez@mymail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (188,'Organization',NULL,'Illinois Development Partners','Illinois Development Partners',NULL,NULL,NULL,NULL,0,0,0,0,1,0,NULL,'Illinois Development Partners',NULL,NULL,NULL,'1',NULL,'4078770841',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Illinois Development Partners',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (189,'Individual',NULL,'Carlos Roberts',NULL,NULL,'Carlos','','Roberts',0,0,0,0,0,0,NULL,'Roberts, Carlos',NULL,NULL,NULL,'5',NULL,'2188463441',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Roberts',NULL,NULL,'1991-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (190,'Individual',NULL,'Brigette McReynolds',NULL,NULL,'Brigette','W','McReynolds',0,0,0,0,0,0,NULL,'McReynolds, Brigette',NULL,NULL,NULL,NULL,NULL,'393115724',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette McReynolds',NULL,1,'1942-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (191,'Individual',NULL,'Dr. Toby Cruz II',NULL,NULL,'Toby','','Cruz',1,0,0,0,1,0,NULL,'Cruz, Toby',NULL,NULL,NULL,'4',NULL,'748884235',NULL,'Sample Data',4,3,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Cruz II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (192,'Individual',NULL,'Brent Terry Sr.',NULL,NULL,'Brent','','Terry',1,0,0,0,0,0,NULL,'Terry, Brent',NULL,NULL,NULL,NULL,NULL,'4100154892',NULL,'Sample Data',NULL,2,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Terry Sr.',NULL,NULL,'2022-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (193,'Individual',NULL,'Dr. Brzęczysław Nielsen',NULL,NULL,'Brzęczysław','F','Nielsen',1,0,0,0,0,0,NULL,'Nielsen, Brzęczysław',NULL,NULL,NULL,'1',NULL,'3387173587',NULL,'Sample Data',4,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Nielsen',NULL,2,'1983-06-20',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (194,'Individual',NULL,'mcreynoldsb@example.com',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'mcreynoldsb@example.com',NULL,NULL,NULL,'4',NULL,'4087690107',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear mcreynoldsb@example.com',1,NULL,'Dear mcreynoldsb@example.com',1,NULL,'mcreynoldsb@example.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (195,'Individual',NULL,'Bryon Prentice',NULL,NULL,'Bryon','','Prentice',1,0,0,0,0,0,NULL,'Prentice, Bryon',NULL,NULL,NULL,NULL,NULL,'3789751835',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Prentice',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (196,'Individual',NULL,'Mr. Truman Olsen',NULL,NULL,'Truman','','Olsen',0,0,0,0,1,0,NULL,'Olsen, Truman',NULL,NULL,NULL,NULL,NULL,'3272944586',NULL,'Sample Data',3,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Olsen',NULL,NULL,'1984-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (197,'Household',NULL,'Samuels-Bachman family',NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'Samuels-Bachman family',NULL,NULL,NULL,'3',NULL,'20148724',NULL,'Sample Data',NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels-Bachman family',5,NULL,'Dear Samuels-Bachman family',2,NULL,'Samuels-Bachman family',NULL,NULL,NULL,0,NULL,'Samuels-Bachman family',NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:22','Both'), + (198,'Individual',NULL,'Scott Adams Jr.','Day Sustainability Collective',NULL,'Scott','K','Adams',0,1,0,0,0,0,NULL,'Adams, Scott',NULL,NULL,NULL,'3',NULL,'2280225126',NULL,'Sample Data',NULL,1,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Adams Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,170,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (199,'Individual',NULL,'Ivey Wattson','United Development Alliance',NULL,'Ivey','H','Wattson',0,0,0,0,0,0,NULL,'Wattson, Ivey',NULL,NULL,NULL,'5',NULL,'1423152774',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Wattson',NULL,1,'1986-01-01',0,NULL,NULL,NULL,NULL,NULL,173,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (200,'Individual',NULL,'Dr. Teddy Dimitrov III',NULL,NULL,'Teddy','','Dimitrov',1,0,0,0,0,0,NULL,'Dimitrov, Teddy',NULL,NULL,NULL,NULL,NULL,'3038060476',NULL,'Sample Data',4,4,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Dr. Teddy Dimitrov III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (201,'Individual',NULL,'Felisha Blackwell','Rhode Island Sports Trust',NULL,'Felisha','','Blackwell',0,0,0,0,0,0,NULL,'Blackwell, Felisha',NULL,NULL,NULL,'2',NULL,'3871892634',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Blackwell',NULL,1,'1985-10-16',0,NULL,NULL,NULL,NULL,NULL,134,0,'2025-02-11 22:13:22','2025-02-11 22:13:23','Both'), + (202,'Individual',NULL,'Jenny Lee',NULL,NULL,'Jenny',NULL,'Lee',0,0,0,0,0,0,NULL,'Lee, Jenny',NULL,NULL,NULL,NULL,'en_US','6260246de8977114ec82829639a7a16f',NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'2025-02-11 22:13:24','2025-02-11 22:13:24','Both'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -2197,13 +2189,13 @@ LOCK TABLES `civicrm_contact_type` WRITE; /*!40000 ALTER TABLE `civicrm_contact_type` DISABLE KEYS */; INSERT INTO `civicrm_contact_type` (`id`, `name`, `label`, `description`, `image_URL`, `icon`, `parent_id`, `is_active`, `is_reserved`) VALUES (1,'Individual','Individual',NULL,NULL,'fa-user',NULL,1,1), -(2,'Household','Household',NULL,NULL,'fa-home',NULL,1,1), -(3,'Organization','Organization',NULL,NULL,'fa-building',NULL,1,1), -(4,'Student','Student',NULL,NULL,'fa-graduation-cap',1,1,0), -(5,'Parent','Parent',NULL,NULL,'fa-user-circle-o',1,1,0), -(6,'Staff','Staff',NULL,NULL,'fa-id-badge',1,1,0), -(7,'Team','Team',NULL,NULL,'fa-users',3,1,0), -(8,'Sponsor','Sponsor',NULL,NULL,'fa-leaf',3,1,0); + (2,'Household','Household',NULL,NULL,'fa-home',NULL,1,1), + (3,'Organization','Organization',NULL,NULL,'fa-building',NULL,1,1), + (4,'Student','Student',NULL,NULL,'fa-graduation-cap',1,1,0), + (5,'Parent','Parent',NULL,NULL,'fa-user-circle-o',1,1,0), + (6,'Staff','Staff',NULL,NULL,'fa-id-badge',1,1,0), + (7,'Team','Team',NULL,NULL,'fa-users',3,1,0), + (8,'Sponsor','Sponsor',NULL,NULL,'fa-leaf',3,1,0); /*!40000 ALTER TABLE `civicrm_contact_type` ENABLE KEYS */; UNLOCK TABLES; @@ -2214,117 +2206,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution` WRITE; /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */; INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`, `is_template`) VALUES - (1,2,1,NULL,4,'2015-02-11 21:14:13',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,0.00,NULL,0), -(2,4,1,NULL,1,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(3,6,1,NULL,4,'2019-01-17 08:14:13',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,0.00,NULL,0), -(4,8,1,NULL,4,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,0.00,NULL,0), -(5,4,1,NULL,1,'2022-11-11 21:14:13',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(6,16,1,NULL,4,'2024-11-18 20:32:13',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,0.00,NULL,0), -(7,19,1,NULL,1,'2025-02-09 21:14:13',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,0.00,NULL,0), -(8,82,1,NULL,1,'2024-06-20 05:25:13',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(9,92,1,NULL,1,'2024-03-11 21:14:13',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(10,34,1,NULL,1,'2020-09-18 23:14:13',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(11,71,1,NULL,1,'2025-02-10 17:14:13',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(12,43,1,NULL,1,'2023-11-11 10:40:53',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(13,32,1,NULL,1,'2024-11-11 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(14,32,1,NULL,1,'2024-12-11 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(15,59,1,NULL,1,'2023-11-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(16,59,1,NULL,1,'2023-12-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(17,59,1,NULL,1,'2024-01-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(18,59,1,NULL,1,'2024-02-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(19,59,1,NULL,1,'2024-03-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(20,59,1,NULL,1,'2024-04-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(21,59,1,NULL,1,'2024-05-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(22,59,1,NULL,1,'2024-06-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(23,59,1,NULL,1,'2024-07-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(24,59,1,NULL,1,'2024-08-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(25,59,1,NULL,1,'2024-09-11 21:14:13',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(26,99,1,NULL,1,'2024-06-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(27,99,1,NULL,1,'2024-07-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(28,99,1,NULL,1,'2024-08-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(29,99,1,NULL,1,'2024-09-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(30,99,1,NULL,1,'2024-10-11 21:14:13',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(31,103,1,NULL,1,'2025-01-11 21:14:13',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(32,92,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'30b21218d4f608be',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(33,99,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'0dedfa09e891438f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(34,84,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'574b9165dd1b2b08',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(35,160,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2a38f7756033f606',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(36,69,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'023af7d0c7f31b8a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(37,82,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'33d7025c877837f5',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(38,172,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'62d9ef9ccc062221',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(39,189,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'02389d9d955ce089',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(40,116,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'7d6fcd38d448304e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(41,185,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'f5358baca286095a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(42,152,2,NULL,1,'2025-02-11 21:14:14',0.00,1200.00,NULL,NULL,'e62ae07fa55fd663',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(43,148,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c9e18530302548b2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(44,180,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'1d0bcce5e3098071',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(45,117,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'202a92329ecef77e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(46,174,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'54ef2704f518b5f4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(47,11,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2f4c60965320af89',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(48,54,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'525936f76eaded41',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(49,100,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c9863526e83a76ec',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(50,77,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'5c82b9195bb60c1c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(51,26,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'aba9c3f3571c72df',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(52,81,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'70a25e1a224d8953',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(53,19,2,NULL,1,'2025-02-11 21:14:14',0.00,1200.00,NULL,NULL,'7709afa3e698eda0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(54,115,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'89c796b13ba0d28a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(55,113,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'062f7ed8d280446a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(56,88,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'380fc034c1ac7e2b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(57,159,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'6c1d7a100734c442',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(58,13,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'c4bb26bafd34a7ec',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(59,141,2,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'56d62e4b8de9e019',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(60,27,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'f8ea0147caf88d9e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(61,130,2,NULL,1,'2025-02-11 21:14:14',0.00,100.00,NULL,NULL,'76a4f2862289bedc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(63,5,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'6d6c3146a0f2ca2c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(64,6,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'f4718d011de18df0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(65,11,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'2f9e0ac0e64b7838',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(66,13,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7d686602d215ef51',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(67,17,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'4b07755fa1f5b062',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(68,20,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'fe91541ab3ac36bb',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(69,28,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'d469814944d49bf7',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(70,30,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'992368ca700244de',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(71,34,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'629be821c1050c28',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(72,37,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'5e96e6ad3e4d7931',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(73,45,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'275ea22fdba62972',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(74,49,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'f03674f7ee9a296a',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(75,54,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'2fcbf2346f509f8c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(76,55,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7cfc64c19ce2e710',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(77,60,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'256b383f905d7f60',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(78,64,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'2630868a771db2c8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(79,65,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'c4495379ed6eb080',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(80,76,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'634616b413dda509',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(81,78,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'38500eff4fe4f408',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(82,79,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'c5cf79c1a1a9724a',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(83,80,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3cddfd1a376b75ce',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(84,84,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'4448ab608fdcf5b8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(85,87,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'94e75bfe88b77a1e',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(86,110,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'e9e138a2d12808b2',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(87,111,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'968db382c346785b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(88,113,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'ec883bafea47f002',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(89,117,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c307954cba953250',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(90,118,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'a04031766e066125',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(91,125,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'ef4386a7d7349d5b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(92,129,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'0991cc36c28c5183',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(93,134,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'27547f8765679bba',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(94,137,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'25efeb195a2226c5',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(95,139,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'e5221b71be93c59f',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(96,140,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7b1b12afc904a2bb',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(97,146,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'82bfc16353bc11d8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(98,147,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'8e591a74e7bfcc1b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(99,148,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'74f57f05ebb364d9',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(100,149,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'c133f13ab6e644aa',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(101,152,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'80ad0bf6b7a42de0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(102,162,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'1f351b2a90f13441',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(103,163,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'0778baf13b378795',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(104,167,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'ccf97b109357b8f2',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(105,180,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'7c4356899190cbe5',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(106,181,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'36a0f24d2a86c4be',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(107,184,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'6465ecbfbea93628',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(108,186,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3b8c6753e607caae',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(109,190,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'3f6751e063aad61c',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(110,192,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'5d53c4a3409d0fb3',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(111,194,4,NULL,1,'2025-02-11 21:14:14',0.00,50.00,NULL,NULL,'8d80f80d5f271482',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), -(112,197,4,NULL,1,'2025-02-11 21:14:14',0.00,800.00,NULL,NULL,'65cf28ebef7101d8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 21:14:14',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0); + (1,2,1,NULL,4,'2015-02-11 22:13:25',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,0.00,NULL,0), + (2,4,1,NULL,1,'2022-11-11 22:13:25',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (3,6,1,NULL,4,'2019-01-17 09:13:25',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,0.00,NULL,0), + (4,8,1,NULL,4,'2022-11-11 22:13:25',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,0.00,NULL,0), + (5,4,1,NULL,1,'2022-11-11 22:13:25',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (6,16,1,NULL,4,'2024-11-18 21:31:25',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,0.00,NULL,0), + (7,19,1,NULL,1,'2025-02-09 22:13:25',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,0.00,NULL,0), + (8,82,1,NULL,1,'2024-06-20 06:24:25',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (9,92,1,NULL,1,'2024-03-11 22:13:25',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (10,34,1,NULL,1,'2020-09-19 00:13:25',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (11,71,1,NULL,1,'2025-02-10 18:13:25',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (12,43,1,NULL,1,'2023-11-11 11:40:05',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (13,32,1,NULL,1,'2024-11-11 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (14,32,1,NULL,1,'2024-12-11 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (15,59,1,NULL,1,'2023-11-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (16,59,1,NULL,1,'2023-12-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (17,59,1,NULL,1,'2024-01-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (18,59,1,NULL,1,'2024-02-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (19,59,1,NULL,1,'2024-03-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (20,59,1,NULL,1,'2024-04-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (21,59,1,NULL,1,'2024-05-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (22,59,1,NULL,1,'2024-06-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (23,59,1,NULL,1,'2024-07-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (24,59,1,NULL,1,'2024-08-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (25,59,1,NULL,1,'2024-09-11 22:13:25',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (26,99,1,NULL,1,'2024-06-11 22:13:25',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (27,99,1,NULL,1,'2024-07-11 22:13:25',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (28,99,1,NULL,1,'2024-08-11 22:13:25',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (29,99,1,NULL,1,'2024-09-11 22:13:25',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (30,99,1,NULL,1,'2024-10-11 22:13:25',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (31,103,1,NULL,1,'2025-01-11 22:13:25',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (32,24,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'2c7cea62f76bcede',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (33,9,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'f36a6ed4cc64b59f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (34,81,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'7bff9ba323461ca2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (35,69,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'1aac9af65a15193c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (36,26,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'964c368cded32d96',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (37,59,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'042fb74788ebcad2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (38,42,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'001f52c25086b9bc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (39,126,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'3e6b85a0f22a1bb2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (40,129,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'1717fc6d453b6ea0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (41,18,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'f9f6da8e8d248914',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (42,96,2,NULL,1,'2025-02-11 22:13:26',0.00,1200.00,NULL,NULL,'a61d555a8bebc9d0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (43,75,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'efd306f67ad5f834',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (44,25,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'d24654c8f6afee6f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (45,154,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'f42a0c995a0dfa46',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (46,184,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'1dddf6b9a5a0e740',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (47,89,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'1eecbfb5ef4f8715',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (48,201,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'1abef002ff427b8e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (49,56,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'f81ac84e4e777c2a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (50,181,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'6563e6bb939d6815',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (51,99,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'a41c92b9a62af6d5',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (52,95,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'71dd87351aad1712',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (53,165,2,NULL,1,'2025-02-11 22:13:26',0.00,1200.00,NULL,NULL,'d6684678c47f3934',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (54,153,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'62d869218acc3ce7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (55,105,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'a1ab0f23954a34e4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (56,55,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'4eb5e109c3aa79b8',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (57,102,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'564973fbdb997d45',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (58,92,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'ffb87d6eb34fbd75',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (59,178,2,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'c2372ee7bd36001c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (60,146,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'0e861003a435ee28',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (61,169,2,NULL,1,'2025-02-11 22:13:26',0.00,100.00,NULL,NULL,'c24e97d93ba4498e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (63,3,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'7c92a74924b026cd',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (64,189,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'aa7ede7f8455bea6',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (65,52,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'72b521b51f698467',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (66,56,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'0a1d8985492d0b94',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (67,199,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'e7cb020295aebca0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (68,21,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'eda007a083e0c108',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (69,105,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'b958722085101e34',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (70,48,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'a5517145b7bbd0fa',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (71,139,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'b16951c206b2d715',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (72,143,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'1ddb19aacef50f10',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (73,125,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'064090d0dd7c4ce3',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (74,45,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'9ecd1390252cdfb6',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (75,73,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'e25cf10daba83aaf',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (76,99,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'b33fe922f9126e56',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (77,54,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'6b880fd6e48041db',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (78,162,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'006e20a0bde3e413',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (79,144,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'44f36505f2e5e785',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (80,172,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'f3aa8925c13437be',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (81,90,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'2ebc18d00063923b',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (82,95,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'af8ccc24f8e82650',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (83,157,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'ad093b7ee66109cf',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (84,175,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'eece76bb3493f803',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (85,27,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'6a2e85a40d2bd598',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (86,100,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'77c7823a4c56f38f',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (87,37,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'2d5e2a0d7d0b6324',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (88,146,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'bf4c161a4d2ab93e',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (89,118,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'a3cdbad45838e860',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (90,133,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'61947d43b815d52d',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (91,122,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'21c98e4810a62489',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (92,89,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'7585350f752dba61',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (93,91,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'f5e8f02ea53a3585',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (94,97,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'f2bb64062f1bb0de',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (95,197,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'fa751200e4dfe06d',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (96,106,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'1382ef86d8e53b6f',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (97,43,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'9b2b972f4d1b05a0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (98,108,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'89c00c10b5dfc35e',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (99,15,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'489785c0c67d4a0d',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (100,138,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'dc38b16096fa959a',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (101,130,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'61e523804495fa25',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (102,168,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'e067465980ab3264',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (103,78,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'5bbdf37e87686769',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (104,185,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'a819a18b5e10abe0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (105,134,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'d2c433953b1ba6d0',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (106,112,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'0eafa76f4f0e2716',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (107,107,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'413a07f521df22e8',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (108,79,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'eaa45aa1cc728904',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (109,76,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'b81d6ea62c501771',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (110,32,4,NULL,1,'2025-02-11 22:13:26',0.00,50.00,NULL,NULL,'9ecd5685981f418e',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (111,121,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'1cb59b9957da40bb',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0), + (112,113,4,NULL,1,'2025-02-11 22:13:26',0.00,800.00,NULL,NULL,'32dd719ff9388715',NULL,NULL,'USD',NULL,NULL,'2025-02-11 22:13:26',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,0.00,NULL,0); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -2335,9 +2327,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_page` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_page` DISABLE KEYS */; INSERT INTO `civicrm_contribution_page` (`id`, `title`, `frontend_title`, `name`, `intro_text`, `financial_type_id`, `payment_processor`, `is_credit_card_only`, `is_monetary`, `is_recur`, `is_confirm_enabled`, `recur_frequency_unit`, `is_recur_interval`, `is_recur_installments`, `adjust_recur_start_date`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_allow_other_amount`, `default_amount_id`, `min_amount`, `max_amount`, `goal_amount`, `thankyou_title`, `thankyou_text`, `thankyou_footer`, `is_email_receipt`, `receipt_from_name`, `receipt_from_email`, `cc_receipt`, `bcc_receipt`, `receipt_text`, `is_active`, `footer_text`, `amount_block_is_active`, `start_date`, `end_date`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_billing_required`) VALUES - (1,'Donate page','Help Support CiviCRM!','donate','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Contribute NOW by trying out our new online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,137,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about CiviCRM!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0), -(2,'Membership page','Member Signup and Renewal','membership','Members are the life-blood of our organization. If you\'re not already a member - please consider signing up today. You can select the membership level the fits your budget and needs below.',2,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Thanks for Your Support!','Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.',NULL,1,'Membership Department','memberships@civicrm.org',NULL,NULL,'Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.\r\n\r\nKeep this receipt for your records.',1,NULL,0,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0), -(3,'Pledge page','Pledge for CiviCRM!','pledge','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Pledge NOW by trying out our online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,NULL,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools like Pledge.

Please tell your friends and colleagues about CiviPledge!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 21:13:43','USD',NULL,1,0); + (1,'Donate page','Help Support CiviCRM!','donate','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Contribute NOW by trying out our new online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,137,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about CiviCRM!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 22:13:17','USD',NULL,1,0), + (2,'Membership page','Member Signup and Renewal','membership','Members are the life-blood of our organization. If you\'re not already a member - please consider signing up today. You can select the membership level the fits your budget and needs below.',2,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Thanks for Your Support!','Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.',NULL,1,'Membership Department','memberships@civicrm.org',NULL,NULL,'Thanks for supporting our organization with your membership. You can learn more about membership benefits from our members only page.\r\n\r\nKeep this receipt for your records.',1,NULL,0,NULL,NULL,NULL,'2025-02-11 22:13:17','USD',NULL,1,0), + (3,'Pledge page','Pledge for CiviCRM!','pledge','Do you love CiviCRM? Do you use CiviCRM? Then please support CiviCRM and Pledge NOW by trying out our online contribution features!',1,NULL,0,1,0,1,NULL,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,1,NULL,10.00,10000.00,100000.00,'Thanks for Your Support!','

Thank you for your support. Your contribution will help us build even better tools like Pledge.

Please tell your friends and colleagues about CiviPledge!

','

Back to CiviCRM Home Page

',1,'CiviCRM Fundraising Dept.','donationFake@civicrm.org','receipt@example.com','bcc@example.com','Your donation is tax deductible under IRS 501(c)(3) regulation. Our tax identification number is: 93-123-4567',1,NULL,1,NULL,NULL,NULL,'2025-02-11 22:13:17','USD',NULL,1,0); /*!40000 ALTER TABLE `civicrm_contribution_page` ENABLE KEYS */; UNLOCK TABLES; @@ -2357,9 +2349,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_recur` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_recur` DISABLE KEYS */; INSERT INTO `civicrm_contribution_recur` (`id`, `contact_id`, `amount`, `currency`, `frequency_unit`, `frequency_interval`, `installments`, `start_date`, `create_date`, `modified_date`, `cancel_date`, `cancel_reason`, `end_date`, `processor_id`, `payment_token_id`, `trxn_id`, `invoice_id`, `contribution_status_id`, `is_test`, `cycle_day`, `next_sched_contribution_date`, `failure_count`, `failure_retry_date`, `auto_renew`, `payment_processor_id`, `financial_type_id`, `payment_instrument_id`, `campaign_id`, `is_email_receipt`) VALUES - (1,59,25.00,'USD','month',1,12,'2023-11-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), -(2,99,10.00,'CAD','month',1,6,'2024-06-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13','2025-01-11 21:14:13','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), -(3,103,5.00,'EUR','month',3,3,'2025-01-11 21:14:13','2025-02-11 21:14:13','2025-02-11 21:14:13',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2025-04-11 21:14:13',0,NULL,0,1,NULL,NULL,NULL,1); + (1,59,25.00,'USD','month',1,12,'2023-11-11 22:13:25','2025-02-11 22:13:25','2025-02-11 22:13:25',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (2,99,10.00,'CAD','month',1,6,'2024-06-11 22:13:25','2025-02-11 22:13:25','2025-02-11 22:13:25','2025-01-11 22:13:25','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (3,103,5.00,'EUR','month',3,3,'2025-01-11 22:13:25','2025-02-11 22:13:25','2025-02-11 22:13:25',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2025-04-11 22:13:25',0,NULL,0,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_contribution_recur` ENABLE KEYS */; UNLOCK TABLES; @@ -2370,8 +2362,8 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_soft` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */; INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES - (1,9,123,10.00,'USD',1,1,'Jones Family','Helping Hands',10), -(2,10,123,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); + (1,9,50,10.00,'USD',1,1,'Jones Family','Helping Hands',10), + (2,10,50,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -2392,255 +2384,255 @@ LOCK TABLES `civicrm_country` WRITE; /*!40000 ALTER TABLE `civicrm_country` DISABLE KEYS */; INSERT INTO `civicrm_country` (`id`, `name`, `iso_code`, `country_code`, `address_format_id`, `idd_prefix`, `ndd_prefix`, `region_id`, `is_province_abbreviated`, `is_active`) VALUES (1001,'Afghanistan','AF',NULL,NULL,NULL,NULL,4,0,1), -(1002,'Albania','AL',NULL,NULL,NULL,NULL,1,0,1), -(1003,'Algeria','DZ',NULL,NULL,NULL,NULL,3,0,1), -(1004,'American Samoa','AS',NULL,NULL,NULL,NULL,2,0,1), -(1005,'Andorra','AD',NULL,NULL,NULL,NULL,1,0,1), -(1006,'Angola','AO',NULL,NULL,NULL,NULL,5,0,1), -(1007,'Anguilla','AI',NULL,NULL,NULL,NULL,2,0,1), -(1008,'Antarctica','AQ',NULL,NULL,NULL,NULL,1,0,1), -(1009,'Antigua and Barbuda','AG',NULL,NULL,NULL,NULL,2,0,1), -(1010,'Argentina','AR',NULL,NULL,NULL,NULL,2,0,1), -(1011,'Armenia','AM',NULL,NULL,NULL,NULL,1,0,1), -(1012,'Aruba','AW',NULL,NULL,NULL,NULL,2,0,1), -(1013,'Australia','AU',NULL,NULL,NULL,NULL,4,0,1), -(1014,'Austria','AT',NULL,NULL,NULL,NULL,1,0,1), -(1015,'Azerbaijan','AZ',NULL,NULL,NULL,NULL,1,0,1), -(1016,'Bahrain','BH',NULL,NULL,NULL,NULL,3,0,1), -(1017,'Bangladesh','BD',NULL,NULL,NULL,NULL,4,0,1), -(1018,'Barbados','BB',NULL,NULL,NULL,NULL,4,0,1), -(1019,'Belarus','BY',NULL,NULL,NULL,NULL,1,0,1), -(1020,'Belgium','BE',NULL,NULL,NULL,NULL,1,0,1), -(1021,'Belize','BZ',NULL,NULL,NULL,NULL,2,0,1), -(1022,'Benin','BJ',NULL,NULL,NULL,NULL,5,0,1), -(1023,'Bermuda','BM',NULL,NULL,NULL,NULL,2,0,1), -(1024,'Bhutan','BT',NULL,NULL,NULL,NULL,4,0,1), -(1025,'Bolivia','BO',NULL,NULL,NULL,NULL,2,0,1), -(1026,'Bosnia and Herzegovina','BA',NULL,NULL,NULL,NULL,1,0,1), -(1027,'Botswana','BW',NULL,NULL,NULL,NULL,5,0,1), -(1028,'Bouvet Island','BV',NULL,NULL,NULL,NULL,1,0,1), -(1029,'Brazil','BR',NULL,NULL,NULL,NULL,2,0,1), -(1030,'British Indian Ocean Territory','IO',NULL,NULL,NULL,NULL,4,0,1), -(1031,'Virgin Islands, British','VG',NULL,NULL,NULL,NULL,2,0,1), -(1032,'Brunei Darussalam','BN',NULL,NULL,NULL,NULL,4,0,1), -(1033,'Bulgaria','BG',NULL,NULL,NULL,NULL,1,0,1), -(1034,'Burkina Faso','BF',NULL,NULL,NULL,NULL,5,0,1), -(1035,'Myanmar','MM',NULL,NULL,NULL,NULL,4,0,1), -(1036,'Burundi','BI',NULL,NULL,NULL,NULL,5,0,1), -(1037,'Cambodia','KH',NULL,NULL,NULL,NULL,4,0,1), -(1038,'Cameroon','CM',NULL,NULL,NULL,NULL,5,0,1), -(1039,'Canada','CA',NULL,NULL,NULL,NULL,2,1,1), -(1040,'Cape Verde','CV',NULL,NULL,NULL,NULL,5,0,1), -(1041,'Cayman Islands','KY',NULL,NULL,NULL,NULL,5,0,1), -(1042,'Central African Republic','CF',NULL,NULL,NULL,NULL,5,0,1), -(1043,'Chad','TD',NULL,NULL,NULL,NULL,5,0,1), -(1044,'Chile','CL',NULL,NULL,NULL,NULL,2,0,1), -(1045,'China','CN',NULL,NULL,NULL,NULL,4,0,1), -(1046,'Christmas Island','CX',NULL,NULL,NULL,NULL,4,0,1), -(1047,'Cocos (Keeling) Islands','CC',NULL,NULL,NULL,NULL,4,0,1), -(1048,'Colombia','CO',NULL,NULL,NULL,NULL,2,0,1), -(1049,'Comoros','KM',NULL,NULL,NULL,NULL,5,0,1), -(1050,'Congo, The Democratic Republic of the','CD',NULL,NULL,NULL,NULL,5,0,1), -(1051,'Congo, Republic of the','CG',NULL,NULL,NULL,NULL,5,0,1), -(1052,'Cook Islands','CK',NULL,NULL,NULL,NULL,4,0,1), -(1053,'Costa Rica','CR',NULL,NULL,NULL,NULL,2,0,1), -(1054,'Côte d’Ivoire','CI',NULL,NULL,NULL,NULL,5,0,1), -(1055,'Croatia','HR',NULL,NULL,NULL,NULL,1,0,1), -(1056,'Cuba','CU',NULL,NULL,NULL,NULL,2,0,1), -(1057,'Cyprus','CY',NULL,NULL,NULL,NULL,1,0,1), -(1058,'Czech Republic','CZ',NULL,NULL,NULL,NULL,1,0,1), -(1059,'Denmark','DK',NULL,NULL,NULL,NULL,1,0,1), -(1060,'Djibouti','DJ',NULL,NULL,NULL,NULL,5,0,1), -(1061,'Dominica','DM',NULL,NULL,NULL,NULL,2,0,1), -(1062,'Dominican Republic','DO',NULL,NULL,NULL,NULL,2,0,1), -(1063,'Timor-Leste','TL',NULL,NULL,NULL,NULL,4,0,1), -(1064,'Ecuador','EC',NULL,NULL,NULL,NULL,2,0,1), -(1065,'Egypt','EG',NULL,NULL,NULL,NULL,3,0,1), -(1066,'El Salvador','SV',NULL,NULL,NULL,NULL,2,0,1), -(1067,'Equatorial Guinea','GQ',NULL,NULL,NULL,NULL,5,0,1), -(1068,'Eritrea','ER',NULL,NULL,NULL,NULL,5,0,1), -(1069,'Estonia','EE',NULL,NULL,NULL,NULL,1,0,1), -(1070,'Ethiopia','ET',NULL,NULL,NULL,NULL,5,0,1), -(1072,'Falkland Islands (Malvinas)','FK',NULL,NULL,NULL,NULL,2,0,1), -(1073,'Faroe Islands','FO',NULL,NULL,NULL,NULL,1,0,1), -(1074,'Fiji','FJ',NULL,NULL,NULL,NULL,4,0,1), -(1075,'Finland','FI',NULL,NULL,NULL,NULL,1,0,1), -(1076,'France','FR',NULL,NULL,NULL,NULL,1,0,1), -(1077,'French Guiana','GF',NULL,NULL,NULL,NULL,2,0,1), -(1078,'French Polynesia','PF',NULL,NULL,NULL,NULL,4,0,1), -(1079,'French Southern Territories','TF',NULL,NULL,NULL,NULL,1,0,1), -(1080,'Gabon','GA',NULL,NULL,NULL,NULL,5,0,1), -(1081,'Georgia','GE',NULL,NULL,NULL,NULL,3,0,1), -(1082,'Germany','DE',NULL,NULL,NULL,NULL,1,0,1), -(1083,'Ghana','GH',NULL,NULL,NULL,NULL,5,0,1), -(1084,'Gibraltar','GI',NULL,NULL,NULL,NULL,1,0,1), -(1085,'Greece','GR',NULL,NULL,NULL,NULL,1,0,1), -(1086,'Greenland','GL',NULL,NULL,NULL,NULL,2,0,1), -(1087,'Grenada','GD',NULL,NULL,NULL,NULL,2,0,1), -(1088,'Guadeloupe','GP',NULL,NULL,NULL,NULL,2,0,1), -(1089,'Guam','GU',NULL,NULL,NULL,NULL,4,0,1), -(1090,'Guatemala','GT',NULL,NULL,NULL,NULL,2,0,1), -(1091,'Guinea','GN',NULL,NULL,NULL,NULL,5,0,1), -(1092,'Guinea-Bissau','GW',NULL,NULL,NULL,NULL,5,0,1), -(1093,'Guyana','GY',NULL,NULL,NULL,NULL,2,0,1), -(1094,'Haiti','HT',NULL,NULL,NULL,NULL,2,0,1), -(1095,'Heard Island and McDonald Islands','HM',NULL,NULL,NULL,NULL,4,0,1), -(1096,'Holy See (Vatican City State)','VA',NULL,NULL,NULL,NULL,1,0,1), -(1097,'Honduras','HN',NULL,NULL,NULL,NULL,2,0,1), -(1098,'Hong Kong','HK',NULL,NULL,NULL,NULL,4,0,1), -(1099,'Hungary','HU',NULL,NULL,NULL,NULL,1,0,1), -(1100,'Iceland','IS',NULL,NULL,NULL,NULL,1,0,1), -(1101,'India','IN',NULL,NULL,NULL,NULL,4,0,1), -(1102,'Indonesia','ID',NULL,NULL,NULL,NULL,4,0,1), -(1103,'Iran, Islamic Republic of','IR',NULL,NULL,NULL,NULL,3,0,1), -(1104,'Iraq','IQ',NULL,NULL,NULL,NULL,3,0,1), -(1105,'Ireland','IE',NULL,NULL,NULL,NULL,1,0,1), -(1106,'Israel','IL',NULL,NULL,NULL,NULL,3,0,1), -(1107,'Italy','IT',NULL,NULL,NULL,NULL,1,0,1), -(1108,'Jamaica','JM',NULL,NULL,NULL,NULL,2,0,1), -(1109,'Japan','JP',NULL,NULL,NULL,NULL,4,0,1), -(1110,'Jordan','JO',NULL,NULL,NULL,NULL,3,0,1), -(1111,'Kazakhstan','KZ',NULL,NULL,NULL,NULL,1,0,1), -(1112,'Kenya','KE',NULL,NULL,NULL,NULL,5,0,1), -(1113,'Kiribati','KI',NULL,NULL,NULL,NULL,4,0,1), -(1114,'Korea, Democratic People\'s Republic of','KP',NULL,NULL,NULL,NULL,4,0,1), -(1115,'Korea, Republic of','KR',NULL,NULL,NULL,NULL,4,0,1), -(1116,'Kuwait','KW',NULL,NULL,NULL,NULL,3,0,1), -(1117,'Kyrgyzstan','KG',NULL,NULL,NULL,NULL,1,0,1), -(1118,'Lao People\'s Democratic Republic','LA',NULL,NULL,NULL,NULL,4,0,1), -(1119,'Latvia','LV',NULL,NULL,NULL,NULL,1,0,1), -(1120,'Lebanon','LB',NULL,NULL,NULL,NULL,3,0,1), -(1121,'Lesotho','LS',NULL,NULL,NULL,NULL,5,0,1), -(1122,'Liberia','LR',NULL,NULL,NULL,NULL,5,0,1), -(1123,'Libya','LY',NULL,NULL,NULL,NULL,3,0,1), -(1124,'Liechtenstein','LI',NULL,NULL,NULL,NULL,1,0,1), -(1125,'Lithuania','LT',NULL,NULL,NULL,NULL,1,0,1), -(1126,'Luxembourg','LU',NULL,NULL,NULL,NULL,1,0,1), -(1127,'Macao','MO',NULL,NULL,NULL,NULL,4,0,1), -(1128,'North Macedonia','MK',NULL,NULL,NULL,NULL,1,0,1), -(1129,'Madagascar','MG',NULL,NULL,NULL,NULL,5,0,1), -(1130,'Malawi','MW',NULL,NULL,NULL,NULL,5,0,1), -(1131,'Malaysia','MY',NULL,NULL,NULL,NULL,4,0,1), -(1132,'Maldives','MV',NULL,NULL,NULL,NULL,4,0,1), -(1133,'Mali','ML',NULL,NULL,NULL,NULL,5,0,1), -(1134,'Malta','MT',NULL,NULL,NULL,NULL,1,0,1), -(1135,'Marshall Islands','MH',NULL,NULL,NULL,NULL,4,0,1), -(1136,'Martinique','MQ',NULL,NULL,NULL,NULL,2,0,1), -(1137,'Mauritania','MR',NULL,NULL,NULL,NULL,5,0,1), -(1138,'Mauritius','MU',NULL,NULL,NULL,NULL,5,0,1), -(1139,'Mayotte','YT',NULL,NULL,NULL,NULL,5,0,1), -(1140,'Mexico','MX',NULL,NULL,NULL,NULL,2,0,1), -(1141,'Micronesia, Federated States of','FM',NULL,NULL,NULL,NULL,4,0,1), -(1142,'Moldova','MD',NULL,NULL,NULL,NULL,1,0,1), -(1143,'Monaco','MC',NULL,NULL,NULL,NULL,1,0,1), -(1144,'Mongolia','MN',NULL,NULL,NULL,NULL,4,0,1), -(1145,'Montserrat','MS',NULL,NULL,NULL,NULL,2,0,1), -(1146,'Morocco','MA',NULL,NULL,NULL,NULL,3,0,1), -(1147,'Mozambique','MZ',NULL,NULL,NULL,NULL,5,0,1), -(1148,'Namibia','NA',NULL,NULL,NULL,NULL,5,0,1), -(1149,'Nauru','NR',NULL,NULL,NULL,NULL,4,0,1), -(1150,'Nepal','NP',NULL,NULL,NULL,NULL,4,0,1), -(1152,'Netherlands','NL',NULL,NULL,NULL,NULL,1,0,1), -(1153,'New Caledonia','NC',NULL,NULL,NULL,NULL,4,0,1), -(1154,'New Zealand','NZ',NULL,NULL,NULL,NULL,4,0,1), -(1155,'Nicaragua','NI',NULL,NULL,NULL,NULL,2,0,1), -(1156,'Niger','NE',NULL,NULL,NULL,NULL,5,0,1), -(1157,'Nigeria','NG',NULL,NULL,NULL,NULL,5,0,1), -(1158,'Niue','NU',NULL,NULL,NULL,NULL,4,0,1), -(1159,'Norfolk Island','NF',NULL,NULL,NULL,NULL,4,0,1), -(1160,'Northern Mariana Islands','MP',NULL,NULL,NULL,NULL,2,0,1), -(1161,'Norway','NO',NULL,NULL,NULL,NULL,1,0,1), -(1162,'Oman','OM',NULL,NULL,NULL,NULL,3,0,1), -(1163,'Pakistan','PK',NULL,NULL,NULL,NULL,4,0,1), -(1164,'Palau','PW',NULL,NULL,NULL,NULL,4,0,1), -(1165,'Palestine, State of','PS',NULL,NULL,NULL,NULL,3,0,1), -(1166,'Panama','PA',NULL,NULL,NULL,NULL,2,0,1), -(1167,'Papua New Guinea','PG',NULL,NULL,NULL,NULL,4,0,1), -(1168,'Paraguay','PY',NULL,NULL,NULL,NULL,2,0,1), -(1169,'Peru','PE',NULL,NULL,NULL,NULL,2,0,1), -(1170,'Philippines','PH',NULL,NULL,NULL,NULL,4,0,1), -(1171,'Pitcairn','PN',NULL,NULL,NULL,NULL,4,0,1), -(1172,'Poland','PL',NULL,NULL,NULL,NULL,1,0,1), -(1173,'Portugal','PT',NULL,NULL,NULL,NULL,1,0,1), -(1174,'Puerto Rico','PR',NULL,NULL,NULL,NULL,2,0,1), -(1175,'Qatar','QA',NULL,NULL,NULL,NULL,3,0,1), -(1176,'Romania','RO',NULL,NULL,NULL,NULL,1,0,1), -(1177,'Russian Federation','RU',NULL,NULL,NULL,NULL,1,0,1), -(1178,'Rwanda','RW',NULL,NULL,NULL,NULL,5,0,1), -(1179,'Reunion','RE',NULL,NULL,NULL,NULL,5,0,1), -(1180,'Saint Helena','SH',NULL,NULL,NULL,NULL,5,0,1), -(1181,'Saint Kitts and Nevis','KN',NULL,NULL,NULL,NULL,2,0,1), -(1182,'Saint Lucia','LC',NULL,NULL,NULL,NULL,2,0,1), -(1183,'Saint Pierre and Miquelon','PM',NULL,NULL,NULL,NULL,2,0,1), -(1184,'Saint Vincent and the Grenadines','VC',NULL,NULL,NULL,NULL,2,0,1), -(1185,'Samoa','WS',NULL,NULL,NULL,NULL,4,0,1), -(1186,'San Marino','SM',NULL,NULL,NULL,NULL,1,0,1), -(1187,'Saudi Arabia','SA',NULL,NULL,NULL,NULL,3,0,1), -(1188,'Senegal','SN',NULL,NULL,NULL,NULL,5,0,1), -(1189,'Seychelles','SC',NULL,NULL,NULL,NULL,5,0,1), -(1190,'Sierra Leone','SL',NULL,NULL,NULL,NULL,5,0,1), -(1191,'Singapore','SG',NULL,NULL,NULL,NULL,4,0,1), -(1192,'Slovakia','SK',NULL,NULL,NULL,NULL,1,0,1), -(1193,'Slovenia','SI',NULL,NULL,NULL,NULL,1,0,1), -(1194,'Solomon Islands','SB',NULL,NULL,NULL,NULL,4,0,1), -(1195,'Somalia','SO',NULL,NULL,NULL,NULL,5,0,1), -(1196,'South Africa','ZA',NULL,NULL,NULL,NULL,5,0,1), -(1197,'South Georgia and the South Sandwich Islands','GS',NULL,NULL,NULL,NULL,2,0,1), -(1198,'Spain','ES',NULL,NULL,NULL,NULL,1,0,1), -(1199,'Sri Lanka','LK',NULL,NULL,NULL,NULL,4,0,1), -(1200,'Sudan','SD',NULL,NULL,NULL,NULL,3,0,1), -(1201,'Suriname','SR',NULL,NULL,NULL,NULL,2,0,1), -(1202,'Svalbard and Jan Mayen','SJ',NULL,NULL,NULL,NULL,1,0,1), -(1203,'Eswatini','SZ',NULL,NULL,NULL,NULL,5,0,1), -(1204,'Sweden','SE',NULL,NULL,NULL,NULL,1,0,1), -(1205,'Switzerland','CH',NULL,NULL,NULL,NULL,1,0,1), -(1206,'Syrian Arab Republic','SY',NULL,NULL,NULL,NULL,3,0,1), -(1207,'Sao Tome and Principe','ST',NULL,NULL,NULL,NULL,5,0,1), -(1208,'Taiwan','TW',NULL,NULL,NULL,NULL,4,0,1), -(1209,'Tajikistan','TJ',NULL,NULL,NULL,NULL,3,0,1), -(1210,'Tanzania, United Republic of','TZ',NULL,NULL,NULL,NULL,5,0,1), -(1211,'Thailand','TH',NULL,NULL,NULL,NULL,4,0,1), -(1212,'Bahamas','BS',NULL,NULL,NULL,NULL,2,0,1), -(1213,'Gambia','GM',NULL,NULL,NULL,NULL,5,0,1), -(1214,'Togo','TG',NULL,NULL,NULL,NULL,5,0,1), -(1215,'Tokelau','TK',NULL,NULL,NULL,NULL,4,0,1), -(1216,'Tonga','TO',NULL,NULL,NULL,NULL,4,0,1), -(1217,'Trinidad and Tobago','TT',NULL,NULL,NULL,NULL,2,0,1), -(1218,'Tunisia','TN',NULL,NULL,NULL,NULL,3,0,1), -(1219,'Turkey','TR',NULL,NULL,NULL,NULL,1,0,1), -(1220,'Turkmenistan','TM',NULL,NULL,NULL,NULL,1,0,1), -(1221,'Turks and Caicos Islands','TC',NULL,NULL,NULL,NULL,2,0,1), -(1222,'Tuvalu','TV',NULL,NULL,NULL,NULL,4,0,1), -(1223,'Uganda','UG',NULL,NULL,NULL,NULL,5,0,1), -(1224,'Ukraine','UA',NULL,NULL,NULL,NULL,1,0,1), -(1225,'United Arab Emirates','AE',NULL,NULL,NULL,NULL,3,0,1), -(1226,'United Kingdom','GB',NULL,NULL,NULL,NULL,1,0,1), -(1227,'United States Minor Outlying Islands','UM',NULL,NULL,NULL,NULL,2,0,1), -(1228,'United States','US',NULL,NULL,NULL,NULL,2,1,1), -(1229,'Uruguay','UY',NULL,NULL,NULL,NULL,2,0,1), -(1230,'Uzbekistan','UZ',NULL,NULL,NULL,NULL,1,0,1), -(1231,'Vanuatu','VU',NULL,NULL,NULL,NULL,4,0,1), -(1232,'Venezuela','VE',NULL,NULL,NULL,NULL,2,0,1), -(1233,'Viet Nam','VN',NULL,NULL,NULL,NULL,4,0,1), -(1234,'Virgin Islands, U.S.','VI',NULL,NULL,NULL,NULL,2,0,1), -(1235,'Wallis and Futuna','WF',NULL,NULL,NULL,NULL,4,0,1), -(1236,'Western Sahara','EH',NULL,NULL,NULL,NULL,3,0,1), -(1237,'Yemen','YE',NULL,NULL,NULL,NULL,3,0,1), -(1239,'Zambia','ZM',NULL,NULL,NULL,NULL,5,0,1), -(1240,'Zimbabwe','ZW',NULL,NULL,NULL,NULL,5,0,1), -(1241,'Åland Islands','AX',NULL,NULL,NULL,NULL,1,0,1), -(1242,'Serbia','RS',NULL,NULL,NULL,NULL,1,0,1), -(1243,'Montenegro','ME',NULL,NULL,NULL,NULL,1,0,1), -(1244,'Jersey','JE',NULL,NULL,NULL,NULL,99,0,1), -(1245,'Guernsey','GG',NULL,NULL,NULL,NULL,99,0,1), -(1246,'Isle of Man','IM',NULL,NULL,NULL,NULL,99,0,1), -(1247,'South Sudan','SS',NULL,NULL,NULL,NULL,5,0,1), -(1248,'Curaçao','CW',NULL,NULL,NULL,NULL,2,0,1), -(1249,'Sint Maarten (Dutch Part)','SX',NULL,NULL,NULL,NULL,2,0,1), -(1250,'Bonaire, Saint Eustatius and Saba','BQ',NULL,NULL,NULL,NULL,2,0,1), -(1251,'Kosovo','XK',NULL,NULL,NULL,NULL,1,0,1), -(1252,'Saint Barthélemy','BL',NULL,NULL,NULL,NULL,2,0,1), -(1253,'Saint Martin (French part)','MF',NULL,NULL,NULL,NULL,2,0,1); + (1002,'Albania','AL',NULL,NULL,NULL,NULL,1,0,1), + (1003,'Algeria','DZ',NULL,NULL,NULL,NULL,3,0,1), + (1004,'American Samoa','AS',NULL,NULL,NULL,NULL,2,0,1), + (1005,'Andorra','AD',NULL,NULL,NULL,NULL,1,0,1), + (1006,'Angola','AO',NULL,NULL,NULL,NULL,5,0,1), + (1007,'Anguilla','AI',NULL,NULL,NULL,NULL,2,0,1), + (1008,'Antarctica','AQ',NULL,NULL,NULL,NULL,1,0,1), + (1009,'Antigua and Barbuda','AG',NULL,NULL,NULL,NULL,2,0,1), + (1010,'Argentina','AR',NULL,NULL,NULL,NULL,2,0,1), + (1011,'Armenia','AM',NULL,NULL,NULL,NULL,1,0,1), + (1012,'Aruba','AW',NULL,NULL,NULL,NULL,2,0,1), + (1013,'Australia','AU',NULL,NULL,NULL,NULL,4,0,1), + (1014,'Austria','AT',NULL,NULL,NULL,NULL,1,0,1), + (1015,'Azerbaijan','AZ',NULL,NULL,NULL,NULL,1,0,1), + (1016,'Bahrain','BH',NULL,NULL,NULL,NULL,3,0,1), + (1017,'Bangladesh','BD',NULL,NULL,NULL,NULL,4,0,1), + (1018,'Barbados','BB',NULL,NULL,NULL,NULL,4,0,1), + (1019,'Belarus','BY',NULL,NULL,NULL,NULL,1,0,1), + (1020,'Belgium','BE',NULL,NULL,NULL,NULL,1,0,1), + (1021,'Belize','BZ',NULL,NULL,NULL,NULL,2,0,1), + (1022,'Benin','BJ',NULL,NULL,NULL,NULL,5,0,1), + (1023,'Bermuda','BM',NULL,NULL,NULL,NULL,2,0,1), + (1024,'Bhutan','BT',NULL,NULL,NULL,NULL,4,0,1), + (1025,'Bolivia','BO',NULL,NULL,NULL,NULL,2,0,1), + (1026,'Bosnia and Herzegovina','BA',NULL,NULL,NULL,NULL,1,0,1), + (1027,'Botswana','BW',NULL,NULL,NULL,NULL,5,0,1), + (1028,'Bouvet Island','BV',NULL,NULL,NULL,NULL,1,0,1), + (1029,'Brazil','BR',NULL,NULL,NULL,NULL,2,0,1), + (1030,'British Indian Ocean Territory','IO',NULL,NULL,NULL,NULL,4,0,1), + (1031,'Virgin Islands, British','VG',NULL,NULL,NULL,NULL,2,0,1), + (1032,'Brunei Darussalam','BN',NULL,NULL,NULL,NULL,4,0,1), + (1033,'Bulgaria','BG',NULL,NULL,NULL,NULL,1,0,1), + (1034,'Burkina Faso','BF',NULL,NULL,NULL,NULL,5,0,1), + (1035,'Myanmar','MM',NULL,NULL,NULL,NULL,4,0,1), + (1036,'Burundi','BI',NULL,NULL,NULL,NULL,5,0,1), + (1037,'Cambodia','KH',NULL,NULL,NULL,NULL,4,0,1), + (1038,'Cameroon','CM',NULL,NULL,NULL,NULL,5,0,1), + (1039,'Canada','CA',NULL,NULL,NULL,NULL,2,1,1), + (1040,'Cape Verde','CV',NULL,NULL,NULL,NULL,5,0,1), + (1041,'Cayman Islands','KY',NULL,NULL,NULL,NULL,5,0,1), + (1042,'Central African Republic','CF',NULL,NULL,NULL,NULL,5,0,1), + (1043,'Chad','TD',NULL,NULL,NULL,NULL,5,0,1), + (1044,'Chile','CL',NULL,NULL,NULL,NULL,2,0,1), + (1045,'China','CN',NULL,NULL,NULL,NULL,4,0,1), + (1046,'Christmas Island','CX',NULL,NULL,NULL,NULL,4,0,1), + (1047,'Cocos (Keeling) Islands','CC',NULL,NULL,NULL,NULL,4,0,1), + (1048,'Colombia','CO',NULL,NULL,NULL,NULL,2,0,1), + (1049,'Comoros','KM',NULL,NULL,NULL,NULL,5,0,1), + (1050,'Congo, The Democratic Republic of the','CD',NULL,NULL,NULL,NULL,5,0,1), + (1051,'Congo, Republic of the','CG',NULL,NULL,NULL,NULL,5,0,1), + (1052,'Cook Islands','CK',NULL,NULL,NULL,NULL,4,0,1), + (1053,'Costa Rica','CR',NULL,NULL,NULL,NULL,2,0,1), + (1054,'Côte d’Ivoire','CI',NULL,NULL,NULL,NULL,5,0,1), + (1055,'Croatia','HR',NULL,NULL,NULL,NULL,1,0,1), + (1056,'Cuba','CU',NULL,NULL,NULL,NULL,2,0,1), + (1057,'Cyprus','CY',NULL,NULL,NULL,NULL,1,0,1), + (1058,'Czech Republic','CZ',NULL,NULL,NULL,NULL,1,0,1), + (1059,'Denmark','DK',NULL,NULL,NULL,NULL,1,0,1), + (1060,'Djibouti','DJ',NULL,NULL,NULL,NULL,5,0,1), + (1061,'Dominica','DM',NULL,NULL,NULL,NULL,2,0,1), + (1062,'Dominican Republic','DO',NULL,NULL,NULL,NULL,2,0,1), + (1063,'Timor-Leste','TL',NULL,NULL,NULL,NULL,4,0,1), + (1064,'Ecuador','EC',NULL,NULL,NULL,NULL,2,0,1), + (1065,'Egypt','EG',NULL,NULL,NULL,NULL,3,0,1), + (1066,'El Salvador','SV',NULL,NULL,NULL,NULL,2,0,1), + (1067,'Equatorial Guinea','GQ',NULL,NULL,NULL,NULL,5,0,1), + (1068,'Eritrea','ER',NULL,NULL,NULL,NULL,5,0,1), + (1069,'Estonia','EE',NULL,NULL,NULL,NULL,1,0,1), + (1070,'Ethiopia','ET',NULL,NULL,NULL,NULL,5,0,1), + (1072,'Falkland Islands (Malvinas)','FK',NULL,NULL,NULL,NULL,2,0,1), + (1073,'Faroe Islands','FO',NULL,NULL,NULL,NULL,1,0,1), + (1074,'Fiji','FJ',NULL,NULL,NULL,NULL,4,0,1), + (1075,'Finland','FI',NULL,NULL,NULL,NULL,1,0,1), + (1076,'France','FR',NULL,NULL,NULL,NULL,1,0,1), + (1077,'French Guiana','GF',NULL,NULL,NULL,NULL,2,0,1), + (1078,'French Polynesia','PF',NULL,NULL,NULL,NULL,4,0,1), + (1079,'French Southern Territories','TF',NULL,NULL,NULL,NULL,1,0,1), + (1080,'Gabon','GA',NULL,NULL,NULL,NULL,5,0,1), + (1081,'Georgia','GE',NULL,NULL,NULL,NULL,3,0,1), + (1082,'Germany','DE',NULL,NULL,NULL,NULL,1,0,1), + (1083,'Ghana','GH',NULL,NULL,NULL,NULL,5,0,1), + (1084,'Gibraltar','GI',NULL,NULL,NULL,NULL,1,0,1), + (1085,'Greece','GR',NULL,NULL,NULL,NULL,1,0,1), + (1086,'Greenland','GL',NULL,NULL,NULL,NULL,2,0,1), + (1087,'Grenada','GD',NULL,NULL,NULL,NULL,2,0,1), + (1088,'Guadeloupe','GP',NULL,NULL,NULL,NULL,2,0,1), + (1089,'Guam','GU',NULL,NULL,NULL,NULL,4,0,1), + (1090,'Guatemala','GT',NULL,NULL,NULL,NULL,2,0,1), + (1091,'Guinea','GN',NULL,NULL,NULL,NULL,5,0,1), + (1092,'Guinea-Bissau','GW',NULL,NULL,NULL,NULL,5,0,1), + (1093,'Guyana','GY',NULL,NULL,NULL,NULL,2,0,1), + (1094,'Haiti','HT',NULL,NULL,NULL,NULL,2,0,1), + (1095,'Heard Island and McDonald Islands','HM',NULL,NULL,NULL,NULL,4,0,1), + (1096,'Holy See (Vatican City State)','VA',NULL,NULL,NULL,NULL,1,0,1), + (1097,'Honduras','HN',NULL,NULL,NULL,NULL,2,0,1), + (1098,'Hong Kong','HK',NULL,NULL,NULL,NULL,4,0,1), + (1099,'Hungary','HU',NULL,NULL,NULL,NULL,1,0,1), + (1100,'Iceland','IS',NULL,NULL,NULL,NULL,1,0,1), + (1101,'India','IN',NULL,NULL,NULL,NULL,4,0,1), + (1102,'Indonesia','ID',NULL,NULL,NULL,NULL,4,0,1), + (1103,'Iran, Islamic Republic of','IR',NULL,NULL,NULL,NULL,3,0,1), + (1104,'Iraq','IQ',NULL,NULL,NULL,NULL,3,0,1), + (1105,'Ireland','IE',NULL,NULL,NULL,NULL,1,0,1), + (1106,'Israel','IL',NULL,NULL,NULL,NULL,3,0,1), + (1107,'Italy','IT',NULL,NULL,NULL,NULL,1,0,1), + (1108,'Jamaica','JM',NULL,NULL,NULL,NULL,2,0,1), + (1109,'Japan','JP',NULL,NULL,NULL,NULL,4,0,1), + (1110,'Jordan','JO',NULL,NULL,NULL,NULL,3,0,1), + (1111,'Kazakhstan','KZ',NULL,NULL,NULL,NULL,1,0,1), + (1112,'Kenya','KE',NULL,NULL,NULL,NULL,5,0,1), + (1113,'Kiribati','KI',NULL,NULL,NULL,NULL,4,0,1), + (1114,'Korea, Democratic People\'s Republic of','KP',NULL,NULL,NULL,NULL,4,0,1), + (1115,'Korea, Republic of','KR',NULL,NULL,NULL,NULL,4,0,1), + (1116,'Kuwait','KW',NULL,NULL,NULL,NULL,3,0,1), + (1117,'Kyrgyzstan','KG',NULL,NULL,NULL,NULL,1,0,1), + (1118,'Lao People\'s Democratic Republic','LA',NULL,NULL,NULL,NULL,4,0,1), + (1119,'Latvia','LV',NULL,NULL,NULL,NULL,1,0,1), + (1120,'Lebanon','LB',NULL,NULL,NULL,NULL,3,0,1), + (1121,'Lesotho','LS',NULL,NULL,NULL,NULL,5,0,1), + (1122,'Liberia','LR',NULL,NULL,NULL,NULL,5,0,1), + (1123,'Libya','LY',NULL,NULL,NULL,NULL,3,0,1), + (1124,'Liechtenstein','LI',NULL,NULL,NULL,NULL,1,0,1), + (1125,'Lithuania','LT',NULL,NULL,NULL,NULL,1,0,1), + (1126,'Luxembourg','LU',NULL,NULL,NULL,NULL,1,0,1), + (1127,'Macao','MO',NULL,NULL,NULL,NULL,4,0,1), + (1128,'North Macedonia','MK',NULL,NULL,NULL,NULL,1,0,1), + (1129,'Madagascar','MG',NULL,NULL,NULL,NULL,5,0,1), + (1130,'Malawi','MW',NULL,NULL,NULL,NULL,5,0,1), + (1131,'Malaysia','MY',NULL,NULL,NULL,NULL,4,0,1), + (1132,'Maldives','MV',NULL,NULL,NULL,NULL,4,0,1), + (1133,'Mali','ML',NULL,NULL,NULL,NULL,5,0,1), + (1134,'Malta','MT',NULL,NULL,NULL,NULL,1,0,1), + (1135,'Marshall Islands','MH',NULL,NULL,NULL,NULL,4,0,1), + (1136,'Martinique','MQ',NULL,NULL,NULL,NULL,2,0,1), + (1137,'Mauritania','MR',NULL,NULL,NULL,NULL,5,0,1), + (1138,'Mauritius','MU',NULL,NULL,NULL,NULL,5,0,1), + (1139,'Mayotte','YT',NULL,NULL,NULL,NULL,5,0,1), + (1140,'Mexico','MX',NULL,NULL,NULL,NULL,2,0,1), + (1141,'Micronesia, Federated States of','FM',NULL,NULL,NULL,NULL,4,0,1), + (1142,'Moldova','MD',NULL,NULL,NULL,NULL,1,0,1), + (1143,'Monaco','MC',NULL,NULL,NULL,NULL,1,0,1), + (1144,'Mongolia','MN',NULL,NULL,NULL,NULL,4,0,1), + (1145,'Montserrat','MS',NULL,NULL,NULL,NULL,2,0,1), + (1146,'Morocco','MA',NULL,NULL,NULL,NULL,3,0,1), + (1147,'Mozambique','MZ',NULL,NULL,NULL,NULL,5,0,1), + (1148,'Namibia','NA',NULL,NULL,NULL,NULL,5,0,1), + (1149,'Nauru','NR',NULL,NULL,NULL,NULL,4,0,1), + (1150,'Nepal','NP',NULL,NULL,NULL,NULL,4,0,1), + (1152,'Netherlands','NL',NULL,NULL,NULL,NULL,1,0,1), + (1153,'New Caledonia','NC',NULL,NULL,NULL,NULL,4,0,1), + (1154,'New Zealand','NZ',NULL,NULL,NULL,NULL,4,0,1), + (1155,'Nicaragua','NI',NULL,NULL,NULL,NULL,2,0,1), + (1156,'Niger','NE',NULL,NULL,NULL,NULL,5,0,1), + (1157,'Nigeria','NG',NULL,NULL,NULL,NULL,5,0,1), + (1158,'Niue','NU',NULL,NULL,NULL,NULL,4,0,1), + (1159,'Norfolk Island','NF',NULL,NULL,NULL,NULL,4,0,1), + (1160,'Northern Mariana Islands','MP',NULL,NULL,NULL,NULL,2,0,1), + (1161,'Norway','NO',NULL,NULL,NULL,NULL,1,0,1), + (1162,'Oman','OM',NULL,NULL,NULL,NULL,3,0,1), + (1163,'Pakistan','PK',NULL,NULL,NULL,NULL,4,0,1), + (1164,'Palau','PW',NULL,NULL,NULL,NULL,4,0,1), + (1165,'Palestine, State of','PS',NULL,NULL,NULL,NULL,3,0,1), + (1166,'Panama','PA',NULL,NULL,NULL,NULL,2,0,1), + (1167,'Papua New Guinea','PG',NULL,NULL,NULL,NULL,4,0,1), + (1168,'Paraguay','PY',NULL,NULL,NULL,NULL,2,0,1), + (1169,'Peru','PE',NULL,NULL,NULL,NULL,2,0,1), + (1170,'Philippines','PH',NULL,NULL,NULL,NULL,4,0,1), + (1171,'Pitcairn','PN',NULL,NULL,NULL,NULL,4,0,1), + (1172,'Poland','PL',NULL,NULL,NULL,NULL,1,0,1), + (1173,'Portugal','PT',NULL,NULL,NULL,NULL,1,0,1), + (1174,'Puerto Rico','PR',NULL,NULL,NULL,NULL,2,0,1), + (1175,'Qatar','QA',NULL,NULL,NULL,NULL,3,0,1), + (1176,'Romania','RO',NULL,NULL,NULL,NULL,1,0,1), + (1177,'Russian Federation','RU',NULL,NULL,NULL,NULL,1,0,1), + (1178,'Rwanda','RW',NULL,NULL,NULL,NULL,5,0,1), + (1179,'Reunion','RE',NULL,NULL,NULL,NULL,5,0,1), + (1180,'Saint Helena','SH',NULL,NULL,NULL,NULL,5,0,1), + (1181,'Saint Kitts and Nevis','KN',NULL,NULL,NULL,NULL,2,0,1), + (1182,'Saint Lucia','LC',NULL,NULL,NULL,NULL,2,0,1), + (1183,'Saint Pierre and Miquelon','PM',NULL,NULL,NULL,NULL,2,0,1), + (1184,'Saint Vincent and the Grenadines','VC',NULL,NULL,NULL,NULL,2,0,1), + (1185,'Samoa','WS',NULL,NULL,NULL,NULL,4,0,1), + (1186,'San Marino','SM',NULL,NULL,NULL,NULL,1,0,1), + (1187,'Saudi Arabia','SA',NULL,NULL,NULL,NULL,3,0,1), + (1188,'Senegal','SN',NULL,NULL,NULL,NULL,5,0,1), + (1189,'Seychelles','SC',NULL,NULL,NULL,NULL,5,0,1), + (1190,'Sierra Leone','SL',NULL,NULL,NULL,NULL,5,0,1), + (1191,'Singapore','SG',NULL,NULL,NULL,NULL,4,0,1), + (1192,'Slovakia','SK',NULL,NULL,NULL,NULL,1,0,1), + (1193,'Slovenia','SI',NULL,NULL,NULL,NULL,1,0,1), + (1194,'Solomon Islands','SB',NULL,NULL,NULL,NULL,4,0,1), + (1195,'Somalia','SO',NULL,NULL,NULL,NULL,5,0,1), + (1196,'South Africa','ZA',NULL,NULL,NULL,NULL,5,0,1), + (1197,'South Georgia and the South Sandwich Islands','GS',NULL,NULL,NULL,NULL,2,0,1), + (1198,'Spain','ES',NULL,NULL,NULL,NULL,1,0,1), + (1199,'Sri Lanka','LK',NULL,NULL,NULL,NULL,4,0,1), + (1200,'Sudan','SD',NULL,NULL,NULL,NULL,3,0,1), + (1201,'Suriname','SR',NULL,NULL,NULL,NULL,2,0,1), + (1202,'Svalbard and Jan Mayen','SJ',NULL,NULL,NULL,NULL,1,0,1), + (1203,'Eswatini','SZ',NULL,NULL,NULL,NULL,5,0,1), + (1204,'Sweden','SE',NULL,NULL,NULL,NULL,1,0,1), + (1205,'Switzerland','CH',NULL,NULL,NULL,NULL,1,0,1), + (1206,'Syrian Arab Republic','SY',NULL,NULL,NULL,NULL,3,0,1), + (1207,'Sao Tome and Principe','ST',NULL,NULL,NULL,NULL,5,0,1), + (1208,'Taiwan','TW',NULL,NULL,NULL,NULL,4,0,1), + (1209,'Tajikistan','TJ',NULL,NULL,NULL,NULL,3,0,1), + (1210,'Tanzania, United Republic of','TZ',NULL,NULL,NULL,NULL,5,0,1), + (1211,'Thailand','TH',NULL,NULL,NULL,NULL,4,0,1), + (1212,'Bahamas','BS',NULL,NULL,NULL,NULL,2,0,1), + (1213,'Gambia','GM',NULL,NULL,NULL,NULL,5,0,1), + (1214,'Togo','TG',NULL,NULL,NULL,NULL,5,0,1), + (1215,'Tokelau','TK',NULL,NULL,NULL,NULL,4,0,1), + (1216,'Tonga','TO',NULL,NULL,NULL,NULL,4,0,1), + (1217,'Trinidad and Tobago','TT',NULL,NULL,NULL,NULL,2,0,1), + (1218,'Tunisia','TN',NULL,NULL,NULL,NULL,3,0,1), + (1219,'Turkey','TR',NULL,NULL,NULL,NULL,1,0,1), + (1220,'Turkmenistan','TM',NULL,NULL,NULL,NULL,1,0,1), + (1221,'Turks and Caicos Islands','TC',NULL,NULL,NULL,NULL,2,0,1), + (1222,'Tuvalu','TV',NULL,NULL,NULL,NULL,4,0,1), + (1223,'Uganda','UG',NULL,NULL,NULL,NULL,5,0,1), + (1224,'Ukraine','UA',NULL,NULL,NULL,NULL,1,0,1), + (1225,'United Arab Emirates','AE',NULL,NULL,NULL,NULL,3,0,1), + (1226,'United Kingdom','GB',NULL,NULL,NULL,NULL,1,0,1), + (1227,'United States Minor Outlying Islands','UM',NULL,NULL,NULL,NULL,2,0,1), + (1228,'United States','US',NULL,NULL,NULL,NULL,2,1,1), + (1229,'Uruguay','UY',NULL,NULL,NULL,NULL,2,0,1), + (1230,'Uzbekistan','UZ',NULL,NULL,NULL,NULL,1,0,1), + (1231,'Vanuatu','VU',NULL,NULL,NULL,NULL,4,0,1), + (1232,'Venezuela','VE',NULL,NULL,NULL,NULL,2,0,1), + (1233,'Viet Nam','VN',NULL,NULL,NULL,NULL,4,0,1), + (1234,'Virgin Islands, U.S.','VI',NULL,NULL,NULL,NULL,2,0,1), + (1235,'Wallis and Futuna','WF',NULL,NULL,NULL,NULL,4,0,1), + (1236,'Western Sahara','EH',NULL,NULL,NULL,NULL,3,0,1), + (1237,'Yemen','YE',NULL,NULL,NULL,NULL,3,0,1), + (1239,'Zambia','ZM',NULL,NULL,NULL,NULL,5,0,1), + (1240,'Zimbabwe','ZW',NULL,NULL,NULL,NULL,5,0,1), + (1241,'Åland Islands','AX',NULL,NULL,NULL,NULL,1,0,1), + (1242,'Serbia','RS',NULL,NULL,NULL,NULL,1,0,1), + (1243,'Montenegro','ME',NULL,NULL,NULL,NULL,1,0,1), + (1244,'Jersey','JE',NULL,NULL,NULL,NULL,99,0,1), + (1245,'Guernsey','GG',NULL,NULL,NULL,NULL,99,0,1), + (1246,'Isle of Man','IM',NULL,NULL,NULL,NULL,99,0,1), + (1247,'South Sudan','SS',NULL,NULL,NULL,NULL,5,0,1), + (1248,'Curaçao','CW',NULL,NULL,NULL,NULL,2,0,1), + (1249,'Sint Maarten (Dutch Part)','SX',NULL,NULL,NULL,NULL,2,0,1), + (1250,'Bonaire, Saint Eustatius and Saba','BQ',NULL,NULL,NULL,NULL,2,0,1), + (1251,'Kosovo','XK',NULL,NULL,NULL,NULL,1,0,1), + (1252,'Saint Barthélemy','BL',NULL,NULL,NULL,NULL,2,0,1), + (1253,'Saint Martin (French part)','MF',NULL,NULL,NULL,NULL,2,0,1); /*!40000 ALTER TABLE `civicrm_country` ENABLE KEYS */; UNLOCK TABLES; @@ -2652,11 +2644,11 @@ LOCK TABLES `civicrm_county` WRITE; /*!40000 ALTER TABLE `civicrm_county` DISABLE KEYS */; INSERT INTO `civicrm_county` (`id`, `name`, `abbreviation`, `state_province_id`, `is_active`) VALUES (1,'Alameda',NULL,1004,1), -(2,'Contra Costa',NULL,1004,1), -(3,'Marin',NULL,1004,1), -(4,'San Francisco',NULL,1004,1), -(5,'San Mateo',NULL,1004,1), -(6,'Santa Clara',NULL,1004,1); + (2,'Contra Costa',NULL,1004,1), + (3,'Marin',NULL,1004,1), + (4,'San Francisco',NULL,1004,1), + (5,'San Mateo',NULL,1004,1), + (6,'Santa Clara',NULL,1004,1); /*!40000 ALTER TABLE `civicrm_county` ENABLE KEYS */; UNLOCK TABLES; @@ -2668,179 +2660,179 @@ LOCK TABLES `civicrm_currency` WRITE; /*!40000 ALTER TABLE `civicrm_currency` DISABLE KEYS */; INSERT INTO `civicrm_currency` (`id`, `name`, `symbol`, `numeric_code`, `full_name`) VALUES (1,'AUD','$','036','Australian Dollar'), -(2,'CAD','$','124','Canadian Dollar'), -(3,'EUR','€','978','Euro'), -(4,'GBP','£','826','Pound Sterling'), -(5,'ILS','₪','826','New Israeli Shekel'), -(6,'INR','₨','356','Indian Rupee'), -(7,'JPY','¥','392','Japanese Yen'), -(8,'KRW','₩','410','South Korean Won'), -(9,'LAK','₭','418','Lao Kip'), -(10,'MNT','₮','496','Mongolian Tugrik'), -(11,'NGN','₦','566','Nigerian Naira'), -(12,'PLN','zł','985','Polish Złoty'), -(13,'THB','฿','764','Thai Baht'), -(14,'USD','$','840','US Dollar'), -(15,'VND','₫','704','Viet Nam Dong'), -(16,'ZAR','R','710','South African Rand'), -(17,'AED',NULL,'784','UAE Dirham'), -(18,'AFN','؋','971','Afghani'), -(19,'ALL','Lek','008','Albanian Lek'), -(20,'AMD',NULL,'051','Armenian Dram'), -(21,'ANG','ƒ','532','Netherlands Antillian Guilder'), -(22,'AOA',NULL,'973','Angola Kwanza'), -(23,'ARS','$','032','Argentine Peso'), -(24,'AWG','ƒ','533','Aruban Guilder'), -(25,'AZN','ман','944','Azerbaijanian Manat'), -(26,'BAM','KM','977','Convertible Marks'), -(27,'BBD','$','052','Barbados Dollar'), -(28,'BDT',NULL,'050','Bangladeshi Taka'), -(29,'BGN','лв','975','Bulgarian Lev'), -(30,'BHD',NULL,'048','Bahraini Dinar'), -(31,'BIF',NULL,'108','Burundi Franc'), -(32,'BMD','$','060','Bermudian Dollar'), -(33,'BND','$','096','Brunei Dollar'), -(34,'BOB','$b','068','Boliviano'), -(35,'BOV',NULL,'984','Bolivian Mvdol'), -(36,'BRL','R$','986','Brazilian Real'), -(37,'BSD','$','044','Bahamian Dollar'), -(38,'BTN',NULL,'064','Bhutan Ngultrum'), -(39,'BWP','P','072','Botswana Pula'), -(40,'BYN','p.','974','Belarussian Rouble'), -(41,'BZD','BZ$','084','Belize Dollar'), -(42,'CDF',NULL,'976','Franc Congolais'), -(43,'CHE',NULL,'947','WIR Euro'), -(44,'CHF','CHF','756','Swiss Franc'), -(45,'CHW',NULL,'948','WIR Franc'), -(46,'CLF',NULL,'990','Unidades de fomento'), -(47,'CLP','$','152','Chilean Peso'), -(48,'CNY','元','156','Chinese Yuan Renminbi'), -(49,'COP','$','170','Colombian Peso'), -(50,'COU',NULL,'970','Unidad de Valor Real'), -(51,'CRC','₡','188','Costa Rican Colon'), -(52,'RSD','Дин.','941','Serbian Dinar'), -(53,'CUP','₱','192','Cuban Peso'), -(54,'CVE',NULL,'132','Cape Verde Escudo'), -(56,'CZK','Kč','203','Czech Koruna'), -(57,'DJF',NULL,'262','Djibouti Franc'), -(58,'DKK','kr','208','Danish Krone'), -(59,'DOP','RD$','214','Dominican Peso'), -(60,'DZD',NULL,'012','Algerian Dinar'), -(62,'EGP','£','818','Egyptian Pound'), -(63,'ERN',NULL,'232','Eritrean Nakfa'), -(64,'ETB',NULL,'230','Ethiopian Birr'), -(65,'FJD','$','242','Fiji Dollar'), -(66,'FKP','£','238','Falkland Islands Pound'), -(67,'GEL',NULL,'981','Georgian Lari'), -(68,'GHS','¢','288','Ghanaian Cedi'), -(69,'GIP','£','292','Gibraltar Pound'), -(70,'GMD',NULL,'270','Gambian Dalasi'), -(71,'GNF',NULL,'324','Guinea Franc'), -(72,'GTQ','Q','320','Guatemalan Quetzal'), -(74,'GYD','$','328','Guyana Dollar'), -(75,'HKD','HK$','344','Hong Kong Dollar'), -(76,'HNL','L','340','Honduran Lempira'), -(77,'HRK','kn','191','Croatian Kuna'), -(78,'HTG',NULL,'332','Haitian Gourde'), -(79,'HUF','Ft','348','Hungarian Forint'), -(80,'IDR','Rp','360','Indonesian Rupiah'), -(81,'IQD',NULL,'368','Iraqi Dinar'), -(82,'IRR','﷼','364','Iranian Rial'), -(83,'ISK','kr','352','Iceland Krona'), -(84,'JMD','J$','388','Jamaican Dollar'), -(85,'JOD',NULL,'400','Jordanian Dinar'), -(86,'KES',NULL,'404','Kenyan Shilling'), -(87,'KGS','лв','417','Kyrgyzstan Som'), -(88,'KHR','៛','116','Cambodian Riel'), -(89,'KMF',NULL,'174','Comoro Franc'), -(90,'KPW','₩','408','North Korean Won'), -(91,'KWD',NULL,'414','Kuwaiti Dinar'), -(92,'KYD','$','136','Cayman Islands Dollar'), -(93,'KZT','лв','398','Kazakhstan Tenge'), -(94,'LBP','£','422','Lebanese Pound'), -(95,'LKR','₨','144','Sri Lanka Rupee'), -(96,'LRD','$','430','Liberian Dollar'), -(97,'LSL',NULL,'426','Lesotho Loti'), -(100,'LYD',NULL,'434','Libyan Dinar'), -(101,'MAD',NULL,'504','Moroccan Dirham'), -(102,'MDL',NULL,'498','Moldovan Leu'), -(103,'MGA',NULL,'969','Malagascy Ariary'), -(104,'MKD','ден','807','Macedonian Denar'), -(105,'MMK',NULL,'104','Myanmar Kyat'), -(106,'MOP',NULL,'446','Macao Pataca'), -(107,'MRO',NULL,'478','Mauritanian Ouguiya'), -(109,'MUR','₨','480','Mauritius Rupee'), -(110,'MVR',NULL,'462','Maldive Rufiyaa'), -(111,'MWK',NULL,'454','Malawi Kwacha'), -(112,'MXN','$','484','Mexican Peso'), -(113,'MXV',NULL,'979','Mexican Unidad de Inversion (UID)'), -(114,'MYR','RM','458','Malaysian Ringgit'), -(115,'MZN','MT','943','Mozambique Metical'), -(116,'NAD','N$','516','Namibian Dollar'), -(117,'NIO','C$','558','Nicaraguan Cordoba Oro'), -(118,'NOK','kr','578','Norwegian Krone'), -(119,'NPR','₨','524','Nepalese Rupee'), -(120,'NZD','$','554','New Zealand Dollar'), -(121,'OMR','﷼','512','Rial Omani'), -(122,'PAB','B/.','590','Panamanian Balboa'), -(123,'PEN','S/.','604','Peruvian Nuevo Sol'), -(124,'PGK',NULL,'598','Papua New Guinea Kina'), -(125,'PHP','Php','608','Philippine Peso'), -(126,'PKR','₨','586','Pakistan Rupee'), -(127,'PYG','Gs','600','Paraguay Guarani'), -(128,'QAR','﷼','634','Qatari Rial'), -(130,'RON','lei','946','Romanian New Leu'), -(131,'RUB','руб','643','Russian Rouble'), -(132,'RWF',NULL,'646','Rwanda Franc'), -(133,'SAR','﷼','682','Saudi Riyal'), -(134,'SBD','$','090','Solomon Islands Dollar'), -(135,'SCR','₨','690','Seychelles Rupee'), -(137,'SEK','kr','752','Swedish Krona'), -(138,'SGD','$','702','Singapore Dollar'), -(139,'SHP','£','654','Saint Helena Pound'), -(142,'SLL',NULL,'694','Leone'), -(143,'SOS','S','706','Somali Shilling'), -(144,'SRD','$','968','Surinam Dollar'), -(145,'STD',NULL,'678','São Tome and Principe Dobra'), -(146,'SVC','$','222','El Salvador Colon'), -(147,'SYP','£','760','Syrian Pound'), -(148,'SZL',NULL,'748','Eswatini Lilangeni'), -(149,'TJS',NULL,'972','Tajik Somoni'), -(151,'TND',NULL,'788','Tunisian Dinar'), -(152,'TOP',NULL,'776','Tongan Pa\'anga'), -(153,'TRY','YTL','949','New Turkish Lira'), -(154,'TTD','TT$','780','Trinidad and Tobago Dollar'), -(155,'TWD','NT$','901','New Taiwan Dollar'), -(156,'TZS',NULL,'834','Tanzanian Shilling'), -(157,'UAH','₴','980','Ukrainian Hryvnia'), -(158,'UGX',NULL,'800','Ugandan Shilling'), -(159,'USN',NULL,'997','US Dollar (Next day)'), -(160,'USS',NULL,'998','US Dollar (Same day)'), -(161,'UYU','$U','858','Peso Uruguayo'), -(162,'UZS','лв','860','Uzbekistan Sum'), -(163,'VEF','Bs','937','Venezuela Bolivar'), -(164,'VUV',NULL,'548','Vanuatu Vatu'), -(165,'WST',NULL,'882','Samoan Tala'), -(166,'XAF',NULL,'950','CFA Franc BEAC'), -(167,'XAG',NULL,'961','Silver'), -(168,'XAU',NULL,'959','Gold'), -(169,'XBA',NULL,'955','Bond Markets Units European Composite Unit (EURCO)'), -(170,'XBB',NULL,'956','European Monetary Unit (E.M.U.-6)'), -(171,'XBC',NULL,'957','European Unit of Account 9 (E.U.A.-9)'), -(172,'XBD',NULL,'958','European Unit of Account 17 (E.U.A.-17)'), -(173,'XCD','$','951','East Caribbean Dollar'), -(174,'XDR',NULL,'960','Special Drawing Right'), -(175,'XFO',NULL,NULL,'Gold-Franc'), -(176,'XFU',NULL,NULL,'UIC-Franc'), -(177,'XOF',NULL,'952','CFA Franc BCEAO'), -(178,'XPD',NULL,'964','Palladium'), -(179,'XPF',NULL,'953','CFP Franc'), -(180,'XPT',NULL,'962','Platinum'), -(181,'XTS',NULL,'963','Code for testing purposes'), -(182,'XXX',NULL,'999','No currency involved'), -(183,'YER','﷼','886','Yemeni Rial'), -(184,'ZMK',NULL,'894','Zambian Kwacha'), -(185,'ZWD','Z$','716','Zimbabwe Dollar'); + (2,'CAD','$','124','Canadian Dollar'), + (3,'EUR','€','978','Euro'), + (4,'GBP','£','826','Pound Sterling'), + (5,'ILS','₪','826','New Israeli Shekel'), + (6,'INR','₨','356','Indian Rupee'), + (7,'JPY','¥','392','Japanese Yen'), + (8,'KRW','₩','410','South Korean Won'), + (9,'LAK','₭','418','Lao Kip'), + (10,'MNT','₮','496','Mongolian Tugrik'), + (11,'NGN','₦','566','Nigerian Naira'), + (12,'PLN','zł','985','Polish Złoty'), + (13,'THB','฿','764','Thai Baht'), + (14,'USD','$','840','US Dollar'), + (15,'VND','₫','704','Viet Nam Dong'), + (16,'ZAR','R','710','South African Rand'), + (17,'AED',NULL,'784','UAE Dirham'), + (18,'AFN','؋','971','Afghani'), + (19,'ALL','Lek','008','Albanian Lek'), + (20,'AMD',NULL,'051','Armenian Dram'), + (21,'ANG','ƒ','532','Netherlands Antillian Guilder'), + (22,'AOA',NULL,'973','Angola Kwanza'), + (23,'ARS','$','032','Argentine Peso'), + (24,'AWG','ƒ','533','Aruban Guilder'), + (25,'AZN','ман','944','Azerbaijanian Manat'), + (26,'BAM','KM','977','Convertible Marks'), + (27,'BBD','$','052','Barbados Dollar'), + (28,'BDT',NULL,'050','Bangladeshi Taka'), + (29,'BGN','лв','975','Bulgarian Lev'), + (30,'BHD',NULL,'048','Bahraini Dinar'), + (31,'BIF',NULL,'108','Burundi Franc'), + (32,'BMD','$','060','Bermudian Dollar'), + (33,'BND','$','096','Brunei Dollar'), + (34,'BOB','$b','068','Boliviano'), + (35,'BOV',NULL,'984','Bolivian Mvdol'), + (36,'BRL','R$','986','Brazilian Real'), + (37,'BSD','$','044','Bahamian Dollar'), + (38,'BTN',NULL,'064','Bhutan Ngultrum'), + (39,'BWP','P','072','Botswana Pula'), + (40,'BYN','p.','974','Belarussian Rouble'), + (41,'BZD','BZ$','084','Belize Dollar'), + (42,'CDF',NULL,'976','Franc Congolais'), + (43,'CHE',NULL,'947','WIR Euro'), + (44,'CHF','CHF','756','Swiss Franc'), + (45,'CHW',NULL,'948','WIR Franc'), + (46,'CLF',NULL,'990','Unidades de fomento'), + (47,'CLP','$','152','Chilean Peso'), + (48,'CNY','元','156','Chinese Yuan Renminbi'), + (49,'COP','$','170','Colombian Peso'), + (50,'COU',NULL,'970','Unidad de Valor Real'), + (51,'CRC','₡','188','Costa Rican Colon'), + (52,'RSD','Дин.','941','Serbian Dinar'), + (53,'CUP','₱','192','Cuban Peso'), + (54,'CVE',NULL,'132','Cape Verde Escudo'), + (56,'CZK','Kč','203','Czech Koruna'), + (57,'DJF',NULL,'262','Djibouti Franc'), + (58,'DKK','kr','208','Danish Krone'), + (59,'DOP','RD$','214','Dominican Peso'), + (60,'DZD',NULL,'012','Algerian Dinar'), + (62,'EGP','£','818','Egyptian Pound'), + (63,'ERN',NULL,'232','Eritrean Nakfa'), + (64,'ETB',NULL,'230','Ethiopian Birr'), + (65,'FJD','$','242','Fiji Dollar'), + (66,'FKP','£','238','Falkland Islands Pound'), + (67,'GEL',NULL,'981','Georgian Lari'), + (68,'GHS','¢','288','Ghanaian Cedi'), + (69,'GIP','£','292','Gibraltar Pound'), + (70,'GMD',NULL,'270','Gambian Dalasi'), + (71,'GNF',NULL,'324','Guinea Franc'), + (72,'GTQ','Q','320','Guatemalan Quetzal'), + (74,'GYD','$','328','Guyana Dollar'), + (75,'HKD','HK$','344','Hong Kong Dollar'), + (76,'HNL','L','340','Honduran Lempira'), + (77,'HRK','kn','191','Croatian Kuna'), + (78,'HTG',NULL,'332','Haitian Gourde'), + (79,'HUF','Ft','348','Hungarian Forint'), + (80,'IDR','Rp','360','Indonesian Rupiah'), + (81,'IQD',NULL,'368','Iraqi Dinar'), + (82,'IRR','﷼','364','Iranian Rial'), + (83,'ISK','kr','352','Iceland Krona'), + (84,'JMD','J$','388','Jamaican Dollar'), + (85,'JOD',NULL,'400','Jordanian Dinar'), + (86,'KES',NULL,'404','Kenyan Shilling'), + (87,'KGS','лв','417','Kyrgyzstan Som'), + (88,'KHR','៛','116','Cambodian Riel'), + (89,'KMF',NULL,'174','Comoro Franc'), + (90,'KPW','₩','408','North Korean Won'), + (91,'KWD',NULL,'414','Kuwaiti Dinar'), + (92,'KYD','$','136','Cayman Islands Dollar'), + (93,'KZT','лв','398','Kazakhstan Tenge'), + (94,'LBP','£','422','Lebanese Pound'), + (95,'LKR','₨','144','Sri Lanka Rupee'), + (96,'LRD','$','430','Liberian Dollar'), + (97,'LSL',NULL,'426','Lesotho Loti'), + (100,'LYD',NULL,'434','Libyan Dinar'), + (101,'MAD',NULL,'504','Moroccan Dirham'), + (102,'MDL',NULL,'498','Moldovan Leu'), + (103,'MGA',NULL,'969','Malagascy Ariary'), + (104,'MKD','ден','807','Macedonian Denar'), + (105,'MMK',NULL,'104','Myanmar Kyat'), + (106,'MOP',NULL,'446','Macao Pataca'), + (107,'MRO',NULL,'478','Mauritanian Ouguiya'), + (109,'MUR','₨','480','Mauritius Rupee'), + (110,'MVR',NULL,'462','Maldive Rufiyaa'), + (111,'MWK',NULL,'454','Malawi Kwacha'), + (112,'MXN','$','484','Mexican Peso'), + (113,'MXV',NULL,'979','Mexican Unidad de Inversion (UID)'), + (114,'MYR','RM','458','Malaysian Ringgit'), + (115,'MZN','MT','943','Mozambique Metical'), + (116,'NAD','N$','516','Namibian Dollar'), + (117,'NIO','C$','558','Nicaraguan Cordoba Oro'), + (118,'NOK','kr','578','Norwegian Krone'), + (119,'NPR','₨','524','Nepalese Rupee'), + (120,'NZD','$','554','New Zealand Dollar'), + (121,'OMR','﷼','512','Rial Omani'), + (122,'PAB','B/.','590','Panamanian Balboa'), + (123,'PEN','S/.','604','Peruvian Nuevo Sol'), + (124,'PGK',NULL,'598','Papua New Guinea Kina'), + (125,'PHP','Php','608','Philippine Peso'), + (126,'PKR','₨','586','Pakistan Rupee'), + (127,'PYG','Gs','600','Paraguay Guarani'), + (128,'QAR','﷼','634','Qatari Rial'), + (130,'RON','lei','946','Romanian New Leu'), + (131,'RUB','руб','643','Russian Rouble'), + (132,'RWF',NULL,'646','Rwanda Franc'), + (133,'SAR','﷼','682','Saudi Riyal'), + (134,'SBD','$','090','Solomon Islands Dollar'), + (135,'SCR','₨','690','Seychelles Rupee'), + (137,'SEK','kr','752','Swedish Krona'), + (138,'SGD','$','702','Singapore Dollar'), + (139,'SHP','£','654','Saint Helena Pound'), + (142,'SLL',NULL,'694','Leone'), + (143,'SOS','S','706','Somali Shilling'), + (144,'SRD','$','968','Surinam Dollar'), + (145,'STD',NULL,'678','São Tome and Principe Dobra'), + (146,'SVC','$','222','El Salvador Colon'), + (147,'SYP','£','760','Syrian Pound'), + (148,'SZL',NULL,'748','Eswatini Lilangeni'), + (149,'TJS',NULL,'972','Tajik Somoni'), + (151,'TND',NULL,'788','Tunisian Dinar'), + (152,'TOP',NULL,'776','Tongan Pa\'anga'), + (153,'TRY','YTL','949','New Turkish Lira'), + (154,'TTD','TT$','780','Trinidad and Tobago Dollar'), + (155,'TWD','NT$','901','New Taiwan Dollar'), + (156,'TZS',NULL,'834','Tanzanian Shilling'), + (157,'UAH','₴','980','Ukrainian Hryvnia'), + (158,'UGX',NULL,'800','Ugandan Shilling'), + (159,'USN',NULL,'997','US Dollar (Next day)'), + (160,'USS',NULL,'998','US Dollar (Same day)'), + (161,'UYU','$U','858','Peso Uruguayo'), + (162,'UZS','лв','860','Uzbekistan Sum'), + (163,'VEF','Bs','937','Venezuela Bolivar'), + (164,'VUV',NULL,'548','Vanuatu Vatu'), + (165,'WST',NULL,'882','Samoan Tala'), + (166,'XAF',NULL,'950','CFA Franc BEAC'), + (167,'XAG',NULL,'961','Silver'), + (168,'XAU',NULL,'959','Gold'), + (169,'XBA',NULL,'955','Bond Markets Units European Composite Unit (EURCO)'), + (170,'XBB',NULL,'956','European Monetary Unit (E.M.U.-6)'), + (171,'XBC',NULL,'957','European Unit of Account 9 (E.U.A.-9)'), + (172,'XBD',NULL,'958','European Unit of Account 17 (E.U.A.-17)'), + (173,'XCD','$','951','East Caribbean Dollar'), + (174,'XDR',NULL,'960','Special Drawing Right'), + (175,'XFO',NULL,NULL,'Gold-Franc'), + (176,'XFU',NULL,NULL,'UIC-Franc'), + (177,'XOF',NULL,'952','CFA Franc BCEAO'), + (178,'XPD',NULL,'964','Palladium'), + (179,'XPF',NULL,'953','CFP Franc'), + (180,'XPT',NULL,'962','Platinum'), + (181,'XTS',NULL,'963','Code for testing purposes'), + (182,'XXX',NULL,'999','No currency involved'), + (183,'YER','﷼','886','Yemeni Rial'), + (184,'ZMK',NULL,'894','Zambian Kwacha'), + (185,'ZWD','Z$','716','Zimbabwe Dollar'); /*!40000 ALTER TABLE `civicrm_currency` ENABLE KEYS */; UNLOCK TABLES; @@ -2870,15 +2862,15 @@ LOCK TABLES `civicrm_dashboard` WRITE; /*!40000 ALTER TABLE `civicrm_dashboard` DISABLE KEYS */; INSERT INTO `civicrm_dashboard` (`id`, `domain_id`, `name`, `label`, `url`, `permission`, `permission_operator`, `fullscreen_url`, `is_active`, `is_reserved`, `cache_minutes`, `directive`) VALUES (1,1,'blog','CiviCRM News','civicrm/dashlet/blog?reset=1','access CiviCRM',NULL,'civicrm/dashlet/blog?reset=1&context=dashletFullscreen',1,1,1440,NULL), -(2,1,'getting-started','CiviCRM Resources','civicrm/dashlet/getting-started?reset=1','access CiviCRM',NULL,'civicrm/dashlet/getting-started?reset=1&context=dashletFullscreen',1,1,7200,NULL), -(3,1,'activity','Activities','civicrm/dashlet/activity?reset=1','access CiviCRM',NULL,'civicrm/dashlet/activity?reset=1&context=dashletFullscreen',1,1,7200,NULL), -(4,1,'myCases','My Cases','civicrm/dashlet/myCases?reset=1','access my cases and activities',NULL,'civicrm/dashlet/myCases?reset=1&context=dashletFullscreen',1,1,60,NULL), -(5,1,'allCases','All Cases','civicrm/dashlet/allCases?reset=1','access all cases and activities',NULL,'civicrm/dashlet/allCases?reset=1&context=dashletFullscreen',1,1,60,NULL), -(6,1,'casedashboard','Case Dashboard Dashlet','civicrm/dashlet/casedashboard?reset=1','access my cases and activities,access all cases and activities','OR','civicrm/dashlet/casedashboard?reset=1&context=dashletFullscreen',1,1,60,NULL), -(7,1,'report/7','Donor Summary','civicrm/report/instance/7?reset=1§ion=1&charts=barChart','access CiviContribute','AND','civicrm/report/instance/7?reset=1§ion=1&charts=barChart&context=dashletFullscreen',1,0,60,NULL), -(8,1,'report/14','Top Donors','civicrm/report/instance/14?reset=1§ion=2','access CiviContribute','AND','civicrm/report/instance/14?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL), -(9,1,'report/27','Event Income Summary','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart','access CiviEvent','AND','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart&context=dashletFullscreen',1,0,60,NULL), -(10,1,'report/22','Membership Summary','civicrm/report/instance/22?reset=1§ion=2','access CiviMember','AND','civicrm/report/instance/22?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL); + (2,1,'getting-started','CiviCRM Resources','civicrm/dashlet/getting-started?reset=1','access CiviCRM',NULL,'civicrm/dashlet/getting-started?reset=1&context=dashletFullscreen',1,1,7200,NULL), + (3,1,'activity','Activities','civicrm/dashlet/activity?reset=1','access CiviCRM',NULL,'civicrm/dashlet/activity?reset=1&context=dashletFullscreen',1,1,7200,NULL), + (4,1,'myCases','My Cases','civicrm/dashlet/myCases?reset=1','access my cases and activities',NULL,'civicrm/dashlet/myCases?reset=1&context=dashletFullscreen',1,1,60,NULL), + (5,1,'allCases','All Cases','civicrm/dashlet/allCases?reset=1','access all cases and activities',NULL,'civicrm/dashlet/allCases?reset=1&context=dashletFullscreen',1,1,60,NULL), + (6,1,'casedashboard','Case Dashboard Dashlet','civicrm/dashlet/casedashboard?reset=1','access my cases and activities,access all cases and activities','OR','civicrm/dashlet/casedashboard?reset=1&context=dashletFullscreen',1,1,60,NULL), + (7,1,'report/7','Donor Summary','civicrm/report/instance/7?reset=1§ion=1&charts=barChart','access CiviContribute','AND','civicrm/report/instance/7?reset=1§ion=1&charts=barChart&context=dashletFullscreen',1,0,60,NULL), + (8,1,'report/14','Top Donors','civicrm/report/instance/14?reset=1§ion=2','access CiviContribute','AND','civicrm/report/instance/14?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL), + (9,1,'report/27','Event Income Summary','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart','access CiviEvent','AND','civicrm/report/instance/27?reset=1§ion=1&charts=pieChart&context=dashletFullscreen',1,0,60,NULL), + (10,1,'report/22','Membership Summary','civicrm/report/instance/22?reset=1§ion=2','access CiviMember','AND','civicrm/report/instance/22?reset=1§ion=2&context=dashletFullscreen',1,0,60,NULL); /*!40000 ALTER TABLE `civicrm_dashboard` ENABLE KEYS */; UNLOCK TABLES; @@ -2908,22 +2900,22 @@ LOCK TABLES `civicrm_dedupe_rule` WRITE; /*!40000 ALTER TABLE `civicrm_dedupe_rule` DISABLE KEYS */; INSERT INTO `civicrm_dedupe_rule` (`id`, `dedupe_rule_group_id`, `rule_table`, `rule_field`, `rule_length`, `rule_weight`) VALUES (1,1,'civicrm_contact','first_name',NULL,5), -(2,1,'civicrm_contact','last_name',NULL,7), -(3,1,'civicrm_email','email',NULL,10), -(4,2,'civicrm_contact','organization_name',NULL,10), -(5,2,'civicrm_email','email',NULL,10), -(6,3,'civicrm_contact','household_name',NULL,10), -(7,3,'civicrm_email','email',NULL,10), -(8,4,'civicrm_email','email',NULL,10), -(9,5,'civicrm_contact','organization_name',NULL,10), -(10,5,'civicrm_email','email',NULL,10), -(11,6,'civicrm_contact','household_name',NULL,10), -(12,6,'civicrm_email','email',NULL,10), -(13,7,'civicrm_contact','first_name',NULL,5), -(14,7,'civicrm_contact','last_name',NULL,5), -(15,7,'civicrm_address','street_address',NULL,5), -(16,7,'civicrm_contact','middle_name',NULL,1), -(17,7,'civicrm_contact','suffix_id',NULL,1); + (2,1,'civicrm_contact','last_name',NULL,7), + (3,1,'civicrm_email','email',NULL,10), + (4,2,'civicrm_contact','organization_name',NULL,10), + (5,2,'civicrm_email','email',NULL,10), + (6,3,'civicrm_contact','household_name',NULL,10), + (7,3,'civicrm_email','email',NULL,10), + (8,4,'civicrm_email','email',NULL,10), + (9,5,'civicrm_contact','organization_name',NULL,10), + (10,5,'civicrm_email','email',NULL,10), + (11,6,'civicrm_contact','household_name',NULL,10), + (12,6,'civicrm_email','email',NULL,10), + (13,7,'civicrm_contact','first_name',NULL,5), + (14,7,'civicrm_contact','last_name',NULL,5), + (15,7,'civicrm_address','street_address',NULL,5), + (16,7,'civicrm_contact','middle_name',NULL,1), + (17,7,'civicrm_contact','suffix_id',NULL,1); /*!40000 ALTER TABLE `civicrm_dedupe_rule` ENABLE KEYS */; UNLOCK TABLES; @@ -2935,12 +2927,12 @@ LOCK TABLES `civicrm_dedupe_rule_group` WRITE; /*!40000 ALTER TABLE `civicrm_dedupe_rule_group` DISABLE KEYS */; INSERT INTO `civicrm_dedupe_rule_group` (`id`, `contact_type`, `threshold`, `used`, `name`, `title`, `is_reserved`) VALUES (1,'Individual',20,'Supervised','IndividualSupervised','First Name, Last Name and Email (reserved)',1), -(2,'Organization',10,'Supervised','OrganizationSupervised','Organization Name or Email',0), -(3,'Household',10,'Supervised','HouseholdSupervised','Household Name or Email',0), -(4,'Individual',10,'Unsupervised','IndividualUnsupervised','Email (reserved)',1), -(5,'Organization',10,'Unsupervised','OrganizationUnsupervised','Organization Name or Email',0), -(6,'Household',10,'Unsupervised','HouseholdUnsupervised','Household Name or Email',0), -(7,'Individual',15,'General','IndividualGeneral','First Name, Last Name and Street Address (reserved)',1); + (2,'Organization',10,'Supervised','OrganizationSupervised','Organization Name or Email',0), + (3,'Household',10,'Supervised','HouseholdSupervised','Household Name or Email',0), + (4,'Individual',10,'Unsupervised','IndividualUnsupervised','Email (reserved)',1), + (5,'Organization',10,'Unsupervised','OrganizationUnsupervised','Organization Name or Email',0), + (6,'Household',10,'Unsupervised','HouseholdUnsupervised','Household Name or Email',0), + (7,'Individual',15,'General','IndividualGeneral','First Name, Last Name and Street Address (reserved)',1); /*!40000 ALTER TABLE `civicrm_dedupe_rule_group` ENABLE KEYS */; UNLOCK TABLES; @@ -2972,211 +2964,192 @@ LOCK TABLES `civicrm_email` WRITE; /*!40000 ALTER TABLE `civicrm_email` DISABLE KEYS */; INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',1,0,0,0,NULL,NULL,NULL,NULL), -(2,147,1,'chowskia@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(3,147,1,'chowskia@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), -(4,198,1,'dazm24@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(5,198,1,'daz.margaret11@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(6,182,1,'nielsen.ashlie@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), -(7,182,1,'ashlien@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(8,123,1,'barkley.i.lincoln@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(9,123,1,'lincolnbarkley@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(10,72,1,'samson.clint61@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(11,72,1,'samson.clint@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(12,96,1,'omarn60@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(13,96,1,'omarnielsen92@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), -(14,18,1,'jameson.troy@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(15,18,1,'ts.jameson7@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL), -(16,159,1,'claudiow@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), -(17,13,1,'princessb58@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(18,24,1,'maxwellprentice@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(19,24,1,'prenticem@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(20,66,1,'santinaw@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(21,66,1,'santinaw@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(22,4,1,'jjensen@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(23,4,1,'jjensen52@sample.com',0,0,0,0,NULL,NULL,NULL,NULL), -(24,154,1,'wagnera@example.net',1,0,0,0,NULL,NULL,NULL,NULL), -(25,154,1,'wagnera@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(26,17,1,'mw.barkley@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(27,17,1,'barkley.w.maxwell@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), -(28,64,1,'cruz.juliann75@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), -(29,64,1,'cruz.juliann@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(30,172,1,'landonbachman57@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(31,61,1,'delanaolsen54@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(32,61,1,'olsend26@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), -(33,151,1,'patell@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(34,121,1,'lee.s.ray@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(35,121,1,'lee.s.ray@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(36,7,1,'wagner.b.heidi@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(37,7,1,'wagner.heidi@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(38,25,1,'sterrell@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(39,9,1,'rnielsen77@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(40,9,1,'rosarion@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), -(41,95,1,'bobrobertson57@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), -(42,189,1,'tobyb@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), -(43,189,1,'tbachman@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(44,146,1,'chowskij@example.info',1,0,0,0,NULL,NULL,NULL,NULL), -(45,145,1,'heidir81@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(46,145,1,'hreynolds@example.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(47,186,1,'lincolnjameson43@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(48,185,1,'jacobr22@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(49,125,1,'terrell.kacey60@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(50,132,1,'nielsenm@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), -(51,184,1,'samuels.truman80@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(52,184,1,'trumansamuels6@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(53,86,1,'ba.deforest@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(54,86,1,'deforest.a.brigette65@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(55,163,1,'mllerm@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(56,107,1,'beulaw@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(57,107,1,'beulawattson@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(58,10,1,'omarivanov47@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), -(59,93,1,'jacobs.kathleen@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), -(60,93,1,'jacobs.kathleen@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(61,62,1,'jameson.damaris16@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(62,62,1,'jameson.damaris45@testing.org',0,0,0,0,NULL,NULL,NULL,NULL), -(63,81,1,'smith.rodrigo64@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(64,45,1,'cruz.iris@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(65,45,1,'cruz.iris@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(66,148,1,'cooper.princess45@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(67,128,1,'grant.scott@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), -(68,128,1,'grant.scott85@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(69,179,1,'ms.cooper72@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(70,179,1,'maxwellcooper@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(71,85,1,'gonzlez.sanford89@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(72,5,1,'samson.p.andrew@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(73,5,1,'andrewsamson@example.net',0,0,0,0,NULL,NULL,NULL,NULL), -(74,63,1,'elbertj21@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(75,150,1,'loul88@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(76,150,1,'leel@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(77,177,1,'chowskin@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), -(78,166,1,'bettyb@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(79,39,1,'jacobs.josefa@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), -(80,39,1,'jacobsj93@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(81,143,1,'irvind@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(82,143,1,'dazi18@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(83,52,1,'alexiap@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(84,52,1,'parker.alexia@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(85,77,1,'terrellt80@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(86,139,1,'gonzlez.elbert@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), -(87,139,1,'elbertg@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(88,32,1,'smith.brent24@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(89,116,1,'lawerencewattson@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), -(90,116,1,'lawerencewattson@sample.info',0,0,0,0,NULL,NULL,NULL,NULL), -(91,174,1,'emller13@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), -(92,12,1,'blackwell.l.juliann7@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(93,12,1,'jl.blackwell@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(94,94,1,'parker.x.allen31@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(95,94,1,'parkera@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), -(96,118,1,'nicoler@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(97,118,1,'nicoleroberts@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(98,67,1,'wattson.princess7@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(99,31,1,'eleonorwattson@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(100,31,1,'eleonorwattson3@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(101,6,1,'grant.nicole@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(102,6,1,'grant.e.nicole70@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(103,102,1,'megann90@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(104,102,1,'megann@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(105,44,1,'bryonnielsen80@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), -(106,44,1,'nielsen.bryon@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(107,91,1,'marialee78@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(108,91,1,'marial@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), -(109,74,1,'leek@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(110,152,1,'dr.lee@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(111,152,1,'lee.r.delana@testing.info',0,0,0,0,NULL,NULL,NULL,NULL), -(112,142,1,'lees44@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(113,142,1,'sh.lee@example.org',0,0,0,0,NULL,NULL,NULL,NULL), -(114,201,1,'rayw@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(115,201,1,'wilson.b.ray39@sample.net',0,0,0,0,NULL,NULL,NULL,NULL), -(116,56,1,'nbarkley-wilson@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(117,98,1,'wilson.miguel@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), -(118,98,1,'wilsonm91@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(119,60,1,'robertson.kenny@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(120,60,1,'robertson.kenny96@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL), -(121,11,1,'kq.robertson58@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), -(122,141,1,'robertson.lou@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(123,141,1,'robertson.lou@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(124,82,1,'robertson.j.ashley@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(125,112,1,'jensen-bachman.z.josefa@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(126,178,1,'terryb@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(127,113,1,'arlyneyadav-terry11@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), -(128,110,1,'allanterry@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(129,49,1,'terry.e.beula54@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(130,115,1,'troybarkley@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(131,122,1,'barkley.s.jay58@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), -(132,68,1,'samson.magan@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), -(133,75,1,'russells@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(134,103,1,'ashleysamson84@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(135,103,1,'samson.ashley@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(136,14,1,'carlosblackwell@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), -(137,14,1,'blackwell.carlos@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL), -(138,157,1,'iveyb@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(139,130,1,'blackwell.k.lincoln@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(140,130,1,'lincolnb@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), -(141,164,1,'roberts.maxwell@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(142,164,1,'maxwellroberts@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL), -(143,16,1,'cwilson77@example.org',1,0,0,0,NULL,NULL,NULL,NULL), -(144,16,1,'carylonwilson89@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(145,114,1,'roberts-wilson.josefa@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(146,76,1,'maxwellivanov@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(147,76,1,'maxwellivanov@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(148,30,1,'ashleyi49@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), -(149,100,1,'eivanov@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(150,100,1,'ivanove71@lol.org',0,0,0,0,NULL,NULL,NULL,NULL), -(151,120,1,'ivanov.eleonor30@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), -(152,120,1,'ivanov.eleonor2@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), -(153,90,1,'tobyt@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(154,21,1,'terrell.troy@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(155,65,1,'terrell.alida@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(156,65,1,'aterrell@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), -(157,117,1,'raym@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(158,117,1,'mcreynolds.ray@lol.net',0,0,0,0,NULL,NULL,NULL,NULL), -(159,173,1,'princessmcreynolds@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), -(160,162,1,'hv.mcreynolds5@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), -(161,162,1,'mcreynolds.v.herminia@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(162,180,1,'mcreynolds.kathlyn9@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(163,175,1,'grant.shad@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(164,175,1,'grants5@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), -(165,57,1,'jinapatel73@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), -(166,29,1,'patelk66@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), -(167,160,1,'jaypatel@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(168,160,1,'patel.jay54@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), -(169,171,1,'wattsonk51@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), -(170,92,1,'meganw@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), -(171,48,1,'rebekahwattson@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), -(172,138,1,'grant.claudio73@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), -(173,161,1,'jgrant47@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), -(174,161,1,'jedg87@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL), -(175,34,3,'sales@valliantcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), -(176,87,2,'rp.samson@valliantcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), -(177,156,3,'info@beechdevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL), -(178,39,2,'jjacobs40@beechdevelopment.org',0,0,0,0,NULL,NULL,NULL,NULL), -(179,22,3,'feedback@alabamafoodnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), -(180,195,3,'feedback@jacksonhealth.org',1,0,0,0,NULL,NULL,NULL,NULL), -(181,169,3,'info@mlkingfamily.org',1,0,0,0,NULL,NULL,NULL,NULL), -(182,46,3,'info@globalliteracyinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL), -(183,91,2,'marial@globalliteracyinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL), -(184,40,3,'info@rurallegal.org',1,0,0,0,NULL,NULL,NULL,NULL), -(185,136,3,'sales@friendsdevelopmentnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), -(186,143,2,'daz.irvin@friendsdevelopmentnetwork.org',0,0,0,0,NULL,NULL,NULL,NULL), -(187,33,3,'sales@jacksonadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL), -(188,131,3,'feedback@oklahomasports.org',1,0,0,0,NULL,NULL,NULL,NULL), -(189,162,2,'mcreynolds.herminia@oklahomasports.org',0,0,0,0,NULL,NULL,NULL,NULL), -(190,181,3,'service@sierrasports.org',1,0,0,0,NULL,NULL,NULL,NULL), -(191,56,2,'nicolebarkley-wilson@sierrasports.org',0,0,0,0,NULL,NULL,NULL,NULL), -(192,149,3,'sales@kentuckyassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), -(193,68,2,'samson.magan@kentuckyassociation.org',0,0,0,0,NULL,NULL,NULL,NULL), -(194,196,3,'sales@indianaaction.org',1,0,0,0,NULL,NULL,NULL,NULL), -(195,27,2,'md.terrell@indianaaction.org',1,0,0,0,NULL,NULL,NULL,NULL), -(196,155,3,'service@chatsworthfund.org',1,0,0,0,NULL,NULL,NULL,NULL), -(197,58,2,'aroberts-wilson@chatsworthfund.org',1,0,0,0,NULL,NULL,NULL,NULL), -(198,83,3,'service@harmantechnologysystems.org',1,0,0,0,NULL,NULL,NULL,NULL), -(199,158,3,'info@progressiveempowermentsolutions.org',1,0,0,0,NULL,NULL,NULL,NULL), -(200,60,2,'kennyr@progressiveempowermentsolutions.org',0,0,0,0,NULL,NULL,NULL,NULL), -(201,191,3,'info@secondtechnologyfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), -(202,125,2,'terrell.kacey@secondtechnologyfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL), -(203,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), -(204,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), -(205,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), -(206,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); + (2,33,1,'lee.d.elbert@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (3,33,1,'elbertl@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (4,31,1,'esamson74@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (5,31,1,'samson.erik@example.net',0,0,0,0,NULL,NULL,NULL,NULL), + (6,38,1,'teddydaz98@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (7,131,1,'blackwellh52@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), + (8,131,1,'blackwellh68@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (9,2,1,'ex.terrell@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (10,84,1,'lee.brent@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (11,182,1,'scottlee@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (12,182,1,'lees@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (13,57,1,'wagner.r.juliann46@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (14,153,1,'jacksonp@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (15,153,1,'jpatel@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (16,74,1,'deforestj12@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (17,74,1,'jaydeforest90@testing.com',0,0,0,0,NULL,NULL,NULL,NULL), + (18,169,1,'mller.ray@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (19,169,1,'mllerr5@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (20,177,1,'delanadimitrov74@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (21,101,1,'jzope34@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (22,41,1,'mcreynolds.sonny@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (23,53,1,'sharynterrell@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (24,53,1,'sharynt76@example.net',0,0,0,0,NULL,NULL,NULL,NULL), + (25,55,1,'ashleyo@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (26,62,1,'rblackwell@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), + (27,62,1,'rolandb@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (28,138,1,'dazb91@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (29,154,1,'wilson.rebekah56@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (30,176,1,'elizabeths@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (31,176,1,'ed.samson27@sample.net',0,0,0,0,NULL,NULL,NULL,NULL), + (32,35,1,'kathleenrobertson94@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (33,114,1,'santinayadav@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (34,114,1,'santinayadav69@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), + (35,190,1,'brigettem24@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), + (36,190,1,'mcreynoldsb20@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL), + (37,81,1,'sh.prentice@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (38,183,1,'barkley.w.daren90@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (39,183,1,'darenbarkley@testing.info',0,0,0,0,NULL,NULL,NULL,NULL), + (40,143,1,'maxwellc36@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (41,166,1,'tsamson35@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (42,166,1,'samson.troy7@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (43,72,1,'hyadav@example.net',1,0,0,0,NULL,NULL,NULL,NULL), + (44,112,1,'terrell.margaret@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (45,112,1,'margaretterrell@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (46,91,1,'rayr35@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (47,91,1,'rreynolds58@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (48,160,1,'gonzlezt56@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (49,160,1,'tl.gonzlez87@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (50,156,1,'lee.s.craig@testing.info',1,0,0,0,NULL,NULL,NULL,NULL), + (51,156,1,'leec44@lol.com',0,0,0,0,NULL,NULL,NULL,NULL), + (52,96,1,'darenw@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), + (53,135,1,'ea.prentice@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (54,135,1,'prentice.eleonor@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (55,108,1,'rosarioj30@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (56,108,1,'rosariojones@example.info',0,0,0,0,NULL,NULL,NULL,NULL), + (57,115,1,'chowski.damaris@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (58,137,1,'prenticea86@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (59,59,1,'shermannielsen@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (60,59,1,'nielsen.sherman@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (61,198,1,'scotta@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), + (62,198,1,'sk.adams5@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (63,104,1,'zope.s.sherman@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (64,23,1,'alidabarkley@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (65,11,1,'deforest.troy@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (66,11,1,'deforestt11@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (67,6,1,'wattson.jackson@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (68,10,1,'dterrell@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (69,10,1,'damarist@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (70,133,1,'smith.b.scarlet@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (71,147,1,'cq.gonzlez@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), + (72,147,1,'gonzlezc@notmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (73,142,1,'ce.mcreynolds23@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), + (74,142,1,'mcreynolds.e.clint@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (75,39,1,'chowskir@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (76,39,1,'chowski.roland48@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (77,29,1,'josefanielsen13@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (78,29,1,'josefanielsen83@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), + (79,69,1,'barkley.sherman@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (80,69,1,'barkleys83@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), + (81,116,1,'cooperl58@lol.net',1,0,0,0,NULL,NULL,NULL,NULL), + (82,116,1,'cooperl@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (83,178,1,'vwilson@example.org',1,0,0,0,NULL,NULL,NULL,NULL), + (84,146,1,'loucruz@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (85,144,1,'yadav.roland97@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (86,144,1,'rolandy30@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (87,28,1,'alexiay8@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (88,4,1,'lincolnt@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (89,15,1,'heidiroberts-terry@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (90,76,1,'rterry@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (91,192,1,'brentt@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (92,192,1,'bterry@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (93,200,1,'teddydimitrov@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (94,200,1,'dimitrovt@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (95,45,1,'rebekahdimitrov84@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (96,45,1,'rw.dimitrov@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (97,171,1,'tz.chowski@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (98,171,1,'trumanchowski@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (99,174,1,'margaretolsen@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (100,48,1,'heidi55@example.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (101,168,1,'darenc47@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (102,175,1,'mcreynolds-cruzr@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (103,122,1,'gonzlez.elizabeth@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (104,75,1,'kb.gonzlez@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (105,75,1,'kb.gonzlez47@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (106,187,1,'gonzlezj@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (107,187,1,'jacksongonzlez@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (108,92,1,'maxwellz@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), + (109,92,1,'maxwellzope@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (110,64,1,'samsonc@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (111,64,1,'samsonc@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (112,126,1,'zope-samson.nicole39@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), + (113,126,1,'zope-samsonn@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (114,162,1,'blackwell.beula14@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (115,201,1,'blackwell.felisha1@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (116,5,1,'ashleys@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (117,16,1,'teresab@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (118,16,1,'teresab27@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (119,194,1,'mcreynoldsb@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (120,14,1,'lmcreynolds72@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (121,14,1,'lawerencemcreynolds@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (122,26,1,'mcreynolds.billy@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (123,26,1,'bmcreynolds91@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (124,65,1,'al.terrell@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (125,71,1,'terrell.heidi23@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (126,71,1,'heiditerrell29@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (127,89,1,'sanfordbachman@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (128,181,1,'bachman.brittney@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (129,25,1,'roberts.scott99@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (130,19,1,'jroberts87@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (131,189,1,'carlosroberts94@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (132,189,1,'carlosr@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (133,86,1,'tsmith@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (134,86,1,'smith.toby@sample.com',0,0,0,0,NULL,NULL,NULL,NULL), + (135,87,1,'eleonorsmith91@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (136,87,1,'smith.eleonor@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (137,98,1,'smith.daren2@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (138,43,1,'smith.merrie@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (139,43,1,'merriesmith@example.net',0,0,0,0,NULL,NULL,NULL,NULL), + (140,145,1,'troymcreynolds@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (141,145,1,'mcreynolds.troy69@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (142,54,1,'arlynemcreynolds60@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), + (143,60,1,'wattson.clint59@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (144,60,1,'wattsonc56@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (145,184,1,'meganwattson@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (146,184,1,'mq.wattson@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (147,132,1,'meganm@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (148,97,1,'ie.adams-mcreynolds83@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (149,97,1,'adams-mcreynolds.e.irvin86@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (150,165,1,'tobya98@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (151,42,1,'mller.teddy@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (152,42,1,'teddymller@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (153,151,1,'mller.elina@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (154,139,1,'edeforest-gonzlez52@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (155,139,1,'edeforest-gonzlez42@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (156,129,1,'migueldeforest-gonzlez@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (157,129,1,'migueld94@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (158,93,1,'jk.lee@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (159,99,1,'lee.shauna3@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (160,159,1,'billylee@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (161,159,1,'bh.lee@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (162,136,3,'contact@memphiscollective.org',1,0,0,0,NULL,NULL,NULL,NULL), + (163,175,2,'rg.mcreynolds-cruz95@memphiscollective.org',0,0,0,0,NULL,NULL,NULL,NULL), + (164,134,3,'contact@risportstrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (165,201,2,'blackwell.felisha59@risportstrust.org',0,0,0,0,NULL,NULL,NULL,NULL), + (166,103,3,'sales@progressivewellness.org',1,0,0,0,NULL,NULL,NULL,NULL), + (167,139,2,'deforest-gonzlez.elizabeth28@progressivewellness.org',0,0,0,0,NULL,NULL,NULL,NULL), + (168,83,3,'feedback@collegelegal.org',1,0,0,0,NULL,NULL,NULL,NULL), + (169,30,2,'myadav9@collegelegal.org',1,0,0,0,NULL,NULL,NULL,NULL), + (170,128,3,'feedback@dowlenpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), + (171,11,2,'deforest.troy@dowlenpartnership.org',0,0,0,0,NULL,NULL,NULL,NULL), + (172,21,3,'sales@severnsoftwareservices.org',1,0,0,0,NULL,NULL,NULL,NULL), + (173,171,2,'chowski.z.truman57@severnsoftwareservices.org',0,0,0,0,NULL,NULL,NULL,NULL), + (174,90,3,'info@localhealth.org',1,0,0,0,NULL,NULL,NULL,NULL), + (175,72,2,'hyadav@localhealth.org',0,0,0,0,NULL,NULL,NULL,NULL), + (176,100,3,'feedback@illinoisacademy.org',1,0,0,0,NULL,NULL,NULL,NULL), + (177,107,3,'service@urbanassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), + (178,54,2,'arlynem@urbanassociation.org',0,0,0,0,NULL,NULL,NULL,NULL), + (179,188,3,'sales@illinoisdevelopmentpartners.org',1,0,0,0,NULL,NULL,NULL,NULL), + (180,3,3,'sales@unitedhealth.org',1,0,0,0,NULL,NULL,NULL,NULL), + (181,145,2,'mcreynoldst@unitedhealth.org',0,0,0,0,NULL,NULL,NULL,NULL), + (182,77,3,'feedback@localsolutions.org',1,0,0,0,NULL,NULL,NULL,NULL), + (183,96,2,'darenw@localsolutions.org',0,0,0,0,NULL,NULL,NULL,NULL), + (184,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (185,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (186,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (187,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -3206,28 +3179,28 @@ LOCK TABLES `civicrm_entity_financial_account` WRITE; /*!40000 ALTER TABLE `civicrm_entity_financial_account` DISABLE KEYS */; INSERT INTO `civicrm_entity_financial_account` (`id`, `entity_table`, `entity_id`, `account_relationship`, `financial_account_id`) VALUES (1,'civicrm_financial_type',1,1,1), -(2,'civicrm_financial_type',1,5,5), -(3,'civicrm_financial_type',1,3,7), -(4,'civicrm_financial_type',1,7,9), -(5,'civicrm_financial_type',2,1,2), -(6,'civicrm_financial_type',2,5,5), -(7,'civicrm_financial_type',2,3,7), -(8,'civicrm_financial_type',2,7,9), -(9,'civicrm_financial_type',2,12,14), -(10,'civicrm_financial_type',3,1,3), -(11,'civicrm_financial_type',3,5,5), -(12,'civicrm_financial_type',3,3,7), -(13,'civicrm_financial_type',3,7,9), -(14,'civicrm_financial_type',4,5,5), -(15,'civicrm_financial_type',4,3,7), -(16,'civicrm_financial_type',4,1,4), -(17,'civicrm_financial_type',4,12,13), -(18,'civicrm_financial_type',4,7,9), -(19,'civicrm_option_value',92,6,6), -(20,'civicrm_option_value',93,6,6), -(21,'civicrm_option_value',94,6,6), -(22,'civicrm_option_value',90,6,12), -(23,'civicrm_option_value',91,6,12); + (2,'civicrm_financial_type',1,5,5), + (3,'civicrm_financial_type',1,3,7), + (4,'civicrm_financial_type',1,7,9), + (5,'civicrm_financial_type',2,1,2), + (6,'civicrm_financial_type',2,5,5), + (7,'civicrm_financial_type',2,3,7), + (8,'civicrm_financial_type',2,7,9), + (9,'civicrm_financial_type',2,12,14), + (10,'civicrm_financial_type',3,1,3), + (11,'civicrm_financial_type',3,5,5), + (12,'civicrm_financial_type',3,3,7), + (13,'civicrm_financial_type',3,7,9), + (14,'civicrm_financial_type',4,5,5), + (15,'civicrm_financial_type',4,3,7), + (16,'civicrm_financial_type',4,1,4), + (17,'civicrm_financial_type',4,12,13), + (18,'civicrm_financial_type',4,7,9), + (19,'civicrm_option_value',92,6,6), + (20,'civicrm_option_value',93,6,6), + (21,'civicrm_option_value',94,6,6), + (22,'civicrm_option_value',90,6,12), + (23,'civicrm_option_value',91,6,12); /*!40000 ALTER TABLE `civicrm_entity_financial_account` ENABLE KEYS */; UNLOCK TABLES; @@ -3239,227 +3212,227 @@ LOCK TABLES `civicrm_entity_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00), -(2,'civicrm_financial_item',1,1,125.00), -(3,'civicrm_contribution',2,2,50.00), -(4,'civicrm_financial_item',2,2,50.00), -(5,'civicrm_contribution',3,3,25.00), -(6,'civicrm_financial_item',3,3,25.00), -(7,'civicrm_contribution',4,4,50.00), -(8,'civicrm_financial_item',4,4,50.00), -(9,'civicrm_contribution',5,5,50.00), -(10,'civicrm_financial_item',5,5,50.00), -(11,'civicrm_contribution',6,6,500.00), -(12,'civicrm_financial_item',6,6,500.00), -(13,'civicrm_contribution',7,7,1750.00), -(14,'civicrm_financial_item',7,7,1750.00), -(15,'civicrm_contribution',8,8,50.00), -(16,'civicrm_financial_item',8,8,50.00), -(17,'civicrm_contribution',9,9,10.00), -(18,'civicrm_financial_item',9,9,10.00), -(19,'civicrm_contribution',10,10,250.00), -(20,'civicrm_financial_item',10,10,250.00), -(21,'civicrm_contribution',11,11,500.00), -(22,'civicrm_financial_item',11,11,500.00), -(23,'civicrm_contribution',12,12,50.00), -(24,'civicrm_financial_item',12,12,50.00), -(25,'civicrm_contribution',13,13,50.00), -(26,'civicrm_financial_item',13,13,50.00), -(27,'civicrm_contribution',14,14,50.00), -(28,'civicrm_financial_item',14,14,50.00), -(29,'civicrm_contribution',15,15,25.00), -(30,'civicrm_financial_item',15,15,25.00), -(31,'civicrm_contribution',16,16,25.00), -(32,'civicrm_financial_item',16,16,25.00), -(33,'civicrm_contribution',17,17,25.00), -(34,'civicrm_financial_item',17,17,25.00), -(35,'civicrm_contribution',18,18,25.00), -(36,'civicrm_financial_item',18,18,25.00), -(37,'civicrm_contribution',19,19,25.00), -(38,'civicrm_financial_item',19,19,25.00), -(39,'civicrm_contribution',20,20,25.00), -(40,'civicrm_financial_item',20,20,25.00), -(41,'civicrm_contribution',21,21,25.00), -(42,'civicrm_financial_item',21,21,25.00), -(43,'civicrm_contribution',22,22,25.00), -(44,'civicrm_financial_item',22,22,25.00), -(45,'civicrm_contribution',23,23,25.00), -(46,'civicrm_financial_item',23,23,25.00), -(47,'civicrm_contribution',24,24,25.00), -(48,'civicrm_financial_item',24,24,25.00), -(49,'civicrm_contribution',25,25,25.00), -(50,'civicrm_financial_item',25,25,25.00), -(51,'civicrm_contribution',26,26,10.00), -(52,'civicrm_financial_item',26,26,10.00), -(53,'civicrm_contribution',27,27,10.00), -(54,'civicrm_financial_item',27,27,10.00), -(55,'civicrm_contribution',28,28,10.00), -(56,'civicrm_financial_item',28,28,10.00), -(57,'civicrm_contribution',29,29,10.00), -(58,'civicrm_financial_item',29,29,10.00), -(59,'civicrm_contribution',30,30,10.00), -(60,'civicrm_financial_item',30,30,10.00), -(61,'civicrm_contribution',31,31,5.00), -(62,'civicrm_financial_item',31,31,5.00), -(63,'civicrm_contribution',32,32,100.00), -(64,'civicrm_financial_item',32,32,100.00), -(65,'civicrm_contribution',34,33,100.00), -(66,'civicrm_financial_item',33,33,100.00), -(67,'civicrm_contribution',36,34,100.00), -(68,'civicrm_financial_item',34,34,100.00), -(69,'civicrm_contribution',38,35,100.00), -(70,'civicrm_financial_item',35,35,100.00), -(71,'civicrm_contribution',40,36,100.00), -(72,'civicrm_financial_item',36,36,100.00), -(73,'civicrm_contribution',41,37,100.00), -(74,'civicrm_financial_item',37,37,100.00), -(75,'civicrm_contribution',44,38,100.00), -(76,'civicrm_financial_item',38,38,100.00), -(77,'civicrm_contribution',46,39,100.00), -(78,'civicrm_financial_item',39,39,100.00), -(79,'civicrm_contribution',48,40,100.00), -(80,'civicrm_financial_item',40,40,100.00), -(81,'civicrm_contribution',50,41,100.00), -(82,'civicrm_financial_item',41,41,100.00), -(83,'civicrm_contribution',51,42,100.00), -(84,'civicrm_financial_item',42,42,100.00), -(85,'civicrm_contribution',52,43,100.00), -(86,'civicrm_financial_item',43,43,100.00), -(87,'civicrm_contribution',54,44,100.00), -(88,'civicrm_financial_item',44,44,100.00), -(89,'civicrm_contribution',58,45,100.00), -(90,'civicrm_financial_item',45,45,100.00), -(91,'civicrm_contribution',60,46,100.00), -(92,'civicrm_financial_item',46,46,100.00), -(93,'civicrm_contribution',61,47,100.00), -(94,'civicrm_financial_item',47,47,100.00), -(95,'civicrm_contribution',33,48,50.00), -(96,'civicrm_financial_item',48,48,50.00), -(97,'civicrm_contribution',35,49,50.00), -(98,'civicrm_financial_item',49,49,50.00), -(99,'civicrm_contribution',37,50,50.00), -(100,'civicrm_financial_item',50,50,50.00), -(101,'civicrm_contribution',39,51,50.00), -(102,'civicrm_financial_item',51,51,50.00), -(103,'civicrm_contribution',43,52,50.00), -(104,'civicrm_financial_item',52,52,50.00), -(105,'civicrm_contribution',45,53,50.00), -(106,'civicrm_financial_item',53,53,50.00), -(107,'civicrm_contribution',47,54,50.00), -(108,'civicrm_financial_item',54,54,50.00), -(109,'civicrm_contribution',49,55,50.00), -(110,'civicrm_financial_item',55,55,50.00), -(111,'civicrm_contribution',55,56,50.00), -(112,'civicrm_financial_item',56,56,50.00), -(113,'civicrm_contribution',56,57,50.00), -(114,'civicrm_financial_item',57,57,50.00), -(115,'civicrm_contribution',57,58,50.00), -(116,'civicrm_financial_item',58,58,50.00), -(117,'civicrm_contribution',59,59,50.00), -(118,'civicrm_financial_item',59,59,50.00), -(119,'civicrm_contribution',42,60,1200.00), -(120,'civicrm_financial_item',60,60,1200.00), -(121,'civicrm_contribution',53,61,1200.00), -(122,'civicrm_financial_item',61,61,1200.00), -(123,'civicrm_contribution',104,62,50.00), -(124,'civicrm_financial_item',62,62,50.00), -(125,'civicrm_contribution',100,63,50.00), -(126,'civicrm_financial_item',63,63,50.00), -(127,'civicrm_contribution',95,64,50.00), -(128,'civicrm_financial_item',64,64,50.00), -(129,'civicrm_contribution',83,65,50.00), -(130,'civicrm_financial_item',65,65,50.00), -(131,'civicrm_contribution',89,66,50.00), -(132,'civicrm_financial_item',66,66,50.00), -(133,'civicrm_contribution',108,67,50.00), -(134,'civicrm_financial_item',67,67,50.00), -(135,'civicrm_contribution',74,68,50.00), -(136,'civicrm_financial_item',68,68,50.00), -(137,'civicrm_contribution',70,69,50.00), -(138,'civicrm_financial_item',69,69,50.00), -(139,'civicrm_contribution',81,70,50.00), -(140,'civicrm_financial_item',70,70,50.00), -(141,'civicrm_contribution',109,71,50.00), -(142,'civicrm_financial_item',71,71,50.00), -(143,'civicrm_contribution',77,72,50.00), -(144,'civicrm_financial_item',72,72,50.00), -(145,'civicrm_contribution',71,73,50.00), -(146,'civicrm_financial_item',73,73,50.00), -(147,'civicrm_contribution',67,74,50.00), -(148,'civicrm_financial_item',74,74,50.00), -(149,'civicrm_contribution',99,75,50.00), -(150,'civicrm_financial_item',75,75,50.00), -(151,'civicrm_contribution',97,76,50.00), -(152,'civicrm_financial_item',76,76,50.00), -(153,'civicrm_contribution',72,77,50.00), -(154,'civicrm_financial_item',77,77,50.00), -(155,'civicrm_contribution',75,78,800.00), -(156,'civicrm_financial_item',78,78,800.00), -(157,'civicrm_contribution',88,79,800.00), -(158,'civicrm_financial_item',79,79,800.00), -(159,'civicrm_contribution',69,80,800.00), -(160,'civicrm_financial_item',80,80,800.00), -(161,'civicrm_contribution',103,81,800.00), -(162,'civicrm_financial_item',81,81,800.00), -(163,'civicrm_contribution',82,82,800.00), -(164,'civicrm_financial_item',82,82,800.00), -(165,'civicrm_contribution',73,83,800.00), -(166,'civicrm_financial_item',83,83,800.00), -(167,'civicrm_contribution',65,84,800.00), -(168,'civicrm_financial_item',84,84,800.00), -(169,'civicrm_contribution',101,85,800.00), -(170,'civicrm_financial_item',85,85,800.00), -(171,'civicrm_contribution',112,86,800.00), -(172,'civicrm_financial_item',86,86,800.00), -(173,'civicrm_contribution',107,87,800.00), -(174,'civicrm_financial_item',87,87,800.00), -(175,'civicrm_contribution',79,88,800.00), -(176,'civicrm_financial_item',88,88,800.00), -(177,'civicrm_contribution',63,89,800.00), -(178,'civicrm_financial_item',89,89,800.00), -(179,'civicrm_contribution',102,90,800.00), -(180,'civicrm_financial_item',90,90,800.00), -(181,'civicrm_contribution',85,91,800.00), -(182,'civicrm_financial_item',91,91,800.00), -(183,'civicrm_contribution',90,92,800.00), -(184,'civicrm_financial_item',92,92,800.00), -(185,'civicrm_contribution',106,93,800.00), -(186,'civicrm_financial_item',93,93,800.00), -(187,'civicrm_contribution',110,94,800.00), -(188,'civicrm_financial_item',94,94,800.00), -(189,'civicrm_contribution',64,95,800.00), -(190,'civicrm_financial_item',95,95,800.00), -(191,'civicrm_contribution',91,96,50.00), -(192,'civicrm_financial_item',96,96,50.00), -(193,'civicrm_contribution',92,97,50.00), -(194,'civicrm_financial_item',97,97,50.00), -(195,'civicrm_contribution',96,98,50.00), -(196,'civicrm_financial_item',98,98,50.00), -(197,'civicrm_contribution',94,99,50.00), -(198,'civicrm_financial_item',99,99,50.00), -(199,'civicrm_contribution',80,100,50.00), -(200,'civicrm_financial_item',100,100,50.00), -(201,'civicrm_contribution',68,101,50.00), -(202,'civicrm_financial_item',101,101,50.00), -(203,'civicrm_contribution',76,102,50.00), -(204,'civicrm_financial_item',102,102,50.00), -(205,'civicrm_contribution',105,103,50.00), -(206,'civicrm_financial_item',103,103,50.00), -(207,'civicrm_contribution',84,104,50.00), -(208,'civicrm_financial_item',104,104,50.00), -(209,'civicrm_contribution',111,105,50.00), -(210,'civicrm_financial_item',105,105,50.00), -(211,'civicrm_contribution',87,106,50.00), -(212,'civicrm_financial_item',106,106,50.00), -(213,'civicrm_contribution',66,107,50.00), -(214,'civicrm_financial_item',107,107,50.00), -(215,'civicrm_contribution',98,108,50.00), -(216,'civicrm_financial_item',108,108,50.00), -(217,'civicrm_contribution',78,109,50.00), -(218,'civicrm_financial_item',109,109,50.00), -(219,'civicrm_contribution',93,110,50.00), -(220,'civicrm_financial_item',110,110,50.00), -(221,'civicrm_contribution',86,111,50.00), -(222,'civicrm_financial_item',111,111,50.00); + (2,'civicrm_financial_item',1,1,125.00), + (3,'civicrm_contribution',2,2,50.00), + (4,'civicrm_financial_item',2,2,50.00), + (5,'civicrm_contribution',3,3,25.00), + (6,'civicrm_financial_item',3,3,25.00), + (7,'civicrm_contribution',4,4,50.00), + (8,'civicrm_financial_item',4,4,50.00), + (9,'civicrm_contribution',5,5,50.00), + (10,'civicrm_financial_item',5,5,50.00), + (11,'civicrm_contribution',6,6,500.00), + (12,'civicrm_financial_item',6,6,500.00), + (13,'civicrm_contribution',7,7,1750.00), + (14,'civicrm_financial_item',7,7,1750.00), + (15,'civicrm_contribution',8,8,50.00), + (16,'civicrm_financial_item',8,8,50.00), + (17,'civicrm_contribution',9,9,10.00), + (18,'civicrm_financial_item',9,9,10.00), + (19,'civicrm_contribution',10,10,250.00), + (20,'civicrm_financial_item',10,10,250.00), + (21,'civicrm_contribution',11,11,500.00), + (22,'civicrm_financial_item',11,11,500.00), + (23,'civicrm_contribution',12,12,50.00), + (24,'civicrm_financial_item',12,12,50.00), + (25,'civicrm_contribution',13,13,50.00), + (26,'civicrm_financial_item',13,13,50.00), + (27,'civicrm_contribution',14,14,50.00), + (28,'civicrm_financial_item',14,14,50.00), + (29,'civicrm_contribution',15,15,25.00), + (30,'civicrm_financial_item',15,15,25.00), + (31,'civicrm_contribution',16,16,25.00), + (32,'civicrm_financial_item',16,16,25.00), + (33,'civicrm_contribution',17,17,25.00), + (34,'civicrm_financial_item',17,17,25.00), + (35,'civicrm_contribution',18,18,25.00), + (36,'civicrm_financial_item',18,18,25.00), + (37,'civicrm_contribution',19,19,25.00), + (38,'civicrm_financial_item',19,19,25.00), + (39,'civicrm_contribution',20,20,25.00), + (40,'civicrm_financial_item',20,20,25.00), + (41,'civicrm_contribution',21,21,25.00), + (42,'civicrm_financial_item',21,21,25.00), + (43,'civicrm_contribution',22,22,25.00), + (44,'civicrm_financial_item',22,22,25.00), + (45,'civicrm_contribution',23,23,25.00), + (46,'civicrm_financial_item',23,23,25.00), + (47,'civicrm_contribution',24,24,25.00), + (48,'civicrm_financial_item',24,24,25.00), + (49,'civicrm_contribution',25,25,25.00), + (50,'civicrm_financial_item',25,25,25.00), + (51,'civicrm_contribution',26,26,10.00), + (52,'civicrm_financial_item',26,26,10.00), + (53,'civicrm_contribution',27,27,10.00), + (54,'civicrm_financial_item',27,27,10.00), + (55,'civicrm_contribution',28,28,10.00), + (56,'civicrm_financial_item',28,28,10.00), + (57,'civicrm_contribution',29,29,10.00), + (58,'civicrm_financial_item',29,29,10.00), + (59,'civicrm_contribution',30,30,10.00), + (60,'civicrm_financial_item',30,30,10.00), + (61,'civicrm_contribution',31,31,5.00), + (62,'civicrm_financial_item',31,31,5.00), + (63,'civicrm_contribution',32,32,100.00), + (64,'civicrm_financial_item',32,32,100.00), + (65,'civicrm_contribution',34,33,100.00), + (66,'civicrm_financial_item',33,33,100.00), + (67,'civicrm_contribution',38,34,100.00), + (68,'civicrm_financial_item',34,34,100.00), + (69,'civicrm_contribution',40,35,100.00), + (70,'civicrm_financial_item',35,35,100.00), + (71,'civicrm_contribution',44,36,100.00), + (72,'civicrm_financial_item',36,36,100.00), + (73,'civicrm_contribution',48,37,100.00), + (74,'civicrm_financial_item',37,37,100.00), + (75,'civicrm_contribution',50,38,100.00), + (76,'civicrm_financial_item',38,38,100.00), + (77,'civicrm_contribution',52,39,100.00), + (78,'civicrm_financial_item',39,39,100.00), + (79,'civicrm_contribution',54,40,100.00), + (80,'civicrm_financial_item',40,40,100.00), + (81,'civicrm_contribution',56,41,100.00), + (82,'civicrm_financial_item',41,41,100.00), + (83,'civicrm_contribution',58,42,100.00), + (84,'civicrm_financial_item',42,42,100.00), + (85,'civicrm_contribution',60,43,100.00), + (86,'civicrm_financial_item',43,43,100.00), + (87,'civicrm_contribution',61,44,100.00), + (88,'civicrm_financial_item',44,44,100.00), + (89,'civicrm_contribution',33,45,50.00), + (90,'civicrm_financial_item',45,45,50.00), + (91,'civicrm_contribution',35,46,50.00), + (92,'civicrm_financial_item',46,46,50.00), + (93,'civicrm_contribution',36,47,50.00), + (94,'civicrm_financial_item',47,47,50.00), + (95,'civicrm_contribution',37,48,50.00), + (96,'civicrm_financial_item',48,48,50.00), + (97,'civicrm_contribution',39,49,50.00), + (98,'civicrm_financial_item',49,49,50.00), + (99,'civicrm_contribution',41,50,50.00), + (100,'civicrm_financial_item',50,50,50.00), + (101,'civicrm_contribution',43,51,50.00), + (102,'civicrm_financial_item',51,51,50.00), + (103,'civicrm_contribution',45,52,50.00), + (104,'civicrm_financial_item',52,52,50.00), + (105,'civicrm_contribution',46,53,50.00), + (106,'civicrm_financial_item',53,53,50.00), + (107,'civicrm_contribution',47,54,50.00), + (108,'civicrm_financial_item',54,54,50.00), + (109,'civicrm_contribution',49,55,50.00), + (110,'civicrm_financial_item',55,55,50.00), + (111,'civicrm_contribution',51,56,50.00), + (112,'civicrm_financial_item',56,56,50.00), + (113,'civicrm_contribution',55,57,50.00), + (114,'civicrm_financial_item',57,57,50.00), + (115,'civicrm_contribution',57,58,50.00), + (116,'civicrm_financial_item',58,58,50.00), + (117,'civicrm_contribution',59,59,50.00), + (118,'civicrm_financial_item',59,59,50.00), + (119,'civicrm_contribution',42,60,1200.00), + (120,'civicrm_financial_item',60,60,1200.00), + (121,'civicrm_contribution',53,61,1200.00), + (122,'civicrm_financial_item',61,61,1200.00), + (123,'civicrm_contribution',64,62,50.00), + (124,'civicrm_financial_item',62,62,50.00), + (125,'civicrm_contribution',67,63,50.00), + (126,'civicrm_financial_item',63,63,50.00), + (127,'civicrm_contribution',70,64,50.00), + (128,'civicrm_financial_item',64,64,50.00), + (129,'civicrm_contribution',73,65,50.00), + (130,'civicrm_financial_item',65,65,50.00), + (131,'civicrm_contribution',76,66,50.00), + (132,'civicrm_financial_item',66,66,50.00), + (133,'civicrm_contribution',79,67,50.00), + (134,'civicrm_financial_item',67,67,50.00), + (135,'civicrm_contribution',82,68,50.00), + (136,'civicrm_financial_item',68,68,50.00), + (137,'civicrm_contribution',85,69,50.00), + (138,'civicrm_financial_item',69,69,50.00), + (139,'civicrm_contribution',89,70,50.00), + (140,'civicrm_financial_item',70,70,50.00), + (141,'civicrm_contribution',92,71,50.00), + (142,'civicrm_financial_item',71,71,50.00), + (143,'civicrm_contribution',95,72,50.00), + (144,'civicrm_financial_item',72,72,50.00), + (145,'civicrm_contribution',98,73,50.00), + (146,'civicrm_financial_item',73,73,50.00), + (147,'civicrm_contribution',101,74,50.00), + (148,'civicrm_financial_item',74,74,50.00), + (149,'civicrm_contribution',104,75,50.00), + (150,'civicrm_financial_item',75,75,50.00), + (151,'civicrm_contribution',107,76,50.00), + (152,'civicrm_financial_item',76,76,50.00), + (153,'civicrm_contribution',110,77,50.00), + (154,'civicrm_financial_item',77,77,50.00), + (155,'civicrm_contribution',65,78,800.00), + (156,'civicrm_financial_item',78,78,800.00), + (157,'civicrm_contribution',68,79,800.00), + (158,'civicrm_financial_item',79,79,800.00), + (159,'civicrm_contribution',71,80,800.00), + (160,'civicrm_financial_item',80,80,800.00), + (161,'civicrm_contribution',74,81,800.00), + (162,'civicrm_financial_item',81,81,800.00), + (163,'civicrm_contribution',77,82,800.00), + (164,'civicrm_financial_item',82,82,800.00), + (165,'civicrm_contribution',80,83,800.00), + (166,'civicrm_financial_item',83,83,800.00), + (167,'civicrm_contribution',83,84,800.00), + (168,'civicrm_financial_item',84,84,800.00), + (169,'civicrm_contribution',86,85,800.00), + (170,'civicrm_financial_item',85,85,800.00), + (171,'civicrm_contribution',87,86,800.00), + (172,'civicrm_financial_item',86,86,800.00), + (173,'civicrm_contribution',90,87,800.00), + (174,'civicrm_financial_item',87,87,800.00), + (175,'civicrm_contribution',93,88,800.00), + (176,'civicrm_financial_item',88,88,800.00), + (177,'civicrm_contribution',96,89,800.00), + (178,'civicrm_financial_item',89,89,800.00), + (179,'civicrm_contribution',99,90,800.00), + (180,'civicrm_financial_item',90,90,800.00), + (181,'civicrm_contribution',102,91,800.00), + (182,'civicrm_financial_item',91,91,800.00), + (183,'civicrm_contribution',105,92,800.00), + (184,'civicrm_financial_item',92,92,800.00), + (185,'civicrm_contribution',108,93,800.00), + (186,'civicrm_financial_item',93,93,800.00), + (187,'civicrm_contribution',111,94,800.00), + (188,'civicrm_financial_item',94,94,800.00), + (189,'civicrm_contribution',112,95,800.00), + (190,'civicrm_financial_item',95,95,800.00), + (191,'civicrm_contribution',63,96,50.00), + (192,'civicrm_financial_item',96,96,50.00), + (193,'civicrm_contribution',66,97,50.00), + (194,'civicrm_financial_item',97,97,50.00), + (195,'civicrm_contribution',69,98,50.00), + (196,'civicrm_financial_item',98,98,50.00), + (197,'civicrm_contribution',72,99,50.00), + (198,'civicrm_financial_item',99,99,50.00), + (199,'civicrm_contribution',75,100,50.00), + (200,'civicrm_financial_item',100,100,50.00), + (201,'civicrm_contribution',78,101,50.00), + (202,'civicrm_financial_item',101,101,50.00), + (203,'civicrm_contribution',81,102,50.00), + (204,'civicrm_financial_item',102,102,50.00), + (205,'civicrm_contribution',84,103,50.00), + (206,'civicrm_financial_item',103,103,50.00), + (207,'civicrm_contribution',88,104,50.00), + (208,'civicrm_financial_item',104,104,50.00), + (209,'civicrm_contribution',91,105,50.00), + (210,'civicrm_financial_item',105,105,50.00), + (211,'civicrm_contribution',94,106,50.00), + (212,'civicrm_financial_item',106,106,50.00), + (213,'civicrm_contribution',97,107,50.00), + (214,'civicrm_financial_item',107,107,50.00), + (215,'civicrm_contribution',100,108,50.00), + (216,'civicrm_financial_item',108,108,50.00), + (217,'civicrm_contribution',103,109,50.00), + (218,'civicrm_financial_item',109,109,50.00), + (219,'civicrm_contribution',106,110,50.00), + (220,'civicrm_financial_item',110,110,50.00), + (221,'civicrm_contribution',109,111,50.00), + (222,'civicrm_financial_item',111,111,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -3470,121 +3443,126 @@ UNLOCK TABLES; LOCK TABLES `civicrm_entity_tag` WRITE; /*!40000 ALTER TABLE `civicrm_entity_tag` DISABLE KEYS */; INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES - (22,'civicrm_contact',4,5), -(69,'civicrm_contact',6,4), -(70,'civicrm_contact',6,5), -(109,'civicrm_contact',8,4), -(41,'civicrm_contact',10,5), -(64,'civicrm_contact',12,4), -(65,'civicrm_contact',12,5), -(19,'civicrm_contact',13,4), -(92,'civicrm_contact',14,4), -(82,'civicrm_contact',19,5), -(83,'civicrm_contact',20,5), -(2,'civicrm_contact',22,2), -(23,'civicrm_contact',23,4), -(20,'civicrm_contact',24,4), -(21,'civicrm_contact',24,5), -(31,'civicrm_contact',25,5), -(72,'civicrm_contact',26,5), -(108,'civicrm_contact',29,4), -(67,'civicrm_contact',31,4), -(61,'civicrm_contact',32,4), -(5,'civicrm_contact',33,2), -(1,'civicrm_contact',34,3), -(4,'civicrm_contact',40,3), -(100,'civicrm_contact',55,4), -(95,'civicrm_contact',58,4), -(26,'civicrm_contact',59,4), -(78,'civicrm_contact',60,4), -(79,'civicrm_contact',60,5), -(52,'civicrm_contact',63,4), -(53,'civicrm_contact',63,5), -(24,'civicrm_contact',64,5), -(44,'civicrm_contact',71,5), -(90,'civicrm_contact',75,4), -(91,'civicrm_contact',75,5), -(96,'civicrm_contact',76,4), -(60,'civicrm_contact',77,5), -(28,'civicrm_contact',79,4), -(47,'civicrm_contact',81,4), -(48,'civicrm_contact',81,5), -(8,'civicrm_contact',83,2), -(51,'civicrm_contact',85,4), -(88,'civicrm_contact',87,4), -(89,'civicrm_contact',87,5), -(114,'civicrm_contact',88,4), -(98,'civicrm_contact',90,4), -(99,'civicrm_contact',90,5), -(73,'civicrm_contact',91,5), -(110,'civicrm_contact',92,5), -(42,'civicrm_contact',93,4), -(43,'civicrm_contact',93,5), -(32,'civicrm_contact',95,4), -(16,'civicrm_contact',96,4), -(17,'civicrm_contact',96,5), -(18,'civicrm_contact',97,4), -(77,'civicrm_contact',98,4), -(97,'civicrm_contact',100,4), -(71,'civicrm_contact',101,4), -(107,'civicrm_contact',104,5), -(45,'civicrm_contact',108,4), -(46,'civicrm_contact',108,5), -(10,'civicrm_contact',109,1), -(85,'civicrm_contact',110,5), -(86,'civicrm_contact',115,5), -(101,'civicrm_contact',117,4), -(102,'civicrm_contact',117,5), -(66,'civicrm_contact',118,5), -(27,'civicrm_contact',121,4), -(87,'civicrm_contact',122,4), -(93,'civicrm_contact',130,5), -(37,'civicrm_contact',132,4), -(38,'civicrm_contact',132,5), -(111,'civicrm_contact',138,4), -(112,'civicrm_contact',138,5), -(68,'civicrm_contact',140,5), -(80,'civicrm_contact',141,4), -(81,'civicrm_contact',141,5), -(59,'civicrm_contact',143,4), -(33,'civicrm_contact',146,4), -(11,'civicrm_contact',147,4), -(12,'civicrm_contact',147,5), -(49,'civicrm_contact',148,5), -(54,'civicrm_contact',150,4), -(55,'civicrm_contact',150,5), -(74,'civicrm_contact',152,5), -(29,'civicrm_contact',153,4), -(30,'civicrm_contact',153,5), -(113,'civicrm_contact',161,4), -(103,'civicrm_contact',162,4), -(104,'civicrm_contact',162,5), -(40,'civicrm_contact',163,4), -(94,'civicrm_contact',164,4), -(115,'civicrm_contact',167,5), -(3,'civicrm_contact',169,3), -(25,'civicrm_contact',172,5), -(62,'civicrm_contact',174,4), -(63,'civicrm_contact',174,5), -(106,'civicrm_contact',175,5), -(56,'civicrm_contact',177,4), -(57,'civicrm_contact',177,5), -(84,'civicrm_contact',178,4), -(50,'civicrm_contact',179,4), -(6,'civicrm_contact',181,1), -(13,'civicrm_contact',182,5), -(39,'civicrm_contact',184,5), -(36,'civicrm_contact',185,5), -(34,'civicrm_contact',186,4), -(35,'civicrm_contact',186,5), -(9,'civicrm_contact',191,1), -(14,'civicrm_contact',192,4), -(15,'civicrm_contact',192,5), -(58,'civicrm_contact',193,5), -(7,'civicrm_contact',196,2), -(105,'civicrm_contact',199,5), -(75,'civicrm_contact',201,4), -(76,'civicrm_contact',201,5); + (10,'civicrm_contact',3,1), + (67,'civicrm_contact',4,5), + (89,'civicrm_contact',5,5), + (52,'civicrm_contact',6,4), + (53,'civicrm_contact',6,5), + (119,'civicrm_contact',12,4), + (120,'civicrm_contact',12,5), + (113,'civicrm_contact',13,4), + (93,'civicrm_contact',14,4), + (37,'civicrm_contact',17,4), + (70,'civicrm_contact',20,4), + (51,'civicrm_contact',23,4), + (99,'civicrm_contact',25,5), + (100,'civicrm_contact',27,4), + (101,'civicrm_contact',27,5), + (60,'civicrm_contact',29,5), + (13,'civicrm_contact',31,4), + (11,'civicrm_contact',33,4), + (12,'civicrm_contact',33,5), + (29,'civicrm_contact',35,5), + (5,'civicrm_contact',36,2), + (14,'civicrm_contact',38,5), + (111,'civicrm_contact',42,4), + (112,'civicrm_contact',42,5), + (38,'civicrm_contact',46,4), + (73,'civicrm_contact',48,4), + (74,'civicrm_contact',48,5), + (16,'civicrm_contact',49,5), + (25,'civicrm_contact',55,5), + (49,'civicrm_contact',59,4), + (106,'civicrm_contact',60,4), + (107,'civicrm_contact',60,5), + (63,'civicrm_contact',63,4), + (64,'civicrm_contact',63,5), + (94,'civicrm_contact',65,5), + (34,'civicrm_contact',72,4), + (35,'civicrm_contact',72,5), + (80,'civicrm_contact',75,4), + (81,'civicrm_contact',75,5), + (68,'civicrm_contact',76,5), + (58,'civicrm_contact',78,4), + (59,'civicrm_contact',78,5), + (90,'civicrm_contact',79,5), + (31,'civicrm_contact',81,4), + (32,'civicrm_contact',81,5), + (102,'civicrm_contact',86,5), + (98,'civicrm_contact',89,5), + (36,'civicrm_contact',91,5), + (82,'civicrm_contact',92,5), + (117,'civicrm_contact',93,4), + (118,'civicrm_contact',93,5), + (30,'civicrm_contact',94,4), + (42,'civicrm_contact',96,4), + (43,'civicrm_contact',96,5), + (110,'civicrm_contact',97,5), + (103,'civicrm_contact',98,5), + (8,'civicrm_contact',100,3), + (23,'civicrm_contact',101,4), + (114,'civicrm_contact',102,4), + (115,'civicrm_contact',102,5), + (50,'civicrm_contact',104,5), + (85,'civicrm_contact',105,4), + (86,'civicrm_contact',105,5), + (44,'civicrm_contact',108,4), + (45,'civicrm_contact',108,5), + (17,'civicrm_contact',109,4), + (78,'civicrm_contact',111,4), + (79,'civicrm_contact',111,5), + (48,'civicrm_contact',115,5), + (61,'civicrm_contact',116,5), + (46,'civicrm_contact',117,4), + (47,'civicrm_contact',117,5), + (54,'civicrm_contact',119,5), + (104,'civicrm_contact',121,5), + (87,'civicrm_contact',123,4), + (88,'civicrm_contact',123,5), + (97,'civicrm_contact',124,5), + (83,'civicrm_contact',126,4), + (84,'civicrm_contact',126,5), + (6,'civicrm_contact',128,3), + (15,'civicrm_contact',131,4), + (55,'civicrm_contact',133,4), + (3,'civicrm_contact',134,2), + (1,'civicrm_contact',136,1), + (26,'civicrm_contact',138,4), + (27,'civicrm_contact',138,5), + (116,'civicrm_contact',139,4), + (91,'civicrm_contact',141,4), + (92,'civicrm_contact',141,5), + (33,'civicrm_contact',143,4), + (65,'civicrm_contact',144,4), + (66,'civicrm_contact',144,5), + (105,'civicrm_contact',145,5), + (56,'civicrm_contact',147,4), + (57,'civicrm_contact',147,5), + (109,'civicrm_contact',149,4), + (95,'civicrm_contact',150,4), + (96,'civicrm_contact',150,5), + (2,'civicrm_contact',152,3), + (19,'civicrm_contact',153,4), + (20,'civicrm_contact',153,5), + (28,'civicrm_contact',157,4), + (41,'civicrm_contact',160,5), + (24,'civicrm_contact',164,5), + (75,'civicrm_contact',168,4), + (76,'civicrm_contact',168,5), + (22,'civicrm_contact',169,5), + (7,'civicrm_contact',170,1), + (71,'civicrm_contact',171,4), + (72,'civicrm_contact',171,5), + (4,'civicrm_contact',173,3), + (62,'civicrm_contact',178,4), + (18,'civicrm_contact',182,4), + (108,'civicrm_contact',184,5), + (9,'civicrm_contact',188,2), + (77,'civicrm_contact',191,4), + (21,'civicrm_contact',193,4), + (39,'civicrm_contact',195,4), + (40,'civicrm_contact',195,5), + (69,'civicrm_contact',200,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -3596,11 +3574,11 @@ LOCK TABLES `civicrm_event` WRITE; /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */; INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`, `is_show_calendar_links`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2025-08-11 17:00:00','2025-08-13 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), -(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2025-02-10 12:00:00','2025-02-10 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), -(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2025-09-11 07:00:00','2025-09-14 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), -(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), -(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), -(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1); + (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2025-02-10 12:00:00','2025-02-10 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), + (3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2025-09-11 07:00:00','2025-09-14 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,0,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), + (4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), + (5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1), + (6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */; UNLOCK TABLES; @@ -3612,18 +3590,18 @@ LOCK TABLES `civicrm_extension` WRITE; /*!40000 ALTER TABLE `civicrm_extension` DISABLE KEYS */; INSERT INTO `civicrm_extension` (`id`, `type`, `full_name`, `name`, `label`, `file`, `schema_version`, `is_active`) VALUES (1,'module','sequentialcreditnotes','Sequential credit notes','Sequential credit notes','sequentialcreditnotes',NULL,1), -(2,'module','greenwich','Theme: Greenwich','Theme: Greenwich','greenwich',NULL,1), -(3,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1), -(4,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1), -(5,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1), -(6,'module','civi_campaign','CiviCampaign','CiviCampaign','civi_campaign',NULL,1), -(7,'module','civi_case','CiviCase','CiviCase','civi_case',NULL,1), -(8,'module','civi_contribute','CiviContribute','CiviContribute','civi_contribute',NULL,1), -(9,'module','civi_event','CiviEvent','CiviEvent','civi_event',NULL,1), -(10,'module','civi_mail','CiviMail','CiviMail','civi_mail',NULL,1), -(11,'module','civi_member','CiviMember','CiviMember','civi_member',NULL,1), -(12,'module','civi_pledge','CiviPledge','CiviPledge','civi_pledge',NULL,1), -(13,'module','civi_report','CiviReport','CiviReport','civi_report',NULL,1); + (2,'module','greenwich','Theme: Greenwich','Theme: Greenwich','greenwich',NULL,1), + (3,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1), + (4,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1), + (5,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1), + (6,'module','civi_campaign','CiviCampaign','CiviCampaign','civi_campaign',NULL,1), + (7,'module','civi_case','CiviCase','CiviCase','civi_case',NULL,1), + (8,'module','civi_contribute','CiviContribute','CiviContribute','civi_contribute',NULL,1), + (9,'module','civi_event','CiviEvent','CiviEvent','civi_event',NULL,1), + (10,'module','civi_mail','CiviMail','CiviMail','civi_mail',NULL,1), + (11,'module','civi_member','CiviMember','CiviMember','civi_member',NULL,1), + (12,'module','civi_pledge','CiviPledge','CiviPledge','civi_pledge',NULL,1), + (13,'module','civi_report','CiviReport','CiviReport','civi_report',NULL,1); /*!40000 ALTER TABLE `civicrm_extension` ENABLE KEYS */; UNLOCK TABLES; @@ -3644,19 +3622,19 @@ LOCK TABLES `civicrm_financial_account` WRITE; /*!40000 ALTER TABLE `civicrm_financial_account` DISABLE KEYS */; INSERT INTO `civicrm_financial_account` (`id`, `name`, `label`, `contact_id`, `financial_account_type_id`, `accounting_code`, `account_type_code`, `description`, `parent_id`, `is_header_account`, `is_deductible`, `is_tax`, `tax_rate`, `is_reserved`, `is_active`, `is_default`) VALUES (1,'Donation','Donation',1,3,'4200','INC','Default account for donations',NULL,0,1,0,NULL,0,1,1), -(2,'Member Dues','Member Dues',1,3,'4400','INC','Default account for membership sales',NULL,0,1,0,NULL,0,1,0), -(3,'Campaign Contribution','Campaign Contribution',1,3,'4100','INC','Sample account for recording payments to a campaign',NULL,0,0,0,NULL,0,1,0), -(4,'Event Fee','Event Fee',1,3,'4300','INC','Default account for event ticket sales',NULL,0,0,0,NULL,0,1,0), -(5,'Banking Fees','Banking Fees',1,5,'5200','EXP','Payment processor fees and manually recorded banking fees',NULL,0,0,0,NULL,0,1,1), -(6,'Deposit Bank Account','Deposit Bank Account',1,1,'1100','BANK','All manually recorded cash and cheques go to this account',NULL,0,0,0,NULL,0,1,1), -(7,'Accounts Receivable','Accounts Receivable',1,1,'1200','AR','Amounts to be received later (eg pay later event revenues)',NULL,0,0,0,NULL,0,1,0), -(8,'Accounts Payable','Accounts Payable',1,2,'2200','AP','Amounts to be paid out such as grants and refunds',NULL,0,0,0,NULL,0,1,1), -(9,'Premiums','Premiums',1,4,'5100','COGS','Account to record cost of premiums provided to payors',NULL,0,0,0,NULL,0,1,1), -(10,'Premiums inventory','Premiums inventory',1,1,'1375','OCASSET','Account representing value of premiums inventory',NULL,0,0,0,NULL,0,1,0), -(11,'Discounts','Discounts',1,3,'4900','INC','Contra-revenue account for amounts discounted from sales',NULL,0,0,0,NULL,0,1,0), -(12,'Payment Processor Account','Payment Processor Account',1,1,'1150','BANK','Account to record payments into a payment processor merchant account',NULL,0,0,0,NULL,0,1,0), -(13,'Deferred Revenue - Event Fee','Deferred Revenue - Event Fee',1,2,'2730','OCLIAB','Event revenue to be recognized in future months when the events occur',NULL,0,0,0,NULL,0,1,0), -(14,'Deferred Revenue - Member Dues','Deferred Revenue - Member Dues',1,2,'2740','OCLIAB','Membership revenue to be recognized in future months',NULL,0,0,0,NULL,0,1,0); + (2,'Member Dues','Member Dues',1,3,'4400','INC','Default account for membership sales',NULL,0,1,0,NULL,0,1,0), + (3,'Campaign Contribution','Campaign Contribution',1,3,'4100','INC','Sample account for recording payments to a campaign',NULL,0,0,0,NULL,0,1,0), + (4,'Event Fee','Event Fee',1,3,'4300','INC','Default account for event ticket sales',NULL,0,0,0,NULL,0,1,0), + (5,'Banking Fees','Banking Fees',1,5,'5200','EXP','Payment processor fees and manually recorded banking fees',NULL,0,0,0,NULL,0,1,1), + (6,'Deposit Bank Account','Deposit Bank Account',1,1,'1100','BANK','All manually recorded cash and cheques go to this account',NULL,0,0,0,NULL,0,1,1), + (7,'Accounts Receivable','Accounts Receivable',1,1,'1200','AR','Amounts to be received later (eg pay later event revenues)',NULL,0,0,0,NULL,0,1,0), + (8,'Accounts Payable','Accounts Payable',1,2,'2200','AP','Amounts to be paid out such as grants and refunds',NULL,0,0,0,NULL,0,1,1), + (9,'Premiums','Premiums',1,4,'5100','COGS','Account to record cost of premiums provided to payors',NULL,0,0,0,NULL,0,1,1), + (10,'Premiums inventory','Premiums inventory',1,1,'1375','OCASSET','Account representing value of premiums inventory',NULL,0,0,0,NULL,0,1,0), + (11,'Discounts','Discounts',1,3,'4900','INC','Contra-revenue account for amounts discounted from sales',NULL,0,0,0,NULL,0,1,0), + (12,'Payment Processor Account','Payment Processor Account',1,1,'1150','BANK','Account to record payments into a payment processor merchant account',NULL,0,0,0,NULL,0,1,0), + (13,'Deferred Revenue - Event Fee','Deferred Revenue - Event Fee',1,2,'2730','OCLIAB','Event revenue to be recognized in future months when the events occur',NULL,0,0,0,NULL,0,1,0), + (14,'Deferred Revenue - Member Dues','Deferred Revenue - Member Dues',1,2,'2740','OCLIAB','Membership revenue to be recognized in future months',NULL,0,0,0,NULL,0,1,0); /*!40000 ALTER TABLE `civicrm_financial_account` ENABLE KEYS */; UNLOCK TABLES; @@ -3667,117 +3645,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_item` WRITE; /*!40000 ALTER TABLE `civicrm_financial_item` DISABLE KEYS */; INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES - (1,'2025-02-11 21:14:14','2015-02-11 21:14:13',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), -(2,'2025-02-11 21:14:14','2022-11-11 21:14:13',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), -(3,'2025-02-11 21:14:14','2019-01-17 08:14:13',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), -(4,'2025-02-11 21:14:14','2022-11-11 21:14:13',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), -(5,'2025-02-11 21:14:14','2022-11-11 21:14:13',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), -(6,'2025-02-11 21:14:14','2024-11-18 20:32:13',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), -(7,'2025-02-11 21:14:14','2025-02-09 21:14:13',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), -(8,'2025-02-11 21:14:14','2024-06-20 05:25:13',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), -(9,'2025-02-11 21:14:14','2024-03-11 21:14:13',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), -(10,'2025-02-11 21:14:14','2020-09-18 23:14:13',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), -(11,'2025-02-11 21:14:14','2025-02-10 17:14:13',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), -(12,'2025-02-11 21:14:14','2023-11-11 10:40:53',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), -(13,'2025-02-11 21:14:14','2024-11-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), -(14,'2025-02-11 21:14:14','2024-12-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), -(15,'2025-02-11 21:14:14','2023-11-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), -(16,'2025-02-11 21:14:14','2023-12-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), -(17,'2025-02-11 21:14:14','2024-01-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), -(18,'2025-02-11 21:14:14','2024-02-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), -(19,'2025-02-11 21:14:14','2024-03-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), -(20,'2025-02-11 21:14:14','2024-04-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), -(21,'2025-02-11 21:14:15','2024-05-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), -(22,'2025-02-11 21:14:15','2024-06-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), -(23,'2025-02-11 21:14:15','2024-07-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), -(24,'2025-02-11 21:14:15','2024-08-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), -(25,'2025-02-11 21:14:15','2024-09-11 21:14:13',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), -(26,'2025-02-11 21:14:15','2024-06-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), -(27,'2025-02-11 21:14:15','2024-07-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), -(28,'2025-02-11 21:14:15','2024-08-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), -(29,'2025-02-11 21:14:15','2024-09-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), -(30,'2025-02-11 21:14:15','2024-10-11 21:14:13',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), -(31,'2025-02-11 21:14:15','2025-01-11 21:14:13',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), -(32,'2025-02-11 21:14:15','2025-02-11 21:14:14',92,'General',100.00,'USD',2,1,'civicrm_line_item',32), -(33,'2025-02-11 21:14:15','2025-02-11 21:14:14',84,'General',100.00,'USD',2,1,'civicrm_line_item',33), -(34,'2025-02-11 21:14:15','2025-02-11 21:14:14',69,'General',100.00,'USD',2,1,'civicrm_line_item',34), -(35,'2025-02-11 21:14:15','2025-02-11 21:14:14',172,'General',100.00,'USD',2,1,'civicrm_line_item',35), -(36,'2025-02-11 21:14:15','2025-02-11 21:14:14',116,'General',100.00,'USD',2,1,'civicrm_line_item',36), -(37,'2025-02-11 21:14:15','2025-02-11 21:14:14',185,'General',100.00,'USD',2,1,'civicrm_line_item',37), -(38,'2025-02-11 21:14:15','2025-02-11 21:14:14',180,'General',100.00,'USD',2,1,'civicrm_line_item',38), -(39,'2025-02-11 21:14:15','2025-02-11 21:14:14',174,'General',100.00,'USD',2,1,'civicrm_line_item',39), -(40,'2025-02-11 21:14:15','2025-02-11 21:14:14',54,'General',100.00,'USD',2,1,'civicrm_line_item',40), -(41,'2025-02-11 21:14:15','2025-02-11 21:14:14',77,'General',100.00,'USD',2,1,'civicrm_line_item',41), -(42,'2025-02-11 21:14:15','2025-02-11 21:14:14',26,'General',100.00,'USD',2,1,'civicrm_line_item',42), -(43,'2025-02-11 21:14:15','2025-02-11 21:14:14',81,'General',100.00,'USD',2,1,'civicrm_line_item',43), -(44,'2025-02-11 21:14:15','2025-02-11 21:14:14',115,'General',100.00,'USD',2,1,'civicrm_line_item',44), -(45,'2025-02-11 21:14:15','2025-02-11 21:14:14',13,'General',100.00,'USD',2,1,'civicrm_line_item',45), -(46,'2025-02-11 21:14:15','2025-02-11 21:14:14',27,'General',100.00,'USD',2,1,'civicrm_line_item',46), -(47,'2025-02-11 21:14:15','2025-02-11 21:14:14',130,'General',100.00,'USD',2,1,'civicrm_line_item',47), -(48,'2025-02-11 21:14:15','2025-02-11 21:14:14',99,'Student',50.00,'USD',2,1,'civicrm_line_item',48), -(49,'2025-02-11 21:14:15','2025-02-11 21:14:14',160,'Student',50.00,'USD',2,1,'civicrm_line_item',49), -(50,'2025-02-11 21:14:15','2025-02-11 21:14:14',82,'Student',50.00,'USD',2,1,'civicrm_line_item',50), -(51,'2025-02-11 21:14:15','2025-02-11 21:14:14',189,'Student',50.00,'USD',2,1,'civicrm_line_item',51), -(52,'2025-02-11 21:14:15','2025-02-11 21:14:14',148,'Student',50.00,'USD',2,1,'civicrm_line_item',52), -(53,'2025-02-11 21:14:16','2025-02-11 21:14:14',117,'Student',50.00,'USD',2,1,'civicrm_line_item',53), -(54,'2025-02-11 21:14:16','2025-02-11 21:14:14',11,'Student',50.00,'USD',2,1,'civicrm_line_item',54), -(55,'2025-02-11 21:14:16','2025-02-11 21:14:14',100,'Student',50.00,'USD',2,1,'civicrm_line_item',55), -(56,'2025-02-11 21:14:16','2025-02-11 21:14:14',113,'Student',50.00,'USD',2,1,'civicrm_line_item',56), -(57,'2025-02-11 21:14:16','2025-02-11 21:14:14',88,'Student',50.00,'USD',2,1,'civicrm_line_item',57), -(58,'2025-02-11 21:14:16','2025-02-11 21:14:14',159,'Student',50.00,'USD',2,1,'civicrm_line_item',58), -(59,'2025-02-11 21:14:16','2025-02-11 21:14:14',141,'Student',50.00,'USD',2,1,'civicrm_line_item',59), -(60,'2025-02-11 21:14:16','2025-02-11 21:14:14',152,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), -(61,'2025-02-11 21:14:16','2025-02-11 21:14:14',19,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), -(62,'2025-02-11 21:14:16','2025-02-11 21:14:14',167,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), -(63,'2025-02-11 21:14:16','2025-02-11 21:14:14',149,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), -(64,'2025-02-11 21:14:16','2025-02-11 21:14:14',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), -(65,'2025-02-11 21:14:16','2025-02-11 21:14:14',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), -(66,'2025-02-11 21:14:16','2025-02-11 21:14:14',117,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), -(67,'2025-02-11 21:14:16','2025-02-11 21:14:14',186,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), -(68,'2025-02-11 21:14:16','2025-02-11 21:14:14',49,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), -(69,'2025-02-11 21:14:16','2025-02-11 21:14:14',30,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), -(70,'2025-02-11 21:14:16','2025-02-11 21:14:14',78,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), -(71,'2025-02-11 21:14:16','2025-02-11 21:14:14',190,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), -(72,'2025-02-11 21:14:16','2025-02-11 21:14:14',60,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), -(73,'2025-02-11 21:14:16','2025-02-11 21:14:14',34,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), -(74,'2025-02-11 21:14:16','2025-02-11 21:14:14',17,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), -(75,'2025-02-11 21:14:16','2025-02-11 21:14:14',148,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), -(76,'2025-02-11 21:14:16','2025-02-11 21:14:14',146,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), -(77,'2025-02-11 21:14:16','2025-02-11 21:14:14',37,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), -(78,'2025-02-11 21:14:16','2025-02-11 21:14:14',54,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), -(79,'2025-02-11 21:14:16','2025-02-11 21:14:14',113,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), -(80,'2025-02-11 21:14:16','2025-02-11 21:14:14',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), -(81,'2025-02-11 21:14:16','2025-02-11 21:14:14',163,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), -(82,'2025-02-11 21:14:16','2025-02-11 21:14:14',79,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), -(83,'2025-02-11 21:14:16','2025-02-11 21:14:14',45,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), -(84,'2025-02-11 21:14:16','2025-02-11 21:14:14',11,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), -(85,'2025-02-11 21:14:17','2025-02-11 21:14:14',152,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), -(86,'2025-02-11 21:14:17','2025-02-11 21:14:14',197,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), -(87,'2025-02-11 21:14:17','2025-02-11 21:14:14',184,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), -(88,'2025-02-11 21:14:17','2025-02-11 21:14:14',65,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), -(89,'2025-02-11 21:14:17','2025-02-11 21:14:14',5,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), -(90,'2025-02-11 21:14:17','2025-02-11 21:14:14',162,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), -(91,'2025-02-11 21:14:17','2025-02-11 21:14:14',87,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), -(92,'2025-02-11 21:14:17','2025-02-11 21:14:14',118,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), -(93,'2025-02-11 21:14:17','2025-02-11 21:14:14',181,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), -(94,'2025-02-11 21:14:17','2025-02-11 21:14:14',192,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), -(95,'2025-02-11 21:14:17','2025-02-11 21:14:14',6,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), -(96,'2025-02-11 21:14:17','2025-02-11 21:14:14',125,'Single',50.00,'USD',4,1,'civicrm_line_item',81), -(97,'2025-02-11 21:14:17','2025-02-11 21:14:14',129,'Single',50.00,'USD',4,1,'civicrm_line_item',82), -(98,'2025-02-11 21:14:17','2025-02-11 21:14:14',140,'Single',50.00,'USD',4,1,'civicrm_line_item',83), -(99,'2025-02-11 21:14:17','2025-02-11 21:14:14',137,'Single',50.00,'USD',4,1,'civicrm_line_item',84), -(100,'2025-02-11 21:14:17','2025-02-11 21:14:14',76,'Single',50.00,'USD',4,1,'civicrm_line_item',85), -(101,'2025-02-11 21:14:17','2025-02-11 21:14:14',20,'Single',50.00,'USD',4,1,'civicrm_line_item',86), -(102,'2025-02-11 21:14:17','2025-02-11 21:14:14',55,'Single',50.00,'USD',4,1,'civicrm_line_item',87), -(103,'2025-02-11 21:14:17','2025-02-11 21:14:14',180,'Single',50.00,'USD',4,1,'civicrm_line_item',88), -(104,'2025-02-11 21:14:17','2025-02-11 21:14:14',84,'Single',50.00,'USD',4,1,'civicrm_line_item',89), -(105,'2025-02-11 21:14:17','2025-02-11 21:14:14',194,'Single',50.00,'USD',4,1,'civicrm_line_item',90), -(106,'2025-02-11 21:14:17','2025-02-11 21:14:14',111,'Single',50.00,'USD',4,1,'civicrm_line_item',91), -(107,'2025-02-11 21:14:17','2025-02-11 21:14:14',13,'Single',50.00,'USD',4,1,'civicrm_line_item',92), -(108,'2025-02-11 21:14:17','2025-02-11 21:14:14',147,'Single',50.00,'USD',4,1,'civicrm_line_item',93), -(109,'2025-02-11 21:14:17','2025-02-11 21:14:14',64,'Single',50.00,'USD',4,1,'civicrm_line_item',94), -(110,'2025-02-11 21:14:17','2025-02-11 21:14:14',134,'Single',50.00,'USD',4,1,'civicrm_line_item',95), -(111,'2025-02-11 21:14:17','2025-02-11 21:14:14',110,'Single',50.00,'USD',4,1,'civicrm_line_item',96); + (1,'2025-02-11 22:13:26','2015-02-11 22:13:25',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), + (2,'2025-02-11 22:13:26','2022-11-11 22:13:25',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), + (3,'2025-02-11 22:13:26','2019-01-17 09:13:25',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), + (4,'2025-02-11 22:13:26','2022-11-11 22:13:25',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), + (5,'2025-02-11 22:13:26','2022-11-11 22:13:25',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), + (6,'2025-02-11 22:13:26','2024-11-18 21:31:25',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), + (7,'2025-02-11 22:13:26','2025-02-09 22:13:25',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), + (8,'2025-02-11 22:13:26','2024-06-20 06:24:25',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), + (9,'2025-02-11 22:13:26','2024-03-11 22:13:25',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), + (10,'2025-02-11 22:13:26','2020-09-19 00:13:25',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), + (11,'2025-02-11 22:13:26','2025-02-10 18:13:25',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), + (12,'2025-02-11 22:13:26','2023-11-11 11:40:05',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), + (13,'2025-02-11 22:13:26','2024-11-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), + (14,'2025-02-11 22:13:26','2024-12-11 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), + (15,'2025-02-11 22:13:26','2023-11-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), + (16,'2025-02-11 22:13:26','2023-12-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), + (17,'2025-02-11 22:13:26','2024-01-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), + (18,'2025-02-11 22:13:26','2024-02-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), + (19,'2025-02-11 22:13:26','2024-03-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), + (20,'2025-02-11 22:13:26','2024-04-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), + (21,'2025-02-11 22:13:26','2024-05-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), + (22,'2025-02-11 22:13:26','2024-06-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), + (23,'2025-02-11 22:13:26','2024-07-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), + (24,'2025-02-11 22:13:26','2024-08-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), + (25,'2025-02-11 22:13:26','2024-09-11 22:13:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), + (26,'2025-02-11 22:13:26','2024-06-11 22:13:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), + (27,'2025-02-11 22:13:26','2024-07-11 22:13:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), + (28,'2025-02-11 22:13:26','2024-08-11 22:13:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), + (29,'2025-02-11 22:13:26','2024-09-11 22:13:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), + (30,'2025-02-11 22:13:26','2024-10-11 22:13:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), + (31,'2025-02-11 22:13:26','2025-01-11 22:13:25',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), + (32,'2025-02-11 22:13:26','2025-02-11 22:13:26',24,'General',100.00,'USD',2,1,'civicrm_line_item',32), + (33,'2025-02-11 22:13:26','2025-02-11 22:13:26',81,'General',100.00,'USD',2,1,'civicrm_line_item',33), + (34,'2025-02-11 22:13:26','2025-02-11 22:13:26',42,'General',100.00,'USD',2,1,'civicrm_line_item',34), + (35,'2025-02-11 22:13:26','2025-02-11 22:13:26',129,'General',100.00,'USD',2,1,'civicrm_line_item',35), + (36,'2025-02-11 22:13:26','2025-02-11 22:13:26',25,'General',100.00,'USD',2,1,'civicrm_line_item',36), + (37,'2025-02-11 22:13:26','2025-02-11 22:13:26',201,'General',100.00,'USD',2,1,'civicrm_line_item',37), + (38,'2025-02-11 22:13:26','2025-02-11 22:13:26',181,'General',100.00,'USD',2,1,'civicrm_line_item',38), + (39,'2025-02-11 22:13:26','2025-02-11 22:13:26',95,'General',100.00,'USD',2,1,'civicrm_line_item',39), + (40,'2025-02-11 22:13:26','2025-02-11 22:13:26',153,'General',100.00,'USD',2,1,'civicrm_line_item',40), + (41,'2025-02-11 22:13:26','2025-02-11 22:13:26',55,'General',100.00,'USD',2,1,'civicrm_line_item',41), + (42,'2025-02-11 22:13:26','2025-02-11 22:13:26',92,'General',100.00,'USD',2,1,'civicrm_line_item',42), + (43,'2025-02-11 22:13:26','2025-02-11 22:13:26',146,'General',100.00,'USD',2,1,'civicrm_line_item',43), + (44,'2025-02-11 22:13:26','2025-02-11 22:13:26',169,'General',100.00,'USD',2,1,'civicrm_line_item',44), + (45,'2025-02-11 22:13:26','2025-02-11 22:13:26',9,'Student',50.00,'USD',2,1,'civicrm_line_item',45), + (46,'2025-02-11 22:13:26','2025-02-11 22:13:26',69,'Student',50.00,'USD',2,1,'civicrm_line_item',46), + (47,'2025-02-11 22:13:26','2025-02-11 22:13:26',26,'Student',50.00,'USD',2,1,'civicrm_line_item',47), + (48,'2025-02-11 22:13:26','2025-02-11 22:13:26',59,'Student',50.00,'USD',2,1,'civicrm_line_item',48), + (49,'2025-02-11 22:13:26','2025-02-11 22:13:26',126,'Student',50.00,'USD',2,1,'civicrm_line_item',49), + (50,'2025-02-11 22:13:26','2025-02-11 22:13:26',18,'Student',50.00,'USD',2,1,'civicrm_line_item',50), + (51,'2025-02-11 22:13:26','2025-02-11 22:13:26',75,'Student',50.00,'USD',2,1,'civicrm_line_item',51), + (52,'2025-02-11 22:13:26','2025-02-11 22:13:26',154,'Student',50.00,'USD',2,1,'civicrm_line_item',52), + (53,'2025-02-11 22:13:26','2025-02-11 22:13:26',184,'Student',50.00,'USD',2,1,'civicrm_line_item',53), + (54,'2025-02-11 22:13:26','2025-02-11 22:13:26',89,'Student',50.00,'USD',2,1,'civicrm_line_item',54), + (55,'2025-02-11 22:13:26','2025-02-11 22:13:26',56,'Student',50.00,'USD',2,1,'civicrm_line_item',55), + (56,'2025-02-11 22:13:26','2025-02-11 22:13:26',99,'Student',50.00,'USD',2,1,'civicrm_line_item',56), + (57,'2025-02-11 22:13:26','2025-02-11 22:13:26',105,'Student',50.00,'USD',2,1,'civicrm_line_item',57), + (58,'2025-02-11 22:13:26','2025-02-11 22:13:26',102,'Student',50.00,'USD',2,1,'civicrm_line_item',58), + (59,'2025-02-11 22:13:26','2025-02-11 22:13:26',178,'Student',50.00,'USD',2,1,'civicrm_line_item',59), + (60,'2025-02-11 22:13:26','2025-02-11 22:13:26',96,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), + (61,'2025-02-11 22:13:26','2025-02-11 22:13:26',165,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), + (62,'2025-02-11 22:13:26','2025-02-11 22:13:26',189,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), + (63,'2025-02-11 22:13:26','2025-02-11 22:13:26',199,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), + (64,'2025-02-11 22:13:26','2025-02-11 22:13:26',48,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), + (65,'2025-02-11 22:13:26','2025-02-11 22:13:26',125,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), + (66,'2025-02-11 22:13:26','2025-02-11 22:13:26',99,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), + (67,'2025-02-11 22:13:26','2025-02-11 22:13:26',144,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), + (68,'2025-02-11 22:13:26','2025-02-11 22:13:26',95,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), + (69,'2025-02-11 22:13:26','2025-02-11 22:13:26',27,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), + (70,'2025-02-11 22:13:26','2025-02-11 22:13:26',118,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), + (71,'2025-02-11 22:13:26','2025-02-11 22:13:26',89,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), + (72,'2025-02-11 22:13:26','2025-02-11 22:13:26',197,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), + (73,'2025-02-11 22:13:26','2025-02-11 22:13:26',108,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), + (74,'2025-02-11 22:13:26','2025-02-11 22:13:26',130,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), + (75,'2025-02-11 22:13:26','2025-02-11 22:13:26',185,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), + (76,'2025-02-11 22:13:26','2025-02-11 22:13:26',107,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), + (77,'2025-02-11 22:13:26','2025-02-11 22:13:26',32,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), + (78,'2025-02-11 22:13:26','2025-02-11 22:13:26',52,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), + (79,'2025-02-11 22:13:26','2025-02-11 22:13:26',21,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), + (80,'2025-02-11 22:13:26','2025-02-11 22:13:26',139,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), + (81,'2025-02-11 22:13:26','2025-02-11 22:13:26',45,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), + (82,'2025-02-11 22:13:26','2025-02-11 22:13:26',54,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), + (83,'2025-02-11 22:13:26','2025-02-11 22:13:26',172,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), + (84,'2025-02-11 22:13:26','2025-02-11 22:13:26',157,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), + (85,'2025-02-11 22:13:26','2025-02-11 22:13:26',100,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), + (86,'2025-02-11 22:13:26','2025-02-11 22:13:26',37,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), + (87,'2025-02-11 22:13:26','2025-02-11 22:13:26',133,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), + (88,'2025-02-11 22:13:26','2025-02-11 22:13:26',91,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), + (89,'2025-02-11 22:13:26','2025-02-11 22:13:26',106,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), + (90,'2025-02-11 22:13:26','2025-02-11 22:13:26',15,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), + (91,'2025-02-11 22:13:26','2025-02-11 22:13:26',168,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), + (92,'2025-02-11 22:13:26','2025-02-11 22:13:26',134,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), + (93,'2025-02-11 22:13:26','2025-02-11 22:13:26',79,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), + (94,'2025-02-11 22:13:26','2025-02-11 22:13:26',121,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), + (95,'2025-02-11 22:13:26','2025-02-11 22:13:26',113,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), + (96,'2025-02-11 22:13:26','2025-02-11 22:13:26',3,'Single',50.00,'USD',4,1,'civicrm_line_item',81), + (97,'2025-02-11 22:13:26','2025-02-11 22:13:26',56,'Single',50.00,'USD',4,1,'civicrm_line_item',82), + (98,'2025-02-11 22:13:26','2025-02-11 22:13:26',105,'Single',50.00,'USD',4,1,'civicrm_line_item',83), + (99,'2025-02-11 22:13:26','2025-02-11 22:13:26',143,'Single',50.00,'USD',4,1,'civicrm_line_item',84), + (100,'2025-02-11 22:13:26','2025-02-11 22:13:26',73,'Single',50.00,'USD',4,1,'civicrm_line_item',85), + (101,'2025-02-11 22:13:26','2025-02-11 22:13:26',162,'Single',50.00,'USD',4,1,'civicrm_line_item',86), + (102,'2025-02-11 22:13:26','2025-02-11 22:13:26',90,'Single',50.00,'USD',4,1,'civicrm_line_item',87), + (103,'2025-02-11 22:13:26','2025-02-11 22:13:26',175,'Single',50.00,'USD',4,1,'civicrm_line_item',88), + (104,'2025-02-11 22:13:26','2025-02-11 22:13:26',146,'Single',50.00,'USD',4,1,'civicrm_line_item',89), + (105,'2025-02-11 22:13:26','2025-02-11 22:13:26',122,'Single',50.00,'USD',4,1,'civicrm_line_item',90), + (106,'2025-02-11 22:13:26','2025-02-11 22:13:26',97,'Single',50.00,'USD',4,1,'civicrm_line_item',91), + (107,'2025-02-11 22:13:26','2025-02-11 22:13:26',43,'Single',50.00,'USD',4,1,'civicrm_line_item',92), + (108,'2025-02-11 22:13:26','2025-02-11 22:13:26',138,'Single',50.00,'USD',4,1,'civicrm_line_item',93), + (109,'2025-02-11 22:13:26','2025-02-11 22:13:26',78,'Single',50.00,'USD',4,1,'civicrm_line_item',94), + (110,'2025-02-11 22:13:26','2025-02-11 22:13:26',112,'Single',50.00,'USD',4,1,'civicrm_line_item',95), + (111,'2025-02-11 22:13:26','2025-02-11 22:13:26',76,'Single',50.00,'USD',4,1,'civicrm_line_item',96); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -3788,117 +3766,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`, `order_reference`) VALUES - (1,NULL,6,'2015-02-11 21:14:13',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), -(2,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(3,NULL,6,'2019-01-17 08:14:13',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), -(4,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), -(5,NULL,6,'2022-11-11 21:14:13',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(6,NULL,6,'2024-11-18 20:32:13',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), -(7,NULL,6,'2025-02-09 21:14:13',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), -(8,NULL,6,'2024-06-20 05:25:13',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(9,NULL,6,'2024-03-11 21:14:13',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(10,NULL,6,'2020-09-18 23:14:13',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(11,NULL,6,'2025-02-10 17:14:13',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(12,NULL,6,'2023-11-11 10:40:53',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(13,NULL,6,'2024-11-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(14,NULL,6,'2024-12-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(15,NULL,6,'2023-11-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(16,NULL,6,'2023-12-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(17,NULL,6,'2024-01-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(18,NULL,6,'2024-02-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(19,NULL,6,'2024-03-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(20,NULL,6,'2024-04-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(21,NULL,6,'2024-05-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(22,NULL,6,'2024-06-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(23,NULL,6,'2024-07-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(24,NULL,6,'2024-08-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(25,NULL,6,'2024-09-11 21:14:13',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(26,NULL,6,'2024-06-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(27,NULL,6,'2024-07-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(28,NULL,6,'2024-08-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(29,NULL,6,'2024-09-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(30,NULL,6,'2024-10-11 21:14:13',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(31,NULL,6,'2025-01-11 21:14:13',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(32,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'30b21218d4f608be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(33,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'574b9165dd1b2b08',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(34,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'023af7d0c7f31b8a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(35,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'62d9ef9ccc062221',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(36,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'7d6fcd38d448304e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(37,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'f5358baca286095a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(38,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'1d0bcce5e3098071',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(39,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'54ef2704f518b5f4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(40,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'525936f76eaded41',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(41,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'5c82b9195bb60c1c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(42,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'aba9c3f3571c72df',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(43,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'70a25e1a224d8953',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(44,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'89c796b13ba0d28a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(45,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'c4bb26bafd34a7ec',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(46,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'f8ea0147caf88d9e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(47,NULL,6,'2025-02-11 21:14:14',100.00,NULL,NULL,'USD',1,'76a4f2862289bedc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(48,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'0dedfa09e891438f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(49,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2a38f7756033f606',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(50,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'33d7025c877837f5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(51,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'02389d9d955ce089',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(52,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c9e18530302548b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(53,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'202a92329ecef77e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(54,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2f4c60965320af89',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(55,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c9863526e83a76ec',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(56,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'062f7ed8d280446a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(57,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'380fc034c1ac7e2b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(58,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'6c1d7a100734c442',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(59,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'56d62e4b8de9e019',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(60,NULL,6,'2025-02-11 21:14:14',1200.00,NULL,NULL,'USD',1,'e62ae07fa55fd663',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(61,NULL,6,'2025-02-11 21:14:14',1200.00,NULL,NULL,'USD',1,'7709afa3e698eda0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(62,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'ccf97b109357b8f2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(63,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c133f13ab6e644aa',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(64,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'e5221b71be93c59f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(65,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3cddfd1a376b75ce',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(66,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'c307954cba953250',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(67,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3b8c6753e607caae',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(68,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'f03674f7ee9a296a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(69,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'992368ca700244de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(70,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'38500eff4fe4f408',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(71,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'3f6751e063aad61c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(72,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'256b383f905d7f60',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(73,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'629be821c1050c28',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(74,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'4b07755fa1f5b062',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(75,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'74f57f05ebb364d9',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(76,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'82bfc16353bc11d8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(77,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'5e96e6ad3e4d7931',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(78,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'2fcbf2346f509f8c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(79,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'ec883bafea47f002',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(80,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'d469814944d49bf7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(81,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'0778baf13b378795',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(82,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'c5cf79c1a1a9724a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(83,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'275ea22fdba62972',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(84,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'2f9e0ac0e64b7838',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(85,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'80ad0bf6b7a42de0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(86,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'65cf28ebef7101d8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(87,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'6465ecbfbea93628',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(88,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'c4495379ed6eb080',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(89,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'6d6c3146a0f2ca2c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(90,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'1f351b2a90f13441',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(91,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'94e75bfe88b77a1e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(92,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'a04031766e066125',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(93,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'36a0f24d2a86c4be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(94,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'5d53c4a3409d0fb3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(95,NULL,6,'2025-02-11 21:14:14',800.00,NULL,NULL,'USD',1,'f4718d011de18df0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(96,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'ef4386a7d7349d5b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(97,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'0991cc36c28c5183',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(98,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7b1b12afc904a2bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(99,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'25efeb195a2226c5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(100,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'634616b413dda509',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(101,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'fe91541ab3ac36bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(102,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7cfc64c19ce2e710',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(103,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7c4356899190cbe5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(104,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'4448ab608fdcf5b8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(105,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'8d80f80d5f271482',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(106,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'968db382c346785b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(107,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'7d686602d215ef51',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(108,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'8e591a74e7bfcc1b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(109,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'2630868a771db2c8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(110,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'27547f8765679bba',NULL,1,NULL,1,NULL,NULL,NULL,NULL), -(111,NULL,6,'2025-02-11 21:14:14',50.00,NULL,NULL,'USD',1,'e9e138a2d12808b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL); + (1,NULL,6,'2015-02-11 22:13:25',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), + (2,NULL,6,'2022-11-11 22:13:25',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (3,NULL,6,'2019-01-17 09:13:25',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), + (4,NULL,6,'2022-11-11 22:13:25',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), + (5,NULL,6,'2022-11-11 22:13:25',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (6,NULL,6,'2024-11-18 21:31:25',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), + (7,NULL,6,'2025-02-09 22:13:25',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), + (8,NULL,6,'2024-06-20 06:24:25',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (9,NULL,6,'2024-03-11 22:13:25',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (10,NULL,6,'2020-09-19 00:13:25',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (11,NULL,6,'2025-02-10 18:13:25',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (12,NULL,6,'2023-11-11 11:40:05',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (13,NULL,6,'2024-11-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (14,NULL,6,'2024-12-11 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (15,NULL,6,'2023-11-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (16,NULL,6,'2023-12-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (17,NULL,6,'2024-01-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (18,NULL,6,'2024-02-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (19,NULL,6,'2024-03-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (20,NULL,6,'2024-04-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (21,NULL,6,'2024-05-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (22,NULL,6,'2024-06-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (23,NULL,6,'2024-07-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (24,NULL,6,'2024-08-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (25,NULL,6,'2024-09-11 22:13:25',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (26,NULL,6,'2024-06-11 22:13:25',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (27,NULL,6,'2024-07-11 22:13:25',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (28,NULL,6,'2024-08-11 22:13:25',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (29,NULL,6,'2024-09-11 22:13:25',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (30,NULL,6,'2024-10-11 22:13:25',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (31,NULL,6,'2025-01-11 22:13:25',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (32,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'2c7cea62f76bcede',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (33,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'7bff9ba323461ca2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (34,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'001f52c25086b9bc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (35,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'1717fc6d453b6ea0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (36,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'d24654c8f6afee6f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (37,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'1abef002ff427b8e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (38,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'6563e6bb939d6815',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (39,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'71dd87351aad1712',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (40,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'62d869218acc3ce7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (41,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'4eb5e109c3aa79b8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (42,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'ffb87d6eb34fbd75',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (43,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'0e861003a435ee28',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (44,NULL,6,'2025-02-11 22:13:26',100.00,NULL,NULL,'USD',1,'c24e97d93ba4498e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (45,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'f36a6ed4cc64b59f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (46,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'1aac9af65a15193c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (47,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'964c368cded32d96',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (48,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'042fb74788ebcad2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (49,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'3e6b85a0f22a1bb2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (50,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'f9f6da8e8d248914',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (51,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'efd306f67ad5f834',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (52,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'f42a0c995a0dfa46',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (53,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'1dddf6b9a5a0e740',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (54,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'1eecbfb5ef4f8715',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (55,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'f81ac84e4e777c2a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (56,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'a41c92b9a62af6d5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (57,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'a1ab0f23954a34e4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (58,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'564973fbdb997d45',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (59,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'c2372ee7bd36001c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (60,NULL,6,'2025-02-11 22:13:26',1200.00,NULL,NULL,'USD',1,'a61d555a8bebc9d0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (61,NULL,6,'2025-02-11 22:13:26',1200.00,NULL,NULL,'USD',1,'d6684678c47f3934',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (62,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'aa7ede7f8455bea6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (63,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'e7cb020295aebca0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (64,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'a5517145b7bbd0fa',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (65,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'064090d0dd7c4ce3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (66,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'b33fe922f9126e56',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (67,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'44f36505f2e5e785',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (68,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'af8ccc24f8e82650',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (69,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'6a2e85a40d2bd598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (70,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'a3cdbad45838e860',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (71,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'7585350f752dba61',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (72,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'fa751200e4dfe06d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (73,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'89c00c10b5dfc35e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (74,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'61e523804495fa25',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (75,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'a819a18b5e10abe0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (76,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'413a07f521df22e8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (77,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'9ecd5685981f418e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (78,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'72b521b51f698467',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (79,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'eda007a083e0c108',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (80,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'b16951c206b2d715',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (81,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'9ecd1390252cdfb6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (82,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'6b880fd6e48041db',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (83,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'f3aa8925c13437be',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (84,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'ad093b7ee66109cf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (85,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'77c7823a4c56f38f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (86,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'2d5e2a0d7d0b6324',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (87,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'61947d43b815d52d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (88,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'f5e8f02ea53a3585',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (89,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'1382ef86d8e53b6f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (90,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'489785c0c67d4a0d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (91,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'e067465980ab3264',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (92,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'d2c433953b1ba6d0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (93,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'eaa45aa1cc728904',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (94,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'1cb59b9957da40bb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (95,NULL,6,'2025-02-11 22:13:26',800.00,NULL,NULL,'USD',1,'32dd719ff9388715',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (96,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'7c92a74924b026cd',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (97,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'0a1d8985492d0b94',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (98,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'b958722085101e34',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (99,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'1ddb19aacef50f10',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (100,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'e25cf10daba83aaf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (101,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'006e20a0bde3e413',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (102,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'2ebc18d00063923b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (103,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'eece76bb3493f803',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (104,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'bf4c161a4d2ab93e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (105,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'21c98e4810a62489',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (106,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'f2bb64062f1bb0de',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (107,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'9b2b972f4d1b05a0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (108,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'dc38b16096fa959a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (109,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'5bbdf37e87686769',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (110,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'0eafa76f4f0e2716',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (111,NULL,6,'2025-02-11 22:13:26',50.00,NULL,NULL,'USD',1,'b81d6ea62c501771',NULL,1,NULL,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -3910,9 +3888,9 @@ LOCK TABLES `civicrm_financial_type` WRITE; /*!40000 ALTER TABLE `civicrm_financial_type` DISABLE KEYS */; INSERT INTO `civicrm_financial_type` (`id`, `name`, `label`, `description`, `is_deductible`, `is_reserved`, `is_active`) VALUES (1,'Donation','Donation',NULL,1,0,1), -(2,'Member Dues','Member Dues',NULL,1,0,1), -(3,'Campaign Contribution','Campaign Contribution',NULL,0,0,1), -(4,'Event Fee','Event Fee',NULL,0,0,1); + (2,'Member Dues','Member Dues',NULL,1,0,1), + (3,'Campaign Contribution','Campaign Contribution',NULL,0,0,1), + (4,'Event Fee','Event Fee',NULL,0,0,1); /*!40000 ALTER TABLE `civicrm_financial_type` ENABLE KEYS */; UNLOCK TABLES; @@ -3924,9 +3902,9 @@ LOCK TABLES `civicrm_group` WRITE; /*!40000 ALTER TABLE `civicrm_group` DISABLE KEYS */; INSERT INTO `civicrm_group` (`id`, `name`, `title`, `description`, `source`, `saved_search_id`, `is_active`, `visibility`, `where_clause`, `select_tables`, `where_tables`, `group_type`, `cache_date`, `cache_fill_took`, `refresh_date`, `parents`, `children`, `is_hidden`, `is_reserved`, `created_id`, `modified_id`, `frontend_title`, `frontend_description`) VALUES (1,'Administrators','Administrators','Contacts in this group are assigned Administrator role permissions.',NULL,NULL,1,'User and User Admin Only',NULL,NULL,NULL,'1',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Administrators',''), -(2,'Newsletter Subscribers','Newsletter Subscribers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Newsletter Subscribers',NULL), -(3,'Summer Program Volunteers','Summer Program Volunteers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Summer Program Volunteers',NULL), -(4,'Advisory Board','Advisory Board',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Advisory Board',NULL); + (2,'Newsletter Subscribers','Newsletter Subscribers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Newsletter Subscribers',NULL), + (3,'Summer Program Volunteers','Summer Program Volunteers',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Summer Program Volunteers',NULL), + (4,'Advisory Board','Advisory Board',NULL,NULL,NULL,1,'Public Pages',NULL,NULL,NULL,'12',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,'Advisory Board',NULL); /*!40000 ALTER TABLE `civicrm_group` ENABLE KEYS */; UNLOCK TABLES; @@ -3937,90 +3915,90 @@ UNLOCK TABLES; LOCK TABLES `civicrm_group_contact` WRITE; /*!40000 ALTER TABLE `civicrm_group_contact` DISABLE KEYS */; INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES - (1,2,147,'Added',NULL,NULL), -(2,2,198,'Added',NULL,NULL), -(3,2,182,'Added',NULL,NULL), -(4,2,123,'Added',NULL,NULL), -(5,2,192,'Added',NULL,NULL), -(6,2,72,'Added',NULL,NULL), -(7,2,96,'Added',NULL,NULL), -(8,2,18,'Added',NULL,NULL), -(9,2,97,'Added',NULL,NULL), -(10,2,159,'Added',NULL,NULL), -(11,2,13,'Added',NULL,NULL), -(12,2,84,'Added',NULL,NULL), -(13,2,24,'Added',NULL,NULL), -(14,2,66,'Added',NULL,NULL), -(15,2,4,'Added',NULL,NULL), -(16,2,154,'Added',NULL,NULL), -(17,2,23,'Added',NULL,NULL), -(18,2,17,'Added',NULL,NULL), -(19,2,64,'Added',NULL,NULL), -(20,2,133,'Added',NULL,NULL), -(21,2,172,'Added',NULL,NULL), -(22,2,61,'Added',NULL,NULL), -(23,2,59,'Added',NULL,NULL), -(24,2,151,'Added',NULL,NULL), -(25,2,121,'Added',NULL,NULL), -(26,2,70,'Added',NULL,NULL), -(27,2,79,'Added',NULL,NULL), -(28,2,187,'Added',NULL,NULL), -(29,2,153,'Added',NULL,NULL), -(30,2,7,'Added',NULL,NULL), -(31,2,25,'Added',NULL,NULL), -(32,2,9,'Added',NULL,NULL), -(33,2,95,'Added',NULL,NULL), -(34,2,189,'Added',NULL,NULL), -(35,2,146,'Added',NULL,NULL), -(36,2,145,'Added',NULL,NULL), -(37,2,186,'Added',NULL,NULL), -(38,2,99,'Added',NULL,NULL), -(39,2,185,'Added',NULL,NULL), -(40,2,125,'Added',NULL,NULL), -(41,2,132,'Added',NULL,NULL), -(42,2,170,'Added',NULL,NULL), -(43,2,184,'Added',NULL,NULL), -(44,2,86,'Added',NULL,NULL), -(45,2,163,'Added',NULL,NULL), -(46,2,107,'Added',NULL,NULL), -(47,2,10,'Added',NULL,NULL), -(48,2,126,'Added',NULL,NULL), -(49,2,93,'Added',NULL,NULL), -(50,2,27,'Added',NULL,NULL), -(51,2,71,'Added',NULL,NULL), -(52,2,69,'Added',NULL,NULL), -(53,2,108,'Added',NULL,NULL), -(54,2,62,'Added',NULL,NULL), -(55,2,81,'Added',NULL,NULL), -(56,2,45,'Added',NULL,NULL), -(57,2,148,'Added',NULL,NULL), -(58,2,128,'Added',NULL,NULL), -(59,2,179,'Added',NULL,NULL), -(60,2,37,'Added',NULL,NULL), -(61,3,85,'Added',NULL,NULL), -(62,3,5,'Added',NULL,NULL), -(63,3,63,'Added',NULL,NULL), -(64,3,106,'Added',NULL,NULL), -(65,3,150,'Added',NULL,NULL), -(66,3,200,'Added',NULL,NULL), -(67,3,177,'Added',NULL,NULL), -(68,3,166,'Added',NULL,NULL), -(69,3,193,'Added',NULL,NULL), -(70,3,39,'Added',NULL,NULL), -(71,3,143,'Added',NULL,NULL), -(72,3,52,'Added',NULL,NULL), -(73,3,77,'Added',NULL,NULL), -(74,3,139,'Added',NULL,NULL), -(75,3,32,'Added',NULL,NULL), -(76,4,147,'Added',NULL,NULL), -(77,4,18,'Added',NULL,NULL), -(78,4,4,'Added',NULL,NULL), -(79,4,61,'Added',NULL,NULL), -(80,4,153,'Added',NULL,NULL), -(81,4,145,'Added',NULL,NULL), -(82,4,184,'Added',NULL,NULL), -(83,4,27,'Added',NULL,NULL), -(84,4,202,'Added',NULL,NULL); + (1,2,33,'Added',NULL,NULL), + (2,2,44,'Added',NULL,NULL), + (3,2,31,'Added',NULL,NULL), + (4,2,50,'Added',NULL,NULL), + (5,2,38,'Added',NULL,NULL), + (6,2,22,'Added',NULL,NULL), + (7,2,131,'Added',NULL,NULL), + (8,2,2,'Added',NULL,NULL), + (9,2,49,'Added',NULL,NULL), + (10,2,95,'Added',NULL,NULL), + (11,2,109,'Added',NULL,NULL), + (12,2,84,'Added',NULL,NULL), + (13,2,182,'Added',NULL,NULL), + (14,2,57,'Added',NULL,NULL), + (15,2,153,'Added',NULL,NULL), + (16,2,74,'Added',NULL,NULL), + (17,2,193,'Added',NULL,NULL), + (18,2,125,'Added',NULL,NULL), + (19,2,169,'Added',NULL,NULL), + (20,2,177,'Added',NULL,NULL), + (21,2,101,'Added',NULL,NULL), + (22,2,41,'Added',NULL,NULL), + (23,2,164,'Added',NULL,NULL), + (24,2,53,'Added',NULL,NULL), + (25,2,55,'Added',NULL,NULL), + (26,2,62,'Added',NULL,NULL), + (27,2,138,'Added',NULL,NULL), + (28,2,154,'Added',NULL,NULL), + (29,2,157,'Added',NULL,NULL), + (30,2,176,'Added',NULL,NULL), + (31,2,35,'Added',NULL,NULL), + (32,2,114,'Added',NULL,NULL), + (33,2,94,'Added',NULL,NULL), + (34,2,190,'Added',NULL,NULL), + (35,2,81,'Added',NULL,NULL), + (36,2,183,'Added',NULL,NULL), + (37,2,143,'Added',NULL,NULL), + (38,2,166,'Added',NULL,NULL), + (39,2,72,'Added',NULL,NULL), + (40,2,112,'Added',NULL,NULL), + (41,2,91,'Added',NULL,NULL), + (42,2,9,'Added',NULL,NULL), + (43,2,17,'Added',NULL,NULL), + (44,2,118,'Added',NULL,NULL), + (45,2,46,'Added',NULL,NULL), + (46,2,67,'Added',NULL,NULL), + (47,2,195,'Added',NULL,NULL), + (48,2,148,'Added',NULL,NULL), + (49,2,160,'Added',NULL,NULL), + (50,2,156,'Added',NULL,NULL), + (51,2,96,'Added',NULL,NULL), + (52,2,135,'Added',NULL,NULL), + (53,2,108,'Added',NULL,NULL), + (54,2,185,'Added',NULL,NULL), + (55,2,117,'Added',NULL,NULL), + (56,2,70,'Added',NULL,NULL), + (57,2,115,'Added',NULL,NULL), + (58,2,137,'Added',NULL,NULL), + (59,2,59,'Added',NULL,NULL), + (60,2,198,'Added',NULL,NULL), + (61,3,104,'Added',NULL,NULL), + (62,3,140,'Added',NULL,NULL), + (63,3,23,'Added',NULL,NULL), + (64,3,11,'Added',NULL,NULL), + (65,3,6,'Added',NULL,NULL), + (66,3,10,'Added',NULL,NULL), + (67,3,119,'Added',NULL,NULL), + (68,3,18,'Added',NULL,NULL), + (69,3,133,'Added',NULL,NULL), + (70,3,163,'Added',NULL,NULL), + (71,3,147,'Added',NULL,NULL), + (72,3,142,'Added',NULL,NULL), + (73,3,78,'Added',NULL,NULL), + (74,3,39,'Added',NULL,NULL), + (75,3,29,'Added',NULL,NULL), + (76,4,33,'Added',NULL,NULL), + (77,4,2,'Added',NULL,NULL), + (78,4,153,'Added',NULL,NULL), + (79,4,41,'Added',NULL,NULL), + (80,4,157,'Added',NULL,NULL), + (81,4,183,'Added',NULL,NULL), + (82,4,17,'Added',NULL,NULL), + (83,4,156,'Added',NULL,NULL), + (84,4,202,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -4068,26 +4046,26 @@ LOCK TABLES `civicrm_job` WRITE; /*!40000 ALTER TABLE `civicrm_job` DISABLE KEYS */; INSERT INTO `civicrm_job` (`id`, `domain_id`, `run_frequency`, `last_run`, `last_run_end`, `scheduled_run_date`, `name`, `description`, `api_entity`, `api_action`, `parameters`, `is_active`) VALUES (1,1,'Daily',NULL,NULL,NULL,'CiviCRM Update Check','Checks for version updates. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_version_check','Job','version_check',NULL,1), -(2,1,'Always',NULL,NULL,NULL,'Send Scheduled Mailings','Sends out scheduled mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_mailing','Job','process_mailing',NULL,0), -(3,1,'Hourly',NULL,NULL,NULL,'Fetch Bounces','Fetches bounces from mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_bounces','Job','fetch_bounces','is_create_activities=0',0), -(4,1,'Hourly',NULL,NULL,NULL,'Process Inbound Emails','Inserts activity for a contact or a case by retrieving inbound emails. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_activities','Job','fetch_activities',NULL,0), -(5,1,'Daily',NULL,NULL,NULL,'Process Pledges','Updates pledge records and sends out reminders. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_pledge','Job','process_pledge','send_reminders=0',0), -(6,1,'Daily',NULL,NULL,NULL,'Geocode and Parse Addresses','Geocodes and/or parses street addresses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_geocode','Job','geocode','geocoding=1\n parse=0\n throttle=0',0), -(7,1,'Daily',NULL,NULL,NULL,'Update Individual Email Greeting','Update Individual Email Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=email_greeting',0), -(8,1,'Daily',NULL,NULL,NULL,'Update Individual Postal Greeting','Update Individual Postal Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=postal_greeting',0), -(9,1,'Daily',NULL,NULL,NULL,'Update Individual Addressee','Update Individual Addressee. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=addressee',0), -(10,1,'Daily',NULL,NULL,NULL,'Mail Reports','Generates and sends out reports via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_mail_report','Job','mail_report','',0), -(11,1,'Hourly',NULL,NULL,NULL,'Send Scheduled Reminders','Sends out scheduled reminders via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_send_reminder','Job','send_reminder',NULL,0), -(12,1,'Always',NULL,NULL,NULL,'Update Participant Statuses','Updates pending event participant statuses based on time. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_participant','Job','process_participant',NULL,0), -(13,1,'Daily',NULL,NULL,NULL,'Update Membership Statuses','Updates membership statuses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_membership','Job','process_membership',NULL,0), -(14,1,'Always',NULL,NULL,NULL,'Process Survey Respondents','Releases reserved survey respondents. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_respondent','Job','process_respondent',NULL,0), -(15,1,'Monthly',NULL,NULL,NULL,'Clean-up Temporary Data and Files','Removes temporary data and files. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_cleanup','Job','cleanup','session=0',0), -(16,1,'Always',NULL,NULL,NULL,'Send Scheduled SMS','Sends out scheduled SMS. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_sms','Job','process_sms',NULL,0), -(17,1,'Hourly',NULL,NULL,NULL,'Rebuild Smart Group Cache','Rebuilds the smart group cache. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_rebuild','Job','group_rebuild','limit=0',0), -(18,1,'Hourly',NULL,NULL,NULL,'Group Cache Flush','Purges aged smart group cache data. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_cache_flush','Job','group_cache_flush','',0), -(19,1,'Daily',NULL,NULL,NULL,'Disable expired relationships','Disables relationships that have expired. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_disable_expired_relationships','Job','disable_expired_relationships',NULL,0), -(20,1,'Daily',NULL,NULL,NULL,'Validate Email Address from Mailings.','Updates the reset_date on an email address. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#mailing_update_email_resetdate','Mailing','update_email_resetdate','minDays=5\n maxDays=60',0), -(21,1,'Daily',NULL,NULL,NULL,'Dedupe Contacts','Executes the Individual, Unsupervised redupe rule. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_batch_merge','Job','process_batch_merge',NULL,0); + (2,1,'Always',NULL,NULL,NULL,'Send Scheduled Mailings','Sends out scheduled mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_mailing','Job','process_mailing',NULL,0), + (3,1,'Hourly',NULL,NULL,NULL,'Fetch Bounces','Fetches bounces from mailings. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_bounces','Job','fetch_bounces','is_create_activities=0',0), + (4,1,'Hourly',NULL,NULL,NULL,'Process Inbound Emails','Inserts activity for a contact or a case by retrieving inbound emails. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_fetch_activities','Job','fetch_activities',NULL,0), + (5,1,'Daily',NULL,NULL,NULL,'Process Pledges','Updates pledge records and sends out reminders. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_pledge','Job','process_pledge','send_reminders=0',0), + (6,1,'Daily',NULL,NULL,NULL,'Geocode and Parse Addresses','Geocodes and/or parses street addresses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_geocode','Job','geocode','geocoding=1\n parse=0\n throttle=0',0), + (7,1,'Daily',NULL,NULL,NULL,'Update Individual Email Greeting','Update Individual Email Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=email_greeting',0), + (8,1,'Daily',NULL,NULL,NULL,'Update Individual Postal Greeting','Update Individual Postal Greeting. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=postal_greeting',0), + (9,1,'Daily',NULL,NULL,NULL,'Update Individual Addressee','Update Individual Addressee. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_update_greeting','Job','update_greeting','ct=Individual\ngt=addressee',0), + (10,1,'Daily',NULL,NULL,NULL,'Mail Reports','Generates and sends out reports via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_mail_report','Job','mail_report','',0), + (11,1,'Hourly',NULL,NULL,NULL,'Send Scheduled Reminders','Sends out scheduled reminders via email. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_send_reminder','Job','send_reminder',NULL,0), + (12,1,'Always',NULL,NULL,NULL,'Update Participant Statuses','Updates pending event participant statuses based on time. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_participant','Job','process_participant',NULL,0), + (13,1,'Daily',NULL,NULL,NULL,'Update Membership Statuses','Updates membership statuses. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_membership','Job','process_membership',NULL,0), + (14,1,'Always',NULL,NULL,NULL,'Process Survey Respondents','Releases reserved survey respondents. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_respondent','Job','process_respondent',NULL,0), + (15,1,'Monthly',NULL,NULL,NULL,'Clean-up Temporary Data and Files','Removes temporary data and files. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_cleanup','Job','cleanup','session=0',0), + (16,1,'Always',NULL,NULL,NULL,'Send Scheduled SMS','Sends out scheduled SMS. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_sms','Job','process_sms',NULL,0), + (17,1,'Hourly',NULL,NULL,NULL,'Rebuild Smart Group Cache','Rebuilds the smart group cache. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_rebuild','Job','group_rebuild','limit=0',0), + (18,1,'Hourly',NULL,NULL,NULL,'Group Cache Flush','Purges aged smart group cache data. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_group_cache_flush','Job','group_cache_flush','',0), + (19,1,'Daily',NULL,NULL,NULL,'Disable expired relationships','Disables relationships that have expired. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_disable_expired_relationships','Job','disable_expired_relationships',NULL,0), + (20,1,'Daily',NULL,NULL,NULL,'Validate Email Address from Mailings.','Updates the reset_date on an email address. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#mailing_update_email_resetdate','Mailing','update_email_resetdate','minDays=5\n maxDays=60',0), + (21,1,'Daily',NULL,NULL,NULL,'Dedupe Contacts','Executes the Individual, Unsupervised redupe rule. https://docs.civicrm.org/user/en/latest/initial-set-up/scheduled-jobs/#job_process_batch_merge','Job','process_batch_merge',NULL,0); /*!40000 ALTER TABLE `civicrm_job` ENABLE KEYS */; UNLOCK TABLES; @@ -4108,116 +4086,116 @@ LOCK TABLES `civicrm_line_item` WRITE; /*!40000 ALTER TABLE `civicrm_line_item` DISABLE KEYS */; INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `non_deductible_amount`, `tax_amount`, `membership_num_terms`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,0.00,NULL), -(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), -(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,1750.00,1750.00,0,1,1,0.00,0.00,NULL), -(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,0.00,NULL), -(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), -(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(14,'civicrm_contribution',14,14,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), -(15,'civicrm_contribution',15,15,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(16,'civicrm_contribution',16,16,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(17,'civicrm_contribution',17,17,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(18,'civicrm_contribution',18,18,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(19,'civicrm_contribution',19,19,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(20,'civicrm_contribution',20,20,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(21,'civicrm_contribution',21,21,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(22,'civicrm_contribution',22,22,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(23,'civicrm_contribution',23,23,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(24,'civicrm_contribution',24,24,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(25,'civicrm_contribution',25,25,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), -(26,'civicrm_contribution',26,26,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(27,'civicrm_contribution',27,27,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(28,'civicrm_contribution',28,28,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(29,'civicrm_contribution',29,29,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(30,'civicrm_contribution',30,30,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), -(31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,0.00,NULL), -(32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(33,'civicrm_membership',3,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(34,'civicrm_membership',5,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(35,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(36,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(37,'civicrm_membership',10,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(38,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(39,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(40,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(41,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(42,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(43,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(44,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(45,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(46,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(47,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), -(48,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(49,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(50,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(51,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(52,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(53,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(54,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(55,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(56,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(57,'civicrm_membership',25,56,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(58,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(59,'civicrm_membership',28,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), -(60,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), -(61,'civicrm_membership',22,53,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), -(63,'civicrm_participant',3,75,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(64,'civicrm_participant',6,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(65,'civicrm_participant',9,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(66,'civicrm_participant',12,103,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(67,'civicrm_participant',15,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(68,'civicrm_participant',18,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(69,'civicrm_participant',21,65,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(70,'civicrm_participant',24,101,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(71,'civicrm_participant',25,112,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(72,'civicrm_participant',28,107,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(73,'civicrm_participant',31,79,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(74,'civicrm_participant',34,63,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(75,'civicrm_participant',37,102,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(76,'civicrm_participant',40,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(77,'civicrm_participant',43,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(78,'civicrm_participant',46,106,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(79,'civicrm_participant',49,110,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(80,'civicrm_participant',50,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), -(81,'civicrm_participant',1,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(82,'civicrm_participant',4,92,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(83,'civicrm_participant',7,96,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(84,'civicrm_participant',10,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(85,'civicrm_participant',13,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(86,'civicrm_participant',16,68,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(87,'civicrm_participant',19,76,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(88,'civicrm_participant',22,105,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(89,'civicrm_participant',26,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(90,'civicrm_participant',29,111,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(91,'civicrm_participant',32,87,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(92,'civicrm_participant',35,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(93,'civicrm_participant',38,98,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(94,'civicrm_participant',41,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(95,'civicrm_participant',44,93,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(96,'civicrm_participant',47,86,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), -(97,'civicrm_participant',2,104,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(98,'civicrm_participant',5,100,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(99,'civicrm_participant',8,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(100,'civicrm_participant',11,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(101,'civicrm_participant',14,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(102,'civicrm_participant',17,108,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(103,'civicrm_participant',20,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(104,'civicrm_participant',23,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(105,'civicrm_participant',27,81,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(106,'civicrm_participant',30,109,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(107,'civicrm_participant',33,77,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(108,'civicrm_participant',36,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(109,'civicrm_participant',39,67,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(110,'civicrm_participant',42,99,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(111,'civicrm_participant',45,97,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), -(112,'civicrm_participant',48,72,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL); + (2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), + (7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,1750.00,1750.00,0,1,1,0.00,0.00,NULL), + (8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,0.00,NULL), + (11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,0.00,NULL), + (12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (14,'civicrm_contribution',14,14,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,0.00,NULL), + (15,'civicrm_contribution',15,15,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (16,'civicrm_contribution',16,16,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (17,'civicrm_contribution',17,17,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (18,'civicrm_contribution',18,18,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (19,'civicrm_contribution',19,19,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (20,'civicrm_contribution',20,20,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (21,'civicrm_contribution',21,21,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (22,'civicrm_contribution',22,22,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (23,'civicrm_contribution',23,23,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (24,'civicrm_contribution',24,24,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (25,'civicrm_contribution',25,25,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,0.00,NULL), + (26,'civicrm_contribution',26,26,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (27,'civicrm_contribution',27,27,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (28,'civicrm_contribution',28,28,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (29,'civicrm_contribution',29,29,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (30,'civicrm_contribution',30,30,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,0.00,NULL), + (31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,0.00,NULL), + (32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (33,'civicrm_membership',3,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (34,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (35,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (36,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (37,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (38,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (39,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (40,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (41,'civicrm_membership',25,56,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (42,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (43,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (44,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,0.00,NULL), + (45,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (46,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (47,'civicrm_membership',5,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (48,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (49,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (50,'civicrm_membership',10,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (51,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (52,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (53,'civicrm_membership',15,46,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (54,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (55,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (56,'civicrm_membership',20,51,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (57,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (58,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (59,'civicrm_membership',28,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,0.00,NULL), + (60,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), + (61,'civicrm_membership',22,53,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,0.00,NULL), + (63,'civicrm_participant',3,65,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (64,'civicrm_participant',6,68,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (65,'civicrm_participant',9,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (66,'civicrm_participant',12,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (67,'civicrm_participant',15,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (68,'civicrm_participant',18,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (69,'civicrm_participant',21,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (70,'civicrm_participant',24,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (71,'civicrm_participant',25,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (72,'civicrm_participant',28,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (73,'civicrm_participant',31,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (74,'civicrm_participant',34,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (75,'civicrm_participant',37,99,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (76,'civicrm_participant',40,102,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (77,'civicrm_participant',43,105,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (78,'civicrm_participant',46,108,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (79,'civicrm_participant',49,111,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (80,'civicrm_participant',50,112,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,0.00,NULL), + (81,'civicrm_participant',1,63,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (82,'civicrm_participant',4,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (83,'civicrm_participant',7,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (84,'civicrm_participant',10,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (85,'civicrm_participant',13,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (86,'civicrm_participant',16,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (87,'civicrm_participant',19,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (88,'civicrm_participant',22,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (89,'civicrm_participant',26,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (90,'civicrm_participant',29,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (91,'civicrm_participant',32,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (92,'civicrm_participant',35,97,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (93,'civicrm_participant',38,100,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (94,'civicrm_participant',41,103,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (95,'civicrm_participant',44,106,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (96,'civicrm_participant',47,109,8,'Single',1.00,50.00,50.00,0,16,4,0.00,0.00,NULL), + (97,'civicrm_participant',2,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (98,'civicrm_participant',5,67,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (99,'civicrm_participant',8,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (100,'civicrm_participant',11,73,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (101,'civicrm_participant',14,76,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (102,'civicrm_participant',17,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (103,'civicrm_participant',20,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (104,'civicrm_participant',23,85,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (105,'civicrm_participant',27,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (106,'civicrm_participant',30,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (107,'civicrm_participant',33,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (108,'civicrm_participant',36,98,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (109,'civicrm_participant',39,101,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (110,'civicrm_participant',42,104,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (111,'civicrm_participant',45,107,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL), + (112,'civicrm_participant',48,110,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,0.00,NULL); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -4228,9 +4206,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_loc_block` WRITE; /*!40000 ALTER TABLE `civicrm_loc_block` DISABLE KEYS */; INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES - (1,180,204,162,NULL,NULL,NULL,NULL,NULL), -(2,181,205,163,NULL,NULL,NULL,NULL,NULL), -(3,182,206,164,NULL,NULL,NULL,NULL,NULL); + (1,175,185,173,NULL,NULL,NULL,NULL,NULL), + (2,176,186,174,NULL,NULL,NULL,NULL,NULL), + (3,177,187,175,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -4242,10 +4220,10 @@ LOCK TABLES `civicrm_location_type` WRITE; /*!40000 ALTER TABLE `civicrm_location_type` DISABLE KEYS */; INSERT INTO `civicrm_location_type` (`id`, `name`, `display_name`, `vcard_name`, `description`, `is_reserved`, `is_active`, `is_default`) VALUES (1,'Home','Home','HOME','Place of residence',0,1,1), -(2,'Work','Work','WORK','Work location',0,1,0), -(3,'Main','Main',NULL,'Main office location',0,1,0), -(4,'Other','Other',NULL,'Other location',0,1,0), -(5,'Billing','Billing',NULL,'Billing Address location',1,1,0); + (2,'Work','Work','WORK','Work location',0,1,0), + (3,'Main','Main',NULL,'Main office location',0,1,0), + (4,'Other','Other',NULL,'Other location',0,1,0), + (5,'Billing','Billing',NULL,'Billing Address location',1,1,0); /*!40000 ALTER TABLE `civicrm_location_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4256,7 +4234,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_log` WRITE; /*!40000 ALTER TABLE `civicrm_log` DISABLE KEYS */; INSERT INTO `civicrm_log` (`id`, `entity_table`, `entity_id`, `data`, `modified_id`, `modified_date`) VALUES - (1,'civicrm_contact',202,'civicrm_contact,202',202,'2025-02-11 21:14:07'); + (1,'civicrm_contact',202,'civicrm_contact,202',202,'2025-02-11 22:13:24'); /*!40000 ALTER TABLE `civicrm_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4297,170 +4275,170 @@ LOCK TABLES `civicrm_mailing_bounce_pattern` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_bounce_pattern` DISABLE KEYS */; INSERT INTO `civicrm_mailing_bounce_pattern` (`id`, `bounce_type_id`, `pattern`) VALUES (1,1,'Client TOS Notification'), -(2,2,'(be|am)? (out of|away from) (the|my)? (office|computer|town)'), -(3,2,'i am on vacation'), -(4,3,'name(server entry| lookup failure)'), -(5,3,'no (mail server|matches to nameserver query|dns entries)'), -(6,3,'reverse dns entry'), -(7,3,'Host or domain name not found'), -(8,3,'Unable to resolve MX record for'), -(9,4,'(unknown|not local) host'), -(10,4,'all hosts have been failing'), -(11,4,'allowed rcpthosts'), -(12,4,'connection (refused|timed out)'), -(13,4,'not connected'), -(14,4,'couldn\'t find any host named'), -(15,4,'error involving remote host'), -(16,4,'host unknown'), -(17,4,'invalid host name'), -(18,4,'isn\'t in my control/locals file'), -(19,4,'local configuration error'), -(20,4,'not a gateway'), -(21,4,'server is (down or unreachable|not responding)'), -(22,4,'too many connections'), -(23,4,'unable to connect'), -(24,4,'lost connection'), -(25,4,'conversation with [^ ]* timed out while'), -(26,4,'server requires authentication'), -(27,4,'authentication (is )?required'), -(28,5,'(my )?e-?mail( address)? has changed'), -(29,5,'account (inactive|expired|deactivated)'), -(30,5,'account is locked'), -(31,5,'changed w+( e-?mail)? address'), -(32,5,'deactivated mailbox'), -(33,5,'disabled or discontinued'), -(34,5,'inactive user'), -(35,5,'is inactive on this domain'), -(36,5,'mail receiving disabled'), -(37,5,'mail( ?)address is administrative?ly disabled'), -(38,5,'mailbox (temporarily disabled|currently suspended)'), -(39,5,'no longer (accepting mail|on server|in use|with|employed|on staff|works for|using this account)'), -(40,5,'not accepting (mail|messages)'), -(41,5,'please use my new e-?mail address'), -(42,5,'this address no longer accepts mail'), -(43,5,'user account suspended'), -(44,5,'account that you tried to reach is disabled'), -(45,5,'User banned'), -(46,6,'(user|recipient( name)?) is not recognized'), -(47,6,'554 delivery error'), -(48,6,'address does not exist'), -(49,6,'address(es)?( you (entered|specified))? (could|was)( not|n.t)( be)? found'), -(50,6,'address(ee)? (unknown|invalid)'), -(51,6,'bad destination'), -(52,6,'badly formatted address'), -(53,6,'can\'t open mailbox for'), -(54,6,'cannot deliver'), -(55,6,'delivery to the following recipient(s)? failed'), -(56,6,'destination addresses were unknown'), -(57,6,'did not reach the following recipient'), -(58,6,'does not exist'), -(59,6,'does not like recipient'), -(60,6,'does not specify a valid notes mail file'), -(61,6,'illegal alias'), -(62,6,'invalid (mailbox|(e-?mail )?address|recipient|final delivery)'), -(63,6,'invalid( or unknown)?( virtual)? user'), -(64,6,'(mail )?delivery (to this user )?is not allowed'), -(65,6,'mailbox (not found|unavailable|name not allowed)'), -(66,6,'message could not be forwarded'), -(67,6,'missing or malformed local(-| )part'), -(68,6,'no e-?mail address registered'), -(69,6,'no such (mail drop|mailbox( \\w+)?|(e-?mail )?address|recipient|(local )?user|person)( here)?'), -(70,6,'no mailbox (here )?by that name'), -(71,6,'not (listed in|found in directory|known at this site|our customer)'), -(72,6,'not a valid( (user|mailbox))?'), -(73,6,'not present in directory entry'), -(74,6,'recipient (does not exist|(is )?unknown|rejected|denied|not found)'), -(75,6,'this user doesn\'t have a yahoo.com address'), -(76,6,'unavailable to take delivery of the message'), -(77,6,'unavailable mailbox'), -(78,6,'unknown (local( |-)part|recipient|address error)'), -(79,6,'unknown( or illegal)? user( account)?'), -(80,6,'unrecognized recipient'), -(81,6,'unregistered address'), -(82,6,'user (unknown|(does not|doesn\'t) exist)'), -(83,6,'user doesn\'t have an? w+ account'), -(84,6,'user(\'s e-?mail name is)? not found'), -(85,6,'^Validation failed for:'), -(86,6,'5.1.0 Address rejected'), -(87,6,'no valid recipients?'), -(88,6,'RecipNotFound'), -(89,6,'no one at this address'), -(90,6,'misconfigured forwarding address'), -(91,6,'account is not allowed'), -(92,6,'Address .<[^>]*>. not known here'), -(93,6,'Recipient address rejected: ([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}'), -(94,6,'Non sono riuscito a trovare l.indirizzo e-mail'), -(95,6,'nadie con esta direcci..?n'), -(96,6,'ni bilo mogo..?e najti prejemnikovega e-po..?tnega naslova'), -(97,6,'Elektronski naslov (je ukinjen|ne obstaja)'), -(98,6,'nepravilno nastavljen predal'), -(99,7,'(mail( forwarding)?|routing).loop'), -(100,7,'excessive recursion'), -(101,7,'loop detected'), -(102,7,'maximum hop count exceeded'), -(103,7,'message was forwarded more than the maximum allowed times'), -(104,7,'too many (hops|recursive forwards)'), -(105,8,'(disk(space)?|over the allowed|exceed(ed|s)?|storage) quota'), -(106,8,'522_mailbox_full'), -(107,8,'exceeds allowed message count'), -(108,8,'file too large'), -(109,8,'full mailbox'), -(110,8,'(mail|in)(box|folder) ((for user \\w+ )?is )?full'), -(111,8,'mailbox (has exceeded|is over) the limit'), -(112,8,'mailbox( exceeds allowed)? size'), -(113,8,'no space left for this user'), -(114,8,'over\\s?quota'), -(115,8,'quota (for the mailbox )?has been exceeded'), -(116,8,'quota ?(usage|violation|exceeded)'), -(117,8,'recipient storage full'), -(118,8,'not able to receive more mail'), -(119,8,'doesn.t have enough disk space left'), -(120,8,'exceeded storage allocation'), -(121,8,'running out of disk space'), -(122,9,'cannot find your hostname'), -(123,9,'ip name lookup'), -(124,9,'not configured to relay mail'), -(125,9,'relay(ing)? (not permitted|(access )?denied)'), -(126,9,'relayed mail to .+? not allowed'), -(127,9,'sender ip must resolve'), -(128,9,'unable to relay'), -(129,9,'No route to host'), -(130,9,'Network is unreachable'), -(131,9,'unrouteable address'), -(132,9,'We don.t handle mail for'), -(133,9,'we do not relay'), -(134,9,'Rejected by next-hop'), -(135,9,'not permitted to( *550)? relay through this server'), -(136,10,'(bulk( e-?mail)|content|attachment blocking|virus|mail system) filters?'), -(137,10,'(hostile|questionable|unacceptable) content'), -(138,10,'address .+? has not been verified'), -(139,10,'anti-?spam (policw+|software)'), -(140,10,'anti-?virus gateway has detected'), -(141,10,'blacklisted'), -(142,10,'blocked message'), -(143,10,'content control'), -(144,10,'delivery not authorized'), -(145,10,'does not conform to our e-?mail policy'), -(146,10,'excessive spam content'), -(147,10,'message looks suspicious'), -(148,10,'open relay'), -(149,10,'sender was rejected'), -(150,10,'spam(check| reduction software| filters?)'), -(151,10,'blocked by a user configured filter'), -(152,10,'(detected|rejected) (as|due to) spam'), -(153,10,'X-HmXmrOriginalRecipient'), -(154,10,'Client host .[^ ]*. blocked'), -(155,10,'automatic(ally-generated)? messages are not accepted'), -(156,10,'denied by policy'), -(157,10,'has no corresponding reverse \\(PTR\\) address'), -(158,10,'has a policy that( [^ ]*)? prohibited the mail that you sent'), -(159,10,'is likely unsolicited mail'), -(160,10,'Local Policy Violation'), -(161,10,'ni bilo mogo..?e dostaviti zaradi varnostnega pravilnika'), -(162,10,'abuse report'), -(163,11,'nonstandard smtp line terminator'), -(164,11,'syntax error in from address'), -(165,11,'unknown smtp code'); + (2,2,'(be|am)? (out of|away from) (the|my)? (office|computer|town)'), + (3,2,'i am on vacation'), + (4,3,'name(server entry| lookup failure)'), + (5,3,'no (mail server|matches to nameserver query|dns entries)'), + (6,3,'reverse dns entry'), + (7,3,'Host or domain name not found'), + (8,3,'Unable to resolve MX record for'), + (9,4,'(unknown|not local) host'), + (10,4,'all hosts have been failing'), + (11,4,'allowed rcpthosts'), + (12,4,'connection (refused|timed out)'), + (13,4,'not connected'), + (14,4,'couldn\'t find any host named'), + (15,4,'error involving remote host'), + (16,4,'host unknown'), + (17,4,'invalid host name'), + (18,4,'isn\'t in my control/locals file'), + (19,4,'local configuration error'), + (20,4,'not a gateway'), + (21,4,'server is (down or unreachable|not responding)'), + (22,4,'too many connections'), + (23,4,'unable to connect'), + (24,4,'lost connection'), + (25,4,'conversation with [^ ]* timed out while'), + (26,4,'server requires authentication'), + (27,4,'authentication (is )?required'), + (28,5,'(my )?e-?mail( address)? has changed'), + (29,5,'account (inactive|expired|deactivated)'), + (30,5,'account is locked'), + (31,5,'changed w+( e-?mail)? address'), + (32,5,'deactivated mailbox'), + (33,5,'disabled or discontinued'), + (34,5,'inactive user'), + (35,5,'is inactive on this domain'), + (36,5,'mail receiving disabled'), + (37,5,'mail( ?)address is administrative?ly disabled'), + (38,5,'mailbox (temporarily disabled|currently suspended)'), + (39,5,'no longer (accepting mail|on server|in use|with|employed|on staff|works for|using this account)'), + (40,5,'not accepting (mail|messages)'), + (41,5,'please use my new e-?mail address'), + (42,5,'this address no longer accepts mail'), + (43,5,'user account suspended'), + (44,5,'account that you tried to reach is disabled'), + (45,5,'User banned'), + (46,6,'(user|recipient( name)?) is not recognized'), + (47,6,'554 delivery error'), + (48,6,'address does not exist'), + (49,6,'address(es)?( you (entered|specified))? (could|was)( not|n.t)( be)? found'), + (50,6,'address(ee)? (unknown|invalid)'), + (51,6,'bad destination'), + (52,6,'badly formatted address'), + (53,6,'can\'t open mailbox for'), + (54,6,'cannot deliver'), + (55,6,'delivery to the following recipient(s)? failed'), + (56,6,'destination addresses were unknown'), + (57,6,'did not reach the following recipient'), + (58,6,'does not exist'), + (59,6,'does not like recipient'), + (60,6,'does not specify a valid notes mail file'), + (61,6,'illegal alias'), + (62,6,'invalid (mailbox|(e-?mail )?address|recipient|final delivery)'), + (63,6,'invalid( or unknown)?( virtual)? user'), + (64,6,'(mail )?delivery (to this user )?is not allowed'), + (65,6,'mailbox (not found|unavailable|name not allowed)'), + (66,6,'message could not be forwarded'), + (67,6,'missing or malformed local(-| )part'), + (68,6,'no e-?mail address registered'), + (69,6,'no such (mail drop|mailbox( \\w+)?|(e-?mail )?address|recipient|(local )?user|person)( here)?'), + (70,6,'no mailbox (here )?by that name'), + (71,6,'not (listed in|found in directory|known at this site|our customer)'), + (72,6,'not a valid( (user|mailbox))?'), + (73,6,'not present in directory entry'), + (74,6,'recipient (does not exist|(is )?unknown|rejected|denied|not found)'), + (75,6,'this user doesn\'t have a yahoo.com address'), + (76,6,'unavailable to take delivery of the message'), + (77,6,'unavailable mailbox'), + (78,6,'unknown (local( |-)part|recipient|address error)'), + (79,6,'unknown( or illegal)? user( account)?'), + (80,6,'unrecognized recipient'), + (81,6,'unregistered address'), + (82,6,'user (unknown|(does not|doesn\'t) exist)'), + (83,6,'user doesn\'t have an? w+ account'), + (84,6,'user(\'s e-?mail name is)? not found'), + (85,6,'^Validation failed for:'), + (86,6,'5.1.0 Address rejected'), + (87,6,'no valid recipients?'), + (88,6,'RecipNotFound'), + (89,6,'no one at this address'), + (90,6,'misconfigured forwarding address'), + (91,6,'account is not allowed'), + (92,6,'Address .<[^>]*>. not known here'), + (93,6,'Recipient address rejected: ([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}'), + (94,6,'Non sono riuscito a trovare l.indirizzo e-mail'), + (95,6,'nadie con esta direcci..?n'), + (96,6,'ni bilo mogo..?e najti prejemnikovega e-po..?tnega naslova'), + (97,6,'Elektronski naslov (je ukinjen|ne obstaja)'), + (98,6,'nepravilno nastavljen predal'), + (99,7,'(mail( forwarding)?|routing).loop'), + (100,7,'excessive recursion'), + (101,7,'loop detected'), + (102,7,'maximum hop count exceeded'), + (103,7,'message was forwarded more than the maximum allowed times'), + (104,7,'too many (hops|recursive forwards)'), + (105,8,'(disk(space)?|over the allowed|exceed(ed|s)?|storage) quota'), + (106,8,'522_mailbox_full'), + (107,8,'exceeds allowed message count'), + (108,8,'file too large'), + (109,8,'full mailbox'), + (110,8,'(mail|in)(box|folder) ((for user \\w+ )?is )?full'), + (111,8,'mailbox (has exceeded|is over) the limit'), + (112,8,'mailbox( exceeds allowed)? size'), + (113,8,'no space left for this user'), + (114,8,'over\\s?quota'), + (115,8,'quota (for the mailbox )?has been exceeded'), + (116,8,'quota ?(usage|violation|exceeded)'), + (117,8,'recipient storage full'), + (118,8,'not able to receive more mail'), + (119,8,'doesn.t have enough disk space left'), + (120,8,'exceeded storage allocation'), + (121,8,'running out of disk space'), + (122,9,'cannot find your hostname'), + (123,9,'ip name lookup'), + (124,9,'not configured to relay mail'), + (125,9,'relay(ing)? (not permitted|(access )?denied)'), + (126,9,'relayed mail to .+? not allowed'), + (127,9,'sender ip must resolve'), + (128,9,'unable to relay'), + (129,9,'No route to host'), + (130,9,'Network is unreachable'), + (131,9,'unrouteable address'), + (132,9,'We don.t handle mail for'), + (133,9,'we do not relay'), + (134,9,'Rejected by next-hop'), + (135,9,'not permitted to( *550)? relay through this server'), + (136,10,'(bulk( e-?mail)|content|attachment blocking|virus|mail system) filters?'), + (137,10,'(hostile|questionable|unacceptable) content'), + (138,10,'address .+? has not been verified'), + (139,10,'anti-?spam (policw+|software)'), + (140,10,'anti-?virus gateway has detected'), + (141,10,'blacklisted'), + (142,10,'blocked message'), + (143,10,'content control'), + (144,10,'delivery not authorized'), + (145,10,'does not conform to our e-?mail policy'), + (146,10,'excessive spam content'), + (147,10,'message looks suspicious'), + (148,10,'open relay'), + (149,10,'sender was rejected'), + (150,10,'spam(check| reduction software| filters?)'), + (151,10,'blocked by a user configured filter'), + (152,10,'(detected|rejected) (as|due to) spam'), + (153,10,'X-HmXmrOriginalRecipient'), + (154,10,'Client host .[^ ]*. blocked'), + (155,10,'automatic(ally-generated)? messages are not accepted'), + (156,10,'denied by policy'), + (157,10,'has no corresponding reverse \\(PTR\\) address'), + (158,10,'has a policy that( [^ ]*)? prohibited the mail that you sent'), + (159,10,'is likely unsolicited mail'), + (160,10,'Local Policy Violation'), + (161,10,'ni bilo mogo..?e dostaviti zaradi varnostnega pravilnika'), + (162,10,'abuse report'), + (163,11,'nonstandard smtp line terminator'), + (164,11,'syntax error in from address'), + (165,11,'unknown smtp code'); /*!40000 ALTER TABLE `civicrm_mailing_bounce_pattern` ENABLE KEYS */; UNLOCK TABLES; @@ -4472,16 +4450,16 @@ LOCK TABLES `civicrm_mailing_bounce_type` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_bounce_type` DISABLE KEYS */; INSERT INTO `civicrm_mailing_bounce_type` (`id`, `name`, `description`, `hold_threshold`) VALUES (1,'AOL','AOL Terms of Service complaint',1), -(2,'Away','Recipient is on vacation',30), -(3,'Dns','Unable to resolve recipient domain',3), -(4,'Host','Unable to deliver to destintation mail server',3), -(5,'Inactive','User account is no longer active',1), -(6,'Invalid','Email address is not valid',1), -(7,'Loop','Mail routing error',3), -(8,'Quota','User inbox is full',3), -(9,'Relay','Unable to reach destination mail server',3), -(10,'Spam','Message caught by a content filter',1), -(11,'Syntax','Error in SMTP transaction',3); + (2,'Away','Recipient is on vacation',30), + (3,'Dns','Unable to resolve recipient domain',3), + (4,'Host','Unable to deliver to destintation mail server',3), + (5,'Inactive','User account is no longer active',1), + (6,'Invalid','Email address is not valid',1), + (7,'Loop','Mail routing error',3), + (8,'Quota','User inbox is full',3), + (9,'Relay','Unable to reach destination mail server',3), + (10,'Spam','Message caught by a content filter',1), + (11,'Syntax','Error in SMTP transaction',3); /*!40000 ALTER TABLE `civicrm_mailing_bounce_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4493,13 +4471,13 @@ LOCK TABLES `civicrm_mailing_component` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_component` DISABLE KEYS */; INSERT INTO `civicrm_mailing_component` (`id`, `name`, `component_type`, `subject`, `body_html`, `body_text`, `is_default`, `is_active`) VALUES (1,'Mailing Header','Header','Descriptive Title for this Header','Sample Header for HTML formatted content.','Sample Header for TEXT formatted content.',1,1), -(2,'Mailing Footer','Footer','Descriptive Title for this Footer.','Sample Footer for HTML formatted content
Opt out of any future emails
{domain.address}','Opt out of any future emails: {action.optOutUrl}\n{domain.address}',1,1), -(3,'Subscribe Message','Subscribe','Subscription Confirmation Request','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click here.','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click on this link: {subscribe.url}',1,1), -(4,'Welcome Message','Welcome','Your Subscription has been Activated','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.',1,1), -(5,'Unsubscribe Message','Unsubscribe','Un-subscribe Confirmation','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking here.','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking {action.resubscribeUrl}',1,1), -(6,'Resubscribe Message','Resubscribe','Re-subscribe Confirmation','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking here.','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking {action.unsubscribeUrl}',1,1), -(7,'Opt-out Message','OptOut','Opt-out Confirmation','Your email address has been removed from {domain.name} mailing lists.','Your email address has been removed from {domain.name} mailing lists.',1,1), -(8,'Auto-responder','Reply','Please Send Inquiries to Our Contact Email Address','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.',1,1); + (2,'Mailing Footer','Footer','Descriptive Title for this Footer.','Sample Footer for HTML formatted content
Opt out of any future emails
{domain.address}','Opt out of any future emails: {action.optOutUrl}\n{domain.address}',1,1), + (3,'Subscribe Message','Subscribe','Subscription Confirmation Request','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click here.','You have a pending subscription to the {group.frontend_title} mailing list. To confirm this subscription, reply to this email or click on this link: {subscribe.url}',1,1), + (4,'Welcome Message','Welcome','Your Subscription has been Activated','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.','Welcome. Your subscription to the {group.frontend_title} mailing list has been activated.',1,1), + (5,'Unsubscribe Message','Unsubscribe','Un-subscribe Confirmation','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking here.','You have been un-subscribed from the following groups: {unsubscribe.group}. You can re-subscribe by mailing {action.resubscribe} or clicking {action.resubscribeUrl}',1,1), + (6,'Resubscribe Message','Resubscribe','Re-subscribe Confirmation','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking here.','You have been re-subscribed to the following groups: {resubscribe.group}. You can un-subscribe by mailing {action.unsubscribe} or clicking {action.unsubscribeUrl}',1,1), + (7,'Opt-out Message','OptOut','Opt-out Confirmation','Your email address has been removed from {domain.name} mailing lists.','Your email address has been removed from {domain.name} mailing lists.',1,1), + (8,'Auto-responder','Reply','Please Send Inquiries to Our Contact Email Address','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.','This is an automated reply from an un-attended mailbox. Please send any inquiries to the contact email address listed on our web-site.',1,1); /*!40000 ALTER TABLE `civicrm_mailing_component` ENABLE KEYS */; UNLOCK TABLES; @@ -4646,15 +4624,15 @@ LOCK TABLES `civicrm_managed` WRITE; /*!40000 ALTER TABLE `civicrm_managed` DISABLE KEYS */; INSERT INTO `civicrm_managed` (`id`, `module`, `name`, `entity_type`, `entity_id`, `cleanup`, `entity_modified_date`) VALUES (1,'civi_campaign','SavedSearch_Administer_Campaigns','SavedSearch',1,'always',NULL), -(2,'civi_campaign','SavedSearch_Administer_Petitions','SavedSearch',2,'always',NULL), -(3,'civi_campaign','SavedSearch_Administer_Survey_Options','SavedSearch',3,'always',NULL), -(4,'civi_campaign','SavedSearch_Administer_Surveys','SavedSearch',4,'always',NULL), -(5,'civi_contribute','cg_extend_objects:ContributionPage','OptionValue',860,'always',NULL), -(6,'civi_mail','SavedSearch_Email_Bounce_History','SavedSearch',5,'always',NULL), -(7,'civicrm','SavedSearch_Site_Email_Addresses','SavedSearch',6,'unused',NULL), -(8,'civicrm','SavedSearch_Contact_Summary_Notes','SavedSearch',7,'always',NULL), -(9,'civicrm','SavedSearch_Contact_Summary_Relationships','SavedSearch',8,'unused',NULL), -(10,'civicrm','SavedSearch_Administer_Site_Tokens','SavedSearch',9,'always',NULL); + (2,'civi_campaign','SavedSearch_Administer_Petitions','SavedSearch',2,'always',NULL), + (3,'civi_campaign','SavedSearch_Administer_Survey_Options','SavedSearch',3,'always',NULL), + (4,'civi_campaign','SavedSearch_Administer_Surveys','SavedSearch',4,'always',NULL), + (5,'civi_contribute','cg_extend_objects:ContributionPage','OptionValue',860,'always',NULL), + (6,'civi_mail','SavedSearch_Email_Bounce_History','SavedSearch',5,'always',NULL), + (7,'civicrm','SavedSearch_Site_Email_Addresses','SavedSearch',6,'unused',NULL), + (8,'civicrm','SavedSearch_Contact_Summary_Notes','SavedSearch',7,'always',NULL), + (9,'civicrm','SavedSearch_Contact_Summary_Relationships','SavedSearch',8,'unused',NULL), + (10,'civicrm','SavedSearch_Administer_Site_Tokens','SavedSearch',9,'always',NULL); /*!40000 ALTER TABLE `civicrm_managed` ENABLE KEYS */; UNLOCK TABLES; @@ -4683,36 +4661,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership` WRITE; /*!40000 ALTER TABLE `civicrm_membership` DISABLE KEYS */; INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES - (1,92,1,'2025-02-11','2025-02-11','2027-02-10','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(2,99,2,'2025-02-10','2025-02-10','2026-02-09','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(3,84,1,'2025-02-09','2025-02-09','2027-02-08','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(4,160,2,'2025-02-08','2025-02-08','2026-02-07','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(5,69,1,'2023-01-10','2023-01-10','2025-01-09','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), -(6,82,2,'2025-02-06','2025-02-06','2026-02-05','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(7,172,1,'2025-02-05','2025-02-05','2027-02-04','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(8,189,2,'2025-02-04','2025-02-04','2026-02-03','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(9,116,1,'2025-02-03','2025-02-03','2027-02-02','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(10,185,1,'2022-12-01','2022-12-01','2024-11-30','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), -(11,152,3,'2025-02-01','2025-02-01',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(12,148,2,'2025-01-31','2025-01-31','2026-01-30','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(13,180,1,'2025-01-30','2025-01-30','2027-01-29','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(14,117,2,'2025-01-29','2025-01-29','2026-01-28','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(15,174,1,'2022-10-22','2022-10-22','2024-10-21','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), -(16,11,2,'2025-01-27','2025-01-27','2026-01-26','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(17,54,1,'2025-01-26','2025-01-26','2027-01-25','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(18,100,2,'2025-01-25','2025-01-25','2026-01-24','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(19,77,1,'2025-01-24','2025-01-24','2027-01-23','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(20,26,1,'2022-09-12','2022-09-12','2024-09-11','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), -(21,81,1,'2025-01-22','2025-01-22','2027-01-21','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(22,19,3,'2025-01-21','2025-01-21',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(23,115,1,'2025-01-20','2025-01-20','2027-01-19','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(24,113,2,'2025-01-19','2025-01-19','2026-01-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(25,88,2,'2024-01-18','2024-01-18','2025-01-17','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), -(26,159,2,'2025-01-17','2025-01-17','2026-01-16','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(27,13,1,'2025-01-16','2025-01-16','2027-01-15','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(28,141,2,'2025-01-15','2025-01-15','2026-01-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(29,27,1,'2025-01-14','2025-01-14','2027-01-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), -(30,130,1,'2022-06-24','2022-06-24','2024-06-23','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL); + (1,24,1,'2025-02-11','2025-02-11','2027-02-10','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (2,9,2,'2025-02-10','2025-02-10','2026-02-09','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (3,81,1,'2025-02-09','2025-02-09','2027-02-08','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (4,69,2,'2025-02-08','2025-02-08','2026-02-07','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (5,26,2,'2024-02-07','2024-02-07','2025-02-06','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (6,59,2,'2025-02-06','2025-02-06','2026-02-05','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (7,42,1,'2025-02-05','2025-02-05','2027-02-04','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (8,126,2,'2025-02-04','2025-02-04','2026-02-03','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (9,129,1,'2025-02-03','2025-02-03','2027-02-02','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (10,18,2,'2024-02-02','2024-02-02','2025-02-01','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (11,96,3,'2025-02-01','2025-02-01',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (12,75,2,'2025-01-31','2025-01-31','2026-01-30','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (13,25,1,'2025-01-30','2025-01-30','2027-01-29','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (14,154,2,'2025-01-29','2025-01-29','2026-01-28','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (15,184,2,'2024-01-28','2024-01-28','2025-01-27','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (16,89,2,'2025-01-27','2025-01-27','2026-01-26','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (17,201,1,'2025-01-26','2025-01-26','2027-01-25','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (18,56,2,'2025-01-25','2025-01-25','2026-01-24','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (19,181,1,'2025-01-24','2025-01-24','2027-01-23','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (20,99,2,'2024-01-23','2024-01-23','2025-01-22','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (21,95,1,'2025-01-22','2025-01-22','2027-01-21','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (22,165,3,'2025-01-21','2025-01-21',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (23,153,1,'2025-01-20','2025-01-20','2027-01-19','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (24,105,2,'2025-01-19','2025-01-19','2026-01-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (25,55,1,'2022-08-03','2022-08-03','2024-08-02','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL), + (26,102,2,'2025-01-17','2025-01-17','2026-01-16','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (27,92,1,'2025-01-16','2025-01-16','2027-01-15','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (28,178,2,'2025-01-15','2025-01-15','2026-01-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (29,146,1,'2025-01-14','2025-01-14','2027-01-13','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (30,169,1,'2022-06-24','2022-06-24','2024-06-23','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -4734,36 +4712,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_log` WRITE; /*!40000 ALTER TABLE `civicrm_membership_log` DISABLE KEYS */; INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES - (1,16,1,'2025-01-27','2026-01-26',11,'2025-02-11 00:00:00',2,NULL), -(2,27,1,'2025-01-16','2027-01-15',13,'2025-02-11 00:00:00',1,NULL), -(3,22,1,'2025-01-21',NULL,19,'2025-02-11 00:00:00',3,NULL), -(4,20,3,'2022-09-12','2024-09-11',26,'2025-02-11 00:00:00',1,NULL), -(5,29,1,'2025-01-14','2027-01-13',27,'2025-02-11 00:00:00',1,NULL), -(6,17,1,'2025-01-26','2027-01-25',54,'2025-02-11 00:00:00',1,NULL), -(7,5,3,'2023-01-10','2025-01-09',69,'2025-02-11 00:00:00',1,NULL), -(8,19,1,'2025-01-24','2027-01-23',77,'2025-02-11 00:00:00',1,NULL), -(9,21,1,'2025-01-22','2027-01-21',81,'2025-02-11 00:00:00',1,NULL), -(10,6,1,'2025-02-06','2026-02-05',82,'2025-02-11 00:00:00',2,NULL), -(11,3,1,'2025-02-09','2027-02-08',84,'2025-02-11 00:00:00',1,NULL), -(12,25,4,'2024-01-18','2025-01-17',88,'2025-02-11 00:00:00',2,NULL), -(13,1,1,'2025-02-11','2027-02-10',92,'2025-02-11 00:00:00',1,NULL), -(14,2,1,'2025-02-10','2026-02-09',99,'2025-02-11 00:00:00',2,NULL), -(15,18,1,'2025-01-25','2026-01-24',100,'2025-02-11 00:00:00',2,NULL), -(16,24,1,'2025-01-19','2026-01-18',113,'2025-02-11 00:00:00',2,NULL), -(17,23,1,'2025-01-20','2027-01-19',115,'2025-02-11 00:00:00',1,NULL), -(18,9,1,'2025-02-03','2027-02-02',116,'2025-02-11 00:00:00',1,NULL), -(19,14,1,'2025-01-29','2026-01-28',117,'2025-02-11 00:00:00',2,NULL), -(20,30,3,'2022-06-24','2024-06-23',130,'2025-02-11 00:00:00',1,NULL), -(21,28,1,'2025-01-15','2026-01-14',141,'2025-02-11 00:00:00',2,NULL), -(22,12,1,'2025-01-31','2026-01-30',148,'2025-02-11 00:00:00',2,NULL), -(23,11,1,'2025-02-01',NULL,152,'2025-02-11 00:00:00',3,NULL), -(24,26,1,'2025-01-17','2026-01-16',159,'2025-02-11 00:00:00',2,NULL), -(25,4,1,'2025-02-08','2026-02-07',160,'2025-02-11 00:00:00',2,NULL), -(26,7,1,'2025-02-05','2027-02-04',172,'2025-02-11 00:00:00',1,NULL), -(27,15,3,'2022-10-22','2024-10-21',174,'2025-02-11 00:00:00',1,NULL), -(28,13,1,'2025-01-30','2027-01-29',180,'2025-02-11 00:00:00',1,NULL), -(29,10,3,'2022-12-01','2024-11-30',185,'2025-02-11 00:00:00',1,NULL), -(30,8,1,'2025-02-04','2026-02-03',189,'2025-02-11 00:00:00',2,NULL); + (1,2,1,'2025-02-10','2026-02-09',9,'2025-02-11 00:00:00',2,NULL), + (2,10,4,'2024-02-02','2025-02-01',18,'2025-02-11 00:00:00',2,NULL), + (3,1,1,'2025-02-11','2027-02-10',24,'2025-02-11 00:00:00',1,NULL), + (4,13,1,'2025-01-30','2027-01-29',25,'2025-02-11 00:00:00',1,NULL), + (5,5,4,'2024-02-07','2025-02-06',26,'2025-02-11 00:00:00',2,NULL), + (6,7,1,'2025-02-05','2027-02-04',42,'2025-02-11 00:00:00',1,NULL), + (7,25,3,'2022-08-03','2024-08-02',55,'2025-02-11 00:00:00',1,NULL), + (8,18,1,'2025-01-25','2026-01-24',56,'2025-02-11 00:00:00',2,NULL), + (9,6,1,'2025-02-06','2026-02-05',59,'2025-02-11 00:00:00',2,NULL), + (10,4,1,'2025-02-08','2026-02-07',69,'2025-02-11 00:00:00',2,NULL), + (11,12,1,'2025-01-31','2026-01-30',75,'2025-02-11 00:00:00',2,NULL), + (12,3,1,'2025-02-09','2027-02-08',81,'2025-02-11 00:00:00',1,NULL), + (13,16,1,'2025-01-27','2026-01-26',89,'2025-02-11 00:00:00',2,NULL), + (14,27,1,'2025-01-16','2027-01-15',92,'2025-02-11 00:00:00',1,NULL), + (15,21,1,'2025-01-22','2027-01-21',95,'2025-02-11 00:00:00',1,NULL), + (16,11,1,'2025-02-01',NULL,96,'2025-02-11 00:00:00',3,NULL), + (17,20,4,'2024-01-23','2025-01-22',99,'2025-02-11 00:00:00',2,NULL), + (18,26,1,'2025-01-17','2026-01-16',102,'2025-02-11 00:00:00',2,NULL), + (19,24,1,'2025-01-19','2026-01-18',105,'2025-02-11 00:00:00',2,NULL), + (20,8,1,'2025-02-04','2026-02-03',126,'2025-02-11 00:00:00',2,NULL), + (21,9,1,'2025-02-03','2027-02-02',129,'2025-02-11 00:00:00',1,NULL), + (22,29,1,'2025-01-14','2027-01-13',146,'2025-02-11 00:00:00',1,NULL), + (23,23,1,'2025-01-20','2027-01-19',153,'2025-02-11 00:00:00',1,NULL), + (24,14,1,'2025-01-29','2026-01-28',154,'2025-02-11 00:00:00',2,NULL), + (25,22,1,'2025-01-21',NULL,165,'2025-02-11 00:00:00',3,NULL), + (26,30,3,'2022-06-24','2024-06-23',169,'2025-02-11 00:00:00',1,NULL), + (27,28,1,'2025-01-15','2026-01-14',178,'2025-02-11 00:00:00',2,NULL), + (28,19,1,'2025-01-24','2027-01-23',181,'2025-02-11 00:00:00',1,NULL), + (29,15,4,'2024-01-28','2025-01-27',184,'2025-02-11 00:00:00',2,NULL), + (30,17,1,'2025-01-26','2027-01-25',201,'2025-02-11 00:00:00',1,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4774,36 +4752,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_payment` WRITE; /*!40000 ALTER TABLE `civicrm_membership_payment` DISABLE KEYS */; INSERT INTO `civicrm_membership_payment` (`id`, `membership_id`, `contribution_id`) VALUES - (13,1,32), -(14,2,33), -(11,3,34), -(25,4,35), -(7,5,36), -(10,6,37), -(26,7,38), -(30,8,39), -(18,9,40), -(29,10,41), -(23,11,42), -(22,12,43), -(28,13,44), -(19,14,45), -(27,15,46), -(1,16,47), -(6,17,48), -(15,18,49), -(8,19,50), -(4,20,51), -(9,21,52), -(3,22,53), -(17,23,54), -(16,24,55), -(12,25,56), -(24,26,57), -(2,27,58), -(21,28,59), -(5,29,60), -(20,30,61); + (1,1,32), + (2,2,33), + (3,3,34), + (4,4,35), + (5,5,36), + (6,6,37), + (7,7,38), + (8,8,39), + (9,9,40), + (10,10,41), + (11,11,42), + (12,12,43), + (13,13,44), + (14,14,45), + (15,15,46), + (16,16,47), + (17,17,48), + (18,18,49), + (19,19,50), + (20,20,51), + (21,21,52), + (22,22,53), + (23,23,54), + (24,24,55), + (25,25,56), + (26,26,57), + (27,27,58), + (28,28,59), + (29,29,60), + (30,30,61); /*!40000 ALTER TABLE `civicrm_membership_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -4815,12 +4793,12 @@ LOCK TABLES `civicrm_membership_status` WRITE; /*!40000 ALTER TABLE `civicrm_membership_status` DISABLE KEYS */; INSERT INTO `civicrm_membership_status` (`id`, `name`, `label`, `start_event`, `start_event_adjust_unit`, `start_event_adjust_interval`, `end_event`, `end_event_adjust_unit`, `end_event_adjust_interval`, `is_current_member`, `is_admin`, `weight`, `is_default`, `is_active`, `is_reserved`) VALUES (1,'New','New','join_date',NULL,NULL,'join_date','month',3,1,0,1,0,1,0), -(2,'Current','Current','start_date',NULL,NULL,'end_date',NULL,NULL,1,0,2,1,1,0), -(3,'Grace','Grace','end_date',NULL,NULL,'end_date','month',1,1,0,3,0,1,0), -(4,'Expired','Expired','end_date','month',1,NULL,NULL,NULL,0,0,4,0,1,0), -(5,'Pending','Pending','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,5,0,1,1), -(6,'Cancelled','Cancelled','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,6,0,1,1), -(7,'Deceased','Deceased',NULL,NULL,NULL,NULL,NULL,NULL,0,1,7,0,1,1); + (2,'Current','Current','start_date',NULL,NULL,'end_date',NULL,NULL,1,0,2,1,1,0), + (3,'Grace','Grace','end_date',NULL,NULL,'end_date','month',1,1,0,3,0,1,0), + (4,'Expired','Expired','end_date','month',1,NULL,NULL,NULL,0,0,4,0,1,0), + (5,'Pending','Pending','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,5,0,1,1), + (6,'Cancelled','Cancelled','join_date',NULL,NULL,'join_date',NULL,NULL,0,0,6,0,1,1), + (7,'Deceased','Deceased',NULL,NULL,NULL,NULL,NULL,NULL,0,1,7,0,1,1); /*!40000 ALTER TABLE `civicrm_membership_status` ENABLE KEYS */; UNLOCK TABLES; @@ -4832,8 +4810,8 @@ LOCK TABLES `civicrm_membership_type` WRITE; /*!40000 ALTER TABLE `civicrm_membership_type` DISABLE KEYS */; INSERT INTO `civicrm_membership_type` (`id`, `domain_id`, `name`, `description`, `member_of_contact_id`, `financial_type_id`, `minimum_fee`, `duration_unit`, `duration_interval`, `period_type`, `fixed_period_start_day`, `fixed_period_rollover_day`, `relationship_type_id`, `relationship_direction`, `max_related`, `visibility`, `weight`, `receipt_text_signup`, `receipt_text_renewal`, `auto_renew`, `is_active`) VALUES (1,1,'General','Regular annual membership.',1,2,100.000000000,'year',2,'rolling',NULL,NULL,'7','b_a',NULL,'Public',1,NULL,NULL,0,1), -(2,1,'Student','Discount membership for full-time students.',1,2,50.000000000,'year',1,'rolling',NULL,NULL,NULL,NULL,NULL,'Public',2,NULL,NULL,0,1), -(3,1,'Lifetime','Lifetime membership.',1,2,1200.000000000,'lifetime',1,'rolling',NULL,NULL,'7','b_a',NULL,'Admin',3,NULL,NULL,0,1); + (2,1,'Student','Discount membership for full-time students.',1,2,50.000000000,'year',1,'rolling',NULL,NULL,NULL,NULL,NULL,'Public',2,NULL,NULL,0,1), + (3,1,'Lifetime','Lifetime membership.',1,2,1200.000000000,'lifetime',1,'rolling',NULL,NULL,'7','b_a',NULL,'Admin',3,NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_membership_type` ENABLE KEYS */; UNLOCK TABLES; @@ -4844,467 +4822,466 @@ UNLOCK TABLES; LOCK TABLES `civicrm_menu` WRITE; /*!40000 ALTER TABLE `civicrm_menu` DISABLE KEYS */; INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`, `module_data`) VALUES - (1,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), -(2,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), -(3,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), -(4,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(5,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(6,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(7,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), -(8,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), -(9,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(10,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(11,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(12,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(13,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(14,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(15,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(16,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(17,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(18,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(19,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(20,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(21,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(22,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(23,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(24,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(25,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(26,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(27,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(28,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(29,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(30,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(31,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(32,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(33,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), -(34,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(35,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(36,1,'civicrm/dashlet/getting-started',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(37,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), -(38,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(39,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), -(40,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(41,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(42,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(43,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(44,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(45,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(46,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(47,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(48,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(49,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(50,1,'civicrm/contact/deduperules',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), -(51,1,'civicrm/contact/dedupefind',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(52,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(53,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(54,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), -(55,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(56,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(57,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(58,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(59,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(60,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(61,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(62,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(63,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(64,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(65,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(66,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(67,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(68,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(69,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(70,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), -(71,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(72,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(73,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(74,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(75,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(76,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(77,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(78,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), -(79,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), -(80,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), -(81,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), -(82,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), -(83,1,'civicrm/admin/uf/group/copy',NULL,'Profile Copy','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,26,1,0,0,'a:0:{}'), -(84,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), -(85,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(86,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(87,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(88,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(89,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(90,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(91,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(92,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(93,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(94,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(95,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(96,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(97,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(98,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(99,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(100,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(101,1,'civicrm/admin/setting/preferences/date/edit',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_PreferencesDate\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Date Preferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(102,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(103,1,'civicrm/admin/menu/item',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Navigation\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Navigation Menu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(104,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(105,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(106,1,'civicrm/admin/options/from_email_address',NULL,'Site Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:44:\"url=civicrm/admin/options/site_email_address\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(107,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(108,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), -(109,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(110,1,'civicrm/admin/scheduleReminders/edit',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Form_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Schedule Reminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(111,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(112,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(113,1,'civicrm/admin/labelFormats',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(114,1,'civicrm/admin/labelFormats/edit',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Label Page Formats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(115,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(116,1,'civicrm/admin/pdfFormats/edit',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(117,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(118,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(119,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(120,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), -(121,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), -(122,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), -(123,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), -(124,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), -(125,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), -(126,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), -(127,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), -(128,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(129,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(130,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(131,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(132,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(133,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(134,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(135,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(136,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(137,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(138,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(139,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(140,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(141,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(142,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(143,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(144,1,'civicrm/admin/mapping/edit',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Mapping\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,111,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(145,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(146,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(147,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), -(148,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(149,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), -(150,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), -(151,1,'civicrm/admin/setting/preferences/date',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,97,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(152,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), -(153,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(154,1,'civicrm/admin/job/add',NULL,'Add Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Form_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:31:\"Add a periodially running task.\";}'), -(155,1,'civicrm/admin/job/edit',NULL,'Edit Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1372,1,0,0,'a:2:{s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(156,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), -(157,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), -(158,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), -(159,1,'civicrm/admin',NULL,'Administer','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), -(160,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(161,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), -(162,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(163,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), -(164,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), -(165,1,'civicrm/admin/price/edit',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(166,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(167,1,'civicrm/admin/price/field/edit',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(168,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(169,1,'civicrm/admin/price/field/option/edit',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}i:3;a:2:{s:5:\"title\";s:19:\"Price Field Options\";s:3:\"url\";s:41:\"/civicrm/admin/price/field/option?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(170,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(171,1,'civicrm/admin/sms/provider/edit',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Form_Provider\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Sms Providers\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,501,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), -(172,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), -(173,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(174,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(175,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(176,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(177,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(178,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(179,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(180,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(181,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(182,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(183,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), -(184,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(185,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), -(186,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), -(187,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(188,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(189,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(190,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), -(191,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(192,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(193,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(194,1,'civicrm/acl/edit',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(195,1,'civicrm/acl/delete',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(196,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(197,1,'civicrm/acl/entityrole/edit',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Form_EntityRole\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Assign Users to ACL Roles\";s:3:\"url\";s:31:\"/civicrm/acl/entityrole?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(198,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(199,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(200,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), -(201,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(202,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(203,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(204,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(205,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(206,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(207,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(208,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(209,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(210,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(211,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(212,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), -(213,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(214,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(215,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(216,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(217,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(218,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(219,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(220,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(221,1,'civicrm/dev/rtf',NULL,'Remote Test Function','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:32:\"CRM_Core_Page_RemoteTestFunction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(222,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(223,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(224,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(225,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(226,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(227,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(228,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(229,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(230,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(231,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(232,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(233,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(234,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(235,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(236,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(237,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(238,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(239,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(240,1,'civicrm/note',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Note_Form_Note\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(241,1,'civicrm/task/delete-permanently',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"access deleted contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(242,1,'civicrm/task/restore-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(243,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), -(244,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(245,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(246,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(247,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), -(248,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), -(249,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), -(250,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(251,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), -(252,1,'civicrm/import/contribution',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,520,1,1,0,'a:0:{}'), -(253,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:30:\"class_prefix=CRM_Custom_Import\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), -(254,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(255,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), -(256,1,'civicrm/ajax/api4',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(257,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(258,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), -(259,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), -(260,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(261,1,'civicrm/group/edit',NULL,'Edit Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:19:\"CRM_Group_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(262,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(263,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), -(264,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(265,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(266,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(267,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(268,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(269,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), -(270,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(271,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(272,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), -(273,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), -(274,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), -(275,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), -(276,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), -(277,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), -(278,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), -(279,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), -(280,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), -(281,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), -(282,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), -(283,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(284,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(285,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(286,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(287,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(288,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), -(289,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), -(290,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), -(291,1,'civicrm/event/participant/print',NULL,'ts(\'PDF letter - print for participants\')','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:23:\"CRM_Event_Form_Task_PDF\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), -(292,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), -(293,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), -(294,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), -(295,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), -(296,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), -(297,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), -(298,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), -(299,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), -(300,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), -(301,1,'civicrm/import/participant',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,840,1,1,0,'a:0:{}'), -(302,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), -(303,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), -(304,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), -(305,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), -(306,1,'civicrm/participant/delete',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"delete in CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_Participant_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), -(307,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(308,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(309,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), -(310,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), -(311,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), -(312,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(313,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(314,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(315,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), -(316,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(317,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), -(318,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), -(319,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), -(320,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), -(321,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), -(322,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), -(323,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), -(324,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), -(325,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), -(326,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(327,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(328,1,'civicrm/admin/contribute/managePremiums/edit',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_ManagePremiums\";','s:13:\"imageUpload=1\";','a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}i:3;a:2:{s:5:\"title\";s:15:\"Manage Premiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(329,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(330,1,'civicrm/admin/financial/financialType/edit',NULL,'Edit Financial Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Form_FinancialType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(331,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(332,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(333,1,'civicrm/admin/financial/financialAccount/edit',NULL,'Edit Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Form_FinancialAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Financial Accounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(334,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(335,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(336,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(337,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(338,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(339,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(340,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), -(341,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), -(342,1,'civicrm/admin/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,530,1,1,0,'a:0:{}'), -(343,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), -(344,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(345,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(346,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(347,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(348,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(349,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(350,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), -(351,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), -(352,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), -(353,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), -(354,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), -(355,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(356,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), -(357,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(358,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), -(359,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(360,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(361,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(362,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), -(363,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), -(364,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,1,0,1,0,700,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), -(365,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), -(366,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), -(367,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), -(368,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,2,1,0,0,'a:0:{}'), -(369,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,390,1,0,0,'a:0:{}'), -(370,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,710,1,1,0,'a:0:{}'), -(371,1,'civicrm/import/membership',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:20:\"entity_prefix=Member\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,720,1,1,0,'a:0:{}'), -(372,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(373,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(374,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,1,0,1,0,600,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'), -(375,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), -(376,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), -(377,1,'civicrm/admin/component/edit',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Component\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,411,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), -(378,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:20:\"List email accounts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), -(379,1,'civicrm/admin/mailSettings/edit',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_MailSettings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Mail Accounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), -(380,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,610,1,1,0,'a:0:{}'), -(381,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), -(382,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), -(383,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,625,1,1,0,'a:0:{}'), -(384,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,630,1,1,0,'a:0:{}'), -(385,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,640,1,0,0,'a:0:{}'), -(386,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,645,1,0,0,'a:0:{}'), -(387,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,650,1,0,0,'a:0:{}'), -(388,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), -(389,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), -(390,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,680,1,0,0,'a:0:{}'), -(391,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,685,1,0,0,'a:0:{}'), -(392,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&mid=%%mid%%\";}}',NULL,NULL,4,1,0,1,0,695,1,0,0,'a:0:{}'), -(393,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(394,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,800,1,0,0,'a:0:{}'), -(395,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,850,1,0,0,'a:0:{}'), -(396,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(397,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(398,1,'civicrm/ajax/setupMailAccount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:5:\"setup\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(399,1,'civicrm/mailing/url',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:20:\"CRM_Mailing_Page_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), -(400,1,'civicrm/mailing/open',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:21:\"CRM_Mailing_Page_Open\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), -(401,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,1,0,1,0,550,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), -(402,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,560,1,1,0,'a:0:{}'), -(403,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,570,1,0,0,'a:0:{}'), -(404,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), -(405,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,580,1,0,0,'a:0:{}'), -(406,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(407,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,1,0,1,0,900,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), -(408,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), -(409,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,910,1,1,0,'a:0:{}'), -(410,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(411,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(412,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(413,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(414,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(415,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(416,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(417,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(418,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:1:{s:10:\"adminGroup\";s:8:\"CiviCase\";}'), -(419,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), -(420,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), -(421,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), -(422,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), -(423,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(424,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(425,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,3,0,'a:0:{}'), -(426,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(427,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(428,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(429,1,'civicrm/case/email/add','action=add,task=email','Email','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_Task_Email\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), -(430,1,'civicrm/contact/view/case/deleteClient',NULL,'Remove Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Case_Form_DeleteClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(431,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,1,0,1,0,1200,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'), -(432,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), -(433,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1220,1,1,0,'a:0:{}'), -(434,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1241,1,1,0,'a:0:{}'), -(435,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'), -(436,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), -(437,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), -(438,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), -(439,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), -(440,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), -(441,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), -(442,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), -(443,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), -(444,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,2,1,0,0,'a:3:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), -(445,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,3,1,0,0,'a:3:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), -(446,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,4,1,0,0,'a:3:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), -(447,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), -(448,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), -(449,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(450,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(451,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(452,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(453,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), -(454,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(455,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(456,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(457,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(458,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), -(459,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor 4','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Ckeditor4_Form_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), -(460,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:20:\"administer recaptcha\";}i:1;s:2:\"or\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";}'), -(461,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:26:\"{weight}.Manage Duplicates\";a:6:{s:5:\"title\";s:17:\"Manage Duplicates\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:16:\"ManageDuplicates\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Date Preferences\";a:6:{s:5:\"title\";s:16:\"Date Preferences\";s:4:\"desc\";N;s:2:\"id\";s:15:\"DatePreferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.Site Email Addresses\";a:6:{s:5:\"title\";s:20:\"Site Email Addresses\";s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"SiteEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Label Page Formats\";a:6:{s:5:\"title\";s:18:\"Label Page Formats\";s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:2:\"id\";s:16:\"LabelPageFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:20:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:35:\"/civicrm/admin/mapping/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Edit Scheduled Job\";a:6:{s:5:\"title\";s:18:\"Edit Scheduled Job\";s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:2:\"id\";s:16:\"EditScheduledJob\";s:3:\"url\";s:31:\"/civicrm/admin/job/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:40:\"/civicrm/admin/sms/provider/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:8:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:37:\"/civicrm/admin/component/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:20:\"List email accounts.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); + (1,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (2,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), + (3,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), + (4,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (5,1,'civicrm/group/edit',NULL,'Edit Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:19:\"CRM_Group_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (6,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (7,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (8,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (9,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (10,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (11,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), + (12,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (13,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (14,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (15,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (16,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (17,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (18,1,'civicrm/admin/uf/group/preview',NULL,'Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_UF_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (19,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), + (20,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), + (21,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), + (22,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), + (23,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), + (24,1,'civicrm/admin/uf/group/copy',NULL,'Profile Copy','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,26,1,0,0,'a:0:{}'), + (25,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), + (26,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (27,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (28,1,'civicrm/admin/reltype/edit',NULL,'Edit Relationship Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_RelationshipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Relationship Types\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (29,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (30,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (31,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (32,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (33,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (34,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (35,1,'civicrm/admin/locationType/edit',NULL,'Edit Location Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_LocationType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (36,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (37,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (38,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (39,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (40,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (41,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (42,1,'civicrm/admin/setting/preferences/date/edit',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_PreferencesDate\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Date Preferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (43,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (44,1,'civicrm/admin/menu/item',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Navigation\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Navigation Menu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (45,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (46,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (47,1,'civicrm/admin/options/from_email_address',NULL,'Site Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:44:\"url=civicrm/admin/options/site_email_address\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (48,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (49,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), + (50,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (51,1,'civicrm/admin/scheduleReminders/edit',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Form_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Schedule Reminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (52,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (53,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (54,1,'civicrm/admin/labelFormats',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (55,1,'civicrm/admin/labelFormats/edit',NULL,'Label Page Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Label Page Formats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (56,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (57,1,'civicrm/admin/pdfFormats/edit',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (58,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (59,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (60,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (61,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (62,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (63,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (64,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (65,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), + (66,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (67,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), + (68,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (69,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (70,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (71,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (72,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (73,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (74,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (75,1,'civicrm/admin/paymentProcessor/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_PaymentProcessor\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (76,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (77,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (78,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (79,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (80,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (81,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (82,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (83,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (84,1,'civicrm/admin/mapping/edit',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Mapping\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,111,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (85,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (86,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (87,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (88,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (89,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (90,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), + (91,1,'civicrm/admin/setting/preferences/date',NULL,'Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,97,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (92,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), + (93,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (94,1,'civicrm/admin/job/add',NULL,'Add Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Form_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:31:\"Add a periodially running task.\";}'), + (95,1,'civicrm/admin/job/edit',NULL,'Edit Scheduled Job','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1372,1,0,0,'a:2:{s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (96,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (97,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), + (98,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), + (99,1,'civicrm/admin',NULL,'Administer','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), + (100,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (101,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (102,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (103,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), + (104,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), + (105,1,'civicrm/admin/price/edit',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (106,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (107,1,'civicrm/admin/price/field/edit',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (108,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (109,1,'civicrm/admin/price/field/option/edit',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:16:\"access CiviEvent\";}i:1;s:2:\"or\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}i:3;a:2:{s:5:\"title\";s:19:\"Price Field Options\";s:3:\"url\";s:41:\"/civicrm/admin/price/field/option?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (110,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (111,1,'civicrm/admin/sms/provider/edit',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Form_Provider\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Sms Providers\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,501,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (112,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), + (113,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (114,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (115,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (116,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (117,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (118,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (119,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (120,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (121,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (122,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (123,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (124,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (125,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (126,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (127,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (128,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (129,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (130,1,'civicrm/ajax/api4',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (131,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (132,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), + (133,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (134,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (135,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (136,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (137,1,'civicrm/import/contribution',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,520,1,1,0,'a:0:{}'), + (138,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:30:\"class_prefix=CRM_Custom_Import\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (139,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (140,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), + (141,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (142,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (143,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (144,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (145,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (146,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (147,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (148,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (149,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (150,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (151,1,'civicrm/acl/edit',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (152,1,'civicrm/acl/delete',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Form_ACL\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (153,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (154,1,'civicrm/acl/entityrole/edit',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Form_EntityRole\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Assign Users to ACL Roles\";s:3:\"url\";s:31:\"/civicrm/acl/entityrole?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (155,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (156,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (157,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), + (158,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (159,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (160,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (161,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (162,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (163,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (164,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (165,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (166,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (167,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (168,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (169,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), + (170,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (171,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (172,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (173,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (174,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (175,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (176,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (177,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (178,1,'civicrm/dev/rtf',NULL,'Remote Test Function','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:32:\"CRM_Core_Page_RemoteTestFunction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (179,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (180,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (181,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (182,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (183,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (184,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (185,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (186,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (187,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (188,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (189,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (190,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (191,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (192,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (193,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (194,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (195,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (196,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (197,1,'civicrm/note',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Note_Form_Note\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (198,1,'civicrm/task/delete-permanently',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"access deleted contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (199,1,'civicrm/task/restore-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (200,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (201,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), + (202,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), + (203,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (204,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (205,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (206,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), + (207,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), + (208,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (209,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (210,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (211,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (212,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (213,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (214,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (215,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (216,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (217,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (218,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (219,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (220,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (221,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (222,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (223,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (224,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (225,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (226,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (227,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (228,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (229,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (230,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (231,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (232,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (233,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (234,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (235,1,'civicrm/dashlet/getting-started',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (236,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (237,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (238,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (239,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (240,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (241,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (242,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (243,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (244,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (245,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (246,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (247,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (248,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (249,1,'civicrm/contact/deduperules',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (250,1,'civicrm/contact/dedupefind',NULL,'Manage Duplicates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (251,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (252,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (253,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), + (254,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (255,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (256,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (257,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (258,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (259,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (260,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (261,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (262,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (263,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (264,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (265,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (266,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (267,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (268,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (269,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (270,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (271,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), + (272,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), + (273,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (274,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), + (275,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), + (276,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), + (277,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), + (278,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), + (279,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (280,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (281,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (282,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (283,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (284,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (285,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (286,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (287,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (288,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), + (289,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), + (290,1,'civicrm/event/participant/print',NULL,'ts(\'PDF letter - print for participants\')','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:23:\"CRM_Event_Form_Task_PDF\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), + (291,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), + (292,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), + (293,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), + (294,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), + (295,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), + (296,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), + (297,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), + (298,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), + (299,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), + (300,1,'civicrm/import/participant',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,840,1,1,0,'a:0:{}'), + (301,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), + (302,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), + (303,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), + (304,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), + (305,1,'civicrm/participant/delete',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"delete in CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_Participant_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), + (306,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (307,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (308,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), + (309,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), + (310,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (311,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (312,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (313,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (314,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), + (315,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (316,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), + (317,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), + (318,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), + (319,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), + (320,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), + (321,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), + (322,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), + (323,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), + (324,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), + (325,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (326,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (327,1,'civicrm/admin/contribute/managePremiums/edit',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_ManagePremiums\";','s:13:\"imageUpload=1\";','a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}i:3;a:2:{s:5:\"title\";s:15:\"Manage Premiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (328,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (329,1,'civicrm/admin/financial/financialType/edit',NULL,'Edit Financial Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Form_FinancialType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (330,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (331,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (332,1,'civicrm/admin/financial/financialAccount/edit',NULL,'Edit Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Form_FinancialAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:18:\"Financial Accounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (333,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (334,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (335,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (336,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (337,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (338,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (339,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), + (340,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), + (341,1,'civicrm/admin/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,530,1,1,0,'a:0:{}'), + (342,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), + (343,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (344,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (345,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (346,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (347,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (348,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (349,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), + (350,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), + (351,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), + (352,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), + (353,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), + (354,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (355,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (356,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (357,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (358,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (359,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (360,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (361,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (362,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (363,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,1,0,1,0,700,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), + (364,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), + (365,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), + (366,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), + (367,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,2,1,0,0,'a:0:{}'), + (368,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,390,1,0,0,'a:0:{}'), + (369,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,710,1,1,0,'a:0:{}'), + (370,1,'civicrm/import/membership',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:21:\"CRM_Import_Controller\";','s:20:\"entity_prefix=Member\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,720,1,1,0,'a:0:{}'), + (371,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (372,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (373,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,1,0,1,0,600,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviMail\";}'), + (374,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (375,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (376,1,'civicrm/admin/component/edit',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Component\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,411,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (377,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:20:\"List email accounts.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (378,1,'civicrm/admin/mailSettings/edit',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_MailSettings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Mail Accounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), + (379,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,610,1,1,0,'a:0:{}'), + (380,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:5:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";i:4;s:8:\"send SMS\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), + (381,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,620,1,1,0,'a:0:{}'), + (382,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,625,1,1,0,'a:0:{}'), + (383,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,630,1,1,0,'a:0:{}'), + (384,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,640,1,0,0,'a:0:{}'), + (385,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,645,1,0,0,'a:0:{}'), + (386,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,650,1,0,0,'a:0:{}'), + (387,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), + (388,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,660,1,0,0,'a:0:{}'), + (389,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,680,1,0,0,'a:0:{}'), + (390,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,685,1,0,0,'a:0:{}'), + (391,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&mid=%%mid%%\";}}',NULL,NULL,4,1,0,1,0,695,1,0,0,'a:0:{}'), + (392,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (393,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,800,1,0,0,'a:0:{}'), + (394,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,0,1,0,850,1,0,0,'a:0:{}'), + (395,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (396,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (397,1,'civicrm/ajax/setupMailAccount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:5:\"setup\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (398,1,'civicrm/mailing/url',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:20:\"CRM_Mailing_Page_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), + (399,1,'civicrm/mailing/open',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:21:\"CRM_Mailing_Page_Open\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,1,1,1,0,1,1,0,0,'a:0:{}'), + (400,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,1,0,1,0,550,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), + (401,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,560,1,1,0,'a:0:{}'), + (402,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,570,1,0,0,'a:0:{}'), + (403,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviPledge\";}'), + (404,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,1,0,1,0,580,1,0,0,'a:0:{}'), + (405,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (406,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,1,0,1,0,900,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), + (407,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:8:\"CiviCase\";}'), + (408,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,910,1,1,0,'a:0:{}'), + (409,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (410,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (411,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (412,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (413,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (414,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (415,1,'civicrm/case/addToCase',NULL,'File on Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (416,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (417,1,'civicrm/admin/setting/case',NULL,'CiviCase Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:1:{s:10:\"adminGroup\";s:8:\"CiviCase\";}'), + (418,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), + (419,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), + (420,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), + (421,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:2:{s:4:\"desc\";s:26:\"List of encounter mediums.\";s:10:\"adminGroup\";s:8:\"CiviCase\";}'), + (422,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (423,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (424,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,3,0,'a:0:{}'), + (425,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (426,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (427,1,'civicrm/ajax/get-cases',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:8:\"getCases\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (428,1,'civicrm/case/email/add','action=add,task=email','Email','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_Task_Email\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,1,0,1,0,1,1,0,0,'a:0:{}'), + (429,1,'civicrm/contact/view/case/deleteClient',NULL,'Remove Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Case_Form_DeleteClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (430,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,1,0,1,0,1200,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviReport\";}'), + (431,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), + (432,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1220,1,1,0,'a:0:{}'), + (433,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1241,1,1,0,'a:0:{}'), + (434,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:30:\"Register the Report templates.\";}'), + (435,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,1,0,1,0,1,1,0,0,'a:0:{}'), + (436,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), + (437,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), + (438,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:10:\"adminGroup\";s:10:\"CiviReport\";}'), + (439,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), + (440,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), + (441,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), + (442,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (443,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,2,1,0,0,'a:3:{s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (444,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,3,1,0,0,'a:3:{s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (445,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,4,1,0,0,'a:3:{s:4:\"desc\";s:18:\"Engagement levels.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (446,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), + (447,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:12:\"CiviCampaign\";}'), + (448,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (449,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (450,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (451,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (452,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (453,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (454,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (455,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (456,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (457,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (458,1,'civicrm/admin/ckeditor',NULL,'Configure CKEditor 4','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Ckeditor4_Form_CKEditorConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (459,1,'civicrm/admin/setting/recaptcha',NULL,'reCAPTCHA Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:20:\"administer recaptcha\";}i:1;s:2:\"or\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"Administer\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:10:\"adminGroup\";s:15:\"System Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";}'), + (460,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Date Preferences\";a:6:{s:5:\"title\";s:16:\"Date Preferences\";s:4:\"desc\";N;s:2:\"id\";s:15:\"DatePreferences\";s:3:\"url\";s:47:\"/civicrm/admin/setting/preferences/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:13:\"{weight}.Tags\";a:6:{s:5:\"title\";s:4:\"Tags\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"Communications\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:29:\"{weight}.Site Email Addresses\";a:6:{s:5:\"title\";s:20:\"Site Email Addresses\";s:4:\"desc\";s:74:\"List of email addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"SiteEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Label Page Formats\";a:6:{s:5:\"title\";s:18:\"Label Page Formats\";s:4:\"desc\";s:82:\"Configure label sizes and page layouts that are used when printing mailing labels.\";s:2:\"id\";s:16:\"LabelPageFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Localization\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:21:\"Users and Permissions\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:15:\"System Settings\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:37:\"{weight}.Settings - Payment Processor\";a:6:{s:5:\"title\";s:28:\"Settings - Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:25:\"Settings-PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:53:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, etc.)\";a:6:{s:5:\"title\";s:44:\"Misc (Undelete, PDFs, Limits, Logging, etc.)\";s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:2:\"id\";s:38:\"Misc_Undelete_PDFs_Limits_Logging_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:35:\"/civicrm/admin/mapping/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Edit Scheduled Job\";a:6:{s:5:\"title\";s:18:\"Edit Scheduled Job\";s:4:\"desc\";s:32:\"Edit a periodially running task.\";s:2:\"id\";s:16:\"EditScheduledJob\";s:3:\"url\";s:31:\"/civicrm/admin/job/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:40:\"/civicrm/admin/sms/provider/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.reCAPTCHA Settings\";a:6:{s:5:\"title\";s:18:\"reCAPTCHA Settings\";s:4:\"desc\";s:108:\"Uses the Google reCAPTCHA web service to improve the CAPTCHA system. It is tough on bots and easy on humans.\";s:2:\"id\";s:17:\"reCAPTCHASettings\";s:3:\"url\";s:40:\"/civicrm/admin/setting/recaptcha?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"CiviCampaign\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"CiviEvent\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:8:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviMail\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:37:\"/civicrm/admin/component/edit?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:20:\"List email accounts.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviMember\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:6:\"Manage\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Manage Duplicates\";a:6:{s:5:\"title\";s:17:\"Manage Duplicates\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:16:\"ManageDuplicates\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:12:\"Option Lists\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > System Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:9:\"Customize\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:14:\"CiviContribute\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Payment Methods\";a:6:{s:5:\"title\";s:15:\"Payment Methods\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:14:\"PaymentMethods\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:8:\"CiviCase\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:26:\"{weight}.CiviCase Settings\";a:6:{s:5:\"title\";s:17:\"CiviCase Settings\";s:4:\"desc\";N;s:2:\"id\";s:16:\"CiviCaseSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/case?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}s:10:\"CiviReport\";a:2:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}}}',NULL,NULL,NULL,1,0,1,1,1,1,1,0,'a:0:{}'); /*!40000 ALTER TABLE `civicrm_menu` ENABLE KEYS */; UNLOCK TABLES; @@ -5316,70 +5293,70 @@ LOCK TABLES `civicrm_msg_template` WRITE; /*!40000 ALTER TABLE `civicrm_msg_template` DISABLE KEYS */; INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `workflow_name`, `is_default`, `is_reserved`, `is_sms`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',1,0,0,NULL), -(2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',0,1,0,NULL), -(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',1,0,0,NULL), -(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',0,1,0,NULL), -(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',1,0,0,NULL), -(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',0,1,0,NULL), -(7,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',1,0,0,NULL), -(8,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',0,1,0,NULL), -(9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',1,0,0,NULL), -(10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',0,1,0,NULL), -(11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',1,0,0,NULL), -(12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',0,1,0,NULL), -(13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',1,0,0,NULL), -(14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',0,1,0,NULL), -(15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',1,0,0,NULL), -(16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',0,1,0,NULL), -(17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',1,0,0,NULL), -(18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',0,1,0,NULL), -(19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',1,0,0,NULL), -(20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',0,1,0,NULL), -(21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',1,0,0,NULL), -(22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',0,1,0,NULL), -(23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',1,0,0,NULL), -(24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',0,1,0,NULL), -(25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',1,0,0,NULL), -(26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',0,1,0,NULL), -(27,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',1,0,0,NULL), -(28,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',0,1,0,NULL), -(29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',1,0,0,NULL), -(30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',0,1,0,NULL), -(31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',1,0,0,NULL), -(32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',0,1,0,NULL), -(33,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',1,0,0,NULL), -(34,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',0,1,0,NULL), -(35,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',1,0,0,NULL), -(36,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',0,1,0,NULL), -(37,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',1,0,0,NULL), -(38,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',0,1,0,NULL), -(39,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',1,0,0,NULL), -(40,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',0,1,0,NULL), -(41,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',1,0,0,NULL), -(42,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',0,1,0,NULL), -(43,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',1,0,0,NULL), -(44,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',0,1,0,NULL), -(45,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',1,0,0,NULL), -(46,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',0,1,0,NULL), -(47,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',1,0,0,NULL), -(48,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',0,1,0,NULL), -(49,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',1,0,0,NULL), -(50,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',0,1,0,NULL), -(51,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',1,0,0,NULL), -(52,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',0,1,0,NULL), -(53,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',1,0,0,NULL), -(54,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',0,1,0,NULL), -(55,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',1,0,0,NULL), -(56,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',0,1,0,NULL), -(57,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',1,0,0,NULL), -(58,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',0,1,0,NULL), -(59,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',1,0,0,NULL), -(60,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',0,1,0,NULL), -(61,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',1,0,0,NULL), -(62,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',0,1,0,NULL), -(63,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), -(64,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting_display},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), -(65,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,NULL,1,0,0,NULL); + (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','','\n\n\n \n \n\n\n\n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n {if !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n
\n {ts}Activity Summary{/ts} - {activity.activity_type_id:label}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n\n\n',1,805,'case_activity',0,1,0,NULL), + (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',1,0,0,NULL), + (4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Manage Duplicates\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,806,'contribution_dupalert',0,1,0,NULL), + (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',1,0,0,NULL), + (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

\n {if {contribution.contribution_page_id.receipt_text|boolean}}{contribution.contribution_page_id.receipt_text}\n {elseif {contribution.paid_amount|boolean}}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n

\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($formValues.product_name)}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,807,'contribution_offline_receipt',0,1,0,NULL), + (7,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',1,0,0,NULL), + (8,'Contributions - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.contribution_page_id.is_share|boolean}}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id={contribution.contribution_page_id}\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,808,'contribution_online_receipt',0,1,0,NULL), + (9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',1,0,0,NULL), + (10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n {if $userText}\n \n \n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{$userText}
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{contact.address_billing.country_id:label}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\'{contribution.currency}\'}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {contribution.paid_amount}

{ts}AMOUNT DUE:{/ts}{contribution.balance_amount}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if {contribution.is_pay_later|boolean}}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

{ts}Amount Due:{/ts}{contribution.total_amount}
{ts}Amount Due:{/ts}{contribution.paid_amount}
{ts}Due Date:{/ts}{$dueDate}

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{contribution.receive_date|crmDate:\"Full\"}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{contact.address_billing.street_address} {contact.address_billing.supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{contact.address_billing.supplemental_address_2} {contact.address_billing.state_province_id:abbr}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{contact.address_billing.city} {contact.address_billing.postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if !\'{contribution.is_pay_later|boolean}\'}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=\"{contribution.currency}\"}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:\'{contribution.currency}\'}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{contribution.tax_exclusive_amount}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=\'{contribution.currency}\'}TOTAL %1{/ts}{contribution.total_amount}
{ts}LESS Credit to invoice(s){/ts}{contribution.total_amount}

{ts}REMAINING CREDIT{/ts}{contribution.balance_amount}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}CREDIT ADVICE{/ts}

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{contribution.total_amount}
\n
\n {/if}\n\n
\n \n\n',1,809,'contribution_invoice_receipt',0,1,0,NULL), + (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',1,0,0,NULL), + (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments}{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n\n\n\n',1,810,'contribution_recurring_notify',0,1,0,NULL), + (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',1,0,0,NULL), + (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n\n\n\n',1,811,'contribution_recurring_cancelled',0,1,0,NULL), + (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',1,0,0,NULL), + (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,812,'contribution_recurring_billing',0,1,0,NULL), + (17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',1,0,0,NULL), + (18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n\n\n\n',1,813,'contribution_recurring_edit',0,1,0,NULL), + (19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',1,0,0,NULL), + (20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n\n\n\n',1,814,'pcp_notify',0,1,0,NULL), + (21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',1,0,0,NULL), + (22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n\n\n\n',1,815,'pcp_status_change',0,1,0,NULL), + (23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',1,0,0,NULL), + (24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n\n\n\n',1,816,'pcp_supporter_notify',0,1,0,NULL), + (25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',1,0,0,NULL), + (26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Contribution Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,817,'pcp_owner_notify',0,1,0,NULL), + (27,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',1,0,0,NULL), + (28,'Additional Payment Receipt or Refund Notification','{if {financial_trxn.total_amount|raw} < 0}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if {event.title|boolean}} - {event.title}{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle}style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle}style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {financial_trxn.total_amount|raw} < 0}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if !{contribution.balance_amount|boolean}}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if {financial_trxn.total_amount|raw} < 0}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if {financial_trxn.trxn_date|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.trxn_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.payment_instrument_id|boolean}}\n \n \n \n \n {/if}\n {if {financial_trxn.check_number|boolean}}\n \n \n \n \n {/if}\n\n \n \n \n {if {contribution.total_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n {if {contribution.balance_amount|boolean}}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {financial_trxn.total_amount}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {financial_trxn.total_amount}\n
\n {ts}Transaction Date{/ts}\n \n {financial_trxn.trxn_date}\n
\n {ts}Transaction #{/ts}\n \n {financial_trxn.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {financial_trxn.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {financial_trxn.check_number}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Paid{/ts}\n \n {contribution.paid_amount}\n
\n {ts}Balance Owed{/ts}\n \n {contribution.balance_amount}\n
\n\n
\n \n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {financial_trxn.pan_truncation|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.id|boolean}}\n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {financial_trxn.card_type_id:label}
\n ************{financial_trxn.pan_truncation}
\n
\n {ts}Event Information and Location{/ts}\n
\n {event.event_title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n
\n \n\n',1,818,'payment_or_refund_notification',0,1,0,NULL), + (29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',1,0,0,NULL), + (30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if $userText}\n

{$userText}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean}}\n

{event.pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n\n {if {event.is_monetary|boolean}}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if {contribution.balance_amount|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n \n \n \n \n {/if}\n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n {if {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && {event.pay_later_receipt|boolean}}\n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customGroup)}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
{ts}Total Paid{/ts}\n {contribution.paid_amount|crmMoney}\n
{ts}Balance{/ts}{contribution.balance_amount}
{ts}Total Participants{/ts}{$line.participant_count}
\n {event.pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,819,'event_offline_receipt',0,1,0,NULL), + (31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',1,0,0,NULL), + (32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotalStyle}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if {event.confirm_email_text|boolean} AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{event.confirm_email_text}

\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}\n {if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}\n {else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}\n {/if}\n {/if}\n

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif !empty($isRequireApproval)}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif {contribution.is_pay_later|boolean} && {contribution.balance_amount|boolean} && $isPrimary}\n

{if {event.pay_later_receipt|boolean}}{event.pay_later_receipt}{/if}

\n {/if}\n
\n \n \n \n \n \n \n \n\n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean} and {event.is_show_calendar_links|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if {event.is_share|boolean}}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if {event.is_monetary|boolean} and empty($isRequireApproval)}\n \n \n \n {if $isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {if $isPrimary && ($participants|@count > 1)} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n \n \n \n {/if}\n {/foreach}\n {/if}\n {if !$isShowLineItems}\n {foreach from=$participants key=index item=currentParticipant}\n {if $isPrimary || {participant.id} === $currentParticipant.id}\n {foreach from=$currentParticipant.line_items key=index item=currentLineItem}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/if}\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {if !$isPrimary}\n {* Use the participant specific tax rate breakdown *}\n {assign var=taxRateBreakdown value=$participant.tax_rate_breakdown}\n {/if}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $isShowParticipantCount}\n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n {foreach from=$customPre item=customPr key=i}\n \n \n \n {foreach from=$customPr item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n {foreach from=$customPost item=customPos key=j}\n \n \n \n {foreach from=$customPos item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($customProfile)}\n {foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n \n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n \n \n {foreach from=$eachProfile item=val key=field}\n \n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id={event.id}&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl pageURL=$eventUrl title=\'{event.title}\'}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {event.fee_label}\n
\n {$currentParticipant.contact.display_name}\n
\n \n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {foreach from=$currentParticipant.line_items item=line}\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $isShowParticipantCount}\n \n {/if}\n \n {/foreach}\n {if $isShowTax && $isPrimary && ($participants|@count > 1)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.line_total|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total_inclusive|crmMoney:$currency}\n {$line.participant_count}
{ts 1=$currentParticipant.contact.display_name}Total for %1{/ts}{$currentParticipant.totals.total_amount_exclusive|crmMoney}{$currentParticipant.totals.tax_amount|crmMoney}{$currentParticipant.totals.total_amount_inclusive|crmMoney}
\n
\n {$currentLineItem.label}{if $isPrimary && ($participants|@count > 1)} - {$currentParticipant.contact.display_name}{/if}\n \n {$currentLineItem.line_total|crmMoney:$currency}\n
\n {ts}Amount Before Tax:{/ts}\n \n {if $isPrimary}{contribution.tax_exclusive_amount}{else}{$participant.totals.total_amount_exclusive|crmMoney}{/if}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {if $isPrimary}{contribution.tax_amount}{else}{$participant.totals.tax_amount|crmMoney}{/if}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {$participantCount}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n {ts}Transaction Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {if {event.allow_selfcancelxfer|boolean}}\n
\n {capture assign=selfservice_preposition}{if {event.selfcancelxfer_time|boolean} && {event.selfcancelxfer_time} > 0}{ts}before{/ts}{else}{ts}after{/ts}{/if}{/capture}\n {ts 1=\"{event.selfcancelxfer_time}\" 2=\"$selfservice_preposition\"}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}\n {if {contribution.paid_amount|boolean}}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,820,'event_online_receipt',0,1,0,NULL), + (33,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',1,0,0,NULL), + (34,'Events - Registration Cancellation Notice','{ts 1=\"{event.title}\"}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.register_date}\')}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,821,'participant_cancelled',0,1,0,NULL), + (35,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',1,0,0,NULL), + (36,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n {if !$isAdditional and {participant.id|boolean}}\n \n \n \n \n \n \n {/if}\n {if {event.allow_selfcancelxfer|boolean}}\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if {event.allow_selfcancelxfer|boolean}}\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId={participant.id}&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {event.is_public|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id={event.id}\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid={participant.id}&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,822,'participant_confirm',0,1,0,NULL), + (37,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',1,0,0,NULL), + (38,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=\"{event.title}\"}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,823,'participant_expired',0,1,0,NULL), + (39,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',1,0,0,NULL), + (40,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}

\n
\n \n \n \n \n \n \n \n {if {event.is_show_location|boolean}}\n \n \n \n {/if}\n\n {if {event.loc_block_id.phone_id.phone|boolean} || {event.loc_block_id.email_id.email|boolean}}\n \n \n \n\n {if {event.loc_block_id.phone_id.phone|boolean}}\n \n \n \n \n {/if}\n {if {event.loc_block_id.phone_2_id.phone|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_id.email|boolean}}\n \n \n \n \n {/if}\n\n {if {event.loc_block_id.email_2_id.email|boolean}}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if {participant.register_date|boolean}}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if {event.end_date|boolean}}-{if \'{event.end_date|crmDate:\"%Y%m%d\"}\' === \'{event.start_date|crmDate:\"%Y%m%d\"}\'}{event.end_date|crmDate:\"Time\"}{else}{event.end_date|crmDate:\"%A\"} {event.end_date|crmDate}{/if}{/if}\n
\n {event.location}\n
\n {ts}Event Contacts:{/ts}\n
\n {if {event.loc_block_id.phone_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_id.phone} {if {event.loc_block_id.phone_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_id.phone_ext}{/if}\n
\n {if {event.loc_block_id.phone_2_id.phone_type_id|boolean}}\n {event.loc_block_id.phone_2_id.phone_type_id:label}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {event.loc_block_id.phone_2_id.phone} {if {event.loc_block_id.phone_2_id.phone_ext|boolean}} {ts}ext.{/ts} {event.loc_block_id.phone_2_id.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_id.email}\n
\n {ts}Email{/ts}\n \n {event.loc_block_id.email_2_id.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n\n\n\n',1,824,'participant_transferred',0,1,0,NULL), + (41,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',1,0,0,NULL), + (42,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n\n\n\n',1,825,'friend',0,1,0,NULL), + (43,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',1,0,0,NULL), + (44,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {else}\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if !$isShowLineItems}\n \n \n \n \n \n \n \n {/if}\n {if \'{membership.status_id:name}\' !== \'Cancelled\'}\n {if !$isShowLineItems}\n \n \n \n \n \n \n \n \n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n {if {contribution.financial_type_id|boolean}}\n \n \n \n \n {/if}\n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n {if {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n \n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n {if {contribution.payment_instrument_id|boolean} && {contribution.paid_amount|boolean}}\n \n \n \n \n {if {contribution.check_number|boolean}}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {membership.membership_type_id:name}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date|crmDate:\"Full\"}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date|crmDate:\"Full\"}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Contribution Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n
\n \n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n\n\n\n',1,826,'membership_offline_receipt',0,1,0,NULL), + (45,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',1,0,0,NULL), + (46,'Memberships - Receipt (on-line)','{if \'{contribution.contribution_status_id:name}\' === \'Pending\'}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {contribution.contribution_page_id.frontend_title} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $userText}\n

{$userText}

\n {elseif {contribution.contribution_page_id.receipt_text|boolean}}\n

{contribution.contribution_page_id.receipt_text}

\n {/if}\n {if {contribution.balance_amount|boolean} && {contribution.is_pay_later|boolean}}\n

{contribution.contribution_page_id.pay_later_receipt}

\n {/if}\n\n
\n \n {if {membership.id|boolean} && !$isShowLineItems}\n \n \n \n \n \n \n \n {if {membership.start_date|boolean}}\n \n \n \n \n {/if}\n {if {membership.end_date|boolean}}\n \n \n \n \n {/if}\n {/if}\n {if {contribution.total_amount|boolean}}\n \n \n \n\n {if !$isShowLineItems && {contribution.total_amount|boolean}}\n {foreach from=$lineItems item=line}\n \n \n \n \n {/foreach}\n {elseif $isShowLineItems}\n \n \n \n\n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n {/if}\n \n \n \n \n {/if}\n\n {if {contribution.receive_date|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.trxn_id|boolean}}\n \n \n \n \n {/if}\n\n {if {contribution.contribution_recur_id|boolean}}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($pcpBlock)}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if {contribution.address_id.display|boolean}}\n \n \n \n \n \n \n {/if}\n {if {contact.email_primary.email|boolean}}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($selectPremium)}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if $is_deductible AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n \n \n \n \n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {ts}{membership.membership_type_id:label}{/ts}\n
\n {ts}Membership Start Date{/ts}\n \n {membership.start_date}\n
\n {ts}Membership Expiration Date{/ts}\n \n {membership.end_date}\n
{ts}Membership Fee{/ts}
\n {if $line.membership_type_id}\n {ts 1=\"{membership.membership_type_id:label}\"}%1 Membership{/ts}\n {else}\n {ts}Contribution Amount{/ts}\n {/if}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n
\n \n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n {if $isShowTax && {contribution.tax_amount|boolean}}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership Expiration Date{/ts}
{$line.title}\n {$line.line_total|crmMoney}\n \n {$line.line_total|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total_inclusive|crmMoney:\'{contribution.currency}\'}\n \n {$line.membership.start_date|crmDate:\"Full\"}\n \n {$line.membership.end_date|crmDate:\"Full\"}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {contribution.tax_exclusive_amount}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else} {$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date{/ts}\n \n {contribution.receive_date}\n
\n {ts}Transaction #{/ts}\n \n {contribution.trxn_id}\n
\n {ts}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {contribution.address_id.name}
\n {contribution.address_id.display}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email_primary.email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($contact_phone)}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n\n\n\n',1,827,'membership_online_receipt',0,1,0,NULL), + (47,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',1,0,0,NULL), + (48,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership Expiration Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n\n\n\n',1,828,'membership_autorenew_cancelled',0,1,0,NULL), + (49,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',1,0,0,NULL), + (50,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n\n\n\n',1,829,'membership_autorenew_billing',0,1,0,NULL), + (51,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',1,0,0,NULL), + (52,'Test-drive - Receipt Header','[TEST]\n','',' \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n',1,830,'test_preview',0,1,0,NULL), + (53,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',1,0,0,NULL), + (54,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=1}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=$count+1}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,831,'pledge_acknowledge',0,1,0,NULL), + (55,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',1,0,0,NULL), + (56,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`{contact.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank you for your generous support.{/ts}

\n
\n\n\n\n',1,832,'pledge_reminder',0,1,0,NULL), + (57,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',1,0,0,NULL), + (58,'Profiles - Admin Notification','{$grouptitle} {ts 1=$userDisplayName}Submitted by %1{/ts} - {contact.display_name}\n','','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle}style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle}style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n {* To modify content in this section, you can edit the Custom Token named \"Message Header\". See also: https://docs.civicrm.org/user/en/latest/email/message-templates/#modifying-system-workflow-message-templates *}\n {site.message_header}\n \n\n \n\n \n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {contact.display_name}\n
\n {ts}Date{/ts}\n \n {domain.now|crmDate:\"Full\"}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n\n\n\n',1,833,'uf_notify',0,1,0,NULL), + (59,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',1,0,0,NULL), + (60,'Petition - signature added','Thank you for signing {survey.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {survey.title}.

\n\n{capture assign=petitionURL}{crmURL p=\'civicrm/petition/sign\' q=\"sid={survey.id}\" a=1 fe=1 h=1}{/capture}\n{include file=\"CRM/common/SocialNetwork.tpl\" url=$petitionURL title=\'{survey.title}\' pageURL=$petitionURL petition_id=\'{survey.id}\' noscript=true emailMode=true}\n',1,834,'petition_sign',0,1,0,NULL), + (61,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',1,0,0,NULL), + (62,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,835,'petition_confirmation_needed',0,1,0,NULL), + (63,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), + (64,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting_display},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,NULL,1,0,0,NULL), + (65,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,NULL,1,0,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -5391,250 +5368,250 @@ LOCK TABLES `civicrm_navigation` WRITE; /*!40000 ALTER TABLE `civicrm_navigation` DISABLE KEYS */; INSERT INTO `civicrm_navigation` (`id`, `domain_id`, `label`, `name`, `url`, `icon`, `permission`, `permission_operator`, `parent_id`, `is_active`, `has_separator`, `weight`) VALUES (1,1,'Home','Home','civicrm/dashboard?reset=1',NULL,NULL,'',NULL,1,NULL,0), -(2,1,'Search','Search',NULL,'crm-i fa-search',NULL,'',NULL,1,NULL,10), -(3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,NULL,'',2,1,NULL,1), -(4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,NULL,'',2,1,NULL,2), -(5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,NULL,'',2,1,NULL,3), -(6,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',2,1,NULL,5), -(7,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',2,1,NULL,6), -(8,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1',NULL,'access CiviMail','',2,1,NULL,7), -(9,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',2,1,NULL,8), -(10,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',2,1,NULL,9), -(11,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',2,1,NULL,10), -(12,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,NULL,'',2,1,1,11), -(13,1,'Contacts','Contacts',NULL,'crm-i fa-address-book-o',NULL,'',NULL,1,NULL,20), -(14,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual',NULL,'add contacts','',13,1,NULL,1), -(15,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household',NULL,'add contacts','',13,1,NULL,2), -(16,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization',NULL,'add contacts','',13,1,1,3), -(17,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',13,1,1,4), -(18,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,NULL,'',13,1,NULL,5), -(19,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,NULL,'',13,1,1,6), -(20,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1',NULL,'import contacts','',13,1,NULL,7), -(21,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1',NULL,'import contacts','',13,1,NULL,8), -(22,1,'Import Custom Data','Import MultiValued Custom','civicrm/import/custom?reset=1',NULL,'import contacts','',13,1,1,9), -(23,1,'New Group','New Group','civicrm/group/add?reset=1',NULL,'edit groups','',13,0,NULL,10), -(24,1,'Manage Groups','Manage Groups','civicrm/group?reset=1',NULL,'access CiviCRM','',13,1,1,11), -(25,1,'Manage Tags','Manage Tags (Categories)','civicrm/tag?reset=1',NULL,'manage tags','',13,1,1,12), -(26,1,'Manage Duplicates','Manage Duplicates','civicrm/contact/deduperules?reset=1',NULL,'administer dedupe rules,merge duplicate contacts','OR',13,1,NULL,13), -(27,1,'Contributions','Contributions',NULL,'crm-i fa-credit-card','access CiviContribute','',NULL,1,NULL,30), -(28,1,'Dashboard','Dashboard','civicrm/contribute?reset=1',NULL,'access CiviContribute','',27,1,NULL,1), -(29,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone',NULL,'access CiviContribute,edit contributions','AND',27,1,NULL,2), -(30,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',27,1,NULL,3), -(31,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',27,1,1,4), -(32,1,'Import Contributions','Import Contributions','civicrm/import/contribution?reset=1',NULL,'access CiviContribute,edit contributions','AND',27,1,1,5), -(33,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',27,1,NULL,7), -(34,1,'Pledges','Pledges',NULL,NULL,'access CiviPledge','',27,1,1,6), -(35,1,'Accounting Batches','Accounting Batches',NULL,NULL,'view own manual batches,view all manual batches','OR',27,1,1,8), -(36,1,'Dashboard','Dashboard','civicrm/pledge?reset=1',NULL,'access CiviPledge','',34,1,NULL,1), -(37,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone',NULL,'access CiviPledge,edit pledges','AND',34,1,NULL,2), -(38,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',34,1,NULL,3), -(39,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',34,1,0,4), -(40,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,9), -(41,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,10), -(42,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,NULL,11), -(43,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,12), -(44,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,13), -(45,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,14), -(46,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add',NULL,'create manual batch','AND',35,1,NULL,1), -(47,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,2), -(48,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,3), -(49,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,4), -(50,1,'Events','Events',NULL,'crm-i fa-calendar','access CiviEvent','',NULL,1,NULL,40), -(51,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1',NULL,'access CiviEvent','',50,1,NULL,1), -(52,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone',NULL,'access CiviEvent,edit event participants','AND',50,1,NULL,2), -(53,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',50,1,NULL,3), -(54,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',50,1,1,4), -(55,1,'Import Participants','Import Participants','civicrm/import/participant?reset=1',NULL,'access CiviEvent,edit event participants','AND',50,1,1,5), -(56,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,6), -(57,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,7), -(58,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',50,1,1,8), -(59,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,9), -(60,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,10), -(61,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,NULL,11), -(62,1,'Mailings','Mailings',NULL,'crm-i fa-envelope-o','access CiviMail,create mailings,approve mailings,schedule mailings,send SMS','OR',NULL,1,NULL,50), -(63,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,1), -(64,1,'Draft Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false',NULL,'access CiviMail,create mailings,schedule mailings','OR',62,1,NULL,2), -(65,1,'Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true',NULL,'access CiviMail,approve mailings,create mailings,schedule mailings','OR',62,1,NULL,3), -(66,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,4), -(67,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',62,1,1,5), -(68,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',62,1,NULL,6), -(69,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'edit message templates,edit user-driven message templates,edit system workflow message templates','OR',62,1,NULL,7), -(70,1,'Site Email Addresses','CiviMail Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',62,1,1,8), -(71,1,'New SMS','New SMS','civicrm/sms/send?reset=1',NULL,'send SMS',NULL,62,1,NULL,9), -(72,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1',NULL,'send SMS',NULL,62,1,1,10), -(73,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new',NULL,'access CiviMail','',62,1,NULL,15), -(74,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest',NULL,'access CiviMail','',62,1,1,16), -(75,1,'Memberships','Memberships',NULL,'crm-i fa-id-badge','access CiviMember','',NULL,1,NULL,60), -(76,1,'Dashboard','Dashboard','civicrm/member?reset=1',NULL,'access CiviMember','',75,1,NULL,1), -(77,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone',NULL,'access CiviMember,edit memberships','AND',75,0,NULL,2), -(78,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',75,1,NULL,3), -(79,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',75,1,1,4), -(80,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',75,1,NULL,5), -(81,1,'Import Memberships','Import Members','civicrm/import/membership?reset=1',NULL,'access CiviMember,edit memberships','AND',75,1,1,6), -(82,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',75,0,NULL,7), -(83,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',75,1,NULL,8), -(84,1,'Campaigns','Campaigns',NULL,'crm-i fa-bullhorn','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70), -(85,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,2), -(86,1,'New Survey','New Survey','civicrm/survey/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,3), -(87,1,'New Petition','New Petition','civicrm/petition/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,4), -(88,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts','OR',84,1,NULL,5), -(89,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview',NULL,'administer CiviCampaign,manage campaign,interview campaign contacts','OR',84,1,NULL,6), -(90,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release',NULL,'administer CiviCampaign,manage campaign,release campaign contacts','OR',84,1,NULL,7), -(91,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',84,1,1,8), -(92,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',84,1,NULL,9), -(93,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1',NULL,'administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',84,1,NULL,10), -(94,1,'Cases','Cases',NULL,'crm-i fa-folder-open-o','access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80), -(95,1,'Dashboard','Dashboard','civicrm/case?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,NULL,1), -(96,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone',NULL,'add cases,access all cases and activities','OR',94,1,NULL,2), -(97,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,1,3), -(98,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',94,1,0,4), -(99,1,'Administer','Administer',NULL,'crm-i fa-gears','administer CiviCRM','',NULL,1,NULL,100), -(100,1,'Administration Console','Administration Console','civicrm/admin?reset=1',NULL,'administer CiviCRM','',99,1,NULL,1), -(101,1,'System Status','System Status','civicrm/a/#/status',NULL,'administer CiviCRM','',100,1,NULL,0), -(102,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1',NULL,'administer CiviCRM','',100,1,NULL,1), -(103,1,'Customize Data and Screens','Customize Data and Screens',NULL,NULL,'administer CiviCRM','',99,1,NULL,3), -(104,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,1), -(105,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,2), -(106,1,'Tags','Tags (Categories)','civicrm/tag?reset=1',NULL,'administer CiviCRM','',103,1,NULL,3), -(107,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1',NULL,'administer CiviCRM','',103,1,NULL,4), -(108,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,5), -(109,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,6), -(110,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1',NULL,'administer CiviCRM','',103,1,NULL,9), -(111,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1',NULL,'administer CiviCRM','',103,1,NULL,10), -(112,1,'Date Preferences','Date Preferences','civicrm/admin/setting/preferences/date?reset=1',NULL,'administer CiviCRM','',103,1,NULL,11), -(113,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1',NULL,'administer CiviCRM','',103,1,NULL,12), -(114,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1',NULL,'administer CiviCRM','',103,1,NULL,13), -(115,1,'Dropdown Options','Dropdown Options','civicrm/admin/options?action=browse&reset=1',NULL,'administer CiviCRM','',103,1,NULL,8), -(116,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1',NULL,'administer CiviCRM','',115,1,NULL,1), -(117,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,2), -(118,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,3), -(119,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1',NULL,'administer CiviCRM','',115,1,NULL,4), -(120,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1',NULL,'administer CiviCRM','',115,1,NULL,5), -(121,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1',NULL,'administer CiviCRM','',115,1,NULL,6), -(122,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,7), -(123,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,8), -(124,1,'Communications','Communications',NULL,NULL,'administer CiviCRM','',99,1,NULL,4), -(125,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1',NULL,'administer CiviCRM','',124,1,NULL,1), -(126,1,'Site Email Addresses','Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',124,1,NULL,2), -(127,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',124,1,NULL,3), -(128,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1',NULL,'administer CiviCRM','',124,1,NULL,4), -(129,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1',NULL,'administer CiviCRM','',124,1,NULL,5), -(130,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,6), -(131,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,7), -(132,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1',NULL,'administer CiviCRM','',124,1,NULL,8), -(133,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,9), -(134,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,10), -(135,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1',NULL,'administer CiviCRM','',124,1,NULL,11), -(136,1,'Localization','Localization',NULL,NULL,'administer CiviCRM','',99,1,NULL,6), -(137,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1',NULL,'administer CiviCRM','',136,1,NULL,1), -(138,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1',NULL,'administer CiviCRM','',136,1,NULL,2), -(139,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1',NULL,'administer CiviCRM','',136,1,NULL,3), -(140,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1',NULL,'administer CiviCRM','',136,1,NULL,4), -(141,1,'Users and Permissions','Users and Permissions',NULL,NULL,'administer CiviCRM','',99,1,NULL,7), -(142,1,'Access Control Lists','Permissions (Access Control)','civicrm/admin/access?reset=1',NULL,'administer CiviCRM','',141,1,NULL,5), -(143,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1',NULL,'administer CiviCRM','',141,1,NULL,10), -(144,1,'System Settings','System Settings',NULL,NULL,'administer CiviCRM','',99,1,NULL,8), -(145,1,'Components','Enable Components','civicrm/admin/setting/component?reset=1',NULL,'administer CiviCRM','',144,1,NULL,1), -(146,1,'Extensions','Manage Extensions','civicrm/admin/extensions?reset=1',NULL,'administer CiviCRM','',144,1,1,3), -(147,1,'Cleanup Caches and Update Paths','Cleanup Caches and Update Paths','civicrm/admin/setting/updateConfigBackend?reset=1',NULL,'administer CiviCRM','',144,1,NULL,4), -(148,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1',NULL,'administer CiviCRM','',144,1,NULL,5), -(149,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1',NULL,'administer CiviCRM','',144,1,NULL,6), -(150,1,'Directories','Directories','civicrm/admin/setting/path?reset=1',NULL,'administer CiviCRM','',144,1,NULL,7), -(151,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,8), -(152,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,9), -(153,1,'Misc (Undelete, PDFs, Limits, Logging, etc.)','misc_admin_settings','civicrm/admin/setting/misc?reset=1',NULL,'administer CiviCRM','',144,1,NULL,10), -(154,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1',NULL,'administer CiviCRM','',144,1,NULL,11), -(155,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1',NULL,'administer CiviCRM','',144,1,NULL,12), -(156,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1',NULL,'administer CiviCRM','',144,1,NULL,13), -(157,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',144,1,NULL,14), -(158,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1',NULL,'administer CiviCRM','',144,1,NULL,15), -(159,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1',NULL,'administer CiviCRM','',144,1,NULL,16), -(160,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1',NULL,'administer CiviCRM','',144,1,NULL,17), -(161,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1',NULL,'administer CiviCRM','',144,1,NULL,18), -(162,1,'CiviCampaign','CiviCampaign',NULL,NULL,'administer CiviCampaign,administer CiviCRM','AND',99,1,NULL,9), -(163,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,1), -(164,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,2), -(165,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,3), -(166,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,4), -(167,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,5), -(168,1,'CiviCase','CiviCase',NULL,NULL,'administer CiviCase',NULL,99,1,NULL,10), -(169,1,'CiviCase Settings','CiviCase Settings','civicrm/admin/setting/case?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,1), -(170,1,'Case Types','Case Types','civicrm/a/#/caseType',NULL,'administer CiviCase',NULL,168,1,NULL,2), -(171,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,3), -(172,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,4), -(173,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,5), -(174,1,'CiviContribute','CiviContribute',NULL,NULL,'access CiviContribute,administer CiviCRM','AND',99,1,NULL,11), -(175,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,6), -(176,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,7), -(177,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,8), -(178,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,9), -(179,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,10), -(180,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,11), -(181,1,'Payment Methods','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,12), -(182,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,13), -(183,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,14), -(184,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,0,NULL,15), -(185,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,16), -(186,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',174,1,NULL,17), -(187,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1',NULL,'administer CiviCRM','',174,1,NULL,18), -(188,1,'CiviEvent','CiviEvent',NULL,NULL,'access CiviEvent,administer CiviCRM','AND',99,1,NULL,12), -(189,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,1), -(190,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,2), -(191,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,3), -(192,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,4), -(193,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,0,NULL,5), -(194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,6), -(195,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,7), -(196,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,8), -(197,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,9), -(198,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,10), -(199,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,11), -(200,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',188,1,NULL,12), -(201,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,13), -(202,1,'CiviMail','CiviMail',NULL,NULL,'access CiviMail,administer CiviCRM','AND',99,1,NULL,14), -(203,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,1), -(204,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',202,1,NULL,2), -(205,1,'Site Email Addresses','CiviMail Admin Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',202,1,NULL,3), -(206,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,4), -(207,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,5), -(208,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,6), -(209,1,'CiviMember','CiviMember',NULL,NULL,'access CiviMember,administer CiviCRM','AND',99,1,NULL,15), -(210,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,1), -(211,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,1,2), -(212,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,3), -(213,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,4), -(214,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,5), -(215,1,'CiviReport','CiviReport',NULL,NULL,'access CiviReport,administer CiviCRM','AND',99,1,NULL,16), -(216,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',215,1,NULL,1), -(217,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1',NULL,'administer Reports','',215,1,NULL,2), -(218,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1',NULL,'administer Reports','',215,1,NULL,3), -(219,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1',NULL,'administer Reports','',215,1,NULL,4), -(220,1,'Support','Support',NULL,'crm-i fa-life-ring',NULL,'',NULL,1,NULL,110), -(221,1,'User Guide','User Guide','https://docs.civicrm.org/user/?src=iam',NULL,NULL,'AND',220,1,NULL,1), -(222,1,'Get Help','Get Help','https://civicrm.org/help?src=iam',NULL,NULL,'AND',220,1,NULL,2), -(223,1,'About CiviCRM','About CiviCRM','https://civicrm.org/about?src=iam',NULL,NULL,'AND',220,1,1,3), -(224,1,'Register Your Site','Register Your Site','https://civicrm.org/register-your-site?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,4), -(225,1,'Join CiviCRM','Join CiviCRM','https://civicrm.org/become-a-member?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,5), -(226,1,'Developer','Developer',NULL,NULL,'administer CiviCRM','',220,1,1,6), -(227,1,'Api Explorer v3','API Explorer','civicrm/api3',NULL,'administer CiviCRM','',226,1,NULL,1), -(228,1,'Api Explorer v4','Api Explorer v4','civicrm/api4#/explorer',NULL,'administer CiviCRM','',226,1,NULL,2), -(229,1,'Developer Docs','Developer Docs','https://civicrm.org/developer-documentation?src=iam',NULL,'administer CiviCRM','',226,1,NULL,3), -(230,1,'Reports','Reports',NULL,'crm-i fa-bar-chart','access CiviReport','',NULL,1,NULL,95), -(231,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',230,1,0,1), -(232,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',230,1,0,2), -(233,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',230,1,0,3), -(234,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',230,1,0,4), -(235,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',230,1,0,5), -(236,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',230,1,0,6), -(237,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',230,1,0,7), -(238,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',230,1,0,8), -(239,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',230,1,1,10), -(240,1,'My Reports','My Reports','civicrm/report/list?myreports=1&reset=1',NULL,'access CiviReport','',230,1,1,11), -(241,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1',NULL,'add contacts','',14,1,NULL,1), -(242,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1',NULL,'add contacts','',14,1,NULL,2), -(243,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1',NULL,'add contacts','',14,1,NULL,3), -(244,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1',NULL,'add contacts','',16,1,NULL,1), -(245,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1',NULL,'add contacts','',16,1,NULL,2); + (2,1,'Search','Search',NULL,'crm-i fa-search',NULL,'',NULL,1,NULL,10), + (3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,NULL,'',2,1,NULL,1), + (4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,NULL,'',2,1,NULL,2), + (5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,NULL,'',2,1,NULL,3), + (6,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',2,1,NULL,5), + (7,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',2,1,NULL,6), + (8,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1',NULL,'access CiviMail','',2,1,NULL,7), + (9,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',2,1,NULL,8), + (10,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',2,1,NULL,9), + (11,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',2,1,NULL,10), + (12,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,NULL,'',2,1,1,11), + (13,1,'Contacts','Contacts',NULL,'crm-i fa-address-book-o',NULL,'',NULL,1,NULL,20), + (14,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual',NULL,'add contacts','',13,1,NULL,1), + (15,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household',NULL,'add contacts','',13,1,NULL,2), + (16,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization',NULL,'add contacts','',13,1,1,3), + (17,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',13,1,1,4), + (18,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,NULL,'',13,1,NULL,5), + (19,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,NULL,'',13,1,1,6), + (20,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1',NULL,'import contacts','',13,1,NULL,7), + (21,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1',NULL,'import contacts','',13,1,NULL,8), + (22,1,'Import Custom Data','Import MultiValued Custom','civicrm/import/custom?reset=1',NULL,'import contacts','',13,1,1,9), + (23,1,'New Group','New Group','civicrm/group/add?reset=1',NULL,'edit groups','',13,0,NULL,10), + (24,1,'Manage Groups','Manage Groups','civicrm/group?reset=1',NULL,'access CiviCRM','',13,1,1,11), + (25,1,'Manage Tags','Manage Tags (Categories)','civicrm/tag?reset=1',NULL,'manage tags','',13,1,1,12), + (26,1,'Manage Duplicates','Manage Duplicates','civicrm/contact/deduperules?reset=1',NULL,'administer dedupe rules,merge duplicate contacts','OR',13,1,NULL,13), + (27,1,'Contributions','Contributions',NULL,'crm-i fa-credit-card','access CiviContribute','',NULL,1,NULL,30), + (28,1,'Dashboard','Dashboard','civicrm/contribute?reset=1',NULL,'access CiviContribute','',27,1,NULL,1), + (29,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone',NULL,'access CiviContribute,edit contributions','AND',27,1,NULL,2), + (30,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1',NULL,'access CiviContribute','',27,1,NULL,3), + (31,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',27,1,1,4), + (32,1,'Import Contributions','Import Contributions','civicrm/import/contribution?reset=1',NULL,'access CiviContribute,edit contributions','AND',27,1,1,5), + (33,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',27,1,NULL,7), + (34,1,'Pledges','Pledges',NULL,NULL,'access CiviPledge','',27,1,1,6), + (35,1,'Accounting Batches','Accounting Batches',NULL,NULL,'view own manual batches,view all manual batches','OR',27,1,1,8), + (36,1,'Dashboard','Dashboard','civicrm/pledge?reset=1',NULL,'access CiviPledge','',34,1,NULL,1), + (37,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone',NULL,'access CiviPledge,edit pledges','AND',34,1,NULL,2), + (38,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1',NULL,'access CiviPledge','',34,1,NULL,3), + (39,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',34,1,0,4), + (40,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,9), + (41,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,10), + (42,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,NULL,11), + (43,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,12), + (44,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',27,0,NULL,13), + (45,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',27,1,1,14), + (46,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add',NULL,'create manual batch','AND',35,1,NULL,1), + (47,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,2), + (48,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,3), + (49,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5',NULL,'view own manual batches,view all manual batches','OR',35,1,NULL,4), + (50,1,'Events','Events',NULL,'crm-i fa-calendar','access CiviEvent','',NULL,1,NULL,40), + (51,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1',NULL,'access CiviEvent','',50,1,NULL,1), + (52,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone',NULL,'access CiviEvent,edit event participants','AND',50,1,NULL,2), + (53,1,'Find Participants','Find Participants','civicrm/event/search?reset=1',NULL,'access CiviEvent','',50,1,NULL,3), + (54,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',50,1,1,4), + (55,1,'Import Participants','Import Participants','civicrm/import/participant?reset=1',NULL,'access CiviEvent,edit event participants','AND',50,1,1,5), + (56,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,6), + (57,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,7), + (58,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',50,1,1,8), + (59,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,1,9), + (60,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,edit all events','AND',50,0,NULL,10), + (61,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,edit all events','AND',50,1,NULL,11), + (62,1,'Mailings','Mailings',NULL,'crm-i fa-envelope-o','access CiviMail,create mailings,approve mailings,schedule mailings,send SMS','OR',NULL,1,NULL,50), + (63,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,1), + (64,1,'Draft Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false',NULL,'access CiviMail,create mailings,schedule mailings','OR',62,1,NULL,2), + (65,1,'Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true',NULL,'access CiviMail,approve mailings,create mailings,schedule mailings','OR',62,1,NULL,3), + (66,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1',NULL,'access CiviMail,create mailings','OR',62,1,NULL,4), + (67,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',62,1,1,5), + (68,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',62,1,NULL,6), + (69,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'edit message templates,edit user-driven message templates,edit system workflow message templates','OR',62,1,NULL,7), + (70,1,'Site Email Addresses','CiviMail Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',62,1,1,8), + (71,1,'New SMS','New SMS','civicrm/sms/send?reset=1',NULL,'send SMS',NULL,62,1,NULL,9), + (72,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1',NULL,'send SMS',NULL,62,1,1,10), + (73,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new',NULL,'access CiviMail','',62,1,NULL,15), + (74,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest',NULL,'access CiviMail','',62,1,1,16), + (75,1,'Memberships','Memberships',NULL,'crm-i fa-id-badge','access CiviMember','',NULL,1,NULL,60), + (76,1,'Dashboard','Dashboard','civicrm/member?reset=1',NULL,'access CiviMember','',75,1,NULL,1), + (77,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone',NULL,'access CiviMember,edit memberships','AND',75,0,NULL,2), + (78,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1',NULL,'access CiviMember','',75,1,NULL,3), + (79,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',75,1,1,4), + (80,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1',NULL,'access CiviContribute','',75,1,NULL,5), + (81,1,'Import Memberships','Import Members','civicrm/import/membership?reset=1',NULL,'access CiviMember,edit memberships','AND',75,1,1,6), + (82,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',75,0,NULL,7), + (83,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',75,1,NULL,8), + (84,1,'Campaigns','Campaigns',NULL,'crm-i fa-bullhorn','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70), + (85,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,2), + (86,1,'New Survey','New Survey','civicrm/survey/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,3), + (87,1,'New Petition','New Petition','civicrm/petition/add?reset=1',NULL,'manage campaign,administer CiviCampaign','OR',84,1,NULL,4), + (88,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts','OR',84,1,NULL,5), + (89,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview',NULL,'administer CiviCampaign,manage campaign,interview campaign contacts','OR',84,1,NULL,6), + (90,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release',NULL,'administer CiviCampaign,manage campaign,release campaign contacts','OR',84,1,NULL,7), + (91,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',84,1,1,8), + (92,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1',NULL,'administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',84,1,NULL,9), + (93,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1',NULL,'administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',84,1,NULL,10), + (94,1,'Cases','Cases',NULL,'crm-i fa-folder-open-o','access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80), + (95,1,'Dashboard','Dashboard','civicrm/case?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,NULL,1), + (96,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone',NULL,'add cases,access all cases and activities','OR',94,1,NULL,2), + (97,1,'Find Cases','Find Cases','civicrm/case/search?reset=1',NULL,'access my cases and activities,access all cases and activities','OR',94,1,1,3), + (98,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',94,1,0,4), + (99,1,'Administer','Administer',NULL,'crm-i fa-gears','administer CiviCRM','',NULL,1,NULL,100), + (100,1,'Administration Console','Administration Console','civicrm/admin?reset=1',NULL,'administer CiviCRM','',99,1,NULL,1), + (101,1,'System Status','System Status','civicrm/a/#/status',NULL,'administer CiviCRM','',100,1,NULL,0), + (102,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1',NULL,'administer CiviCRM','',100,1,NULL,1), + (103,1,'Customize Data and Screens','Customize Data and Screens',NULL,NULL,'administer CiviCRM','',99,1,NULL,3), + (104,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,1), + (105,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1',NULL,'administer CiviCRM','',103,1,NULL,2), + (106,1,'Tags','Tags (Categories)','civicrm/tag?reset=1',NULL,'administer CiviCRM','',103,1,NULL,3), + (107,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1',NULL,'administer CiviCRM','',103,1,NULL,4), + (108,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,5), + (109,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1',NULL,'administer CiviCRM','',103,1,NULL,6), + (110,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1',NULL,'administer CiviCRM','',103,1,NULL,9), + (111,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1',NULL,'administer CiviCRM','',103,1,NULL,10), + (112,1,'Date Preferences','Date Preferences','civicrm/admin/setting/preferences/date?reset=1',NULL,'administer CiviCRM','',103,1,NULL,11), + (113,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1',NULL,'administer CiviCRM','',103,1,NULL,12), + (114,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1',NULL,'administer CiviCRM','',103,1,NULL,13), + (115,1,'Dropdown Options','Dropdown Options','civicrm/admin/options?action=browse&reset=1',NULL,'administer CiviCRM','',103,1,NULL,8), + (116,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1',NULL,'administer CiviCRM','',115,1,NULL,1), + (117,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,2), + (118,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1',NULL,'administer CiviCRM','',115,1,NULL,3), + (119,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1',NULL,'administer CiviCRM','',115,1,NULL,4), + (120,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1',NULL,'administer CiviCRM','',115,1,NULL,5), + (121,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1',NULL,'administer CiviCRM','',115,1,NULL,6), + (122,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,7), + (123,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1',NULL,'administer CiviCRM','',115,1,NULL,8), + (124,1,'Communications','Communications',NULL,NULL,'administer CiviCRM','',99,1,NULL,4), + (125,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1',NULL,'administer CiviCRM','',124,1,NULL,1), + (126,1,'Site Email Addresses','Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',124,1,NULL,2), + (127,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',124,1,NULL,3), + (128,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1',NULL,'administer CiviCRM','',124,1,NULL,4), + (129,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1',NULL,'administer CiviCRM','',124,1,NULL,5), + (130,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,6), + (131,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1',NULL,'administer CiviCRM','',124,1,NULL,7), + (132,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1',NULL,'administer CiviCRM','',124,1,NULL,8), + (133,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,9), + (134,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1',NULL,'administer CiviCRM','',124,1,NULL,10), + (135,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1',NULL,'administer CiviCRM','',124,1,NULL,11), + (136,1,'Localization','Localization',NULL,NULL,'administer CiviCRM','',99,1,NULL,6), + (137,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1',NULL,'administer CiviCRM','',136,1,NULL,1), + (138,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1',NULL,'administer CiviCRM','',136,1,NULL,2), + (139,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1',NULL,'administer CiviCRM','',136,1,NULL,3), + (140,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1',NULL,'administer CiviCRM','',136,1,NULL,4), + (141,1,'Users and Permissions','Users and Permissions',NULL,NULL,'administer CiviCRM','',99,1,NULL,7), + (142,1,'Access Control Lists','Permissions (Access Control)','civicrm/admin/access?reset=1',NULL,'administer CiviCRM','',141,1,NULL,5), + (143,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1',NULL,'administer CiviCRM','',141,1,NULL,10), + (144,1,'System Settings','System Settings',NULL,NULL,'administer CiviCRM','',99,1,NULL,8), + (145,1,'Clear Caches','cache_clear','civicrm/menu/rebuild?reset=1',NULL,'administer CiviCRM','',144,1,1,0), + (146,1,'Components','Enable Components','civicrm/admin/setting/component?reset=1',NULL,'administer CiviCRM','',144,1,NULL,1), + (147,1,'Extensions','Manage Extensions','civicrm/admin/extensions?reset=1',NULL,'administer CiviCRM','',144,1,1,3), + (148,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1',NULL,'administer CiviCRM','',144,1,NULL,5), + (149,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1',NULL,'administer CiviCRM','',144,1,NULL,6), + (150,1,'Directories','Directories','civicrm/admin/setting/path?reset=1',NULL,'administer CiviCRM','',144,1,NULL,7), + (151,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,8), + (152,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1',NULL,'administer CiviCRM','',144,1,NULL,9), + (153,1,'Misc (Undelete, PDFs, Limits, Logging, etc.)','misc_admin_settings','civicrm/admin/setting/misc?reset=1',NULL,'administer CiviCRM','',144,1,NULL,10), + (154,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1',NULL,'administer CiviCRM','',144,1,NULL,11), + (155,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1',NULL,'administer CiviCRM','',144,1,NULL,12), + (156,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1',NULL,'administer CiviCRM','',144,1,NULL,13), + (157,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',144,1,NULL,14), + (158,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1',NULL,'administer CiviCRM','',144,1,NULL,15), + (159,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1',NULL,'administer CiviCRM','',144,1,NULL,16), + (160,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1',NULL,'administer CiviCRM','',144,1,NULL,17), + (161,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1',NULL,'administer CiviCRM','',144,1,NULL,18), + (162,1,'CiviCampaign','CiviCampaign',NULL,NULL,'administer CiviCampaign,administer CiviCRM','AND',99,1,NULL,9), + (163,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,1), + (164,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,2), + (165,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,3), + (166,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,4), + (167,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1',NULL,'administer CiviCampaign','',162,1,NULL,5), + (168,1,'CiviCase','CiviCase',NULL,NULL,'administer CiviCase',NULL,99,1,NULL,10), + (169,1,'CiviCase Settings','CiviCase Settings','civicrm/admin/setting/case?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,1), + (170,1,'Case Types','Case Types','civicrm/a/#/caseType',NULL,'administer CiviCase',NULL,168,1,NULL,2), + (171,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,3), + (172,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,4), + (173,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1',NULL,'administer CiviCase',NULL,168,1,NULL,5), + (174,1,'CiviContribute','CiviContribute',NULL,NULL,'access CiviContribute,administer CiviCRM','AND',99,1,NULL,11), + (175,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,6), + (176,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,7), + (177,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,8), + (178,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,9), + (179,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,10), + (180,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,11), + (181,1,'Payment Methods','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,12), + (182,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,13), + (183,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,1,14), + (184,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviContribute,administer CiviCRM','AND',174,0,NULL,15), + (185,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviContribute,administer CiviCRM','AND',174,1,NULL,16), + (186,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',174,1,NULL,17), + (187,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1',NULL,'administer CiviCRM','',174,1,NULL,18), + (188,1,'CiviEvent','CiviEvent',NULL,NULL,'access CiviEvent,administer CiviCRM','AND',99,1,NULL,12), + (189,1,'New Event','New Event','civicrm/event/add?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,1), + (190,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,2), + (191,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,3), + (192,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,4), + (193,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviEvent,administer CiviCRM','AND',188,0,NULL,5), + (194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,1,6), + (195,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,7), + (196,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,8), + (197,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,9), + (198,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,10), + (199,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,11), + (200,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1',NULL,'administer CiviCRM','',188,1,NULL,12), + (201,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1',NULL,'access CiviEvent,administer CiviCRM','AND',188,1,NULL,13), + (202,1,'CiviMail','CiviMail',NULL,NULL,'access CiviMail,administer CiviCRM','AND',99,1,NULL,14), + (203,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,1), + (204,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1',NULL,'administer CiviCRM','',202,1,NULL,2), + (205,1,'Site Email Addresses','CiviMail Admin Site Email Addresses','civicrm/admin/options/site_email_address',NULL,'administer CiviCRM','',202,1,NULL,3), + (206,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,4), + (207,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,5), + (208,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1',NULL,'access CiviMail,administer CiviCRM','AND',202,1,NULL,6), + (209,1,'CiviMember','CiviMember',NULL,NULL,'access CiviMember,administer CiviCRM','AND',99,1,NULL,15), + (210,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,1), + (211,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,1,2), + (212,1,'New Price Set','New Price Set','civicrm/admin/price/edit?reset=1&action=add',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,3), + (213,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,4), + (214,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1',NULL,'access CiviMember,administer CiviCRM','AND',209,1,NULL,5), + (215,1,'CiviReport','CiviReport',NULL,NULL,'access CiviReport,administer CiviCRM','AND',99,1,NULL,16), + (216,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',215,1,NULL,1), + (217,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1',NULL,'administer Reports','',215,1,NULL,2), + (218,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1',NULL,'administer Reports','',215,1,NULL,3), + (219,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1',NULL,'administer Reports','',215,1,NULL,4), + (220,1,'Support','Support',NULL,'crm-i fa-life-ring',NULL,'',NULL,1,NULL,110), + (221,1,'User Guide','User Guide','https://docs.civicrm.org/user/?src=iam',NULL,NULL,'AND',220,1,NULL,1), + (222,1,'Get Help','Get Help','https://civicrm.org/help?src=iam',NULL,NULL,'AND',220,1,NULL,2), + (223,1,'About CiviCRM','About CiviCRM','https://civicrm.org/about?src=iam',NULL,NULL,'AND',220,1,1,3), + (224,1,'Register Your Site','Register Your Site','https://civicrm.org/register-your-site?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,4), + (225,1,'Join CiviCRM','Join CiviCRM','https://civicrm.org/become-a-member?src=iam&sid={sid}',NULL,NULL,'AND',220,1,NULL,5), + (226,1,'Developer','Developer',NULL,NULL,'administer CiviCRM','',220,1,1,6), + (227,1,'Api Explorer v3','API Explorer','civicrm/api3',NULL,'administer CiviCRM','',226,1,NULL,1), + (228,1,'Api Explorer v4','Api Explorer v4','civicrm/api4#/explorer',NULL,'administer CiviCRM','',226,1,NULL,2), + (229,1,'Developer Docs','Developer Docs','https://civicrm.org/developer-documentation?src=iam',NULL,'administer CiviCRM','',226,1,NULL,3), + (230,1,'Reports','Reports',NULL,'crm-i fa-bar-chart','access CiviReport','',NULL,1,NULL,95), + (231,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1',NULL,'access CiviReport','',230,1,0,1), + (232,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1',NULL,'access CiviContribute','',230,1,0,2), + (233,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1',NULL,'access CiviPledge','',230,1,0,3), + (234,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1',NULL,'access CiviEvent','',230,1,0,4), + (235,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1',NULL,'access CiviMail','',230,1,0,5), + (236,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1',NULL,'access CiviMember','',230,1,0,6), + (237,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',230,1,0,7), + (238,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1',NULL,'access my cases and activities,access all cases and activities,administer CiviCase','OR',230,1,0,8), + (239,1,'All Reports','All Reports','civicrm/report/list?reset=1',NULL,'access CiviReport','',230,1,1,10), + (240,1,'My Reports','My Reports','civicrm/report/list?myreports=1&reset=1',NULL,'access CiviReport','',230,1,1,11), + (241,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1',NULL,'add contacts','',14,1,NULL,1), + (242,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1',NULL,'add contacts','',14,1,NULL,2), + (243,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1',NULL,'add contacts','',14,1,NULL,3), + (244,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1',NULL,'add contacts','',16,1,NULL,1), + (245,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1',NULL,'add contacts','',16,1,NULL,2); /*!40000 ALTER TABLE `civicrm_navigation` ENABLE KEYS */; UNLOCK TABLES; @@ -5645,26 +5622,26 @@ UNLOCK TABLES; LOCK TABLES `civicrm_note` WRITE; /*!40000 ALTER TABLE `civicrm_note` DISABLE KEYS */; INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `note_date`, `created_date`, `modified_date`, `subject`, `privacy`) VALUES - (1,'civicrm_contact',131,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-12-07 20:21:04',NULL,'0'), -(2,'civicrm_contact',103,'Connect for presentation',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2025-02-01 11:18:05',NULL,'0'), -(3,'civicrm_contact',132,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-07-18 18:05:36',NULL,'0'), -(4,'civicrm_contact',119,'Connect for presentation',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-29 00:51:18',NULL,'0'), -(5,'civicrm_contact',161,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-08-16 08:00:53',NULL,'0'), -(6,'civicrm_contact',196,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-14 16:53:04',NULL,'0'), -(7,'civicrm_contact',194,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-03-24 15:06:39',NULL,'0'), -(8,'civicrm_contact',22,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-04-03 22:28:50',NULL,'0'), -(9,'civicrm_contact',16,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-16 05:36:08',NULL,'0'), -(10,'civicrm_contact',136,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-04-30 20:27:52',NULL,'0'), -(11,'civicrm_contact',185,'Organize the Terry Fox run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-05 21:44:23',NULL,'0'), -(12,'civicrm_contact',128,'Chart out route map for next 10k run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-11-11 05:59:29',NULL,'0'), -(13,'civicrm_contact',93,'Send newsletter for April 2005',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-06-21 22:58:13',NULL,'0'), -(14,'civicrm_contact',159,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-08-22 02:57:03',NULL,'0'), -(15,'civicrm_contact',172,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-03-18 06:57:34',NULL,'0'), -(16,'civicrm_contact',185,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-29 18:36:01',NULL,'0'), -(17,'civicrm_contact',152,'Organize the Terry Fox run',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2025-02-06 16:22:37',NULL,'0'), -(18,'civicrm_contact',188,'Arrange collection of funds from members',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-07-25 00:07:38',NULL,'0'), -(19,'civicrm_contact',168,'Contact the Commissioner of Charities',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-09-18 21:06:34',NULL,'0'), -(20,'civicrm_contact',166,'Arrange collection of funds from members',1,'2025-02-11 21:14:08','2025-02-11 21:14:08','2024-10-04 16:53:13',NULL,'0'); + (1,'civicrm_contact',11,'Chart out route map for next 10k run',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-09-02 01:40:20',NULL,'0'), + (2,'civicrm_contact',128,'Send newsletter for April 2005',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-05-21 23:42:26',NULL,'0'), + (3,'civicrm_contact',25,'Get the registration done for NGO status',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-11-21 19:56:07',NULL,'0'), + (4,'civicrm_contact',165,'Chart out route map for next 10k run',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-05-11 00:34:21',NULL,'0'), + (5,'civicrm_contact',87,'Chart out route map for next 10k run',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2025-02-04 16:01:29',NULL,'0'), + (6,'civicrm_contact',179,'Send newsletter for April 2005',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-05-16 04:32:39',NULL,'0'), + (7,'civicrm_contact',79,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-07-11 06:08:05',NULL,'0'), + (8,'civicrm_contact',100,'Send reminder for annual dinner',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-10-29 17:28:59',NULL,'0'), + (9,'civicrm_contact',80,'Send newsletter for April 2005',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-11-16 22:46:37',NULL,'0'), + (10,'civicrm_contact',140,'Connect for presentation',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-03-14 11:57:30',NULL,'0'), + (11,'civicrm_contact',58,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-09-12 01:15:28',NULL,'0'), + (12,'civicrm_contact',61,'Arrange for cricket match with Sunil Gavaskar',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-11-09 14:50:06',NULL,'0'), + (13,'civicrm_contact',7,'Send newsletter for April 2005',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-08-09 11:39:51',NULL,'0'), + (14,'civicrm_contact',170,'Contact the Commissioner of Charities',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-11-17 20:35:35',NULL,'0'), + (15,'civicrm_contact',98,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-08-26 10:15:54',NULL,'0'), + (16,'civicrm_contact',127,'Reminder screening of \"Black\" on next Friday',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-03-01 15:03:37',NULL,'0'), + (17,'civicrm_contact',113,'Get the registration done for NGO status',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-12-22 06:40:16',NULL,'0'), + (18,'civicrm_contact',107,'Send newsletter for April 2005',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-09-18 09:01:17',NULL,'0'), + (19,'civicrm_contact',119,'Connect for presentation',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-11-10 14:24:28',NULL,'0'), + (20,'civicrm_contact',13,'Invite members for the Steve Prefontaine 10k dream run',1,'2025-02-11 22:13:24','2025-02-11 22:13:24','2024-09-25 03:13:59',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -5685,101 +5662,101 @@ LOCK TABLES `civicrm_option_group` WRITE; /*!40000 ALTER TABLE `civicrm_option_group` DISABLE KEYS */; INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `data_type`, `is_reserved`, `is_active`, `is_locked`, `option_value_fields`) VALUES (1,'preferred_communication_method','Preferred Communication Method',NULL,NULL,1,1,0,'name,label,description'), -(2,'activity_type','Activity Type','Activities track interactions with contacts. Some activity types are reserved for use by automated processes, others can be freely configured.','Integer',1,1,0,'name,label,description,icon'), -(3,'gender','Gender','CiviCRM is pre-configured with standard options for individual gender (Male, Female, Other). Modify these options as needed for your installation.','Integer',1,1,0,'name,label,description'), -(4,'instant_messenger_service','Instant Messenger (IM) screen-names','Commonly-used messaging apps are listed here. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), -(5,'mobile_provider','Mobile Phone Providers','When recording mobile phone numbers for contacts, it may be useful to include the Mobile Phone Service Provider (e.g. Cingular, Sprint, etc.). CiviCRM is installed with the most commonly encountered service providers. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), -(6,'individual_prefix','Individual contact prefixes','CiviCRM is pre-configured with standard options for individual contact prefixes (Ms., Mr., Dr. etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), -(7,'individual_suffix','Individual contact suffixes','CiviCRM is pre-configured with standard options for individual contact name suffixes (Jr., Sr., II etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), -(8,'acl_role','ACL Role',NULL,NULL,1,1,0,'name,label,description'), -(9,'accept_creditcard','Accepted Credit Cards','The following credit card options will be offered to contributors using Online Contribution pages. You will need to verify which cards are accepted by your chosen Payment Processor and update these entries accordingly.IMPORTANT: These options do not control credit card/payment method choices for sites and/or contributors using the PayPal Express service (e.g. where billing information is collected on the Payment Processor\\\'s website).',NULL,1,1,0,'name,label,description'), -(10,'payment_instrument','Payment Methods','You may choose to record the payment method used for each contribution and fee. Reserved payment methods are required - you may modify their labels but they can not be deleted (e.g. Check, Credit Card, Debit Card). If your site requires additional payment methods, you can add them here. You can associate each payment method with a Financial Account which specifies where the payment is going (e.g. a bank account for checks and cash).','Integer',1,1,0,'name,label,description'), -(11,'contribution_status','Contribution Status',NULL,NULL,1,1,1,'name,label,description'), -(12,'pcp_status','PCP Status',NULL,NULL,1,1,1,'name,label,description'), -(13,'pcp_owner_notify','PCP owner notifications',NULL,NULL,1,1,1,'name,label,description'), -(14,'participant_role','Participant Role','Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.','Integer',1,1,0,'name,label,description'), -(15,'event_type','Event Type','Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.','Integer',1,1,0,'name,label,description'), -(16,'contact_view_options','Contact View Options',NULL,NULL,1,1,1,'name,label,description'), -(17,'contact_smart_group_display','Contact Smart Group View Options',NULL,NULL,1,1,1,'name,label,description'), -(18,'contact_edit_options','Contact Edit Options',NULL,NULL,1,1,1,'name,label,description'), -(19,'advanced_search_options','Advanced Search Options',NULL,NULL,1,1,1,'name,label,description'), -(20,'user_dashboard_options','User Dashboard Options',NULL,NULL,1,1,1,'name,label,description'), -(21,'address_options','Addressing Options',NULL,NULL,1,1,0,'name,label,description'), -(22,'group_type','Group Type',NULL,NULL,1,1,0,'name,label,description'), -(23,'custom_search','Custom Search',NULL,NULL,1,1,0,'name,label,description'), -(24,'activity_status','Activity Status',NULL,'Integer',1,1,0,'name,label,description,color'), -(25,'case_type','Case Type',NULL,NULL,1,1,0,'name,label,description'), -(26,'case_status','Case Status',NULL,NULL,1,1,0,'name,label,description,color'), -(27,'participant_listing','Participant Listing',NULL,NULL,1,1,0,'name,label,description'), -(28,'safe_file_extension','Safe File Extension',NULL,NULL,1,1,0,'name,label,description'), -(29,'mapping_type','Mapping Type',NULL,NULL,1,1,1,'name,label,description'), -(30,'wysiwyg_editor','WYSIWYG Editor',NULL,NULL,1,1,0,'name,label,description'), -(31,'recur_frequency_units','Recurring Frequency Units',NULL,NULL,1,1,0,'name,label,description'), -(32,'phone_type','Phone Type',NULL,NULL,1,1,0,'name,label,description'), -(33,'custom_data_type','Custom Data Type',NULL,NULL,1,1,0,'name,label,description'), -(34,'visibility','Visibility',NULL,NULL,1,1,0,'name,label,description'), -(35,'mail_protocol','Mail Protocol',NULL,NULL,1,1,0,'name,label,description'), -(36,'priority','Priority',NULL,NULL,1,1,0,'name,label,description'), -(37,'redaction_rule','Redaction Rule',NULL,NULL,1,1,0,'name,label,description'), -(38,'report_template','Report Template',NULL,NULL,1,1,0,'name,label,description'), -(39,'email_greeting','Email Greeting Type',NULL,NULL,1,1,0,'name,label,description'), -(40,'postal_greeting','Postal Greeting Type',NULL,NULL,1,1,0,'name,label,description'), -(41,'addressee','Addressee Type',NULL,NULL,1,1,0,'name,label,description'), -(42,'contact_autocomplete_options','Autocomplete Contact Search',NULL,NULL,1,1,1,'name,label,description'), -(43,'contact_reference_options','Contact Reference Autocomplete Options',NULL,NULL,1,1,1,'name,label,description'), -(44,'website_type','Website Type',NULL,NULL,1,1,0,'name,label,description'), -(45,'tag_used_for','Tag Used For',NULL,NULL,1,1,1,'name,label,description'), -(46,'note_used_for','Note Used For',NULL,NULL,1,1,1,'name,label,description'), -(47,'currencies_enabled','Currencies Enabled',NULL,NULL,1,1,0,'name,label,description'), -(48,'event_badge','Event Name Badge',NULL,NULL,1,1,0,'name,label,description'), -(49,'note_privacy','Privacy levels for notes',NULL,NULL,1,1,0,'name,label,description'), -(50,'campaign_type','Campaign Type',NULL,NULL,1,1,0,'name,label,description'), -(51,'campaign_status','Campaign Status',NULL,NULL,1,1,0,'name,label,description'), -(52,'system_extensions','CiviCRM Extensions',NULL,NULL,1,1,0,'name,label,description'), -(53,'mail_approval_status','CiviMail Approval Status',NULL,NULL,1,1,0,'name,label,description'), -(54,'engagement_index','Engagement Index',NULL,NULL,1,1,0,'name,label,description'), -(55,'cg_extend_objects','Objects a custom group extends to',NULL,NULL,1,1,0,'name,label,description'), -(56,'paper_size','Paper Size',NULL,NULL,1,1,0,'name,label,description'), -(57,'pdf_format','PDF Page Format',NULL,NULL,1,1,0,'name,label,description'), -(58,'label_format','Mailing Label Format',NULL,NULL,1,1,0,'name,label,description'), -(59,'activity_contacts','Activity Contacts',NULL,NULL,1,1,1,'name,label,description'), -(60,'account_relationship','Account Relationship',NULL,NULL,1,1,0,'name,label,description'), -(61,'event_contacts','Event Recipients',NULL,NULL,1,1,0,'name,label,description'), -(62,'conference_slot','Conference Slot',NULL,NULL,1,1,0,'name,label,description'), -(63,'batch_type','Batch Type',NULL,NULL,1,1,1,'name,label,description'), -(64,'batch_mode','Batch Mode',NULL,NULL,1,1,1,'name,label,description'), -(65,'batch_status','Batch Status',NULL,NULL,1,1,1,'name,label,description'), -(66,'sms_api_type','Api Type',NULL,NULL,1,1,0,'name,label,description'), -(67,'sms_provider_name','Sms Provider Internal Name',NULL,NULL,1,1,0,'name,label,description'), -(68,'auto_renew_options','Auto Renew Options',NULL,NULL,1,1,1,'name,label,description'), -(69,'financial_account_type','Financial Account Type',NULL,NULL,1,1,0,'name,label,description'), -(70,'financial_item_status','Financial Item Status',NULL,NULL,1,1,1,'name,label,description'), -(71,'label_type','Label Type',NULL,NULL,1,1,0,'name,label,description'), -(72,'name_badge','Name Badge Format',NULL,NULL,1,1,0,'name,label,description'), -(73,'communication_style','Communication Style',NULL,NULL,1,1,0,'name,label,description'), -(74,'msg_mode','Message Mode',NULL,NULL,1,1,0,'name,label,description'), -(75,'contact_date_reminder_options','Contact Date Reminder Options',NULL,NULL,1,1,1,'name,label,description'), -(76,'wysiwyg_presets','WYSIWYG Editor Presets',NULL,NULL,1,1,0,'name,label,description'), -(77,'relative_date_filters','Relative Date Filters',NULL,NULL,1,1,0,'name,label,description'), -(78,'pledge_status','Pledge Status',NULL,NULL,1,1,1,'name,label,description'), -(79,'contribution_recur_status','Recurring Contribution Status',NULL,NULL,1,1,1,'name,label,description'), -(80,'environment','Environment',NULL,NULL,1,1,0,'name,label,description'), -(81,'activity_default_assignee','Activity default assignee',NULL,NULL,1,1,0,'name,label,description'), -(82,'entity_batch_extends','Entity Batch Extends',NULL,NULL,1,1,0,'name,label,description'), -(83,'file_type','File Type',NULL,'Integer',1,1,0,'name,label,description'), -(84,'languages','Languages','List of Languages',NULL,1,1,0,'name,label,description'), -(85,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',NULL,1,1,0,'name,label,description'), -(86,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',NULL,1,1,0,'name,label,description'), -(87,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',NULL,1,1,0,'name,label,description'), -(88,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',NULL,1,1,0,'name,label,description'), -(89,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',NULL,1,1,0,'name,label,description'), -(90,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',NULL,1,1,0,'name,label,description'), -(91,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',NULL,1,1,0,'name,label,description'), -(92,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',NULL,1,1,0,'name,label,description'), -(93,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',NULL,1,1,0,'name,label,description'), -(94,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',NULL,1,1,0,'name,label,description'), -(95,'soft_credit_type','Soft Credit Types',NULL,NULL,1,1,0,'name,label,description'), -(96,'recent_items_providers','Recent Items Providers',NULL,NULL,1,1,0,'name,label,description'); + (2,'activity_type','Activity Type','Activities track interactions with contacts. Some activity types are reserved for use by automated processes, others can be freely configured.','Integer',1,1,0,'name,label,description,icon'), + (3,'gender','Gender','CiviCRM is pre-configured with standard options for individual gender (Male, Female, Other). Modify these options as needed for your installation.','Integer',1,1,0,'name,label,description'), + (4,'instant_messenger_service','Instant Messenger (IM) screen-names','Commonly-used messaging apps are listed here. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), + (5,'mobile_provider','Mobile Phone Providers','When recording mobile phone numbers for contacts, it may be useful to include the Mobile Phone Service Provider (e.g. Cingular, Sprint, etc.). CiviCRM is installed with the most commonly encountered service providers. Administrators may define as many additional providers as needed.',NULL,1,1,0,'name,label,description'), + (6,'individual_prefix','Individual contact prefixes','CiviCRM is pre-configured with standard options for individual contact prefixes (Ms., Mr., Dr. etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), + (7,'individual_suffix','Individual contact suffixes','CiviCRM is pre-configured with standard options for individual contact name suffixes (Jr., Sr., II etc.). Customize these options and add new ones as needed for your installation.',NULL,1,1,0,'name,label,description'), + (8,'acl_role','ACL Role',NULL,NULL,1,1,0,'name,label,description'), + (9,'accept_creditcard','Accepted Credit Cards','The following credit card options will be offered to contributors using Online Contribution pages. You will need to verify which cards are accepted by your chosen Payment Processor and update these entries accordingly.IMPORTANT: These options do not control credit card/payment method choices for sites and/or contributors using the PayPal Express service (e.g. where billing information is collected on the Payment Processor\\\'s website).',NULL,1,1,0,'name,label,description'), + (10,'payment_instrument','Payment Methods','You may choose to record the payment method used for each contribution and fee. Reserved payment methods are required - you may modify their labels but they can not be deleted (e.g. Check, Credit Card, Debit Card). If your site requires additional payment methods, you can add them here. You can associate each payment method with a Financial Account which specifies where the payment is going (e.g. a bank account for checks and cash).','Integer',1,1,0,'name,label,description'), + (11,'contribution_status','Contribution Status',NULL,NULL,1,1,1,'name,label,description'), + (12,'pcp_status','PCP Status',NULL,NULL,1,1,1,'name,label,description'), + (13,'pcp_owner_notify','PCP owner notifications',NULL,NULL,1,1,1,'name,label,description'), + (14,'participant_role','Participant Role','Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.','Integer',1,1,0,'name,label,description'), + (15,'event_type','Event Type','Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.','Integer',1,1,0,'name,label,description'), + (16,'contact_view_options','Contact View Options',NULL,NULL,1,1,1,'name,label,description'), + (17,'contact_smart_group_display','Contact Smart Group View Options',NULL,NULL,1,1,1,'name,label,description'), + (18,'contact_edit_options','Contact Edit Options',NULL,NULL,1,1,1,'name,label,description'), + (19,'advanced_search_options','Advanced Search Options',NULL,NULL,1,1,1,'name,label,description'), + (20,'user_dashboard_options','User Dashboard Options',NULL,NULL,1,1,1,'name,label,description'), + (21,'address_options','Addressing Options',NULL,NULL,1,1,0,'name,label,description'), + (22,'group_type','Group Type',NULL,NULL,1,1,0,'name,label,description'), + (23,'custom_search','Custom Search',NULL,NULL,1,1,0,'name,label,description'), + (24,'activity_status','Activity Status',NULL,'Integer',1,1,0,'name,label,description,color'), + (25,'case_type','Case Type',NULL,NULL,1,1,0,'name,label,description'), + (26,'case_status','Case Status',NULL,NULL,1,1,0,'name,label,description,color'), + (27,'participant_listing','Participant Listing',NULL,NULL,1,1,0,'name,label,description'), + (28,'safe_file_extension','Safe File Extension',NULL,NULL,1,1,0,'name,label,description'), + (29,'mapping_type','Mapping Type',NULL,NULL,1,1,1,'name,label,description'), + (30,'wysiwyg_editor','WYSIWYG Editor',NULL,NULL,1,1,0,'name,label,description'), + (31,'recur_frequency_units','Recurring Frequency Units',NULL,NULL,1,1,0,'name,label,description'), + (32,'phone_type','Phone Type',NULL,NULL,1,1,0,'name,label,description'), + (33,'custom_data_type','Custom Data Type',NULL,NULL,1,1,0,'name,label,description'), + (34,'visibility','Visibility',NULL,NULL,1,1,0,'name,label,description'), + (35,'mail_protocol','Mail Protocol',NULL,NULL,1,1,0,'name,label,description'), + (36,'priority','Priority',NULL,NULL,1,1,0,'name,label,description'), + (37,'redaction_rule','Redaction Rule',NULL,NULL,1,1,0,'name,label,description'), + (38,'report_template','Report Template',NULL,NULL,1,1,0,'name,label,description'), + (39,'email_greeting','Email Greeting Type',NULL,NULL,1,1,0,'name,label,description'), + (40,'postal_greeting','Postal Greeting Type',NULL,NULL,1,1,0,'name,label,description'), + (41,'addressee','Addressee Type',NULL,NULL,1,1,0,'name,label,description'), + (42,'contact_autocomplete_options','Autocomplete Contact Search',NULL,NULL,1,1,1,'name,label,description'), + (43,'contact_reference_options','Contact Reference Autocomplete Options',NULL,NULL,1,1,1,'name,label,description'), + (44,'website_type','Website Type',NULL,NULL,1,1,0,'name,label,description'), + (45,'tag_used_for','Tag Used For',NULL,NULL,1,1,1,'name,label,description'), + (46,'note_used_for','Note Used For',NULL,NULL,1,1,1,'name,label,description'), + (47,'currencies_enabled','Currencies Enabled',NULL,NULL,1,1,0,'name,label,description'), + (48,'event_badge','Event Name Badge',NULL,NULL,1,1,0,'name,label,description'), + (49,'note_privacy','Privacy levels for notes',NULL,NULL,1,1,0,'name,label,description'), + (50,'campaign_type','Campaign Type',NULL,NULL,1,1,0,'name,label,description'), + (51,'campaign_status','Campaign Status',NULL,NULL,1,1,0,'name,label,description'), + (52,'system_extensions','CiviCRM Extensions',NULL,NULL,1,1,0,'name,label,description'), + (53,'mail_approval_status','CiviMail Approval Status',NULL,NULL,1,1,0,'name,label,description'), + (54,'engagement_index','Engagement Index',NULL,NULL,1,1,0,'name,label,description'), + (55,'cg_extend_objects','Objects a custom group extends to',NULL,NULL,1,1,0,'name,label,description'), + (56,'paper_size','Paper Size',NULL,NULL,1,1,0,'name,label,description'), + (57,'pdf_format','PDF Page Format',NULL,NULL,1,1,0,'name,label,description'), + (58,'label_format','Mailing Label Format',NULL,NULL,1,1,0,'name,label,description'), + (59,'activity_contacts','Activity Contacts',NULL,NULL,1,1,1,'name,label,description'), + (60,'account_relationship','Account Relationship',NULL,NULL,1,1,0,'name,label,description'), + (61,'event_contacts','Event Recipients',NULL,NULL,1,1,0,'name,label,description'), + (62,'conference_slot','Conference Slot',NULL,NULL,1,1,0,'name,label,description'), + (63,'batch_type','Batch Type',NULL,NULL,1,1,1,'name,label,description'), + (64,'batch_mode','Batch Mode',NULL,NULL,1,1,1,'name,label,description'), + (65,'batch_status','Batch Status',NULL,NULL,1,1,1,'name,label,description'), + (66,'sms_api_type','Api Type',NULL,NULL,1,1,0,'name,label,description'), + (67,'sms_provider_name','Sms Provider Internal Name',NULL,NULL,1,1,0,'name,label,description'), + (68,'auto_renew_options','Auto Renew Options',NULL,NULL,1,1,1,'name,label,description'), + (69,'financial_account_type','Financial Account Type',NULL,NULL,1,1,0,'name,label,description'), + (70,'financial_item_status','Financial Item Status',NULL,NULL,1,1,1,'name,label,description'), + (71,'label_type','Label Type',NULL,NULL,1,1,0,'name,label,description'), + (72,'name_badge','Name Badge Format',NULL,NULL,1,1,0,'name,label,description'), + (73,'communication_style','Communication Style',NULL,NULL,1,1,0,'name,label,description'), + (74,'msg_mode','Message Mode',NULL,NULL,1,1,0,'name,label,description'), + (75,'contact_date_reminder_options','Contact Date Reminder Options',NULL,NULL,1,1,1,'name,label,description'), + (76,'wysiwyg_presets','WYSIWYG Editor Presets',NULL,NULL,1,1,0,'name,label,description'), + (77,'relative_date_filters','Relative Date Filters',NULL,NULL,1,1,0,'name,label,description'), + (78,'pledge_status','Pledge Status',NULL,NULL,1,1,1,'name,label,description'), + (79,'contribution_recur_status','Recurring Contribution Status',NULL,NULL,1,1,1,'name,label,description'), + (80,'environment','Environment',NULL,NULL,1,1,0,'name,label,description'), + (81,'activity_default_assignee','Activity default assignee',NULL,NULL,1,1,0,'name,label,description'), + (82,'entity_batch_extends','Entity Batch Extends',NULL,NULL,1,1,0,'name,label,description'), + (83,'file_type','File Type',NULL,'Integer',1,1,0,'name,label,description'), + (84,'languages','Languages','List of Languages',NULL,1,1,0,'name,label,description'), + (85,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',NULL,1,1,0,'name,label,description'), + (86,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',NULL,1,1,0,'name,label,description'), + (87,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',NULL,1,1,0,'name,label,description'), + (88,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',NULL,1,1,0,'name,label,description'), + (89,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',NULL,1,1,0,'name,label,description'), + (90,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',NULL,1,1,0,'name,label,description'), + (91,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',NULL,1,1,0,'name,label,description'), + (92,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',NULL,1,1,0,'name,label,description'), + (93,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',NULL,1,1,0,'name,label,description'), + (94,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',NULL,1,1,0,'name,label,description'), + (95,'soft_credit_type','Soft Credit Types',NULL,NULL,1,1,0,'name,label,description'), + (96,'recent_items_providers','Recent Items Providers',NULL,NULL,1,1,0,'name,label,description'); /*!40000 ALTER TABLE `civicrm_option_group` ENABLE KEYS */; UNLOCK TABLES; @@ -5791,866 +5768,866 @@ LOCK TABLES `civicrm_option_value` WRITE; /*!40000 ALTER TABLE `civicrm_option_value` DISABLE KEYS */; INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`, `icon`, `color`) VALUES (1,1,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(2,1,'Email','2','Email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(3,1,'Postal Mail','3','Postal Mail',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(4,1,'SMS','4','SMS',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(5,1,'Fax','5','Fax',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(6,2,'Meeting','1','Meeting',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,'fa-slideshare',NULL), -(7,2,'Phone Call','2','Phone Call',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,'fa-phone',NULL), -(8,2,'Email','3','Email',NULL,1,0,3,'Email sent.',0,1,1,NULL,NULL,NULL,'fa-envelope-o',NULL), -(9,2,'Outbound SMS','4','SMS',NULL,1,0,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL,'fa-mobile',NULL), -(10,2,'Event Registration','5','Event Registration',NULL,1,0,5,'Online or offline event registration.',0,1,1,1,NULL,NULL,NULL,NULL), -(11,2,'Contribution','6','Contribution',NULL,1,0,6,'Online or offline contribution.',0,1,1,2,NULL,NULL,NULL,NULL), -(12,2,'Membership Signup','7','Membership Signup',NULL,1,0,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL,NULL,NULL), -(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,0,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL,NULL,NULL), -(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,0,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,0,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL,NULL,NULL), -(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,0,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL,NULL,NULL), -(17,2,'Inbound Email','12','Inbound Email',NULL,1,0,12,'Inbound Email.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL,'fa-folder-open-o',NULL), -(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL,'fa-share-square-o',NULL), -(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL,'fa-random',NULL), -(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), -(22,2,'Change Case Subject','53','Change Case Subject',NULL,0,0,53,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), -(23,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL,'fa-table',NULL), -(24,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,0,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL,NULL,NULL), -(25,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL,'fa-calendar',NULL), -(26,2,'Bulk Email','19','Bulk Email',NULL,1,0,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(27,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL,'fa-user-plus',NULL), -(28,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL,'fa-user-times',NULL), -(29,2,'Print/Merge Document','22','Print PDF Letter',NULL,0,0,22,'Export letters and other printable documents.',0,1,1,NULL,NULL,NULL,'fa-file-pdf-o',NULL), -(30,2,'Merge Case','23','Merge Case',NULL,0,0,23,'',0,1,1,7,NULL,NULL,'fa-compress',NULL), -(31,2,'Reassigned Case','24','Reassigned Case',NULL,0,0,24,'',0,1,1,7,NULL,NULL,'fa-user-circle-o',NULL), -(32,2,'Link Cases','25','Link Cases',NULL,0,0,25,'',0,1,1,7,NULL,NULL,'fa-link',NULL), -(33,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-tags',NULL), -(34,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-users',NULL), -(35,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL,NULL,NULL), -(36,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL,NULL,NULL), -(37,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL,NULL,NULL), -(38,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL,NULL,NULL), -(39,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL,NULL,NULL), -(40,2,'Mass SMS','34','Mass SMS',NULL,1,0,34,'Mass SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), -(41,2,'Change Membership Status','35','Change Membership Status',NULL,1,0,35,'Change Membership Status.',0,1,1,3,NULL,NULL,NULL,NULL), -(42,2,'Change Membership Type','36','Change Membership Type',NULL,1,0,36,'Change Membership Type.',0,1,1,3,NULL,NULL,NULL,NULL), -(43,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,2,NULL,NULL,NULL,NULL), -(44,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,2,NULL,NULL,NULL,NULL), -(45,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,2,NULL,NULL,NULL,NULL), -(46,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(47,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL,NULL,NULL), -(48,2,'SMS delivery','44','SMS delivery',NULL,1,0,44,'SMS delivery',0,1,1,NULL,NULL,NULL,NULL,NULL), -(49,2,'Inbound SMS','45','Inbound SMS',NULL,1,0,45,'Inbound SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), -(50,2,'Payment','46','Payment',NULL,1,0,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), -(51,2,'Refund','47','Refund',NULL,1,0,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), -(52,2,'Change Registration','48','Change Registration',NULL,1,0,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL,NULL,NULL), -(53,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,0,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(54,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,0,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(55,2,'Contact Merged','51','Contact Merged',NULL,1,0,51,'Contact Merged',0,1,1,NULL,NULL,NULL,NULL,NULL), -(56,2,'Contact Deleted by Merge','52','Contact Deleted by Merge',NULL,1,0,52,'Contact was merged into another contact',0,1,1,NULL,NULL,NULL,NULL,NULL), -(57,2,'Failed Payment','54','Failed Payment',NULL,1,0,54,'Failed Payment',0,1,1,2,NULL,NULL,NULL,NULL), -(58,2,'Case Client was removed from Case','55','Case Client Removed',NULL,0,0,55,'Case client was removed from a case',0,0,1,7,NULL,NULL,'fa-trash',NULL), -(59,3,'Female','1','Female',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(60,3,'Male','2','Male',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(61,3,'Other','3','Other',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(62,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(63,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(64,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(65,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(66,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(67,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(68,5,'Sprint','1','Sprint',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(69,5,'Verizon','2','Verizon',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(70,5,'Cingular','3','Cingular',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(71,6,'Mrs.','1','Mrs.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(72,6,'Ms.','2','Ms.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(73,6,'Mr.','3','Mr.',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(74,6,'Dr.','4','Dr.',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(75,7,'Jr.','1','Jr.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(76,7,'Sr.','2','Sr.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(77,7,'II','3','II',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(78,7,'III','4','III',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(79,7,'IV','5','IV',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(80,7,'V','6','V',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(81,7,'VI','7','VI',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(82,7,'VII','8','VII',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(83,8,'Everyone','0','Everyone',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(84,8,'Administrator','1','Admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(85,8,'Authenticated','2','Auth',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(86,9,'Visa','1','Visa',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(87,9,'MasterCard','2','MasterCard',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(88,9,'Amex','3','Amex',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(89,9,'Discover','4','Discover',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(90,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(91,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(92,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(93,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(94,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(95,11,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(96,11,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(97,11,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(98,11,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(99,11,'Refunded','7','Refunded',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(100,11,'Partially paid','8','Partially paid',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(101,11,'Pending refund','9','Pending refund',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(102,11,'Chargeback','10','Chargeback',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(103,11,'Template','11','Template',NULL,0,0,11,'Status for contribution records which represent a template for a recurring contribution rather than an actual contribution. This status is transitional, to ensure that said contributions don\\\'t appear in reports. The is_template field is the preferred way to find and filter these contributions.',0,1,1,NULL,NULL,NULL,NULL,NULL), -(104,12,'Waiting Review','1','Waiting Review',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(105,12,'Approved','2','Approved',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(106,12,'Not Approved','3','Not Approved',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(107,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(108,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(109,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(110,14,'Attendee','1','Attendee',NULL,1,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(111,14,'Volunteer','2','Volunteer',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(112,14,'Host','3','Host',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(113,14,'Speaker','4','Speaker',NULL,1,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(114,15,'Conference','1','Conference',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(115,15,'Exhibition','2','Exhibition',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(116,15,'Fundraiser','3','Fundraiser',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(117,15,'Meeting','4','Meeting',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(118,15,'Performance','5','Performance',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(119,15,'Workshop','6','Workshop',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(120,16,'Activities','1','activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(121,16,'Relationships','2','rel',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(122,16,'Groups','3','group',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(123,16,'Notes','4','note',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(124,16,'Tags','5','tag',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(125,16,'Change Log','6','log',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(126,16,'Contributions','7','CiviContribute',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(127,16,'Memberships','8','CiviMember',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(128,16,'Events','9','CiviEvent',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(129,16,'Cases','10','CiviCase',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(130,16,'Pledges','13','CiviPledge',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(131,16,'Mailings','14','CiviMail',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(132,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(133,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(134,17,'Hide Smart Groups','3','hide',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(135,18,'Custom Data','1','CustomData',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(136,18,'Address','2','Address',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(137,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(138,18,'Notes','4','Notes',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(139,18,'Demographics','5','Demographics',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(140,18,'Tags and Groups','6','TagsAndGroups',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(141,18,'Email','7','Email',NULL,1,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(142,18,'Phone','8','Phone',NULL,1,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(143,18,'Instant Messenger','9','IM',NULL,1,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(144,18,'Open ID','10','OpenID',NULL,1,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(145,18,'Website','11','Website',NULL,1,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(146,18,'Prefix','12','Prefix',NULL,2,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(147,18,'Formal Title','13','Formal Title',NULL,2,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(148,18,'First Name','14','First Name',NULL,2,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(149,18,'Middle Name','15','Middle Name',NULL,2,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(150,18,'Last Name','16','Last Name',NULL,2,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(151,18,'Suffix','17','Suffix',NULL,2,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(152,19,'Address Fields','1','location',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(153,19,'Custom Fields','2','custom',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(154,19,'Activities','3','activity',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(155,19,'Relationships','4','relationship',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(156,19,'Notes','5','notes',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(157,19,'Change Log','6','changeLog',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(158,19,'Contributions','7','CiviContribute',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(159,19,'Memberships','8','CiviMember',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(160,19,'Events','9','CiviEvent',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(161,19,'Cases','10','CiviCase',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(162,19,'Demographics','13','demographics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(163,19,'Pledges','15','CiviPledge',NULL,0,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(164,19,'Contact Type','16','contactType',NULL,0,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(165,19,'Groups','17','groups',NULL,0,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(166,19,'Tags','18','tags',NULL,0,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(167,19,'Mailing','19','CiviMail',NULL,0,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(168,20,'Groups','1','Groups',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(169,20,'Contributions','2','CiviContribute',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(170,20,'Memberships','3','CiviMember',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(171,20,'Events','4','CiviEvent',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(172,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(173,20,'Pledges','7','CiviPledge',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(174,20,'Personal Campaign Pages','8','PCP',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(175,20,'Assigned Activities','9','Assigned Activities',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(176,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(177,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(178,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(179,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(180,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(181,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(182,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(183,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(184,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(185,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(186,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(187,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(188,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(189,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(190,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(191,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(192,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(193,23,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,0,1,'Household Name and State',0,0,1,NULL,NULL,NULL,NULL,NULL), -(194,23,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,0,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), -(195,23,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,0,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL,NULL,NULL), -(196,23,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,0,5,'Postal Mailing',0,0,1,NULL,NULL,NULL,NULL,NULL), -(197,23,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,0,6,'Proximity Search',0,0,1,NULL,NULL,NULL,NULL,NULL), -(198,23,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,0,7,'Event Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), -(199,23,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,0,8,'Activity Search',0,0,0,NULL,NULL,NULL,NULL,NULL), -(200,23,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,0,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL,NULL,NULL), -(201,23,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,0,10,'Zip Code Range',0,0,1,NULL,NULL,NULL,NULL,NULL), -(202,23,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,0,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL,NULL,NULL), -(203,23,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,0,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL,NULL,NULL), -(204,23,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,0,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL,NULL,NULL), -(205,23,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,0,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL,NULL,NULL), -(206,23,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,0,15,'Full-text Search',0,0,1,NULL,NULL,NULL,NULL,NULL), -(207,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(208,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(209,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(210,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(211,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(212,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(213,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(214,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(215,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(216,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(217,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(218,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL), -(219,27,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL,NULL,NULL), -(220,27,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL,NULL,NULL), -(221,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(222,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(223,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(224,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(225,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(226,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(227,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(228,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(229,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(230,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(231,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(232,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(233,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(234,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(235,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(236,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(237,29,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(238,29,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(239,29,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(240,29,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(241,29,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(242,29,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(243,29,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(244,29,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(245,29,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(246,29,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(247,29,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(248,29,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(249,29,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(250,30,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(251,30,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(252,31,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(253,31,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(254,31,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(255,31,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(256,32,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(257,32,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(258,32,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(259,32,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(260,32,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(261,33,'Role','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(262,33,'Event Name','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(263,33,'Event Type','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(264,34,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(265,34,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(266,35,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(267,35,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(268,35,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(269,35,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(270,36,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(271,36,'Normal','2','Normal',NULL,0,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(272,36,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(273,37,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(274,37,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_','date_',NULL,1,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(275,38,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,0,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL,NULL,NULL), -(276,38,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,0,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL,NULL,NULL), -(277,38,'Activity Details Report','activity','CRM_Report_Form_Activity',NULL,0,0,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL,NULL,NULL), -(278,38,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,0,4,'Provides a detailed report for your walk/phonelist for targeted contacts',0,0,0,NULL,NULL,NULL,NULL,NULL), -(279,38,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,0,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL,NULL,NULL), -(280,38,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,0,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL,NULL,NULL), -(281,38,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,0,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL,NULL,NULL), -(282,38,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,0,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL,NULL,NULL), -(283,38,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,0,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL,NULL,NULL), -(284,38,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,0,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL,NULL,NULL), -(285,38,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,0,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL,NULL,NULL), -(286,38,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,0,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL,NULL,NULL), -(287,38,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,0,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL,NULL,NULL), -(288,38,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,0,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL,NULL,NULL), -(289,38,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and Member Since.',0,0,1,3,NULL,NULL,NULL,NULL), -(290,38,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,0,16,'Provides a list of members along with their membership status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL), -(291,38,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,0,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL,NULL,NULL), -(292,38,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,0,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL,NULL,NULL), -(293,38,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,0,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL,NULL,NULL), -(294,38,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,0,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL,NULL,NULL), -(295,38,'Pledge Detail Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,0,21,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL,NULL,NULL), -(296,38,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,0,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL,NULL,NULL), -(297,38,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL), -(298,38,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,0,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL,NULL,NULL), -(299,38,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,0,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL,NULL,NULL), -(300,38,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,0,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL,NULL,NULL), -(301,38,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,0,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL,NULL,NULL), -(302,38,'Activity Summary Report','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,0,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL,NULL,NULL), -(303,38,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL,NULL,NULL), -(304,38,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL,NULL,NULL), -(305,38,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL,NULL,NULL), -(306,38,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL), -(307,38,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,0,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL,NULL,NULL), -(308,38,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,0,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL,NULL,NULL), -(309,38,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,0,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL,NULL,NULL), -(310,38,'Mail Click-Through Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,0,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL,NULL,NULL), -(311,38,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,0,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL,NULL,NULL), -(312,38,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,0,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL,NULL,NULL), -(313,38,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,0,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL,NULL,NULL), -(314,38,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,0,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL,NULL,NULL), -(315,38,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,0,45,'Groups and totals pledges by criteria including contact, time period, pledge status, location, etc.',0,0,1,6,NULL,NULL,NULL,NULL), -(316,38,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,0,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL,NULL,NULL), -(317,38,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,0,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL,NULL,NULL), -(318,38,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,0,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL,NULL,NULL), -(319,38,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,0,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL,NULL,NULL), -(320,38,'Recurring Contributions Summary','contribute/recursummary','CRM_Report_Form_Contribute_RecurSummary',NULL,0,0,49,'Provides simple summary for each payment instrument for which there are recurring contributions (e.g. Credit Card, Standing Order, Direct Debit, etc., NULL), showing within a given date range.',0,0,1,2,NULL,NULL,NULL,NULL), -(321,38,'Deferred Revenue Details','contribute/deferredrevenue','CRM_Report_Form_Contribute_DeferredRevenue',NULL,0,0,50,'Deferred Revenue Details Report',0,0,1,2,NULL,NULL,NULL,NULL), -(322,39,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(323,39,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(324,39,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(325,39,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(326,39,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(327,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(328,40,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(329,40,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(330,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(331,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(332,41,'{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}','1','{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(333,41,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(334,41,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(335,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(336,42,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(337,42,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(338,42,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(339,42,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(340,42,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(341,42,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(342,42,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(343,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(344,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(345,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(346,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(347,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(348,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(349,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(350,44,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(351,44,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(352,44,'Social','3','Social',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(353,45,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(354,45,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(355,45,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(356,45,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(357,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(358,46,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(359,46,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(360,46,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(361,46,'Notes','civicrm_note','Note',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(362,47,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(363,47,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(364,47,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(365,47,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(366,47,'JPY (¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(367,48,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL), -(368,48,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL), -(369,48,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL,NULL,NULL), -(370,48,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL,NULL,NULL), -(371,49,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(372,49,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(373,50,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(374,50,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(375,50,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(376,51,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(377,51,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(378,51,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(379,51,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(380,53,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), -(381,53,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), -(382,53,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), -(383,54,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(384,54,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(385,54,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(386,54,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(387,54,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(388,55,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(389,55,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(390,56,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(391,56,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(392,56,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(393,56,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(394,56,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(395,56,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(396,56,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(397,56,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(398,56,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(399,56,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(400,56,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(401,56,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(402,56,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(403,56,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(404,56,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(405,56,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(406,56,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(407,56,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(408,56,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(409,56,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(410,56,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(411,56,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(412,56,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(413,56,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(414,56,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(415,56,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(416,56,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(417,56,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(418,56,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(419,56,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(420,56,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(421,56,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(422,56,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(423,56,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(424,56,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(425,56,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(426,56,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(427,56,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(428,56,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(429,56,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(430,56,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(431,56,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(432,56,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(433,56,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(434,56,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(435,56,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(436,56,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(437,56,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(438,56,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(439,56,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(440,56,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(441,56,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(442,56,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(443,56,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(444,56,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(445,56,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(446,56,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(447,56,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(448,56,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(449,56,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(450,56,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(451,56,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(452,57,'Invoice PDF Format','{\"metric\":\"px\",\"margin_top\":10,\"margin_bottom\":0,\"margin_left\":65,\"margin_right\":0}','default_invoice_pdf_format',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(453,58,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(454,58,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(455,58,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(456,58,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(457,58,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(458,58,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(459,58,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(460,58,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(461,58,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(462,58,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(463,58,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(464,59,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(465,59,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(466,59,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(467,60,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(468,60,'Credit/Contra Revenue Account is','2','Credit/Contra Revenue Account is',NULL,0,0,2,'Credit/Contra Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(469,60,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(470,60,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL,NULL,NULL), -(471,60,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(472,60,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(473,60,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(474,60,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(475,60,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(476,60,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(477,60,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(478,60,'Deferred Revenue Account is','12','Deferred Revenue Account is',NULL,0,0,12,'Deferred Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), -(479,61,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(480,62,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(481,62,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(482,63,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(483,63,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(484,63,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(485,64,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL), -(486,64,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL), -(487,65,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(488,65,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(489,65,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(490,65,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(491,65,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(492,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(493,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(494,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(495,68,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(496,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(497,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(498,69,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL), -(499,69,'Liability','2','Liability',NULL,0,0,2,'Things you owe, like a grant still to be disbursed',0,1,1,2,NULL,NULL,NULL,NULL), -(500,69,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL), -(501,69,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL,NULL,NULL), -(502,69,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL,NULL,NULL), -(503,70,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL), -(504,70,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL), -(505,70,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL), -(506,71,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(507,72,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(508,72,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(509,72,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(510,72,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(511,73,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(512,73,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(513,74,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(514,74,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(515,74,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(516,75,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(517,75,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(518,76,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(519,76,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL), -(520,76,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL), -(521,77,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(522,77,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(523,77,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(524,77,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(525,77,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(526,77,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(527,77,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(528,77,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(529,77,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(530,77,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(531,77,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(532,77,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(533,77,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(534,77,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(535,77,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(536,77,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(537,77,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(538,77,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(539,77,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(540,77,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(541,77,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(542,77,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(543,77,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(544,77,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(545,77,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(546,77,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(547,77,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(548,77,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(549,77,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(550,77,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(551,77,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(552,77,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(553,77,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(554,77,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(555,77,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(556,77,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(557,77,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(558,77,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(559,77,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(560,77,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(561,77,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(562,77,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(563,77,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(564,77,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(565,77,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(566,77,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(567,77,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(568,77,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(569,77,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(570,77,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(571,77,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(572,77,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(573,77,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(574,77,'Previous 2 fiscal years','previous_2.fiscal_year','previous_2.fiscal_year',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(575,77,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(576,77,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(577,77,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(578,77,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(579,77,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(580,77,'Fiscal year prior to previous fiscal year','previous_before.fiscal_year','previous_before.fiscal_year',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(581,77,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(582,77,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(583,77,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,63,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(584,77,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(585,78,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(586,78,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(587,78,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(588,78,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(589,78,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(590,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(591,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(592,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(593,79,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(594,79,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(595,79,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(596,79,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(597,79,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(598,80,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), -(599,80,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), -(600,80,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), -(601,81,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(602,81,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(603,81,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(604,81,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(605,82,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), -(606,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(607,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(608,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(609,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(610,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(611,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(612,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(613,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(614,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(615,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(616,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(617,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(618,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(619,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(620,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(621,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(622,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(623,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(624,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(625,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(626,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(627,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(628,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(629,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(630,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(631,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(632,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(633,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(634,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(635,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(636,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(637,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(638,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(639,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(640,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(641,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(642,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(643,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(644,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(645,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(646,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(647,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(648,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(649,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(650,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(651,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(652,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(653,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(654,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(655,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(656,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(657,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(658,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(659,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(660,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(661,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(662,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(663,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(664,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(665,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(666,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(667,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(668,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(669,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(670,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(671,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(672,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(673,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(674,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(675,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(676,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(677,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(678,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(679,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(680,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(681,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(682,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(683,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(684,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(685,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(686,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(687,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(688,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(689,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(690,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(691,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(692,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(693,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(694,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(695,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(696,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(697,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(698,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(699,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(700,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(701,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(702,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(703,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(704,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(705,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(706,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(707,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(708,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(709,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(710,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(711,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(712,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(713,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(714,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(715,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(716,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(717,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(718,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(719,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(720,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(721,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(722,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(723,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(724,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(725,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(726,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(727,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(728,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(729,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(730,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(731,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(732,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(733,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(734,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(735,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(736,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(737,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(738,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(739,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(740,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(741,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(742,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(743,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(744,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(745,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(746,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(747,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(748,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(749,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(750,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(751,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(752,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(753,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(754,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(755,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(756,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(757,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(758,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(759,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(760,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(761,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(762,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(763,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(764,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(765,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(766,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(767,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(768,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(769,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(770,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(771,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(772,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(773,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(774,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(775,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(776,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(777,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(778,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(779,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(780,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(781,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(782,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(783,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(784,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(785,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(786,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(787,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(788,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(789,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(790,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(791,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(792,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(793,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(794,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(795,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(796,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(797,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(798,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(799,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), -(800,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(801,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(802,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(803,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(804,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(805,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(806,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(807,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(808,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(809,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(810,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(811,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(812,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(813,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(814,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(815,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(816,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(817,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(818,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(819,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(820,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(821,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(822,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(823,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(824,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(825,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(826,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(827,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(828,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(829,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(830,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(831,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(832,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(833,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(834,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(835,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(836,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(837,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(838,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(839,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(840,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(841,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(842,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(843,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(844,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), -(845,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(846,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(847,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(848,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(849,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(850,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(851,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(852,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(853,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(854,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(855,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(856,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(857,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(858,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), -(859,2,'Interview','56','Interview',NULL,0,NULL,56,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), -(860,55,'Contribution Page','ContributionPage','civicrm_contribution_page','financial_type_id',0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), -(861,8,'Advisory Board','3','Advisory Board',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); + (2,1,'Email','2','Email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (3,1,'Postal Mail','3','Postal Mail',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (4,1,'SMS','4','SMS',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (5,1,'Fax','5','Fax',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (6,2,'Meeting','1','Meeting',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,'fa-slideshare',NULL), + (7,2,'Phone Call','2','Phone Call',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,'fa-phone',NULL), + (8,2,'Email','3','Email',NULL,1,0,3,'Email sent.',0,1,1,NULL,NULL,NULL,'fa-envelope-o',NULL), + (9,2,'Outbound SMS','4','SMS',NULL,1,0,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL,'fa-mobile',NULL), + (10,2,'Event Registration','5','Event Registration',NULL,1,0,5,'Online or offline event registration.',0,1,1,1,NULL,NULL,NULL,NULL), + (11,2,'Contribution','6','Contribution',NULL,1,0,6,'Online or offline contribution.',0,1,1,2,NULL,NULL,NULL,NULL), + (12,2,'Membership Signup','7','Membership Signup',NULL,1,0,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL,NULL,NULL), + (13,2,'Membership Renewal','8','Membership Renewal',NULL,1,0,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL,NULL,NULL), + (14,2,'Tell a Friend','9','Tell a Friend',NULL,1,0,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,0,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL,NULL,NULL), + (16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,0,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL,NULL,NULL), + (17,2,'Inbound Email','12','Inbound Email',NULL,1,0,12,'Inbound Email.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL,'fa-folder-open-o',NULL), + (19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL,'fa-share-square-o',NULL), + (20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL,'fa-random',NULL), + (21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), + (22,2,'Change Case Subject','53','Change Case Subject',NULL,0,0,53,'',0,1,1,7,NULL,NULL,'fa-pencil-square-o',NULL), + (23,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL,'fa-table',NULL), + (24,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,0,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL,NULL,NULL), + (25,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL,'fa-calendar',NULL), + (26,2,'Bulk Email','19','Bulk Email',NULL,1,0,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (27,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL,'fa-user-plus',NULL), + (28,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL,'fa-user-times',NULL), + (29,2,'Print/Merge Document','22','Print PDF Letter',NULL,0,0,22,'Export letters and other printable documents.',0,1,1,NULL,NULL,NULL,'fa-file-pdf-o',NULL), + (30,2,'Merge Case','23','Merge Case',NULL,0,0,23,'',0,1,1,7,NULL,NULL,'fa-compress',NULL), + (31,2,'Reassigned Case','24','Reassigned Case',NULL,0,0,24,'',0,1,1,7,NULL,NULL,'fa-user-circle-o',NULL), + (32,2,'Link Cases','25','Link Cases',NULL,0,0,25,'',0,1,1,7,NULL,NULL,'fa-link',NULL), + (33,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-tags',NULL), + (34,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL,'fa-users',NULL), + (35,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL,NULL,NULL), + (36,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL,NULL,NULL), + (37,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL,NULL,NULL), + (38,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL,NULL,NULL), + (39,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL,NULL,NULL), + (40,2,'Mass SMS','34','Mass SMS',NULL,1,0,34,'Mass SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), + (41,2,'Change Membership Status','35','Change Membership Status',NULL,1,0,35,'Change Membership Status.',0,1,1,3,NULL,NULL,NULL,NULL), + (42,2,'Change Membership Type','36','Change Membership Type',NULL,1,0,36,'Change Membership Type.',0,1,1,3,NULL,NULL,NULL,NULL), + (43,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,2,NULL,NULL,NULL,NULL), + (44,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,2,NULL,NULL,NULL,NULL), + (45,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,2,NULL,NULL,NULL,NULL), + (46,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (47,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL,NULL,NULL), + (48,2,'SMS delivery','44','SMS delivery',NULL,1,0,44,'SMS delivery',0,1,1,NULL,NULL,NULL,NULL,NULL), + (49,2,'Inbound SMS','45','Inbound SMS',NULL,1,0,45,'Inbound SMS',0,1,1,NULL,NULL,NULL,NULL,NULL), + (50,2,'Payment','46','Payment',NULL,1,0,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), + (51,2,'Refund','47','Refund',NULL,1,0,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL,NULL,NULL), + (52,2,'Change Registration','48','Change Registration',NULL,1,0,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL,NULL,NULL), + (53,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,0,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (54,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,0,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (55,2,'Contact Merged','51','Contact Merged',NULL,1,0,51,'Contact Merged',0,1,1,NULL,NULL,NULL,NULL,NULL), + (56,2,'Contact Deleted by Merge','52','Contact Deleted by Merge',NULL,1,0,52,'Contact was merged into another contact',0,1,1,NULL,NULL,NULL,NULL,NULL), + (57,2,'Failed Payment','54','Failed Payment',NULL,1,0,54,'Failed Payment',0,1,1,2,NULL,NULL,NULL,NULL), + (58,2,'Case Client was removed from Case','55','Case Client Removed',NULL,0,0,55,'Case client was removed from a case',0,0,1,7,NULL,NULL,'fa-trash',NULL), + (59,3,'Female','1','Female',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (60,3,'Male','2','Male',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (61,3,'Other','3','Other',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (62,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (63,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (64,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (65,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (66,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (67,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (68,5,'Sprint','1','Sprint',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (69,5,'Verizon','2','Verizon',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (70,5,'Cingular','3','Cingular',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (71,6,'Mrs.','1','Mrs.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (72,6,'Ms.','2','Ms.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (73,6,'Mr.','3','Mr.',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (74,6,'Dr.','4','Dr.',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (75,7,'Jr.','1','Jr.',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (76,7,'Sr.','2','Sr.',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (77,7,'II','3','II',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (78,7,'III','4','III',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (79,7,'IV','5','IV',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (80,7,'V','6','V',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (81,7,'VI','7','VI',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (82,7,'VII','8','VII',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (83,8,'Everyone','0','Everyone',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (84,8,'Administrator','1','Admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (85,8,'Authenticated','2','Auth',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (86,9,'Visa','1','Visa',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (87,9,'MasterCard','2','MasterCard',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (88,9,'Amex','3','Amex',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (89,9,'Discover','4','Discover',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (90,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (91,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (92,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (93,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (94,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (95,11,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (96,11,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (97,11,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (98,11,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (99,11,'Refunded','7','Refunded',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (100,11,'Partially paid','8','Partially paid',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (101,11,'Pending refund','9','Pending refund',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (102,11,'Chargeback','10','Chargeback',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (103,11,'Template','11','Template',NULL,0,0,11,'Status for contribution records which represent a template for a recurring contribution rather than an actual contribution. This status is transitional, to ensure that said contributions don\\\'t appear in reports. The is_template field is the preferred way to find and filter these contributions.',0,1,1,NULL,NULL,NULL,NULL,NULL), + (104,12,'Waiting Review','1','Waiting Review',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (105,12,'Approved','2','Approved',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (106,12,'Not Approved','3','Not Approved',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (107,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (108,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (109,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (110,14,'Attendee','1','Attendee',NULL,1,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (111,14,'Volunteer','2','Volunteer',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (112,14,'Host','3','Host',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (113,14,'Speaker','4','Speaker',NULL,1,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (114,15,'Conference','1','Conference',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (115,15,'Exhibition','2','Exhibition',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (116,15,'Fundraiser','3','Fundraiser',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (117,15,'Meeting','4','Meeting',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (118,15,'Performance','5','Performance',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (119,15,'Workshop','6','Workshop',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (120,16,'Activities','1','activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (121,16,'Relationships','2','rel',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (122,16,'Groups','3','group',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (123,16,'Notes','4','note',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (124,16,'Tags','5','tag',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (125,16,'Change Log','6','log',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (126,16,'Contributions','7','CiviContribute',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (127,16,'Memberships','8','CiviMember',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (128,16,'Events','9','CiviEvent',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (129,16,'Cases','10','CiviCase',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (130,16,'Pledges','13','CiviPledge',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (131,16,'Mailings','14','CiviMail',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (132,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (133,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (134,17,'Hide Smart Groups','3','hide',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (135,18,'Custom Data','1','CustomData',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (136,18,'Address','2','Address',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (137,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (138,18,'Notes','4','Notes',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (139,18,'Demographics','5','Demographics',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (140,18,'Tags and Groups','6','TagsAndGroups',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (141,18,'Email','7','Email',NULL,1,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (142,18,'Phone','8','Phone',NULL,1,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (143,18,'Instant Messenger','9','IM',NULL,1,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (144,18,'Open ID','10','OpenID',NULL,1,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (145,18,'Website','11','Website',NULL,1,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (146,18,'Prefix','12','Prefix',NULL,2,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (147,18,'Formal Title','13','Formal Title',NULL,2,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (148,18,'First Name','14','First Name',NULL,2,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (149,18,'Middle Name','15','Middle Name',NULL,2,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (150,18,'Last Name','16','Last Name',NULL,2,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (151,18,'Suffix','17','Suffix',NULL,2,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (152,19,'Address Fields','1','location',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (153,19,'Custom Fields','2','custom',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (154,19,'Activities','3','activity',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (155,19,'Relationships','4','relationship',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (156,19,'Notes','5','notes',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (157,19,'Change Log','6','changeLog',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (158,19,'Contributions','7','CiviContribute',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (159,19,'Memberships','8','CiviMember',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (160,19,'Events','9','CiviEvent',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (161,19,'Cases','10','CiviCase',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (162,19,'Demographics','13','demographics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (163,19,'Pledges','15','CiviPledge',NULL,0,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (164,19,'Contact Type','16','contactType',NULL,0,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (165,19,'Groups','17','groups',NULL,0,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (166,19,'Tags','18','tags',NULL,0,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (167,19,'Mailing','19','CiviMail',NULL,0,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (168,20,'Groups','1','Groups',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (169,20,'Contributions','2','CiviContribute',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (170,20,'Memberships','3','CiviMember',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (171,20,'Events','4','CiviEvent',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (172,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (173,20,'Pledges','7','CiviPledge',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (174,20,'Personal Campaign Pages','8','PCP',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (175,20,'Assigned Activities','9','Assigned Activities',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (176,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (177,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (178,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (179,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (180,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (181,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (182,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (183,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (184,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (185,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (186,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (187,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (188,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (189,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (190,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (191,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (192,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (193,23,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,0,1,'Household Name and State',0,0,1,NULL,NULL,NULL,NULL,NULL), + (194,23,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,0,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), + (195,23,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,0,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL,NULL,NULL), + (196,23,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,0,5,'Postal Mailing',0,0,1,NULL,NULL,NULL,NULL,NULL), + (197,23,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,0,6,'Proximity Search',0,0,1,NULL,NULL,NULL,NULL,NULL), + (198,23,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,0,7,'Event Aggregate',0,0,1,NULL,NULL,NULL,NULL,NULL), + (199,23,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,0,8,'Activity Search',0,0,0,NULL,NULL,NULL,NULL,NULL), + (200,23,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,0,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL,NULL,NULL), + (201,23,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,0,10,'Zip Code Range',0,0,1,NULL,NULL,NULL,NULL,NULL), + (202,23,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,0,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL,NULL,NULL), + (203,23,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,0,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL,NULL,NULL), + (204,23,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,0,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL,NULL,NULL), + (205,23,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,0,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL,NULL,NULL), + (206,23,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,0,15,'Full-text Search',0,0,1,NULL,NULL,NULL,NULL,NULL), + (207,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (208,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (209,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (210,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (211,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (212,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (213,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (214,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (215,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (216,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (217,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (218,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL), + (219,27,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL,NULL,NULL), + (220,27,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL,NULL,NULL), + (221,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (222,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (223,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (224,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (225,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (226,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (227,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (228,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (229,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (230,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (231,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (232,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (233,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (234,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (235,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (236,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (237,29,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (238,29,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (239,29,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (240,29,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (241,29,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (242,29,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (243,29,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (244,29,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (245,29,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (246,29,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (247,29,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (248,29,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (249,29,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (250,30,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (251,30,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (252,31,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (253,31,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (254,31,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (255,31,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (256,32,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (257,32,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (258,32,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (259,32,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (260,32,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (261,33,'Role','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (262,33,'Event Name','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (263,33,'Event Type','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (264,34,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (265,34,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (266,35,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (267,35,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (268,35,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (269,35,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (270,36,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (271,36,'Normal','2','Normal',NULL,0,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (272,36,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (273,37,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (274,37,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_','date_',NULL,1,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (275,38,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,0,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL,NULL,NULL), + (276,38,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,0,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL,NULL,NULL), + (277,38,'Activity Details Report','activity','CRM_Report_Form_Activity',NULL,0,0,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL,NULL,NULL), + (278,38,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,0,4,'Provides a detailed report for your walk/phonelist for targeted contacts',0,0,0,NULL,NULL,NULL,NULL,NULL), + (279,38,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,0,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL,NULL,NULL), + (280,38,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,0,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL,NULL,NULL), + (281,38,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,0,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL,NULL,NULL), + (282,38,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,0,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL,NULL,NULL), + (283,38,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,0,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL,NULL,NULL), + (284,38,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,0,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL,NULL,NULL), + (285,38,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,0,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL,NULL,NULL), + (286,38,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,0,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL,NULL,NULL), + (287,38,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,0,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL,NULL,NULL), + (288,38,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,0,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL,NULL,NULL), + (289,38,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and Member Since.',0,0,1,3,NULL,NULL,NULL,NULL), + (290,38,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,0,16,'Provides a list of members along with their membership status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL), + (291,38,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,0,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL,NULL,NULL), + (292,38,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,0,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL,NULL,NULL), + (293,38,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,0,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL,NULL,NULL), + (294,38,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,0,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL,NULL,NULL), + (295,38,'Pledge Detail Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,0,21,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL,NULL,NULL), + (296,38,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,0,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL,NULL,NULL), + (297,38,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL), + (298,38,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,0,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL,NULL,NULL), + (299,38,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,0,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL,NULL,NULL), + (300,38,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,0,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL,NULL,NULL), + (301,38,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,0,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL,NULL,NULL), + (302,38,'Activity Summary Report','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,0,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL,NULL,NULL), + (303,38,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL,NULL,NULL), + (304,38,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL,NULL,NULL), + (305,38,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL,NULL,NULL), + (306,38,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL), + (307,38,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,0,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL,NULL,NULL), + (308,38,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,0,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL,NULL,NULL), + (309,38,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,0,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL,NULL,NULL), + (310,38,'Mail Click-Through Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,0,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL,NULL,NULL), + (311,38,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,0,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL,NULL,NULL), + (312,38,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,0,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL,NULL,NULL), + (313,38,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,0,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL,NULL,NULL), + (314,38,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,0,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL,NULL,NULL), + (315,38,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,0,45,'Groups and totals pledges by criteria including contact, time period, pledge status, location, etc.',0,0,1,6,NULL,NULL,NULL,NULL), + (316,38,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,0,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL,NULL,NULL), + (317,38,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,0,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL,NULL,NULL), + (318,38,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,0,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL,NULL,NULL), + (319,38,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,0,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL,NULL,NULL), + (320,38,'Recurring Contributions Summary','contribute/recursummary','CRM_Report_Form_Contribute_RecurSummary',NULL,0,0,49,'Provides simple summary for each payment instrument for which there are recurring contributions (e.g. Credit Card, Standing Order, Direct Debit, etc., NULL), showing within a given date range.',0,0,1,2,NULL,NULL,NULL,NULL), + (321,38,'Deferred Revenue Details','contribute/deferredrevenue','CRM_Report_Form_Contribute_DeferredRevenue',NULL,0,0,50,'Deferred Revenue Details Report',0,0,1,2,NULL,NULL,NULL,NULL), + (322,39,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (323,39,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (324,39,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (325,39,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (326,39,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (327,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (328,40,'Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}','2','Dear {contact.prefix_id:label} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (329,40,'Dear {contact.prefix_id:label} {contact.last_name}','3','Dear {contact.prefix_id:label} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (330,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (331,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (332,41,'{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}','1','{contact.prefix_id:label}{ }{contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.suffix_id:label}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (333,41,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (334,41,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (335,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (336,42,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (337,42,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (338,42,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (339,42,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (340,42,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (341,42,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (342,42,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (343,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (344,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (345,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (346,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (347,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (348,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (349,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (350,44,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (351,44,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (352,44,'Social','3','Social',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (353,45,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (354,45,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (355,45,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (356,45,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (357,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (358,46,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (359,46,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (360,46,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (361,46,'Notes','civicrm_note','Note',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (362,47,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (363,47,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (364,47,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (365,47,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (366,47,'JPY (¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (367,48,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL), + (368,48,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL), + (369,48,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL,NULL,NULL), + (370,48,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL,NULL,NULL), + (371,49,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (372,49,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (373,50,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (374,50,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (375,50,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (376,51,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (377,51,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (378,51,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (379,51,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (380,53,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), + (381,53,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), + (382,53,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), + (383,54,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (384,54,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (385,54,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (386,54,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (387,54,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (388,55,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (389,55,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (390,56,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (391,56,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (392,56,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (393,56,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (394,56,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (395,56,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (396,56,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (397,56,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (398,56,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (399,56,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (400,56,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (401,56,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (402,56,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (403,56,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (404,56,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (405,56,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (406,56,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (407,56,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (408,56,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (409,56,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (410,56,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (411,56,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (412,56,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (413,56,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (414,56,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (415,56,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (416,56,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (417,56,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (418,56,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (419,56,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (420,56,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (421,56,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (422,56,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (423,56,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (424,56,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (425,56,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (426,56,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (427,56,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (428,56,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (429,56,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (430,56,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (431,56,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (432,56,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (433,56,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (434,56,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (435,56,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (436,56,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (437,56,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (438,56,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (439,56,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (440,56,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (441,56,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (442,56,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (443,56,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (444,56,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (445,56,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (446,56,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (447,56,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (448,56,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (449,56,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (450,56,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (451,56,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (452,57,'Invoice PDF Format','{\"metric\":\"px\",\"margin_top\":10,\"margin_bottom\":0,\"margin_left\":65,\"margin_right\":0}','default_invoice_pdf_format',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (453,58,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (454,58,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (455,58,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (456,58,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (457,58,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (458,58,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (459,58,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (460,58,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (461,58,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (462,58,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (463,58,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"dejavusans\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (464,59,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (465,59,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (466,59,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (467,60,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (468,60,'Credit/Contra Revenue Account is','2','Credit/Contra Revenue Account is',NULL,0,0,2,'Credit/Contra Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (469,60,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (470,60,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL,NULL,NULL), + (471,60,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (472,60,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (473,60,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (474,60,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (475,60,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (476,60,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (477,60,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (478,60,'Deferred Revenue Account is','12','Deferred Revenue Account is',NULL,0,0,12,'Deferred Revenue Account is',0,1,1,2,NULL,NULL,NULL,NULL), + (479,61,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (480,62,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (481,62,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (482,63,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (483,63,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (484,63,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (485,64,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL), + (486,64,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL), + (487,65,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (488,65,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (489,65,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (490,65,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (491,65,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (492,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (493,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (494,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (495,68,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (496,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (497,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (498,69,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL), + (499,69,'Liability','2','Liability',NULL,0,0,2,'Things you owe, like a grant still to be disbursed',0,1,1,2,NULL,NULL,NULL,NULL), + (500,69,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL), + (501,69,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL,NULL,NULL), + (502,69,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL,NULL,NULL), + (503,70,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL), + (504,70,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL), + (505,70,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL), + (506,71,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (507,72,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (508,72,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (509,72,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (510,72,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (511,73,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (512,73,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (513,74,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (514,74,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (515,74,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (516,75,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (517,75,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (518,76,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (519,76,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL), + (520,76,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL), + (521,77,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (522,77,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (523,77,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (524,77,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (525,77,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (526,77,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (527,77,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (528,77,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (529,77,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (530,77,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (531,77,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (532,77,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (533,77,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (534,77,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (535,77,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (536,77,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (537,77,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (538,77,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (539,77,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (540,77,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (541,77,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (542,77,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (543,77,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (544,77,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (545,77,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (546,77,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (547,77,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (548,77,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (549,77,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (550,77,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (551,77,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (552,77,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (553,77,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (554,77,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (555,77,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (556,77,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (557,77,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (558,77,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (559,77,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (560,77,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (561,77,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (562,77,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (563,77,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (564,77,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (565,77,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (566,77,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (567,77,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (568,77,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (569,77,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (570,77,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (571,77,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (572,77,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (573,77,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (574,77,'Previous 2 fiscal years','previous_2.fiscal_year','previous_2.fiscal_year',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (575,77,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (576,77,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (577,77,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (578,77,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (579,77,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (580,77,'Fiscal year prior to previous fiscal year','previous_before.fiscal_year','previous_before.fiscal_year',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (581,77,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (582,77,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (583,77,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,63,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (584,77,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (585,78,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (586,78,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (587,78,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (588,78,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (589,78,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (590,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (591,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (592,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (593,79,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (594,79,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (595,79,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (596,79,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (597,79,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (598,80,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), + (599,80,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), + (600,80,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL), + (601,81,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (602,81,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (603,81,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (604,81,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (605,82,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), + (606,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (607,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (608,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (609,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (610,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (611,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (612,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (613,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (614,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (615,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (616,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (617,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (618,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (619,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (620,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (621,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (622,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (623,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (624,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (625,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (626,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (627,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (628,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (629,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (630,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (631,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (632,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (633,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (634,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (635,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (636,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (637,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (638,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (639,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (640,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (641,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (642,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (643,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (644,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (645,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (646,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (647,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (648,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (649,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (650,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (651,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (652,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (653,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (654,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (655,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (656,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (657,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (658,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (659,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (660,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (661,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (662,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (663,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (664,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (665,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (666,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (667,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (668,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (669,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (670,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (671,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (672,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (673,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (674,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (675,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (676,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (677,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (678,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (679,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (680,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (681,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (682,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (683,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (684,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (685,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (686,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (687,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (688,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (689,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (690,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (691,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (692,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (693,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (694,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (695,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (696,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (697,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (698,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (699,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (700,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (701,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (702,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (703,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (704,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (705,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (706,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (707,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (708,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (709,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (710,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (711,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (712,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (713,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (714,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (715,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (716,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (717,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (718,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (719,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (720,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (721,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (722,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (723,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (724,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (725,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (726,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (727,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (728,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (729,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (730,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (731,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (732,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (733,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (734,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (735,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (736,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (737,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (738,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (739,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (740,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (741,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (742,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (743,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (744,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (745,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (746,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (747,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (748,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (749,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (750,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (751,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (752,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (753,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (754,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (755,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (756,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (757,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (758,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (759,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (760,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (761,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (762,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (763,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (764,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (765,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (766,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (767,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (768,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (769,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (770,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (771,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (772,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (773,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (774,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (775,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (776,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (777,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (778,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (779,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (780,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (781,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (782,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (783,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (784,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (785,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (786,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (787,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (788,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (789,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (790,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (791,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (792,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (793,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (794,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (795,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (796,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (797,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (798,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (799,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (800,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (801,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (802,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (803,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (804,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (805,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (806,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (807,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (808,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (809,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (810,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (811,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (812,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (813,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (814,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (815,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (816,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (817,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (818,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (819,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (820,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (821,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (822,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (823,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (824,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (825,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (826,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (827,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (828,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (829,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (830,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (831,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (832,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (833,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (834,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (835,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (836,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (837,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (838,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (839,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (840,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (841,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (842,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (843,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (844,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (845,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (846,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (847,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (848,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (849,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (850,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (851,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (852,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (853,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (854,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (855,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (856,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (857,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (858,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (859,2,'Interview','56','Interview',NULL,0,NULL,56,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), + (860,55,'Contribution Page','ContributionPage','civicrm_contribution_page','financial_type_id',0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (861,8,'Advisory Board','3','Advisory Board',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */; UNLOCK TABLES; @@ -6661,56 +6638,56 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant` WRITE; /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */; INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `must_wait`, `transferred_to_contact_id`, `created_id`) VALUES - (1,125,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(2,167,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(3,54,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(4,129,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(5,149,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(6,113,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(7,140,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(8,139,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(9,28,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(10,137,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(11,80,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(12,163,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(13,76,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(14,117,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(15,79,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(16,20,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(17,186,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(18,45,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(19,55,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(20,49,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(21,11,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(22,180,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(23,30,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(24,152,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(25,197,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(26,84,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(27,78,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(28,184,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(29,194,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(30,190,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(31,65,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(32,111,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(33,60,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(34,5,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(35,13,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(36,34,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(37,162,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(38,147,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(39,17,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(40,87,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(41,64,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(42,148,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(43,118,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(44,134,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(45,146,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(46,181,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(47,110,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(48,37,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(49,192,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), -(50,6,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); + (1,3,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (2,189,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (3,52,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (4,56,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (5,199,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (6,21,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (7,105,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (8,48,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (9,139,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (10,143,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (11,125,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (12,45,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (13,73,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (14,99,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (15,54,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (16,162,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (17,144,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (18,172,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (19,90,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (20,95,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (21,157,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (22,175,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (23,27,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (24,100,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (25,37,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (26,146,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (27,118,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (28,133,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (29,122,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (30,89,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (31,91,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (32,97,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (33,197,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (34,106,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (35,43,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (36,108,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (37,15,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (38,138,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (39,130,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (40,168,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (41,78,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (42,185,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (43,134,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (44,112,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (45,107,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (46,79,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (47,76,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (48,32,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (49,121,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL), + (50,113,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -6721,56 +6698,56 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant_payment` WRITE; /*!40000 ALTER TABLE `civicrm_participant_payment` DISABLE KEYS */; INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES - (1,34,63), -(2,50,64), -(3,21,65), -(4,35,66), -(5,39,67), -(6,16,68), -(7,9,69), -(8,23,70), -(9,36,71), -(10,48,72), -(11,18,73), -(12,20,74), -(13,3,75), -(14,19,76), -(15,33,77), -(16,41,78), -(17,31,79), -(18,13,80), -(19,27,81), -(20,15,82), -(21,11,83), -(22,26,84), -(23,40,85), -(24,47,86), -(25,32,87), -(26,6,88), -(27,14,89), -(28,43,90), -(29,1,91), -(30,4,92), -(31,44,93), -(32,10,94), -(33,8,95), -(34,7,96), -(35,45,97), -(36,38,98), -(37,42,99), -(38,5,100), -(39,24,101), -(40,37,102), -(41,12,103), -(42,2,104), -(43,22,105), -(44,46,106), -(45,28,107), -(46,17,108), -(47,30,109), -(48,49,110), -(49,29,111), -(50,25,112); + (1,1,63), + (2,2,64), + (3,3,65), + (4,4,66), + (5,5,67), + (6,6,68), + (7,7,69), + (8,8,70), + (9,9,71), + (10,10,72), + (11,11,73), + (12,12,74), + (13,13,75), + (14,14,76), + (15,15,77), + (16,16,78), + (17,17,79), + (18,18,80), + (19,19,81), + (20,20,82), + (21,21,83), + (22,22,84), + (23,23,85), + (24,24,86), + (25,25,87), + (26,26,88), + (27,27,89), + (28,28,90), + (29,29,91), + (30,30,92), + (31,31,93), + (32,32,94), + (33,33,95), + (34,34,96), + (35,35,97), + (36,36,98), + (37,37,99), + (38,38,100), + (39,39,101), + (40,40,102), + (41,41,103), + (42,42,104), + (43,43,105), + (44,44,106), + (45,45,107), + (46,46,108), + (47,47,109), + (48,48,110), + (49,49,111), + (50,50,112); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -6782,20 +6759,20 @@ LOCK TABLES `civicrm_participant_status_type` WRITE; /*!40000 ALTER TABLE `civicrm_participant_status_type` DISABLE KEYS */; INSERT INTO `civicrm_participant_status_type` (`id`, `name`, `label`, `class`, `is_reserved`, `is_active`, `is_counted`, `weight`, `visibility_id`) VALUES (1,'Registered','Registered','Positive',1,1,1,1,1), -(2,'Attended','Attended','Positive',0,1,1,2,2), -(3,'No-show','No-show','Negative',0,1,0,3,2), -(4,'Cancelled','Cancelled','Negative',1,1,0,4,2), -(5,'Pending from pay later','Pending (pay later)','Pending',1,1,1,5,2), -(6,'Pending from incomplete transaction','Pending (incomplete transaction)','Pending',1,1,0,6,2), -(7,'On waitlist','On waitlist','Waiting',1,0,0,7,2), -(8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2), -(9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2), -(10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2), -(11,'Rejected','Rejected','Negative',1,0,0,11,2), -(12,'Expired','Expired','Negative',1,1,0,12,2), -(13,'Partially paid','Partially paid','Positive',1,1,1,14,2), -(14,'Pending refund','Pending refund','Positive',1,1,1,15,2), -(15,'Transferred','Transferred','Negative',1,1,0,16,2); + (2,'Attended','Attended','Positive',0,1,1,2,2), + (3,'No-show','No-show','Negative',0,1,0,3,2), + (4,'Cancelled','Cancelled','Negative',1,1,0,4,2), + (5,'Pending from pay later','Pending (pay later)','Pending',1,1,1,5,2), + (6,'Pending from incomplete transaction','Pending (incomplete transaction)','Pending',1,1,0,6,2), + (7,'On waitlist','On waitlist','Waiting',1,0,0,7,2), + (8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2), + (9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2), + (10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2), + (11,'Rejected','Rejected','Negative',1,0,0,11,2), + (12,'Expired','Expired','Negative',1,1,0,12,2), + (13,'Partially paid','Partially paid','Positive',1,1,1,14,2), + (14,'Pending refund','Pending refund','Positive',1,1,1,15,2), + (15,'Transferred','Transferred','Negative',1,1,0,16,2); /*!40000 ALTER TABLE `civicrm_participant_status_type` ENABLE KEYS */; UNLOCK TABLES; @@ -6816,13 +6793,13 @@ LOCK TABLES `civicrm_payment_processor_type` WRITE; /*!40000 ALTER TABLE `civicrm_payment_processor_type` DISABLE KEYS */; INSERT INTO `civicrm_payment_processor_type` (`id`, `name`, `title`, `description`, `is_active`, `is_default`, `user_name_label`, `password_label`, `signature_label`, `subject_label`, `class_name`, `url_site_default`, `url_api_default`, `url_recur_default`, `url_button_default`, `url_site_test_default`, `url_api_test_default`, `url_recur_test_default`, `url_button_test_default`, `billing_mode`, `is_recur`, `payment_type`, `payment_instrument_id`) VALUES (1,'PayPal_Standard','PayPal - Website Payments Standard',NULL,1,0,'Merchant Account Email',NULL,NULL,NULL,'Payment_PayPalImpl','https://www.paypal.com/',NULL,'https://www.paypal.com/',NULL,'https://www.sandbox.paypal.com/',NULL,'https://www.sandbox.paypal.com/',NULL,4,1,1,1), -(2,'PayPal','PayPal - Website Payments Pro',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/','https://www.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/','https://www.sandbox.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',3,1,1,1), -(3,'PayPal_Express','PayPal - Express',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',2,1,1,1), -(4,'AuthNet','Authorize.Net',NULL,1,0,'API Login','Payment Key','MD5 Hash',NULL,'Payment_AuthorizeNet','https://secure2.authorize.net/gateway/transact.dll',NULL,'https://api2.authorize.net/xml/v1/request.api',NULL,'https://test.authorize.net/gateway/transact.dll',NULL,'https://apitest.authorize.net/xml/v1/request.api',NULL,1,1,1,1), -(5,'PayJunction','PayJunction',NULL,0,0,'User Name','Password',NULL,NULL,'Payment_PayJunction','https://payjunction.com/quick_link',NULL,NULL,NULL,'https://www.payjunctionlabs.com/quick_link',NULL,NULL,NULL,1,1,1,1), -(6,'Dummy','Dummy Payment Processor',NULL,1,1,'User Name',NULL,NULL,NULL,'Payment_Dummy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,1), -(7,'Realex','Realex Payment',NULL,0,0,'Merchant ID','Password',NULL,'Account','Payment_Realex','https://epage.payandshop.com/epage.cgi',NULL,NULL,NULL,'https://epage.payandshop.com/epage-remote.cgi',NULL,NULL,NULL,1,0,1,1), -(8,'FirstData','FirstData (aka linkpoint)','FirstData (aka linkpoint)',0,0,'Store name','certificate path',NULL,NULL,'Payment_FirstData','https://secure.linkpt.net',NULL,NULL,NULL,'https://staging.linkpt.net',NULL,NULL,NULL,1,0,1,1); + (2,'PayPal','PayPal - Website Payments Pro',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/','https://www.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/','https://www.sandbox.paypal.com/','https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',3,1,1,1), + (3,'PayPal_Express','PayPal - Express',NULL,1,0,'User Name','Password','Signature',NULL,'Payment_PayPalImpl','https://www.paypal.com/','https://api-3t.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif','https://www.sandbox.paypal.com/','https://api-3t.sandbox.paypal.com/',NULL,'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',2,1,1,1), + (4,'AuthNet','Authorize.Net',NULL,1,0,'API Login','Payment Key','MD5 Hash',NULL,'Payment_AuthorizeNet','https://secure2.authorize.net/gateway/transact.dll',NULL,'https://api2.authorize.net/xml/v1/request.api',NULL,'https://test.authorize.net/gateway/transact.dll',NULL,'https://apitest.authorize.net/xml/v1/request.api',NULL,1,1,1,1), + (5,'PayJunction','PayJunction',NULL,0,0,'User Name','Password',NULL,NULL,'Payment_PayJunction','https://payjunction.com/quick_link',NULL,NULL,NULL,'https://www.payjunctionlabs.com/quick_link',NULL,NULL,NULL,1,1,1,1), + (6,'Dummy','Dummy Payment Processor',NULL,1,1,'User Name',NULL,NULL,NULL,'Payment_Dummy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,1), + (7,'Realex','Realex Payment',NULL,0,0,'Merchant ID','Password',NULL,'Account','Payment_Realex','https://epage.payandshop.com/epage.cgi',NULL,NULL,NULL,'https://epage.payandshop.com/epage-remote.cgi',NULL,NULL,NULL,1,0,1,1), + (8,'FirstData','FirstData (aka linkpoint)','FirstData (aka linkpoint)',0,0,'Store name','certificate path',NULL,NULL,'Payment_FirstData','https://secure.linkpt.net',NULL,NULL,NULL,'https://staging.linkpt.net',NULL,NULL,NULL,1,0,1,1); /*!40000 ALTER TABLE `civicrm_payment_processor_type` ENABLE KEYS */; UNLOCK TABLES; @@ -6842,7 +6819,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp` WRITE; /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */; INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES - (1,123,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); + (1,50,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -6864,170 +6841,181 @@ UNLOCK TABLES; LOCK TABLES `civicrm_phone` WRITE; /*!40000 ALTER TABLE `civicrm_phone` DISABLE KEYS */; INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES - (1,147,1,1,0,NULL,'355-6711',NULL,'3556711',1), -(2,198,1,1,0,NULL,'(353) 683-8877',NULL,'3536838877',1), -(3,198,1,0,0,NULL,'779-7520',NULL,'7797520',2), -(4,123,1,1,0,NULL,'(673) 684-6086',NULL,'6736846086',1), -(5,72,1,1,0,NULL,'839-9651',NULL,'8399651',2), -(6,72,1,0,0,NULL,'668-1942',NULL,'6681942',1), -(7,96,1,1,0,NULL,'(591) 425-4820',NULL,'5914254820',2), -(8,18,1,1,0,NULL,'667-6453',NULL,'6676453',1), -(9,97,1,1,0,NULL,'(497) 892-2865',NULL,'4978922865',2), -(10,159,1,1,0,NULL,'(206) 325-4817',NULL,'2063254817',2), -(11,159,1,0,0,NULL,'(628) 557-1129',NULL,'6285571129',1), -(12,13,1,1,0,NULL,'823-7126',NULL,'8237126',2), -(13,24,1,1,0,NULL,'404-8567',NULL,'4048567',2), -(14,24,1,0,0,NULL,'834-6947',NULL,'8346947',2), -(15,66,1,1,0,NULL,'(462) 555-7752',NULL,'4625557752',1), -(16,66,1,0,0,NULL,'(718) 549-3942',NULL,'7185493942',1), -(17,4,1,1,0,NULL,'671-4895',NULL,'6714895',2), -(18,4,1,0,0,NULL,'496-6943',NULL,'4966943',2), -(19,154,1,1,0,NULL,'(339) 564-5978',NULL,'3395645978',2), -(20,23,1,1,0,NULL,'(713) 572-5771',NULL,'7135725771',2), -(21,23,1,0,0,NULL,'(628) 394-7424',NULL,'6283947424',2), -(22,17,1,1,0,NULL,'727-8223',NULL,'7278223',2), -(23,17,1,0,0,NULL,'690-7809',NULL,'6907809',2), -(24,64,1,1,0,NULL,'848-4961',NULL,'8484961',1), -(25,64,1,0,0,NULL,'550-1480',NULL,'5501480',1), -(26,133,1,1,0,NULL,'(734) 354-3694',NULL,'7343543694',1), -(27,61,1,1,0,NULL,'(831) 598-3091',NULL,'8315983091',2), -(28,61,1,0,0,NULL,'(831) 201-5814',NULL,'8312015814',2), -(29,151,1,1,0,NULL,'(863) 728-1278',NULL,'8637281278',2), -(30,121,1,1,0,NULL,'(671) 753-4778',NULL,'6717534778',2), -(31,121,1,0,0,NULL,'(827) 795-7071',NULL,'8277957071',2), -(32,70,1,1,0,NULL,'704-9984',NULL,'7049984',1), -(33,70,1,0,0,NULL,'487-1947',NULL,'4871947',1), -(34,79,1,1,0,NULL,'(227) 598-2908',NULL,'2275982908',1), -(35,79,1,0,0,NULL,'839-7443',NULL,'8397443',2), -(36,187,1,1,0,NULL,'304-9721',NULL,'3049721',1), -(37,187,1,0,0,NULL,'(349) 677-5591',NULL,'3496775591',1), -(38,7,1,1,0,NULL,'(264) 413-1214',NULL,'2644131214',1), -(39,25,1,1,0,NULL,'670-9683',NULL,'6709683',2), -(40,146,1,1,0,NULL,'688-9937',NULL,'6889937',2), -(41,186,1,1,0,NULL,'872-4231',NULL,'8724231',2), -(42,99,1,1,0,NULL,'(321) 292-4107',NULL,'3212924107',1), -(43,99,1,0,0,NULL,'647-1002',NULL,'6471002',1), -(44,132,1,1,0,NULL,'(212) 233-3276',NULL,'2122333276',1), -(45,132,1,0,0,NULL,'(588) 392-7577',NULL,'5883927577',1), -(46,170,1,1,0,NULL,'563-8354',NULL,'5638354',1), -(47,170,1,0,0,NULL,'(460) 728-2074',NULL,'4607282074',2), -(48,184,1,1,0,NULL,'693-7546',NULL,'6937546',1), -(49,184,1,0,0,NULL,'(332) 821-1667',NULL,'3328211667',2), -(50,163,1,1,0,NULL,'217-4846',NULL,'2174846',2), -(51,163,1,0,0,NULL,'853-2694',NULL,'8532694',2), -(52,10,1,1,0,NULL,'518-7133',NULL,'5187133',2), -(53,10,1,0,0,NULL,'682-6338',NULL,'6826338',1), -(54,126,1,1,0,NULL,'(393) 824-2759',NULL,'3938242759',2), -(55,93,1,1,0,NULL,'(828) 278-2193',NULL,'8282782193',1), -(56,93,1,0,0,NULL,'(855) 394-9351',NULL,'8553949351',2), -(57,71,1,1,0,NULL,'(302) 408-7234',NULL,'3024087234',2), -(58,69,1,1,0,NULL,'650-2859',NULL,'6502859',1), -(59,69,1,0,0,NULL,'584-1870',NULL,'5841870',1), -(60,108,1,1,0,NULL,'734-6592',NULL,'7346592',1), -(61,62,1,1,0,NULL,'(360) 510-1745',NULL,'3605101745',1), -(62,62,1,0,0,NULL,'758-7036',NULL,'7587036',1), -(63,45,1,1,0,NULL,'(434) 863-5810',NULL,'4348635810',1), -(64,45,1,0,0,NULL,'420-4767',NULL,'4204767',2), -(65,148,1,1,0,NULL,'(370) 386-1913',NULL,'3703861913',1), -(66,148,1,0,0,NULL,'498-9200',NULL,'4989200',2), -(67,37,1,1,0,NULL,'786-8932',NULL,'7868932',2), -(68,37,1,0,0,NULL,'394-9051',NULL,'3949051',2), -(69,85,1,1,0,NULL,'(587) 666-2881',NULL,'5876662881',2), -(70,5,1,1,0,NULL,'(532) 762-9952',NULL,'5327629952',2), -(71,63,1,1,0,NULL,'(255) 549-2976',NULL,'2555492976',1), -(72,150,1,1,0,NULL,'(828) 899-4314',NULL,'8288994314',1), -(73,200,1,1,0,NULL,'(215) 541-9279',NULL,'2155419279',2), -(74,166,1,1,0,NULL,'563-5926',NULL,'5635926',2), -(75,166,1,0,0,NULL,'(271) 470-2990',NULL,'2714702990',2), -(76,39,1,1,0,NULL,'(378) 379-8972',NULL,'3783798972',1), -(77,77,1,1,0,NULL,'862-1520',NULL,'8621520',2), -(78,139,1,1,0,NULL,'722-8420',NULL,'7228420',1), -(79,139,1,0,0,NULL,'(882) 641-5922',NULL,'8826415922',1), -(80,32,1,1,0,NULL,'(444) 315-9748',NULL,'4443159748',1), -(81,32,1,0,0,NULL,'(853) 845-8668',NULL,'8538458668',2), -(82,116,1,1,0,NULL,'713-5988',NULL,'7135988',1), -(83,116,1,0,0,NULL,'(263) 717-3762',NULL,'2637173762',2), -(84,174,1,1,0,NULL,'667-8768',NULL,'6678768',1), -(85,174,1,0,0,NULL,'(230) 739-2636',NULL,'2307392636',2), -(86,73,1,1,0,NULL,'(349) 419-1822',NULL,'3494191822',1), -(87,12,1,1,0,NULL,'(236) 219-1816',NULL,'2362191816',1), -(88,94,1,1,0,NULL,'744-5993',NULL,'7445993',2), -(89,67,1,1,0,NULL,'500-6641',NULL,'5006641',2), -(90,67,1,0,0,NULL,'(565) 545-8117',NULL,'5655458117',2), -(91,31,1,1,0,NULL,'690-1603',NULL,'6901603',2), -(92,35,1,1,0,NULL,'367-8296',NULL,'3678296',1), -(93,140,1,1,0,NULL,'(474) 483-2598',NULL,'4744832598',1), -(94,6,1,1,0,NULL,'249-7689',NULL,'2497689',2), -(95,101,1,1,0,NULL,'678-1121',NULL,'6781121',1), -(96,101,1,0,0,NULL,'603-6062',NULL,'6036062',2), -(97,102,1,1,0,NULL,'(527) 496-4391',NULL,'5274964391',1), -(98,26,1,1,0,NULL,'835-1075',NULL,'8351075',2), -(99,91,1,1,0,NULL,'548-3311',NULL,'5483311',1), -(100,91,1,0,0,NULL,'(806) 430-6179',NULL,'8064306179',1), -(101,74,1,1,0,NULL,'(671) 857-7294',NULL,'6718577294',2), -(102,74,1,0,0,NULL,'221-3954',NULL,'2213954',1), -(103,142,1,1,0,NULL,'297-1284',NULL,'2971284',1), -(104,201,1,1,0,NULL,'(460) 602-2408',NULL,'4606022408',1), -(105,201,1,0,0,NULL,'(561) 787-1236',NULL,'5617871236',2), -(106,98,1,1,0,NULL,'(614) 551-1383',NULL,'6145511383',2), -(107,165,1,1,0,NULL,'691-6451',NULL,'6916451',2), -(108,82,1,1,0,NULL,'758-1028',NULL,'7581028',1), -(109,19,1,1,0,NULL,'(653) 494-5496',NULL,'6534945496',2), -(110,168,1,1,0,NULL,'278-1319',NULL,'2781319',1), -(111,20,1,1,0,NULL,'469-6948',NULL,'4696948',2), -(112,20,1,0,0,NULL,'898-1511',NULL,'8981511',1), -(113,178,1,1,0,NULL,'526-1622',NULL,'5261622',2), -(114,178,1,0,0,NULL,'883-6437',NULL,'8836437',2), -(115,113,1,1,0,NULL,'382-9673',NULL,'3829673',2), -(116,113,1,0,0,NULL,'(256) 359-5117',NULL,'2563595117',2), -(117,49,1,1,0,NULL,'(854) 302-8604',NULL,'8543028604',2), -(118,49,1,0,0,NULL,'(621) 618-2099',NULL,'6216182099',2), -(119,115,1,1,0,NULL,'(782) 426-7418',NULL,'7824267418',2), -(120,190,1,1,0,NULL,'(519) 535-9430',NULL,'5195359430',2), -(121,190,1,0,0,NULL,'763-2560',NULL,'7632560',1), -(122,197,1,1,0,NULL,'362-5918',NULL,'3625918',1), -(123,197,1,0,0,NULL,'(561) 407-9836',NULL,'5614079836',1), -(124,87,1,1,0,NULL,'(436) 239-7938',NULL,'4362397938',1), -(125,103,1,1,0,NULL,'(712) 605-8878',NULL,'7126058878',1), -(126,103,1,0,0,NULL,'877-8339',NULL,'8778339',2), -(127,14,1,1,0,NULL,'(274) 234-7054',NULL,'2742347054',2), -(128,14,1,0,0,NULL,'(772) 225-4566',NULL,'7722254566',1), -(129,157,1,1,0,NULL,'(246) 326-9372',NULL,'2463269372',2), -(130,157,1,0,0,NULL,'517-6365',NULL,'5176365',1), -(131,188,1,1,0,NULL,'244-6541',NULL,'2446541',2), -(132,188,1,0,0,NULL,'655-2150',NULL,'6552150',1), -(133,164,1,1,0,NULL,'864-7657',NULL,'8647657',1), -(134,16,1,1,0,NULL,'615-6675',NULL,'6156675',2), -(135,16,1,0,0,NULL,'(609) 834-9252',NULL,'6098349252',1), -(136,114,1,1,0,NULL,'526-7714',NULL,'5267714',1), -(137,76,1,1,0,NULL,'795-1474',NULL,'7951474',2), -(138,76,1,0,0,NULL,'393-8128',NULL,'3938128',1), -(139,30,1,1,0,NULL,'(841) 530-1197',NULL,'8415301197',1), -(140,100,1,1,0,NULL,'(357) 881-2485',NULL,'3578812485',1), -(141,120,1,1,0,NULL,'709-5435',NULL,'7095435',1), -(142,21,1,1,0,NULL,'(301) 461-7524',NULL,'3014617524',1), -(143,55,1,1,0,NULL,'(618) 894-5392',NULL,'6188945392',1), -(144,173,1,1,0,NULL,'(886) 341-4210',NULL,'8863414210',2), -(145,175,1,1,0,NULL,'(821) 498-3609',NULL,'8214983609',2), -(146,80,1,1,0,NULL,'(754) 544-7265',NULL,'7545447265',1), -(147,104,1,1,0,NULL,'338-3639',NULL,'3383639',1), -(148,29,1,1,0,NULL,'(898) 607-5823',NULL,'8986075823',1), -(149,29,1,0,0,NULL,'629-3950',NULL,'6293950',2), -(150,171,1,1,0,NULL,'489-8730',NULL,'4898730',2), -(151,171,1,0,0,NULL,'(848) 312-9371',NULL,'8483129371',1), -(152,48,1,1,0,NULL,'(785) 826-8719',NULL,'7858268719',2), -(153,89,1,1,0,NULL,'430-7750',NULL,'4307750',1), -(154,161,1,1,0,NULL,'611-2398',NULL,'6112398',1), -(155,54,1,1,0,NULL,'(479) 499-3030',NULL,'4794993030',1), -(156,88,1,1,0,NULL,'(228) 662-8303',NULL,'2286628303',2), -(157,50,1,1,0,NULL,'(483) 655-5376',NULL,'4836555376',1), -(158,167,1,1,0,NULL,'(291) 488-2190',NULL,'2914882190',2), -(159,167,1,0,0,NULL,'696-8357',NULL,'6968357',2), -(160,38,1,1,0,NULL,'(266) 577-4651',NULL,'2665774651',2), -(161,38,1,0,0,NULL,'(235) 459-7206',NULL,'2354597206',1), -(162,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), -(163,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), -(164,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); + (1,44,1,1,0,NULL,'(753) 619-5752',NULL,'7536195752',2), + (2,44,1,0,0,NULL,'(361) 389-2942',NULL,'3613892942',2), + (3,31,1,1,0,NULL,'(587) 213-4357',NULL,'5872134357',1), + (4,31,1,0,0,NULL,'341-9106',NULL,'3419106',1), + (5,50,1,1,0,NULL,'776-3830',NULL,'7763830',2), + (6,50,1,0,0,NULL,'(553) 860-1362',NULL,'5538601362',1), + (7,22,1,1,0,NULL,'215-5606',NULL,'2155606',1), + (8,131,1,1,0,NULL,'(629) 715-1324',NULL,'6297151324',1), + (9,131,1,0,0,NULL,'863-1108',NULL,'8631108',1), + (10,2,1,1,0,NULL,'512-1407',NULL,'5121407',2), + (11,95,1,1,0,NULL,'209-5095',NULL,'2095095',1), + (12,109,1,1,0,NULL,'(530) 711-9873',NULL,'5307119873',2), + (13,84,1,1,0,NULL,'654-5438',NULL,'6545438',2), + (14,84,1,0,0,NULL,'783-3047',NULL,'7833047',2), + (15,182,1,1,0,NULL,'746-1358',NULL,'7461358',1), + (16,153,1,1,0,NULL,'(611) 783-6844',NULL,'6117836844',1), + (17,153,1,0,0,NULL,'(657) 647-2529',NULL,'6576472529',2), + (18,74,1,1,0,NULL,'(447) 664-8758',NULL,'4476648758',2), + (19,193,1,1,0,NULL,'(376) 721-7038',NULL,'3767217038',2), + (20,193,1,0,0,NULL,'570-6037',NULL,'5706037',1), + (21,125,1,1,0,NULL,'(262) 456-1402',NULL,'2624561402',2), + (22,169,1,1,0,NULL,'(312) 758-2028',NULL,'3127582028',1), + (23,41,1,1,0,NULL,'(791) 853-2684',NULL,'7918532684',1), + (24,164,1,1,0,NULL,'(602) 553-7562',NULL,'6025537562',1), + (25,164,1,0,0,NULL,'874-4015',NULL,'8744015',2), + (26,53,1,1,0,NULL,'826-8660',NULL,'8268660',1), + (27,55,1,1,0,NULL,'(828) 238-2840',NULL,'8282382840',2), + (28,55,1,0,0,NULL,'513-3823',NULL,'5133823',1), + (29,62,1,1,0,NULL,'713-7522',NULL,'7137522',2), + (30,62,1,0,0,NULL,'(857) 472-4721',NULL,'8574724721',1), + (31,138,1,1,0,NULL,'772-4484',NULL,'7724484',1), + (32,154,1,1,0,NULL,'(412) 251-3749',NULL,'4122513749',2), + (33,154,1,0,0,NULL,'(808) 322-5085',NULL,'8083225085',2), + (34,157,1,1,0,NULL,'(347) 891-6256',NULL,'3478916256',2), + (35,35,1,1,0,NULL,'(727) 376-4702',NULL,'7273764702',2), + (36,114,1,1,0,NULL,'477-6518',NULL,'4776518',1), + (37,94,1,1,0,NULL,'(465) 236-4783',NULL,'4652364783',1), + (38,81,1,1,0,NULL,'523-9519',NULL,'5239519',1), + (39,72,1,1,0,NULL,'744-3451',NULL,'7443451',2), + (40,112,1,1,0,NULL,'697-4562',NULL,'6974562',2), + (41,112,1,0,0,NULL,'474-5914',NULL,'4745914',2), + (42,17,1,1,0,NULL,'(367) 754-6745',NULL,'3677546745',1), + (43,118,1,1,0,NULL,'(742) 808-5413',NULL,'7428085413',1), + (44,67,1,1,0,NULL,'(306) 202-1871',NULL,'3062021871',2), + (45,195,1,1,0,NULL,'847-3200',NULL,'8473200',1), + (46,148,1,1,0,NULL,'(329) 247-8678',NULL,'3292478678',2), + (47,160,1,1,0,NULL,'226-6736',NULL,'2266736',1), + (48,160,1,0,0,NULL,'(216) 845-5792',NULL,'2168455792',2), + (49,156,1,1,0,NULL,'(374) 678-3430',NULL,'3746783430',1), + (50,156,1,0,0,NULL,'264-9409',NULL,'2649409',1), + (51,96,1,1,0,NULL,'(808) 892-1157',NULL,'8088921157',1), + (52,185,1,1,0,NULL,'(398) 526-4479',NULL,'3985264479',2), + (53,117,1,1,0,NULL,'871-1359',NULL,'8711359',1), + (54,117,1,0,0,NULL,'363-5756',NULL,'3635756',2), + (55,137,1,1,0,NULL,'545-6519',NULL,'5456519',1), + (56,59,1,1,0,NULL,'617-3455',NULL,'6173455',2), + (57,198,1,1,0,NULL,'690-7197',NULL,'6907197',2), + (58,198,1,0,0,NULL,'595-4131',NULL,'5954131',2), + (59,104,1,1,0,NULL,'286-2754',NULL,'2862754',1), + (60,104,1,0,0,NULL,'268-7514',NULL,'2687514',2), + (61,23,1,1,0,NULL,'(288) 265-8089',NULL,'2882658089',1), + (62,11,1,1,0,NULL,'(440) 603-5515',NULL,'4406035515',1), + (63,11,1,0,0,NULL,'(262) 558-5770',NULL,'2625585770',2), + (64,10,1,1,0,NULL,'(677) 473-5401',NULL,'6774735401',2), + (65,10,1,0,0,NULL,'363-8830',NULL,'3638830',1), + (66,119,1,1,0,NULL,'290-4018',NULL,'2904018',1), + (67,119,1,0,0,NULL,'(896) 864-6244',NULL,'8968646244',2), + (68,18,1,1,0,NULL,'(466) 688-3311',NULL,'4666883311',1), + (69,18,1,0,0,NULL,'404-5049',NULL,'4045049',2), + (70,133,1,1,0,NULL,'830-8665',NULL,'8308665',1), + (71,133,1,0,0,NULL,'(231) 848-1125',NULL,'2318481125',1), + (72,147,1,1,0,NULL,'(873) 250-3025',NULL,'8732503025',2), + (73,147,1,0,0,NULL,'(770) 802-3289',NULL,'7708023289',1), + (74,142,1,1,0,NULL,'660-7082',NULL,'6607082',1), + (75,142,1,0,0,NULL,'(701) 889-2861',NULL,'7018892861',1), + (76,39,1,1,0,NULL,'(395) 415-3451',NULL,'3954153451',2), + (77,39,1,0,0,NULL,'(486) 251-9664',NULL,'4862519664',1), + (78,29,1,1,0,NULL,'(301) 859-1325',NULL,'3018591325',1), + (79,29,1,0,0,NULL,'897-8268',NULL,'8978268',2), + (80,196,1,1,0,NULL,'597-6677',NULL,'5976677',2), + (81,196,1,0,0,NULL,'(877) 738-7763',NULL,'8777387763',2), + (82,63,1,1,0,NULL,'(293) 545-9037',NULL,'2935459037',2), + (83,63,1,0,0,NULL,'568-6012',NULL,'5686012',2), + (84,30,1,1,0,NULL,'560-1107',NULL,'5601107',1), + (85,30,1,0,0,NULL,'439-9750',NULL,'4399750',1), + (86,144,1,1,0,NULL,'344-3890',NULL,'3443890',1), + (87,144,1,0,0,NULL,'(723) 227-5928',NULL,'7232275928',1), + (88,28,1,1,0,NULL,'818-2078',NULL,'8182078',2), + (89,4,1,1,0,NULL,'(762) 785-4096',NULL,'7627854096',2), + (90,15,1,1,0,NULL,'641-3191',NULL,'6413191',1), + (91,15,1,0,0,NULL,'524-5167',NULL,'5245167',2), + (92,76,1,1,0,NULL,'835-7076',NULL,'8357076',1), + (93,76,1,0,0,NULL,'(402) 595-9158',NULL,'4025959158',1), + (94,192,1,1,0,NULL,'580-1614',NULL,'5801614',1), + (95,192,1,0,0,NULL,'(360) 615-6880',NULL,'3606156880',1), + (96,200,1,1,0,NULL,'292-9458',NULL,'2929458',2), + (97,45,1,1,0,NULL,'625-5048',NULL,'6255048',1), + (98,45,1,0,0,NULL,'(266) 631-7037',NULL,'2666317037',2), + (99,20,1,1,0,NULL,'222-9763',NULL,'2229763',2), + (100,161,1,1,0,NULL,'(531) 639-5722',NULL,'5316395722',1), + (101,48,1,1,0,NULL,'(581) 770-7009',NULL,'5817707009',2), + (102,48,1,0,0,NULL,'861-8590',NULL,'8618590',2), + (103,168,1,1,0,NULL,'863-9591',NULL,'8639591',1), + (104,175,1,1,0,NULL,'(831) 682-4675',NULL,'8316824675',2), + (105,175,1,0,0,NULL,'409-2638',NULL,'4092638',1), + (106,191,1,1,0,NULL,'(274) 263-5999',NULL,'2742635999',2), + (107,191,1,0,0,NULL,'(392) 484-5665',NULL,'3924845665',1), + (108,66,1,1,0,NULL,'(592) 652-9646',NULL,'5926529646',2), + (109,66,1,0,0,NULL,'552-2804',NULL,'5522804',2), + (110,122,1,1,0,NULL,'(654) 511-2220',NULL,'6545112220',1), + (111,75,1,1,0,NULL,'506-6747',NULL,'5066747',2), + (112,187,1,1,0,NULL,'(824) 753-1572',NULL,'8247531572',2), + (113,187,1,0,0,NULL,'(769) 426-7986',NULL,'7694267986',1), + (114,92,1,1,0,NULL,'(605) 831-6516',NULL,'6058316516',1), + (115,64,1,1,0,NULL,'(264) 581-1210',NULL,'2645811210',1), + (116,64,1,0,0,NULL,'780-5078',NULL,'7805078',2), + (117,73,1,1,0,NULL,'(672) 714-1817',NULL,'6727141817',1), + (118,73,1,0,0,NULL,'853-8572',NULL,'8538572',2), + (119,105,1,1,0,NULL,'(862) 372-4163',NULL,'8623724163',1), + (120,105,1,0,0,NULL,'(229) 611-6020',NULL,'2296116020',1), + (121,201,1,1,0,NULL,'(846) 246-9338',NULL,'8462469338',2), + (122,5,1,1,0,NULL,'601-4615',NULL,'6014615',1), + (123,5,1,0,0,NULL,'(272) 564-9670',NULL,'2725649670',2), + (124,16,1,1,0,NULL,'424-1490',NULL,'4241490',2), + (125,16,1,0,0,NULL,'768-7027',NULL,'7687027',2), + (126,79,1,1,0,NULL,'(417) 660-5769',NULL,'4176605769',2), + (127,141,1,1,0,NULL,'836-4334',NULL,'8364334',1), + (128,194,1,1,0,NULL,'291-2045',NULL,'2912045',1), + (129,194,1,0,0,NULL,'520-7191',NULL,'5207191',1), + (130,14,1,1,0,NULL,'(305) 540-1199',NULL,'3055401199',2), + (131,14,1,0,0,NULL,'(521) 477-2762',NULL,'5214772762',2), + (132,65,1,1,0,NULL,'592-1871',NULL,'5921871',1), + (133,65,1,0,0,NULL,'(521) 485-4325',NULL,'5214854325',2), + (134,150,1,1,0,NULL,'506-7890',NULL,'5067890',1), + (135,37,1,1,0,NULL,'(414) 551-4810',NULL,'4145514810',1), + (136,37,1,0,0,NULL,'237-7734',NULL,'2377734',2), + (137,124,1,1,0,NULL,'(238) 282-1502',NULL,'2382821502',1), + (138,89,1,1,0,NULL,'(510) 526-6053',NULL,'5105266053',2), + (139,181,1,1,0,NULL,'499-3515',NULL,'4993515',1), + (140,25,1,1,0,NULL,'695-2232',NULL,'6952232',2), + (141,19,1,1,0,NULL,'(857) 740-9368',NULL,'8577409368',2), + (142,19,1,0,0,NULL,'358-2309',NULL,'3582309',2), + (143,27,1,1,0,NULL,'381-5762',NULL,'3815762',1), + (144,27,1,0,0,NULL,'602-2308',NULL,'6022308',1), + (145,189,1,1,0,NULL,'(482) 730-1683',NULL,'4827301683',1), + (146,189,1,0,0,NULL,'(594) 447-9425',NULL,'5944479425',1), + (147,86,1,1,0,NULL,'811-1855',NULL,'8111855',2), + (148,98,1,1,0,NULL,'272-4917',NULL,'2724917',1), + (149,98,1,0,0,NULL,'(696) 450-6535',NULL,'6964506535',2), + (150,43,1,1,0,NULL,'668-6988',NULL,'6686988',1), + (151,121,1,1,0,NULL,'(539) 642-1660',NULL,'5396421660',1), + (152,24,1,1,0,NULL,'(567) 896-9527',NULL,'5678969527',1), + (153,24,1,0,0,NULL,'554-3008',NULL,'5543008',1), + (154,145,1,1,0,NULL,'470-1378',NULL,'4701378',1), + (155,145,1,0,0,NULL,'(377) 267-6357',NULL,'3772676357',2), + (156,60,1,1,0,NULL,'(795) 334-3162',NULL,'7953343162',1), + (157,60,1,0,0,NULL,'(399) 271-1723',NULL,'3992711723',1), + (158,199,1,1,0,NULL,'(757) 784-5414',NULL,'7577845414',1), + (159,132,1,1,0,NULL,'(501) 254-4902',NULL,'5012544902',2), + (160,132,1,0,0,NULL,'571-9986',NULL,'5719986',1), + (161,165,1,1,0,NULL,'(567) 763-7907',NULL,'5677637907',2), + (162,151,1,1,0,NULL,'395-4635',NULL,'3954635',2), + (163,56,1,1,0,NULL,'(286) 604-8265',NULL,'2866048265',2), + (164,102,1,1,0,NULL,'512-3012',NULL,'5123012',2), + (165,102,1,0,0,NULL,'844-9131',NULL,'8449131',2), + (166,186,1,1,0,NULL,'559-7629',NULL,'5597629',2), + (167,186,1,0,0,NULL,'(741) 602-8753',NULL,'7416028753',1), + (168,139,1,1,0,NULL,'669-9704',NULL,'6699704',2), + (169,129,1,1,0,NULL,'(444) 359-9609',NULL,'4443599609',2), + (170,93,1,1,0,NULL,'848-4910',NULL,'8484910',1), + (171,93,1,0,0,NULL,'335-4543',NULL,'3354543',1), + (172,99,1,1,0,NULL,'(812) 695-2997',NULL,'8126952997',2), + (173,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), + (174,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), + (175,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -7039,8 +7027,8 @@ LOCK TABLES `civicrm_pledge` WRITE; /*!40000 ALTER TABLE `civicrm_pledge` DISABLE KEYS */; INSERT INTO `civicrm_pledge` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `amount`, `original_installment_amount`, `currency`, `frequency_unit`, `frequency_interval`, `frequency_day`, `installments`, `start_date`, `create_date`, `acknowledge_date`, `modified_date`, `cancel_date`, `end_date`, `max_reminders`, `initial_reminder_day`, `additional_reminder_day`, `status_id`, `is_test`, `campaign_id`) VALUES (1,71,1,1,500.00,500.00,'USD','month',1,1,1,'2009-07-01 00:00:00','2009-06-26 00:00:00',NULL,NULL,NULL,'2009-07-01 00:00:00',1,5,5,1,0,NULL), -(2,43,1,1,800.00,200.00,'USD','month',3,1,4,'2009-07-01 00:00:00','2009-06-23 00:00:00','2009-06-23 00:00:00',NULL,NULL,'2009-04-01 10:11:40',1,5,5,5,0,NULL), -(3,32,1,1,600.00,200.00,'USD','month',1,1,3,'2009-10-01 00:00:00','2009-09-14 00:00:00','2009-09-14 00:00:00',NULL,NULL,'2009-12-01 00:00:00',1,5,5,5,0,NULL); + (2,43,1,1,800.00,200.00,'USD','month',3,1,4,'2009-07-01 00:00:00','2009-06-23 00:00:00','2009-06-23 00:00:00',NULL,NULL,'2009-04-01 10:11:40',1,5,5,5,0,NULL), + (3,32,1,1,600.00,200.00,'USD','month',1,1,3,'2009-10-01 00:00:00','2009-09-14 00:00:00','2009-09-14 00:00:00',NULL,NULL,'2009-12-01 00:00:00',1,5,5,5,0,NULL); /*!40000 ALTER TABLE `civicrm_pledge` ENABLE KEYS */; UNLOCK TABLES; @@ -7063,13 +7051,13 @@ LOCK TABLES `civicrm_pledge_payment` WRITE; /*!40000 ALTER TABLE `civicrm_pledge_payment` DISABLE KEYS */; INSERT INTO `civicrm_pledge_payment` (`id`, `pledge_id`, `contribution_id`, `scheduled_amount`, `actual_amount`, `currency`, `scheduled_date`, `reminder_date`, `reminder_count`, `status_id`) VALUES (1,1,10,500.00,500.00,'USD','2009-07-01 00:00:00',NULL,0,1), -(2,2,11,200.00,200.00,'USD','2009-07-01 00:00:00',NULL,0,1), -(3,2,NULL,200.00,NULL,'USD','2009-10-01 00:00:00',NULL,0,2), -(4,2,NULL,200.00,NULL,'USD','2009-01-01 00:00:00',NULL,0,2), -(5,2,NULL,200.00,NULL,'USD','2009-04-01 00:00:00',NULL,0,2), -(6,3,12,200.00,200.00,'USD','2009-10-01 00:00:00',NULL,0,1), -(7,3,13,200.00,200.00,'USD','2009-11-01 00:00:00','2009-10-28 00:00:00',1,1), -(8,3,NULL,200.00,NULL,'USD','2009-12-01 00:00:00',NULL,0,2); + (2,2,11,200.00,200.00,'USD','2009-07-01 00:00:00',NULL,0,1), + (3,2,NULL,200.00,NULL,'USD','2009-10-01 00:00:00',NULL,0,2), + (4,2,NULL,200.00,NULL,'USD','2009-01-01 00:00:00',NULL,0,2), + (5,2,NULL,200.00,NULL,'USD','2009-04-01 00:00:00',NULL,0,2), + (6,3,12,200.00,200.00,'USD','2009-10-01 00:00:00',NULL,0,1), + (7,3,13,200.00,200.00,'USD','2009-11-01 00:00:00','2009-10-28 00:00:00',1,1), + (8,3,NULL,200.00,NULL,'USD','2009-12-01 00:00:00',NULL,0,2); /*!40000 ALTER TABLE `civicrm_pledge_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -7081,12 +7069,12 @@ LOCK TABLES `civicrm_preferences_date` WRITE; /*!40000 ALTER TABLE `civicrm_preferences_date` DISABLE KEYS */; INSERT INTO `civicrm_preferences_date` (`id`, `name`, `description`, `start`, `end`, `date_format`, `time_format`) VALUES (1,'activityDate','Date for relationships. activities. contributions: receive, receipt, cancel. membership: join, start, renew. case: start, end.',20,10,'',''), -(2,'activityDateTime','Date and time for activity: scheduled. participant: registered.',20,10,'','1'), -(3,'birth','Birth and deceased dates. Only year, month and day fields are supported.',100,0,'',''), -(4,'creditCard','Month and year only for credit card expiration.',0,10,'m Y',''), -(5,'custom','Uses date range passed in by form field. Can pass in a posix date part parameter. Start and end offsets defined here are ignored.',20,20,'',''), -(6,'mailing','Date and time. Used for scheduling mailings.',0,1,'',''), -(7,'searchDate','Used in search forms.',20,20,'',''); + (2,'activityDateTime','Date and time for activity: scheduled. participant: registered.',20,10,'','1'), + (3,'birth','Birth and deceased dates. Only year, month and day fields are supported.',100,0,'',''), + (4,'creditCard','Month and year only for credit card expiration.',0,10,'m Y',''), + (5,'custom','Uses date range passed in by form field. Can pass in a posix date part parameter. Start and end offsets defined here are ignored.',20,20,'',''), + (6,'mailing','Date and time. Used for scheduling mailings.',0,1,'',''), + (7,'searchDate','Used in search forms.',20,20,'',''); /*!40000 ALTER TABLE `civicrm_preferences_date` ENABLE KEYS */; UNLOCK TABLES; @@ -7129,14 +7117,14 @@ LOCK TABLES `civicrm_price_field` WRITE; /*!40000 ALTER TABLE `civicrm_price_field` DISABLE KEYS */; INSERT INTO `civicrm_price_field` (`id`, `price_set_id`, `name`, `label`, `html_type`, `is_enter_qty`, `help_pre`, `help_post`, `weight`, `is_display_amounts`, `options_per_line`, `is_active`, `is_required`, `active_on`, `expire_on`, `javascript`, `visibility_id`) VALUES (1,1,'contribution_amount','Contribution Amount','Text',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), -(2,3,'contribution_amount','Contribution Amount','Radio',0,NULL,NULL,2,1,1,1,0,NULL,NULL,NULL,1), -(3,3,'other_amount','Additional Amount','Text',0,NULL,NULL,3,0,1,1,0,NULL,NULL,NULL,1), -(4,2,'1','Membership Amount','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), -(5,4,'membership_amount','Membership','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), -(6,5,'other_amount','Contribution Amount','Text',0,NULL,NULL,3,0,1,1,1,NULL,NULL,NULL,1), -(7,6,'tournament_fees','Tournament Fees','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), -(8,7,'dinner_contribution','Dinner Contribution','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), -(9,8,'festival_fee','Festival Fee','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1); + (2,3,'contribution_amount','Contribution Amount','Radio',0,NULL,NULL,2,1,1,1,0,NULL,NULL,NULL,1), + (3,3,'other_amount','Additional Amount','Text',0,NULL,NULL,3,0,1,1,0,NULL,NULL,NULL,1), + (4,2,'1','Membership Amount','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), + (5,4,'membership_amount','Membership','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), + (6,5,'other_amount','Contribution Amount','Text',0,NULL,NULL,3,0,1,1,1,NULL,NULL,NULL,1), + (7,6,'tournament_fees','Tournament Fees','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), + (8,7,'dinner_contribution','Dinner Contribution','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1), + (9,8,'festival_fee','Festival Fee','Radio',0,NULL,NULL,1,1,1,1,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_price_field` ENABLE KEYS */; UNLOCK TABLES; @@ -7148,26 +7136,26 @@ LOCK TABLES `civicrm_price_field_value` WRITE; /*!40000 ALTER TABLE `civicrm_price_field_value` DISABLE KEYS */; INSERT INTO `civicrm_price_field_value` (`id`, `price_field_id`, `name`, `label`, `description`, `help_pre`, `help_post`, `amount`, `count`, `max_value`, `weight`, `membership_type_id`, `membership_num_terms`, `is_default`, `is_active`, `financial_type_id`, `non_deductible_amount`, `visibility_id`) VALUES (1,1,'contribution_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), -(2,2,'friend','Friend',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), -(3,2,'supporter','Supporter',NULL,NULL,NULL,5.000000000,NULL,NULL,2,NULL,NULL,0,1,1,0.00,1), -(4,2,'booster','Booster',NULL,NULL,NULL,10.000000000,NULL,NULL,3,NULL,NULL,1,1,1,0.00,1), -(5,2,'sustainer','Sustainer',NULL,NULL,NULL,50.000000000,NULL,NULL,4,NULL,NULL,0,1,1,0.00,1), -(6,3,'other_amount','Other Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,3,NULL,NULL,0,1,1,0.00,1), -(7,4,'general','General','Regular annual membership.',NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,0,1,2,0.00,1), -(8,4,'student','Student','Discount membership for full-time students.',NULL,NULL,50.000000000,NULL,NULL,2,2,NULL,0,1,2,0.00,1), -(9,4,'lifetime','Lifetime','Lifetime membership.',NULL,NULL,1200.000000000,NULL,NULL,3,3,NULL,0,1,2,0.00,1), -(10,5,'General','General',NULL,NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,1,1,2,0.00,1), -(11,5,'Student','Student',NULL,NULL,NULL,50.000000000,NULL,NULL,1,2,NULL,0,1,2,0.00,1), -(12,6,'other_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), -(13,7,'tiny_tots__ages_5_8_','Tiny-tots (ages 5-8)',NULL,NULL,NULL,800.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), -(14,7,'junior_Stars__ages_9_12_','Junior Stars (ages 9-12)',NULL,NULL,NULL,1000.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), -(15,7,'super_Stars__ages_13_18_','Super Stars (ages 13-18)',NULL,NULL,NULL,1500.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), -(16,8,'single','Single',NULL,NULL,NULL,50.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), -(17,8,'couple','Couple',NULL,NULL,NULL,100.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), -(18,8,'family','Family',NULL,NULL,NULL,200.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), -(19,9,'bass','Bass',NULL,NULL,NULL,25.000000000,NULL,NULL,1,NULL,NULL,1,1,2,0.00,1), -(20,9,'tenor','Tenor',NULL,NULL,NULL,40.000000000,NULL,NULL,2,NULL,NULL,0,1,2,0.00,1), -(21,9,'soprano','Soprano',NULL,NULL,NULL,50.000000000,NULL,NULL,3,NULL,NULL,0,1,2,0.00,1); + (2,2,'friend','Friend',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), + (3,2,'supporter','Supporter',NULL,NULL,NULL,5.000000000,NULL,NULL,2,NULL,NULL,0,1,1,0.00,1), + (4,2,'booster','Booster',NULL,NULL,NULL,10.000000000,NULL,NULL,3,NULL,NULL,1,1,1,0.00,1), + (5,2,'sustainer','Sustainer',NULL,NULL,NULL,50.000000000,NULL,NULL,4,NULL,NULL,0,1,1,0.00,1), + (6,3,'other_amount','Other Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,3,NULL,NULL,0,1,1,0.00,1), + (7,4,'general','General','Regular annual membership.',NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,0,1,2,0.00,1), + (8,4,'student','Student','Discount membership for full-time students.',NULL,NULL,50.000000000,NULL,NULL,2,2,NULL,0,1,2,0.00,1), + (9,4,'lifetime','Lifetime','Lifetime membership.',NULL,NULL,1200.000000000,NULL,NULL,3,3,NULL,0,1,2,0.00,1), + (10,5,'General','General',NULL,NULL,NULL,100.000000000,NULL,NULL,1,1,NULL,1,1,2,0.00,1), + (11,5,'Student','Student',NULL,NULL,NULL,50.000000000,NULL,NULL,1,2,NULL,0,1,2,0.00,1), + (12,6,'other_amount','Contribution Amount',NULL,NULL,NULL,1.000000000,NULL,NULL,1,NULL,NULL,0,1,1,0.00,1), + (13,7,'tiny_tots__ages_5_8_','Tiny-tots (ages 5-8)',NULL,NULL,NULL,800.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), + (14,7,'junior_Stars__ages_9_12_','Junior Stars (ages 9-12)',NULL,NULL,NULL,1000.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), + (15,7,'super_Stars__ages_13_18_','Super Stars (ages 13-18)',NULL,NULL,NULL,1500.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), + (16,8,'single','Single',NULL,NULL,NULL,50.000000000,NULL,NULL,1,NULL,NULL,1,1,4,0.00,1), + (17,8,'couple','Couple',NULL,NULL,NULL,100.000000000,NULL,NULL,2,NULL,NULL,0,1,4,0.00,1), + (18,8,'family','Family',NULL,NULL,NULL,200.000000000,NULL,NULL,3,NULL,NULL,0,1,4,0.00,1), + (19,9,'bass','Bass',NULL,NULL,NULL,25.000000000,NULL,NULL,1,NULL,NULL,1,1,2,0.00,1), + (20,9,'tenor','Tenor',NULL,NULL,NULL,40.000000000,NULL,NULL,2,NULL,NULL,0,1,2,0.00,1), + (21,9,'soprano','Soprano',NULL,NULL,NULL,50.000000000,NULL,NULL,3,NULL,NULL,0,1,2,0.00,1); /*!40000 ALTER TABLE `civicrm_price_field_value` ENABLE KEYS */; UNLOCK TABLES; @@ -7179,13 +7167,13 @@ LOCK TABLES `civicrm_price_set` WRITE; /*!40000 ALTER TABLE `civicrm_price_set` DISABLE KEYS */; INSERT INTO `civicrm_price_set` (`id`, `domain_id`, `name`, `title`, `is_active`, `help_pre`, `help_post`, `javascript`, `extends`, `financial_type_id`, `is_quick_config`, `is_reserved`, `min_amount`) VALUES (1,NULL,'default_contribution_amount','Contribution Amount',1,NULL,NULL,NULL,'2',NULL,1,1,0.00), -(2,NULL,'default_membership_type_amount','Membership Amount',1,NULL,NULL,NULL,'3',2,1,1,0.00), -(3,NULL,'help_support_civicrm_amount','Help Support CiviCRM!',1,NULL,NULL,NULL,'2',1,0,0,0.00), -(4,NULL,'member_signup_and_renewal','Member Signup and Renewal',1,NULL,NULL,NULL,'3',2,1,0,0.00), -(5,NULL,'pledge_for_civicrm','Pledge for CiviCRM!',1,NULL,NULL,NULL,'2',NULL,1,0,0.00), -(6,NULL,'rain_forest_cup_youth_soccer_tournament','Rain-forest Cup Youth Soccer Tournament',1,NULL,NULL,NULL,'1',3,1,0,0.00), -(7,NULL,'fall_fundraiser_dinner','Fall Fundraiser Dinner',1,NULL,NULL,NULL,'1',3,1,0,0.00), -(8,NULL,'summer_solstice_festival_day_concert','Summer Solstice Festival Day Concert',1,NULL,NULL,NULL,'1',3,0,0,0.00); + (2,NULL,'default_membership_type_amount','Membership Amount',1,NULL,NULL,NULL,'3',2,1,1,0.00), + (3,NULL,'help_support_civicrm_amount','Help Support CiviCRM!',1,NULL,NULL,NULL,'2',1,0,0,0.00), + (4,NULL,'member_signup_and_renewal','Member Signup and Renewal',1,NULL,NULL,NULL,'3',2,1,0,0.00), + (5,NULL,'pledge_for_civicrm','Pledge for CiviCRM!',1,NULL,NULL,NULL,'2',NULL,1,0,0.00), + (6,NULL,'rain_forest_cup_youth_soccer_tournament','Rain-forest Cup Youth Soccer Tournament',1,NULL,NULL,NULL,'1',3,1,0,0.00), + (7,NULL,'fall_fundraiser_dinner','Fall Fundraiser Dinner',1,NULL,NULL,NULL,'1',3,1,0,0.00), + (8,NULL,'summer_solstice_festival_day_concert','Summer Solstice Festival Day Concert',1,NULL,NULL,NULL,'1',3,0,0,0.00); /*!40000 ALTER TABLE `civicrm_price_set` ENABLE KEYS */; UNLOCK TABLES; @@ -7197,11 +7185,11 @@ LOCK TABLES `civicrm_price_set_entity` WRITE; /*!40000 ALTER TABLE `civicrm_price_set_entity` DISABLE KEYS */; INSERT INTO `civicrm_price_set_entity` (`id`, `entity_table`, `entity_id`, `price_set_id`) VALUES (1,'civicrm_contribution_page',1,3), -(2,'civicrm_contribution_page',2,4), -(3,'civicrm_contribution_page',3,5), -(4,'civicrm_event',3,6), -(5,'civicrm_event',1,7), -(6,'civicrm_event',2,8); + (2,'civicrm_contribution_page',2,4), + (3,'civicrm_contribution_page',3,5), + (4,'civicrm_event',3,6), + (5,'civicrm_event',1,7), + (6,'civicrm_event',2,8); /*!40000 ALTER TABLE `civicrm_price_set_entity` ENABLE KEYS */; UNLOCK TABLES; @@ -7261,220 +7249,222 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship` WRITE; /*!40000 ALTER TABLE `civicrm_relationship` DISABLE KEYS */; INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`, `created_date`, `modified_date`) VALUES - (1,31,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(2,35,118,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(3,31,67,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(4,35,67,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(5,35,31,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(6,67,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(7,31,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(8,35,119,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(9,118,119,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(10,67,118,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(11,6,140,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(12,176,140,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(13,6,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(14,176,137,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(15,176,6,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(16,137,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(17,6,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(18,176,129,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(19,140,129,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(20,137,140,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(21,26,101,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(22,44,101,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(23,26,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(24,44,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(25,44,26,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(26,102,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(27,26,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(28,44,78,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(29,101,78,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(30,102,101,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(31,152,91,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(32,142,91,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(33,152,74,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(34,142,74,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(35,142,152,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(36,74,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(37,152,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(38,142,36,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(39,91,36,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(40,74,91,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(41,98,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(42,165,201,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(43,98,56,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(44,165,56,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(45,165,98,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(46,56,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:04','2025-02-11 21:14:04'), -(47,98,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(48,165,43,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(49,201,43,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(50,56,201,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(51,141,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(52,82,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(53,141,11,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(54,82,11,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(55,82,141,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(56,11,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(57,141,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(58,82,124,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(59,60,124,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(60,11,60,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(61,20,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(62,112,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(63,20,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(64,112,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(65,112,20,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(66,168,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(67,20,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(68,112,135,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(69,19,135,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(70,168,19,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(71,110,178,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(72,49,178,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(73,110,113,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(74,49,113,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(75,49,110,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(76,113,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(77,110,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(78,49,194,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(79,178,194,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(80,113,178,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(81,122,115,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(82,197,115,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(83,122,190,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(84,197,190,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(85,197,122,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(86,190,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(87,122,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(88,197,15,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(89,115,15,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(90,190,115,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(91,75,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(92,103,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(93,75,68,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(94,103,68,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(95,103,75,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(96,68,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(97,75,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(98,103,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(99,87,127,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(100,68,87,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(101,130,14,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(102,188,14,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(103,130,157,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(104,188,157,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(105,188,130,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(106,157,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(107,130,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(108,188,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(109,14,47,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(110,157,14,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(111,58,164,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(112,114,164,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(113,58,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(114,114,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(115,114,58,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(116,16,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(117,58,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(118,114,134,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(119,164,134,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(120,16,164,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(121,100,76,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(122,120,76,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(123,100,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(124,120,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(125,120,100,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(126,30,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(127,100,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(128,120,2,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(129,76,2,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(130,30,76,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(131,55,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(132,65,90,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(133,55,21,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(134,65,21,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(135,65,55,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(136,21,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(137,55,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(138,65,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(139,90,51,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(140,21,90,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(141,162,117,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(142,180,117,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(143,162,173,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(144,180,173,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(145,180,162,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(146,173,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(147,162,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(148,180,53,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(149,117,53,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(150,173,117,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(151,175,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(152,80,199,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(153,175,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(154,80,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(155,80,175,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(156,105,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(157,175,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(158,80,41,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(159,199,41,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(160,105,199,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(161,29,104,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(162,160,104,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(163,29,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(164,160,57,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(165,160,29,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(166,57,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(167,29,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(168,160,28,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(169,104,28,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(170,57,104,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(171,92,8,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(172,48,8,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(173,92,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(174,48,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(175,48,92,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(176,171,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(177,92,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(178,48,42,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(179,8,42,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(180,171,8,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(181,161,138,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(182,54,138,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(183,161,89,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(184,54,89,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(185,54,161,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(186,89,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(187,161,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(188,54,111,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(189,138,111,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(190,89,138,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(191,167,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(192,38,88,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(193,167,50,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(194,38,50,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(195,38,167,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(196,50,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(197,167,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(198,38,183,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:05','2025-02-11 21:14:05'), -(199,88,183,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(200,50,88,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(201,18,3,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(202,87,34,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(203,91,46,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(204,97,109,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(205,162,131,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(206,143,136,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(207,30,144,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(208,68,149,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(209,58,155,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(210,39,156,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(211,60,158,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(212,56,181,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(213,125,191,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'), -(214,27,196,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 21:14:06','2025-02-11 21:14:06'); + (1,144,63,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (2,28,63,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (3,144,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (4,28,30,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (5,28,144,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (6,30,34,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (7,144,34,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (8,28,34,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (9,63,34,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (10,30,63,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (11,76,4,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (12,192,4,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (13,76,15,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (14,192,15,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (15,192,76,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (16,15,110,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (17,76,110,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (18,192,110,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (19,4,110,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (20,15,4,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (21,20,200,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (22,161,200,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (23,20,45,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (24,161,45,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (25,161,20,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (26,45,158,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (27,20,158,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (28,161,158,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (29,200,158,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (30,45,200,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (31,48,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (32,68,171,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (33,48,174,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (34,68,174,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (35,68,48,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (36,174,113,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (37,48,113,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (38,68,113,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (39,171,113,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (40,174,171,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (41,191,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (42,66,168,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (43,191,175,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (44,66,175,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (45,66,191,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (46,175,155,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (47,191,155,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (48,66,155,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (49,168,155,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (50,175,168,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (51,75,111,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (52,187,111,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (53,75,122,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (54,187,122,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (55,187,75,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (56,122,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (57,75,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (58,187,47,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (59,111,47,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (60,122,111,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (61,126,92,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (62,73,92,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (63,126,64,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (64,73,64,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (65,73,126,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (66,64,130,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (67,126,130,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (68,73,130,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (69,92,130,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (70,64,92,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (71,123,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (72,201,105,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (73,123,162,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (74,201,162,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (75,201,123,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (76,162,167,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (77,123,167,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (78,201,167,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (79,105,167,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (80,162,105,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (81,79,5,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (82,88,5,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (83,79,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (84,88,16,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (85,88,79,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (86,16,197,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (87,79,197,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (88,88,197,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (89,5,197,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (90,16,5,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (91,14,141,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (92,26,141,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (93,14,194,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (94,26,194,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (95,26,14,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (96,194,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (97,14,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (98,26,127,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (99,141,127,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (100,194,141,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (101,150,65,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (102,37,65,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (103,150,71,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (104,37,71,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (105,37,150,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (106,71,61,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (107,150,61,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (108,37,61,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (109,65,61,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (110,71,65,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (111,89,124,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (112,181,124,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (113,89,120,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (114,181,120,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (115,181,89,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (116,120,82,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (117,89,82,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (118,181,82,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (119,124,82,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (120,120,124,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (121,27,25,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (122,189,25,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (123,27,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (124,189,19,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (125,189,27,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (126,19,80,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (127,27,80,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (128,189,80,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (129,25,80,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (130,19,25,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (131,98,86,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (132,43,86,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (133,98,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (134,43,87,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (135,43,98,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (136,87,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (137,98,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (138,43,51,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (139,86,51,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (140,87,86,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (141,145,121,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (142,54,121,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (143,145,24,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (144,54,24,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (145,54,145,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (146,24,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (147,145,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (148,54,180,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (149,121,180,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (150,24,121,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (151,184,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (152,199,60,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (153,184,172,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (154,199,172,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (155,199,184,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (156,172,8,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (157,184,8,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (158,199,8,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (159,60,8,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (160,172,60,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (161,97,149,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (162,165,149,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (163,97,132,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (164,165,132,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (165,165,97,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (166,132,179,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (167,97,179,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (168,165,179,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (169,149,179,7,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (170,132,149,2,NULL,NULL,0,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (171,13,42,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (172,56,42,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (173,13,151,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (174,56,151,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (175,56,13,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (176,151,7,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (177,13,7,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (178,56,7,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (179,42,7,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (180,151,42,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (181,139,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (182,129,102,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (183,139,186,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (184,129,186,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (185,129,139,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (186,186,32,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (187,139,32,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (188,129,32,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (189,102,32,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (190,186,102,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (191,12,93,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (192,159,93,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (193,12,99,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (194,159,99,1,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (195,159,12,4,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (196,99,40,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (197,12,40,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (198,159,40,8,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (199,93,40,7,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (200,99,93,2,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (201,145,3,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (202,171,21,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (203,86,36,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (204,115,58,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (205,96,77,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (206,30,83,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (207,22,85,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (208,72,90,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (209,139,103,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (210,54,107,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (211,11,128,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (212,201,134,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (213,175,136,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (214,95,152,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (215,198,170,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'), + (216,199,173,5,NULL,NULL,1,NULL,0,0,NULL,'2025-02-11 22:13:23','2025-02-11 22:13:23'); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -7485,434 +7475,438 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship_cache` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_cache` DISABLE KEYS */; INSERT INTO `civicrm_relationship_cache` (`id`, `relationship_id`, `relationship_type_id`, `orientation`, `near_contact_id`, `near_relation`, `far_contact_id`, `far_relation`, `is_active`, `start_date`, `end_date`, `case_id`) VALUES - (1,1,1,'a_b',31,'Child of',118,'Parent of',1,NULL,NULL,NULL), -(2,1,1,'b_a',118,'Parent of',31,'Child of',1,NULL,NULL,NULL), -(3,2,1,'a_b',35,'Child of',118,'Parent of',1,NULL,NULL,NULL), -(4,2,1,'b_a',118,'Parent of',35,'Child of',1,NULL,NULL,NULL), -(5,3,1,'a_b',31,'Child of',67,'Parent of',1,NULL,NULL,NULL), -(6,3,1,'b_a',67,'Parent of',31,'Child of',1,NULL,NULL,NULL), -(7,4,1,'a_b',35,'Child of',67,'Parent of',1,NULL,NULL,NULL), -(8,4,1,'b_a',67,'Parent of',35,'Child of',1,NULL,NULL,NULL), -(9,5,4,'a_b',35,'Sibling of',31,'Sibling of',1,NULL,NULL,NULL), -(10,5,4,'b_a',31,'Sibling of',35,'Sibling of',1,NULL,NULL,NULL), -(11,6,8,'a_b',67,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), -(12,6,8,'b_a',119,'Household Member is',67,'Household Member of',1,NULL,NULL,NULL), -(13,7,8,'a_b',31,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), -(14,7,8,'b_a',119,'Household Member is',31,'Household Member of',1,NULL,NULL,NULL), -(15,8,8,'a_b',35,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), -(16,8,8,'b_a',119,'Household Member is',35,'Household Member of',1,NULL,NULL,NULL), -(17,9,7,'a_b',118,'Head of Household for',119,'Head of Household is',0,NULL,NULL,NULL), -(18,9,7,'b_a',119,'Head of Household is',118,'Head of Household for',0,NULL,NULL,NULL), -(19,10,2,'a_b',67,'Spouse of',118,'Spouse of',0,NULL,NULL,NULL), -(20,10,2,'b_a',118,'Spouse of',67,'Spouse of',0,NULL,NULL,NULL), -(21,11,1,'a_b',6,'Child of',140,'Parent of',1,NULL,NULL,NULL), -(22,11,1,'b_a',140,'Parent of',6,'Child of',1,NULL,NULL,NULL), -(23,12,1,'a_b',176,'Child of',140,'Parent of',1,NULL,NULL,NULL), -(24,12,1,'b_a',140,'Parent of',176,'Child of',1,NULL,NULL,NULL), -(25,13,1,'a_b',6,'Child of',137,'Parent of',1,NULL,NULL,NULL), -(26,13,1,'b_a',137,'Parent of',6,'Child of',1,NULL,NULL,NULL), -(27,14,1,'a_b',176,'Child of',137,'Parent of',1,NULL,NULL,NULL), -(28,14,1,'b_a',137,'Parent of',176,'Child of',1,NULL,NULL,NULL), -(29,15,4,'a_b',176,'Sibling of',6,'Sibling of',1,NULL,NULL,NULL), -(30,15,4,'b_a',6,'Sibling of',176,'Sibling of',1,NULL,NULL,NULL), -(31,16,8,'a_b',137,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), -(32,16,8,'b_a',129,'Household Member is',137,'Household Member of',1,NULL,NULL,NULL), -(33,17,8,'a_b',6,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), -(34,17,8,'b_a',129,'Household Member is',6,'Household Member of',1,NULL,NULL,NULL), -(35,18,8,'a_b',176,'Household Member of',129,'Household Member is',1,NULL,NULL,NULL), -(36,18,8,'b_a',129,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL), -(37,19,7,'a_b',140,'Head of Household for',129,'Head of Household is',0,NULL,NULL,NULL), -(38,19,7,'b_a',129,'Head of Household is',140,'Head of Household for',0,NULL,NULL,NULL), -(39,20,2,'a_b',137,'Spouse of',140,'Spouse of',0,NULL,NULL,NULL), -(40,20,2,'b_a',140,'Spouse of',137,'Spouse of',0,NULL,NULL,NULL), -(41,21,1,'a_b',26,'Child of',101,'Parent of',1,NULL,NULL,NULL), -(42,21,1,'b_a',101,'Parent of',26,'Child of',1,NULL,NULL,NULL), -(43,22,1,'a_b',44,'Child of',101,'Parent of',1,NULL,NULL,NULL), -(44,22,1,'b_a',101,'Parent of',44,'Child of',1,NULL,NULL,NULL), -(45,23,1,'a_b',26,'Child of',102,'Parent of',1,NULL,NULL,NULL), -(46,23,1,'b_a',102,'Parent of',26,'Child of',1,NULL,NULL,NULL), -(47,24,1,'a_b',44,'Child of',102,'Parent of',1,NULL,NULL,NULL), -(48,24,1,'b_a',102,'Parent of',44,'Child of',1,NULL,NULL,NULL), -(49,25,4,'a_b',44,'Sibling of',26,'Sibling of',1,NULL,NULL,NULL), -(50,25,4,'b_a',26,'Sibling of',44,'Sibling of',1,NULL,NULL,NULL), -(51,26,8,'a_b',102,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), -(52,26,8,'b_a',78,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), -(53,27,8,'a_b',26,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), -(54,27,8,'b_a',78,'Household Member is',26,'Household Member of',1,NULL,NULL,NULL), -(55,28,8,'a_b',44,'Household Member of',78,'Household Member is',1,NULL,NULL,NULL), -(56,28,8,'b_a',78,'Household Member is',44,'Household Member of',1,NULL,NULL,NULL), -(57,29,7,'a_b',101,'Head of Household for',78,'Head of Household is',0,NULL,NULL,NULL), -(58,29,7,'b_a',78,'Head of Household is',101,'Head of Household for',0,NULL,NULL,NULL), -(59,30,2,'a_b',102,'Spouse of',101,'Spouse of',0,NULL,NULL,NULL), -(60,30,2,'b_a',101,'Spouse of',102,'Spouse of',0,NULL,NULL,NULL), -(61,31,1,'a_b',152,'Child of',91,'Parent of',1,NULL,NULL,NULL), -(62,31,1,'b_a',91,'Parent of',152,'Child of',1,NULL,NULL,NULL), -(63,32,1,'a_b',142,'Child of',91,'Parent of',1,NULL,NULL,NULL), -(64,32,1,'b_a',91,'Parent of',142,'Child of',1,NULL,NULL,NULL), -(65,33,1,'a_b',152,'Child of',74,'Parent of',1,NULL,NULL,NULL), -(66,33,1,'b_a',74,'Parent of',152,'Child of',1,NULL,NULL,NULL), -(67,34,1,'a_b',142,'Child of',74,'Parent of',1,NULL,NULL,NULL), -(68,34,1,'b_a',74,'Parent of',142,'Child of',1,NULL,NULL,NULL), -(69,35,4,'a_b',142,'Sibling of',152,'Sibling of',1,NULL,NULL,NULL), -(70,35,4,'b_a',152,'Sibling of',142,'Sibling of',1,NULL,NULL,NULL), -(71,36,8,'a_b',74,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), -(72,36,8,'b_a',36,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL), -(73,37,8,'a_b',152,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), -(74,37,8,'b_a',36,'Household Member is',152,'Household Member of',1,NULL,NULL,NULL), -(75,38,8,'a_b',142,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL), -(76,38,8,'b_a',36,'Household Member is',142,'Household Member of',1,NULL,NULL,NULL), -(77,39,7,'a_b',91,'Head of Household for',36,'Head of Household is',0,NULL,NULL,NULL), -(78,39,7,'b_a',36,'Head of Household is',91,'Head of Household for',0,NULL,NULL,NULL), -(79,40,2,'a_b',74,'Spouse of',91,'Spouse of',0,NULL,NULL,NULL), -(80,40,2,'b_a',91,'Spouse of',74,'Spouse of',0,NULL,NULL,NULL), -(81,41,1,'a_b',98,'Child of',201,'Parent of',1,NULL,NULL,NULL), -(82,41,1,'b_a',201,'Parent of',98,'Child of',1,NULL,NULL,NULL), -(83,42,1,'a_b',165,'Child of',201,'Parent of',1,NULL,NULL,NULL), -(84,42,1,'b_a',201,'Parent of',165,'Child of',1,NULL,NULL,NULL), -(85,43,1,'a_b',98,'Child of',56,'Parent of',1,NULL,NULL,NULL), -(86,43,1,'b_a',56,'Parent of',98,'Child of',1,NULL,NULL,NULL), -(87,44,1,'a_b',165,'Child of',56,'Parent of',1,NULL,NULL,NULL), -(88,44,1,'b_a',56,'Parent of',165,'Child of',1,NULL,NULL,NULL), -(89,45,4,'a_b',165,'Sibling of',98,'Sibling of',1,NULL,NULL,NULL), -(90,45,4,'b_a',98,'Sibling of',165,'Sibling of',1,NULL,NULL,NULL), -(91,46,8,'a_b',56,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), -(92,46,8,'b_a',43,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), -(93,47,8,'a_b',98,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), -(94,47,8,'b_a',43,'Household Member is',98,'Household Member of',1,NULL,NULL,NULL), -(95,48,8,'a_b',165,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), -(96,48,8,'b_a',43,'Household Member is',165,'Household Member of',1,NULL,NULL,NULL), -(97,49,7,'a_b',201,'Head of Household for',43,'Head of Household is',1,NULL,NULL,NULL), -(98,49,7,'b_a',43,'Head of Household is',201,'Head of Household for',1,NULL,NULL,NULL), -(99,50,2,'a_b',56,'Spouse of',201,'Spouse of',1,NULL,NULL,NULL), -(100,50,2,'b_a',201,'Spouse of',56,'Spouse of',1,NULL,NULL,NULL), -(101,51,1,'a_b',141,'Child of',60,'Parent of',1,NULL,NULL,NULL), -(102,51,1,'b_a',60,'Parent of',141,'Child of',1,NULL,NULL,NULL), -(103,52,1,'a_b',82,'Child of',60,'Parent of',1,NULL,NULL,NULL), -(104,52,1,'b_a',60,'Parent of',82,'Child of',1,NULL,NULL,NULL), -(105,53,1,'a_b',141,'Child of',11,'Parent of',1,NULL,NULL,NULL), -(106,53,1,'b_a',11,'Parent of',141,'Child of',1,NULL,NULL,NULL), -(107,54,1,'a_b',82,'Child of',11,'Parent of',1,NULL,NULL,NULL), -(108,54,1,'b_a',11,'Parent of',82,'Child of',1,NULL,NULL,NULL), -(109,55,4,'a_b',82,'Sibling of',141,'Sibling of',1,NULL,NULL,NULL), -(110,55,4,'b_a',141,'Sibling of',82,'Sibling of',1,NULL,NULL,NULL), -(111,56,8,'a_b',11,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), -(112,56,8,'b_a',124,'Household Member is',11,'Household Member of',1,NULL,NULL,NULL), -(113,57,8,'a_b',141,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), -(114,57,8,'b_a',124,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL), -(115,58,8,'a_b',82,'Household Member of',124,'Household Member is',1,NULL,NULL,NULL), -(116,58,8,'b_a',124,'Household Member is',82,'Household Member of',1,NULL,NULL,NULL), -(117,59,7,'a_b',60,'Head of Household for',124,'Head of Household is',1,NULL,NULL,NULL), -(118,59,7,'b_a',124,'Head of Household is',60,'Head of Household for',1,NULL,NULL,NULL), -(119,60,2,'a_b',11,'Spouse of',60,'Spouse of',1,NULL,NULL,NULL), -(120,60,2,'b_a',60,'Spouse of',11,'Spouse of',1,NULL,NULL,NULL), -(121,61,1,'a_b',20,'Child of',19,'Parent of',1,NULL,NULL,NULL), -(122,61,1,'b_a',19,'Parent of',20,'Child of',1,NULL,NULL,NULL), -(123,62,1,'a_b',112,'Child of',19,'Parent of',1,NULL,NULL,NULL), -(124,62,1,'b_a',19,'Parent of',112,'Child of',1,NULL,NULL,NULL), -(125,63,1,'a_b',20,'Child of',168,'Parent of',1,NULL,NULL,NULL), -(126,63,1,'b_a',168,'Parent of',20,'Child of',1,NULL,NULL,NULL), -(127,64,1,'a_b',112,'Child of',168,'Parent of',1,NULL,NULL,NULL), -(128,64,1,'b_a',168,'Parent of',112,'Child of',1,NULL,NULL,NULL), -(129,65,4,'a_b',112,'Sibling of',20,'Sibling of',1,NULL,NULL,NULL), -(130,65,4,'b_a',20,'Sibling of',112,'Sibling of',1,NULL,NULL,NULL), -(131,66,8,'a_b',168,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), -(132,66,8,'b_a',135,'Household Member is',168,'Household Member of',1,NULL,NULL,NULL), -(133,67,8,'a_b',20,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), -(134,67,8,'b_a',135,'Household Member is',20,'Household Member of',1,NULL,NULL,NULL), -(135,68,8,'a_b',112,'Household Member of',135,'Household Member is',1,NULL,NULL,NULL), -(136,68,8,'b_a',135,'Household Member is',112,'Household Member of',1,NULL,NULL,NULL), -(137,69,7,'a_b',19,'Head of Household for',135,'Head of Household is',1,NULL,NULL,NULL), -(138,69,7,'b_a',135,'Head of Household is',19,'Head of Household for',1,NULL,NULL,NULL), -(139,70,2,'a_b',168,'Spouse of',19,'Spouse of',1,NULL,NULL,NULL), -(140,70,2,'b_a',19,'Spouse of',168,'Spouse of',1,NULL,NULL,NULL), -(141,71,1,'a_b',110,'Child of',178,'Parent of',1,NULL,NULL,NULL), -(142,71,1,'b_a',178,'Parent of',110,'Child of',1,NULL,NULL,NULL), -(143,72,1,'a_b',49,'Child of',178,'Parent of',1,NULL,NULL,NULL), -(144,72,1,'b_a',178,'Parent of',49,'Child of',1,NULL,NULL,NULL), -(145,73,1,'a_b',110,'Child of',113,'Parent of',1,NULL,NULL,NULL), -(146,73,1,'b_a',113,'Parent of',110,'Child of',1,NULL,NULL,NULL), -(147,74,1,'a_b',49,'Child of',113,'Parent of',1,NULL,NULL,NULL), -(148,74,1,'b_a',113,'Parent of',49,'Child of',1,NULL,NULL,NULL), -(149,75,4,'a_b',49,'Sibling of',110,'Sibling of',1,NULL,NULL,NULL), -(150,75,4,'b_a',110,'Sibling of',49,'Sibling of',1,NULL,NULL,NULL), -(151,76,8,'a_b',113,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), -(152,76,8,'b_a',194,'Household Member is',113,'Household Member of',1,NULL,NULL,NULL), -(153,77,8,'a_b',110,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), -(154,77,8,'b_a',194,'Household Member is',110,'Household Member of',1,NULL,NULL,NULL), -(155,78,8,'a_b',49,'Household Member of',194,'Household Member is',1,NULL,NULL,NULL), -(156,78,8,'b_a',194,'Household Member is',49,'Household Member of',1,NULL,NULL,NULL), -(157,79,7,'a_b',178,'Head of Household for',194,'Head of Household is',0,NULL,NULL,NULL), -(158,79,7,'b_a',194,'Head of Household is',178,'Head of Household for',0,NULL,NULL,NULL), -(159,80,2,'a_b',113,'Spouse of',178,'Spouse of',0,NULL,NULL,NULL), -(160,80,2,'b_a',178,'Spouse of',113,'Spouse of',0,NULL,NULL,NULL), -(161,81,1,'a_b',122,'Child of',115,'Parent of',1,NULL,NULL,NULL), -(162,81,1,'b_a',115,'Parent of',122,'Child of',1,NULL,NULL,NULL), -(163,82,1,'a_b',197,'Child of',115,'Parent of',1,NULL,NULL,NULL), -(164,82,1,'b_a',115,'Parent of',197,'Child of',1,NULL,NULL,NULL), -(165,83,1,'a_b',122,'Child of',190,'Parent of',1,NULL,NULL,NULL), -(166,83,1,'b_a',190,'Parent of',122,'Child of',1,NULL,NULL,NULL), -(167,84,1,'a_b',197,'Child of',190,'Parent of',1,NULL,NULL,NULL), -(168,84,1,'b_a',190,'Parent of',197,'Child of',1,NULL,NULL,NULL), -(169,85,4,'a_b',197,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL), -(170,85,4,'b_a',122,'Sibling of',197,'Sibling of',1,NULL,NULL,NULL), -(171,86,8,'a_b',190,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), -(172,86,8,'b_a',15,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL), -(173,87,8,'a_b',122,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), -(174,87,8,'b_a',15,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), -(175,88,8,'a_b',197,'Household Member of',15,'Household Member is',1,NULL,NULL,NULL), -(176,88,8,'b_a',15,'Household Member is',197,'Household Member of',1,NULL,NULL,NULL), -(177,89,7,'a_b',115,'Head of Household for',15,'Head of Household is',0,NULL,NULL,NULL), -(178,89,7,'b_a',15,'Head of Household is',115,'Head of Household for',0,NULL,NULL,NULL), -(179,90,2,'a_b',190,'Spouse of',115,'Spouse of',0,NULL,NULL,NULL), -(180,90,2,'b_a',115,'Spouse of',190,'Spouse of',0,NULL,NULL,NULL), -(181,91,1,'a_b',75,'Child of',87,'Parent of',1,NULL,NULL,NULL), -(182,91,1,'b_a',87,'Parent of',75,'Child of',1,NULL,NULL,NULL), -(183,92,1,'a_b',103,'Child of',87,'Parent of',1,NULL,NULL,NULL), -(184,92,1,'b_a',87,'Parent of',103,'Child of',1,NULL,NULL,NULL), -(185,93,1,'a_b',75,'Child of',68,'Parent of',1,NULL,NULL,NULL), -(186,93,1,'b_a',68,'Parent of',75,'Child of',1,NULL,NULL,NULL), -(187,94,1,'a_b',103,'Child of',68,'Parent of',1,NULL,NULL,NULL), -(188,94,1,'b_a',68,'Parent of',103,'Child of',1,NULL,NULL,NULL), -(189,95,4,'a_b',103,'Sibling of',75,'Sibling of',1,NULL,NULL,NULL), -(190,95,4,'b_a',75,'Sibling of',103,'Sibling of',1,NULL,NULL,NULL), -(191,96,8,'a_b',68,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), -(192,96,8,'b_a',127,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL), -(193,97,8,'a_b',75,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), -(194,97,8,'b_a',127,'Household Member is',75,'Household Member of',1,NULL,NULL,NULL), -(195,98,8,'a_b',103,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), -(196,98,8,'b_a',127,'Household Member is',103,'Household Member of',1,NULL,NULL,NULL), -(197,99,7,'a_b',87,'Head of Household for',127,'Head of Household is',0,NULL,NULL,NULL), -(198,99,7,'b_a',127,'Head of Household is',87,'Head of Household for',0,NULL,NULL,NULL), -(199,100,2,'a_b',68,'Spouse of',87,'Spouse of',0,NULL,NULL,NULL), -(200,100,2,'b_a',87,'Spouse of',68,'Spouse of',0,NULL,NULL,NULL), -(201,101,1,'a_b',130,'Child of',14,'Parent of',1,NULL,NULL,NULL), -(202,101,1,'b_a',14,'Parent of',130,'Child of',1,NULL,NULL,NULL), -(203,102,1,'a_b',188,'Child of',14,'Parent of',1,NULL,NULL,NULL), -(204,102,1,'b_a',14,'Parent of',188,'Child of',1,NULL,NULL,NULL), -(205,103,1,'a_b',130,'Child of',157,'Parent of',1,NULL,NULL,NULL), -(206,103,1,'b_a',157,'Parent of',130,'Child of',1,NULL,NULL,NULL), -(207,104,1,'a_b',188,'Child of',157,'Parent of',1,NULL,NULL,NULL), -(208,104,1,'b_a',157,'Parent of',188,'Child of',1,NULL,NULL,NULL), -(209,105,4,'a_b',188,'Sibling of',130,'Sibling of',1,NULL,NULL,NULL), -(210,105,4,'b_a',130,'Sibling of',188,'Sibling of',1,NULL,NULL,NULL), -(211,106,8,'a_b',157,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), -(212,106,8,'b_a',47,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL), -(213,107,8,'a_b',130,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), -(214,107,8,'b_a',47,'Household Member is',130,'Household Member of',1,NULL,NULL,NULL), -(215,108,8,'a_b',188,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), -(216,108,8,'b_a',47,'Household Member is',188,'Household Member of',1,NULL,NULL,NULL), -(217,109,7,'a_b',14,'Head of Household for',47,'Head of Household is',1,NULL,NULL,NULL), -(218,109,7,'b_a',47,'Head of Household is',14,'Head of Household for',1,NULL,NULL,NULL), -(219,110,2,'a_b',157,'Spouse of',14,'Spouse of',1,NULL,NULL,NULL), -(220,110,2,'b_a',14,'Spouse of',157,'Spouse of',1,NULL,NULL,NULL), -(221,111,1,'a_b',58,'Child of',164,'Parent of',1,NULL,NULL,NULL), -(222,111,1,'b_a',164,'Parent of',58,'Child of',1,NULL,NULL,NULL), -(223,112,1,'a_b',114,'Child of',164,'Parent of',1,NULL,NULL,NULL), -(224,112,1,'b_a',164,'Parent of',114,'Child of',1,NULL,NULL,NULL), -(225,113,1,'a_b',58,'Child of',16,'Parent of',1,NULL,NULL,NULL), -(226,113,1,'b_a',16,'Parent of',58,'Child of',1,NULL,NULL,NULL), -(227,114,1,'a_b',114,'Child of',16,'Parent of',1,NULL,NULL,NULL), -(228,114,1,'b_a',16,'Parent of',114,'Child of',1,NULL,NULL,NULL), -(229,115,4,'a_b',114,'Sibling of',58,'Sibling of',1,NULL,NULL,NULL), -(230,115,4,'b_a',58,'Sibling of',114,'Sibling of',1,NULL,NULL,NULL), -(231,116,8,'a_b',16,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), -(232,116,8,'b_a',134,'Household Member is',16,'Household Member of',1,NULL,NULL,NULL), -(233,117,8,'a_b',58,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), -(234,117,8,'b_a',134,'Household Member is',58,'Household Member of',1,NULL,NULL,NULL), -(235,118,8,'a_b',114,'Household Member of',134,'Household Member is',1,NULL,NULL,NULL), -(236,118,8,'b_a',134,'Household Member is',114,'Household Member of',1,NULL,NULL,NULL), -(237,119,7,'a_b',164,'Head of Household for',134,'Head of Household is',0,NULL,NULL,NULL), -(238,119,7,'b_a',134,'Head of Household is',164,'Head of Household for',0,NULL,NULL,NULL), -(239,120,2,'a_b',16,'Spouse of',164,'Spouse of',0,NULL,NULL,NULL), -(240,120,2,'b_a',164,'Spouse of',16,'Spouse of',0,NULL,NULL,NULL), -(241,121,1,'a_b',100,'Child of',76,'Parent of',1,NULL,NULL,NULL), -(242,121,1,'b_a',76,'Parent of',100,'Child of',1,NULL,NULL,NULL), -(243,122,1,'a_b',120,'Child of',76,'Parent of',1,NULL,NULL,NULL), -(244,122,1,'b_a',76,'Parent of',120,'Child of',1,NULL,NULL,NULL), -(245,123,1,'a_b',100,'Child of',30,'Parent of',1,NULL,NULL,NULL), -(246,123,1,'b_a',30,'Parent of',100,'Child of',1,NULL,NULL,NULL), -(247,124,1,'a_b',120,'Child of',30,'Parent of',1,NULL,NULL,NULL), -(248,124,1,'b_a',30,'Parent of',120,'Child of',1,NULL,NULL,NULL), -(249,125,4,'a_b',120,'Sibling of',100,'Sibling of',1,NULL,NULL,NULL), -(250,125,4,'b_a',100,'Sibling of',120,'Sibling of',1,NULL,NULL,NULL), -(251,126,8,'a_b',30,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), -(252,126,8,'b_a',2,'Household Member is',30,'Household Member of',1,NULL,NULL,NULL), -(253,127,8,'a_b',100,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), -(254,127,8,'b_a',2,'Household Member is',100,'Household Member of',1,NULL,NULL,NULL), -(255,128,8,'a_b',120,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL), -(256,128,8,'b_a',2,'Household Member is',120,'Household Member of',1,NULL,NULL,NULL), -(257,129,7,'a_b',76,'Head of Household for',2,'Head of Household is',1,NULL,NULL,NULL), -(258,129,7,'b_a',2,'Head of Household is',76,'Head of Household for',1,NULL,NULL,NULL), -(259,130,2,'a_b',30,'Spouse of',76,'Spouse of',1,NULL,NULL,NULL), -(260,130,2,'b_a',76,'Spouse of',30,'Spouse of',1,NULL,NULL,NULL), -(261,131,1,'a_b',55,'Child of',90,'Parent of',1,NULL,NULL,NULL), -(262,131,1,'b_a',90,'Parent of',55,'Child of',1,NULL,NULL,NULL), -(263,132,1,'a_b',65,'Child of',90,'Parent of',1,NULL,NULL,NULL), -(264,132,1,'b_a',90,'Parent of',65,'Child of',1,NULL,NULL,NULL), -(265,133,1,'a_b',55,'Child of',21,'Parent of',1,NULL,NULL,NULL), -(266,133,1,'b_a',21,'Parent of',55,'Child of',1,NULL,NULL,NULL), -(267,134,1,'a_b',65,'Child of',21,'Parent of',1,NULL,NULL,NULL), -(268,134,1,'b_a',21,'Parent of',65,'Child of',1,NULL,NULL,NULL), -(269,135,4,'a_b',65,'Sibling of',55,'Sibling of',1,NULL,NULL,NULL), -(270,135,4,'b_a',55,'Sibling of',65,'Sibling of',1,NULL,NULL,NULL), -(271,136,8,'a_b',21,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), -(272,136,8,'b_a',51,'Household Member is',21,'Household Member of',1,NULL,NULL,NULL), -(273,137,8,'a_b',55,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), -(274,137,8,'b_a',51,'Household Member is',55,'Household Member of',1,NULL,NULL,NULL), -(275,138,8,'a_b',65,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), -(276,138,8,'b_a',51,'Household Member is',65,'Household Member of',1,NULL,NULL,NULL), -(277,139,7,'a_b',90,'Head of Household for',51,'Head of Household is',0,NULL,NULL,NULL), -(278,139,7,'b_a',51,'Head of Household is',90,'Head of Household for',0,NULL,NULL,NULL), -(279,140,2,'a_b',21,'Spouse of',90,'Spouse of',0,NULL,NULL,NULL), -(280,140,2,'b_a',90,'Spouse of',21,'Spouse of',0,NULL,NULL,NULL), -(281,141,1,'a_b',162,'Child of',117,'Parent of',1,NULL,NULL,NULL), -(282,141,1,'b_a',117,'Parent of',162,'Child of',1,NULL,NULL,NULL), -(283,142,1,'a_b',180,'Child of',117,'Parent of',1,NULL,NULL,NULL), -(284,142,1,'b_a',117,'Parent of',180,'Child of',1,NULL,NULL,NULL), -(285,143,1,'a_b',162,'Child of',173,'Parent of',1,NULL,NULL,NULL), -(286,143,1,'b_a',173,'Parent of',162,'Child of',1,NULL,NULL,NULL), -(287,144,1,'a_b',180,'Child of',173,'Parent of',1,NULL,NULL,NULL), -(288,144,1,'b_a',173,'Parent of',180,'Child of',1,NULL,NULL,NULL), -(289,145,4,'a_b',180,'Sibling of',162,'Sibling of',1,NULL,NULL,NULL), -(290,145,4,'b_a',162,'Sibling of',180,'Sibling of',1,NULL,NULL,NULL), -(291,146,8,'a_b',173,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), -(292,146,8,'b_a',53,'Household Member is',173,'Household Member of',1,NULL,NULL,NULL), -(293,147,8,'a_b',162,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), -(294,147,8,'b_a',53,'Household Member is',162,'Household Member of',1,NULL,NULL,NULL), -(295,148,8,'a_b',180,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL), -(296,148,8,'b_a',53,'Household Member is',180,'Household Member of',1,NULL,NULL,NULL), -(297,149,7,'a_b',117,'Head of Household for',53,'Head of Household is',1,NULL,NULL,NULL), -(298,149,7,'b_a',53,'Head of Household is',117,'Head of Household for',1,NULL,NULL,NULL), -(299,150,2,'a_b',173,'Spouse of',117,'Spouse of',1,NULL,NULL,NULL), -(300,150,2,'b_a',117,'Spouse of',173,'Spouse of',1,NULL,NULL,NULL), -(301,151,1,'a_b',175,'Child of',199,'Parent of',1,NULL,NULL,NULL), -(302,151,1,'b_a',199,'Parent of',175,'Child of',1,NULL,NULL,NULL), -(303,152,1,'a_b',80,'Child of',199,'Parent of',1,NULL,NULL,NULL), -(304,152,1,'b_a',199,'Parent of',80,'Child of',1,NULL,NULL,NULL), -(305,153,1,'a_b',175,'Child of',105,'Parent of',1,NULL,NULL,NULL), -(306,153,1,'b_a',105,'Parent of',175,'Child of',1,NULL,NULL,NULL), -(307,154,1,'a_b',80,'Child of',105,'Parent of',1,NULL,NULL,NULL), -(308,154,1,'b_a',105,'Parent of',80,'Child of',1,NULL,NULL,NULL), -(309,155,4,'a_b',80,'Sibling of',175,'Sibling of',1,NULL,NULL,NULL), -(310,155,4,'b_a',175,'Sibling of',80,'Sibling of',1,NULL,NULL,NULL), -(311,156,8,'a_b',105,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), -(312,156,8,'b_a',41,'Household Member is',105,'Household Member of',1,NULL,NULL,NULL), -(313,157,8,'a_b',175,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), -(314,157,8,'b_a',41,'Household Member is',175,'Household Member of',1,NULL,NULL,NULL), -(315,158,8,'a_b',80,'Household Member of',41,'Household Member is',1,NULL,NULL,NULL), -(316,158,8,'b_a',41,'Household Member is',80,'Household Member of',1,NULL,NULL,NULL), -(317,159,7,'a_b',199,'Head of Household for',41,'Head of Household is',0,NULL,NULL,NULL), -(318,159,7,'b_a',41,'Head of Household is',199,'Head of Household for',0,NULL,NULL,NULL), -(319,160,2,'a_b',105,'Spouse of',199,'Spouse of',0,NULL,NULL,NULL), -(320,160,2,'b_a',199,'Spouse of',105,'Spouse of',0,NULL,NULL,NULL), -(321,161,1,'a_b',29,'Child of',104,'Parent of',1,NULL,NULL,NULL), -(322,161,1,'b_a',104,'Parent of',29,'Child of',1,NULL,NULL,NULL), -(323,162,1,'a_b',160,'Child of',104,'Parent of',1,NULL,NULL,NULL), -(324,162,1,'b_a',104,'Parent of',160,'Child of',1,NULL,NULL,NULL), -(325,163,1,'a_b',29,'Child of',57,'Parent of',1,NULL,NULL,NULL), -(326,163,1,'b_a',57,'Parent of',29,'Child of',1,NULL,NULL,NULL), -(327,164,1,'a_b',160,'Child of',57,'Parent of',1,NULL,NULL,NULL), -(328,164,1,'b_a',57,'Parent of',160,'Child of',1,NULL,NULL,NULL), -(329,165,4,'a_b',160,'Sibling of',29,'Sibling of',1,NULL,NULL,NULL), -(330,165,4,'b_a',29,'Sibling of',160,'Sibling of',1,NULL,NULL,NULL), -(331,166,8,'a_b',57,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), -(332,166,8,'b_a',28,'Household Member is',57,'Household Member of',1,NULL,NULL,NULL), -(333,167,8,'a_b',29,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), -(334,167,8,'b_a',28,'Household Member is',29,'Household Member of',1,NULL,NULL,NULL), -(335,168,8,'a_b',160,'Household Member of',28,'Household Member is',1,NULL,NULL,NULL), -(336,168,8,'b_a',28,'Household Member is',160,'Household Member of',1,NULL,NULL,NULL), -(337,169,7,'a_b',104,'Head of Household for',28,'Head of Household is',1,NULL,NULL,NULL), -(338,169,7,'b_a',28,'Head of Household is',104,'Head of Household for',1,NULL,NULL,NULL), -(339,170,2,'a_b',57,'Spouse of',104,'Spouse of',1,NULL,NULL,NULL), -(340,170,2,'b_a',104,'Spouse of',57,'Spouse of',1,NULL,NULL,NULL), -(341,171,1,'a_b',92,'Child of',8,'Parent of',1,NULL,NULL,NULL), -(342,171,1,'b_a',8,'Parent of',92,'Child of',1,NULL,NULL,NULL), -(343,172,1,'a_b',48,'Child of',8,'Parent of',1,NULL,NULL,NULL), -(344,172,1,'b_a',8,'Parent of',48,'Child of',1,NULL,NULL,NULL), -(345,173,1,'a_b',92,'Child of',171,'Parent of',1,NULL,NULL,NULL), -(346,173,1,'b_a',171,'Parent of',92,'Child of',1,NULL,NULL,NULL), -(347,174,1,'a_b',48,'Child of',171,'Parent of',1,NULL,NULL,NULL), -(348,174,1,'b_a',171,'Parent of',48,'Child of',1,NULL,NULL,NULL), -(349,175,4,'a_b',48,'Sibling of',92,'Sibling of',1,NULL,NULL,NULL), -(350,175,4,'b_a',92,'Sibling of',48,'Sibling of',1,NULL,NULL,NULL), -(351,176,8,'a_b',171,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), -(352,176,8,'b_a',42,'Household Member is',171,'Household Member of',1,NULL,NULL,NULL), -(353,177,8,'a_b',92,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), -(354,177,8,'b_a',42,'Household Member is',92,'Household Member of',1,NULL,NULL,NULL), -(355,178,8,'a_b',48,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), -(356,178,8,'b_a',42,'Household Member is',48,'Household Member of',1,NULL,NULL,NULL), -(357,179,7,'a_b',8,'Head of Household for',42,'Head of Household is',1,NULL,NULL,NULL), -(358,179,7,'b_a',42,'Head of Household is',8,'Head of Household for',1,NULL,NULL,NULL), -(359,180,2,'a_b',171,'Spouse of',8,'Spouse of',1,NULL,NULL,NULL), -(360,180,2,'b_a',8,'Spouse of',171,'Spouse of',1,NULL,NULL,NULL), -(361,181,1,'a_b',161,'Child of',138,'Parent of',1,NULL,NULL,NULL), -(362,181,1,'b_a',138,'Parent of',161,'Child of',1,NULL,NULL,NULL), -(363,182,1,'a_b',54,'Child of',138,'Parent of',1,NULL,NULL,NULL), -(364,182,1,'b_a',138,'Parent of',54,'Child of',1,NULL,NULL,NULL), -(365,183,1,'a_b',161,'Child of',89,'Parent of',1,NULL,NULL,NULL), -(366,183,1,'b_a',89,'Parent of',161,'Child of',1,NULL,NULL,NULL), -(367,184,1,'a_b',54,'Child of',89,'Parent of',1,NULL,NULL,NULL), -(368,184,1,'b_a',89,'Parent of',54,'Child of',1,NULL,NULL,NULL), -(369,185,4,'a_b',54,'Sibling of',161,'Sibling of',1,NULL,NULL,NULL), -(370,185,4,'b_a',161,'Sibling of',54,'Sibling of',1,NULL,NULL,NULL), -(371,186,8,'a_b',89,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), -(372,186,8,'b_a',111,'Household Member is',89,'Household Member of',1,NULL,NULL,NULL), -(373,187,8,'a_b',161,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), -(374,187,8,'b_a',111,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL), -(375,188,8,'a_b',54,'Household Member of',111,'Household Member is',1,NULL,NULL,NULL), -(376,188,8,'b_a',111,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), -(377,189,7,'a_b',138,'Head of Household for',111,'Head of Household is',1,NULL,NULL,NULL), -(378,189,7,'b_a',111,'Head of Household is',138,'Head of Household for',1,NULL,NULL,NULL), -(379,190,2,'a_b',89,'Spouse of',138,'Spouse of',1,NULL,NULL,NULL), -(380,190,2,'b_a',138,'Spouse of',89,'Spouse of',1,NULL,NULL,NULL), -(381,191,1,'a_b',167,'Child of',88,'Parent of',1,NULL,NULL,NULL), -(382,191,1,'b_a',88,'Parent of',167,'Child of',1,NULL,NULL,NULL), -(383,192,1,'a_b',38,'Child of',88,'Parent of',1,NULL,NULL,NULL), -(384,192,1,'b_a',88,'Parent of',38,'Child of',1,NULL,NULL,NULL), -(385,193,1,'a_b',167,'Child of',50,'Parent of',1,NULL,NULL,NULL), -(386,193,1,'b_a',50,'Parent of',167,'Child of',1,NULL,NULL,NULL), -(387,194,1,'a_b',38,'Child of',50,'Parent of',1,NULL,NULL,NULL), -(388,194,1,'b_a',50,'Parent of',38,'Child of',1,NULL,NULL,NULL), -(389,195,4,'a_b',38,'Sibling of',167,'Sibling of',1,NULL,NULL,NULL), -(390,195,4,'b_a',167,'Sibling of',38,'Sibling of',1,NULL,NULL,NULL), -(391,196,8,'a_b',50,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), -(392,196,8,'b_a',183,'Household Member is',50,'Household Member of',1,NULL,NULL,NULL), -(393,197,8,'a_b',167,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), -(394,197,8,'b_a',183,'Household Member is',167,'Household Member of',1,NULL,NULL,NULL), -(395,198,8,'a_b',38,'Household Member of',183,'Household Member is',1,NULL,NULL,NULL), -(396,198,8,'b_a',183,'Household Member is',38,'Household Member of',1,NULL,NULL,NULL), -(397,199,7,'a_b',88,'Head of Household for',183,'Head of Household is',1,NULL,NULL,NULL), -(398,199,7,'b_a',183,'Head of Household is',88,'Head of Household for',1,NULL,NULL,NULL), -(399,200,2,'a_b',50,'Spouse of',88,'Spouse of',1,NULL,NULL,NULL), -(400,200,2,'b_a',88,'Spouse of',50,'Spouse of',1,NULL,NULL,NULL), -(401,201,5,'a_b',18,'Employee of',3,'Employer of',1,NULL,NULL,NULL), -(402,201,5,'b_a',3,'Employer of',18,'Employee of',1,NULL,NULL,NULL), -(403,202,5,'a_b',87,'Employee of',34,'Employer of',1,NULL,NULL,NULL), -(404,202,5,'b_a',34,'Employer of',87,'Employee of',1,NULL,NULL,NULL), -(405,203,5,'a_b',91,'Employee of',46,'Employer of',1,NULL,NULL,NULL), -(406,203,5,'b_a',46,'Employer of',91,'Employee of',1,NULL,NULL,NULL), -(407,204,5,'a_b',97,'Employee of',109,'Employer of',1,NULL,NULL,NULL), -(408,204,5,'b_a',109,'Employer of',97,'Employee of',1,NULL,NULL,NULL), -(409,205,5,'a_b',162,'Employee of',131,'Employer of',1,NULL,NULL,NULL), -(410,205,5,'b_a',131,'Employer of',162,'Employee of',1,NULL,NULL,NULL), -(411,206,5,'a_b',143,'Employee of',136,'Employer of',1,NULL,NULL,NULL), -(412,206,5,'b_a',136,'Employer of',143,'Employee of',1,NULL,NULL,NULL), -(413,207,5,'a_b',30,'Employee of',144,'Employer of',1,NULL,NULL,NULL), -(414,207,5,'b_a',144,'Employer of',30,'Employee of',1,NULL,NULL,NULL), -(415,208,5,'a_b',68,'Employee of',149,'Employer of',1,NULL,NULL,NULL), -(416,208,5,'b_a',149,'Employer of',68,'Employee of',1,NULL,NULL,NULL), -(417,209,5,'a_b',58,'Employee of',155,'Employer of',1,NULL,NULL,NULL), -(418,209,5,'b_a',155,'Employer of',58,'Employee of',1,NULL,NULL,NULL), -(419,210,5,'a_b',39,'Employee of',156,'Employer of',1,NULL,NULL,NULL), -(420,210,5,'b_a',156,'Employer of',39,'Employee of',1,NULL,NULL,NULL), -(421,211,5,'a_b',60,'Employee of',158,'Employer of',1,NULL,NULL,NULL), -(422,211,5,'b_a',158,'Employer of',60,'Employee of',1,NULL,NULL,NULL), -(423,212,5,'a_b',56,'Employee of',181,'Employer of',1,NULL,NULL,NULL), -(424,212,5,'b_a',181,'Employer of',56,'Employee of',1,NULL,NULL,NULL), -(425,213,5,'a_b',125,'Employee of',191,'Employer of',1,NULL,NULL,NULL), -(426,213,5,'b_a',191,'Employer of',125,'Employee of',1,NULL,NULL,NULL), -(427,214,5,'a_b',27,'Employee of',196,'Employer of',1,NULL,NULL,NULL), -(428,214,5,'b_a',196,'Employer of',27,'Employee of',1,NULL,NULL,NULL); + (1,1,1,'a_b',144,'Child of',63,'Parent of',1,NULL,NULL,NULL), + (2,1,1,'b_a',63,'Parent of',144,'Child of',1,NULL,NULL,NULL), + (3,2,1,'a_b',28,'Child of',63,'Parent of',1,NULL,NULL,NULL), + (4,2,1,'b_a',63,'Parent of',28,'Child of',1,NULL,NULL,NULL), + (5,3,1,'a_b',144,'Child of',30,'Parent of',1,NULL,NULL,NULL), + (6,3,1,'b_a',30,'Parent of',144,'Child of',1,NULL,NULL,NULL), + (7,4,1,'a_b',28,'Child of',30,'Parent of',1,NULL,NULL,NULL), + (8,4,1,'b_a',30,'Parent of',28,'Child of',1,NULL,NULL,NULL), + (9,5,4,'a_b',28,'Sibling of',144,'Sibling of',1,NULL,NULL,NULL), + (10,5,4,'b_a',144,'Sibling of',28,'Sibling of',1,NULL,NULL,NULL), + (11,6,8,'a_b',30,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (12,6,8,'b_a',34,'Household Member is',30,'Household Member of',1,NULL,NULL,NULL), + (13,7,8,'a_b',144,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (14,7,8,'b_a',34,'Household Member is',144,'Household Member of',1,NULL,NULL,NULL), + (15,8,8,'a_b',28,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (16,8,8,'b_a',34,'Household Member is',28,'Household Member of',1,NULL,NULL,NULL), + (17,9,7,'a_b',63,'Head of Household for',34,'Head of Household is',1,NULL,NULL,NULL), + (18,9,7,'b_a',34,'Head of Household is',63,'Head of Household for',1,NULL,NULL,NULL), + (19,10,2,'a_b',30,'Spouse of',63,'Spouse of',1,NULL,NULL,NULL), + (20,10,2,'b_a',63,'Spouse of',30,'Spouse of',1,NULL,NULL,NULL), + (21,11,1,'a_b',76,'Child of',4,'Parent of',1,NULL,NULL,NULL), + (22,11,1,'b_a',4,'Parent of',76,'Child of',1,NULL,NULL,NULL), + (23,12,1,'a_b',192,'Child of',4,'Parent of',1,NULL,NULL,NULL), + (24,12,1,'b_a',4,'Parent of',192,'Child of',1,NULL,NULL,NULL), + (25,13,1,'a_b',76,'Child of',15,'Parent of',1,NULL,NULL,NULL), + (26,13,1,'b_a',15,'Parent of',76,'Child of',1,NULL,NULL,NULL), + (27,14,1,'a_b',192,'Child of',15,'Parent of',1,NULL,NULL,NULL), + (28,14,1,'b_a',15,'Parent of',192,'Child of',1,NULL,NULL,NULL), + (29,15,4,'a_b',192,'Sibling of',76,'Sibling of',1,NULL,NULL,NULL), + (30,15,4,'b_a',76,'Sibling of',192,'Sibling of',1,NULL,NULL,NULL), + (31,16,8,'a_b',15,'Household Member of',110,'Household Member is',1,NULL,NULL,NULL), + (32,16,8,'b_a',110,'Household Member is',15,'Household Member of',1,NULL,NULL,NULL), + (33,17,8,'a_b',76,'Household Member of',110,'Household Member is',1,NULL,NULL,NULL), + (34,17,8,'b_a',110,'Household Member is',76,'Household Member of',1,NULL,NULL,NULL), + (35,18,8,'a_b',192,'Household Member of',110,'Household Member is',1,NULL,NULL,NULL), + (36,18,8,'b_a',110,'Household Member is',192,'Household Member of',1,NULL,NULL,NULL), + (37,19,7,'a_b',4,'Head of Household for',110,'Head of Household is',0,NULL,NULL,NULL), + (38,19,7,'b_a',110,'Head of Household is',4,'Head of Household for',0,NULL,NULL,NULL), + (39,20,2,'a_b',15,'Spouse of',4,'Spouse of',0,NULL,NULL,NULL), + (40,20,2,'b_a',4,'Spouse of',15,'Spouse of',0,NULL,NULL,NULL), + (41,21,1,'a_b',20,'Child of',200,'Parent of',1,NULL,NULL,NULL), + (42,21,1,'b_a',200,'Parent of',20,'Child of',1,NULL,NULL,NULL), + (43,22,1,'a_b',161,'Child of',200,'Parent of',1,NULL,NULL,NULL), + (44,22,1,'b_a',200,'Parent of',161,'Child of',1,NULL,NULL,NULL), + (45,23,1,'a_b',20,'Child of',45,'Parent of',1,NULL,NULL,NULL), + (46,23,1,'b_a',45,'Parent of',20,'Child of',1,NULL,NULL,NULL), + (47,24,1,'a_b',161,'Child of',45,'Parent of',1,NULL,NULL,NULL), + (48,24,1,'b_a',45,'Parent of',161,'Child of',1,NULL,NULL,NULL), + (49,25,4,'a_b',161,'Sibling of',20,'Sibling of',1,NULL,NULL,NULL), + (50,25,4,'b_a',20,'Sibling of',161,'Sibling of',1,NULL,NULL,NULL), + (51,26,8,'a_b',45,'Household Member of',158,'Household Member is',1,NULL,NULL,NULL), + (52,26,8,'b_a',158,'Household Member is',45,'Household Member of',1,NULL,NULL,NULL), + (53,27,8,'a_b',20,'Household Member of',158,'Household Member is',1,NULL,NULL,NULL), + (54,27,8,'b_a',158,'Household Member is',20,'Household Member of',1,NULL,NULL,NULL), + (55,28,8,'a_b',161,'Household Member of',158,'Household Member is',1,NULL,NULL,NULL), + (56,28,8,'b_a',158,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL), + (57,29,7,'a_b',200,'Head of Household for',158,'Head of Household is',1,NULL,NULL,NULL), + (58,29,7,'b_a',158,'Head of Household is',200,'Head of Household for',1,NULL,NULL,NULL), + (59,30,2,'a_b',45,'Spouse of',200,'Spouse of',1,NULL,NULL,NULL), + (60,30,2,'b_a',200,'Spouse of',45,'Spouse of',1,NULL,NULL,NULL), + (61,31,1,'a_b',48,'Child of',171,'Parent of',1,NULL,NULL,NULL), + (62,31,1,'b_a',171,'Parent of',48,'Child of',1,NULL,NULL,NULL), + (63,32,1,'a_b',68,'Child of',171,'Parent of',1,NULL,NULL,NULL), + (64,32,1,'b_a',171,'Parent of',68,'Child of',1,NULL,NULL,NULL), + (65,33,1,'a_b',48,'Child of',174,'Parent of',1,NULL,NULL,NULL), + (66,33,1,'b_a',174,'Parent of',48,'Child of',1,NULL,NULL,NULL), + (67,34,1,'a_b',68,'Child of',174,'Parent of',1,NULL,NULL,NULL), + (68,34,1,'b_a',174,'Parent of',68,'Child of',1,NULL,NULL,NULL), + (69,35,4,'a_b',68,'Sibling of',48,'Sibling of',1,NULL,NULL,NULL), + (70,35,4,'b_a',48,'Sibling of',68,'Sibling of',1,NULL,NULL,NULL), + (71,36,8,'a_b',174,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (72,36,8,'b_a',113,'Household Member is',174,'Household Member of',1,NULL,NULL,NULL), + (73,37,8,'a_b',48,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (74,37,8,'b_a',113,'Household Member is',48,'Household Member of',1,NULL,NULL,NULL), + (75,38,8,'a_b',68,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (76,38,8,'b_a',113,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL), + (77,39,7,'a_b',171,'Head of Household for',113,'Head of Household is',0,NULL,NULL,NULL), + (78,39,7,'b_a',113,'Head of Household is',171,'Head of Household for',0,NULL,NULL,NULL), + (79,40,2,'a_b',174,'Spouse of',171,'Spouse of',0,NULL,NULL,NULL), + (80,40,2,'b_a',171,'Spouse of',174,'Spouse of',0,NULL,NULL,NULL), + (81,41,1,'a_b',191,'Child of',168,'Parent of',1,NULL,NULL,NULL), + (82,41,1,'b_a',168,'Parent of',191,'Child of',1,NULL,NULL,NULL), + (83,42,1,'a_b',66,'Child of',168,'Parent of',1,NULL,NULL,NULL), + (84,42,1,'b_a',168,'Parent of',66,'Child of',1,NULL,NULL,NULL), + (85,43,1,'a_b',191,'Child of',175,'Parent of',1,NULL,NULL,NULL), + (86,43,1,'b_a',175,'Parent of',191,'Child of',1,NULL,NULL,NULL), + (87,44,1,'a_b',66,'Child of',175,'Parent of',1,NULL,NULL,NULL), + (88,44,1,'b_a',175,'Parent of',66,'Child of',1,NULL,NULL,NULL), + (89,45,4,'a_b',66,'Sibling of',191,'Sibling of',1,NULL,NULL,NULL), + (90,45,4,'b_a',191,'Sibling of',66,'Sibling of',1,NULL,NULL,NULL), + (91,46,8,'a_b',175,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL), + (92,46,8,'b_a',155,'Household Member is',175,'Household Member of',1,NULL,NULL,NULL), + (93,47,8,'a_b',191,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL), + (94,47,8,'b_a',155,'Household Member is',191,'Household Member of',1,NULL,NULL,NULL), + (95,48,8,'a_b',66,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL), + (96,48,8,'b_a',155,'Household Member is',66,'Household Member of',1,NULL,NULL,NULL), + (97,49,7,'a_b',168,'Head of Household for',155,'Head of Household is',1,NULL,NULL,NULL), + (98,49,7,'b_a',155,'Head of Household is',168,'Head of Household for',1,NULL,NULL,NULL), + (99,50,2,'a_b',175,'Spouse of',168,'Spouse of',1,NULL,NULL,NULL), + (100,50,2,'b_a',168,'Spouse of',175,'Spouse of',1,NULL,NULL,NULL), + (101,51,1,'a_b',75,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (102,51,1,'b_a',111,'Parent of',75,'Child of',1,NULL,NULL,NULL), + (103,52,1,'a_b',187,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (104,52,1,'b_a',111,'Parent of',187,'Child of',1,NULL,NULL,NULL), + (105,53,1,'a_b',75,'Child of',122,'Parent of',1,NULL,NULL,NULL), + (106,53,1,'b_a',122,'Parent of',75,'Child of',1,NULL,NULL,NULL), + (107,54,1,'a_b',187,'Child of',122,'Parent of',1,NULL,NULL,NULL), + (108,54,1,'b_a',122,'Parent of',187,'Child of',1,NULL,NULL,NULL), + (109,55,4,'a_b',187,'Sibling of',75,'Sibling of',1,NULL,NULL,NULL), + (110,55,4,'b_a',75,'Sibling of',187,'Sibling of',1,NULL,NULL,NULL), + (111,56,8,'a_b',122,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), + (112,56,8,'b_a',47,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), + (113,57,8,'a_b',75,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), + (114,57,8,'b_a',47,'Household Member is',75,'Household Member of',1,NULL,NULL,NULL), + (115,58,8,'a_b',187,'Household Member of',47,'Household Member is',1,NULL,NULL,NULL), + (116,58,8,'b_a',47,'Household Member is',187,'Household Member of',1,NULL,NULL,NULL), + (117,59,7,'a_b',111,'Head of Household for',47,'Head of Household is',1,NULL,NULL,NULL), + (118,59,7,'b_a',47,'Head of Household is',111,'Head of Household for',1,NULL,NULL,NULL), + (119,60,2,'a_b',122,'Spouse of',111,'Spouse of',1,NULL,NULL,NULL), + (120,60,2,'b_a',111,'Spouse of',122,'Spouse of',1,NULL,NULL,NULL), + (121,61,1,'a_b',126,'Child of',92,'Parent of',1,NULL,NULL,NULL), + (122,61,1,'b_a',92,'Parent of',126,'Child of',1,NULL,NULL,NULL), + (123,62,1,'a_b',73,'Child of',92,'Parent of',1,NULL,NULL,NULL), + (124,62,1,'b_a',92,'Parent of',73,'Child of',1,NULL,NULL,NULL), + (125,63,1,'a_b',126,'Child of',64,'Parent of',1,NULL,NULL,NULL), + (126,63,1,'b_a',64,'Parent of',126,'Child of',1,NULL,NULL,NULL), + (127,64,1,'a_b',73,'Child of',64,'Parent of',1,NULL,NULL,NULL), + (128,64,1,'b_a',64,'Parent of',73,'Child of',1,NULL,NULL,NULL), + (129,65,4,'a_b',73,'Sibling of',126,'Sibling of',1,NULL,NULL,NULL), + (130,65,4,'b_a',126,'Sibling of',73,'Sibling of',1,NULL,NULL,NULL), + (131,66,8,'a_b',64,'Household Member of',130,'Household Member is',1,NULL,NULL,NULL), + (132,66,8,'b_a',130,'Household Member is',64,'Household Member of',1,NULL,NULL,NULL), + (133,67,8,'a_b',126,'Household Member of',130,'Household Member is',1,NULL,NULL,NULL), + (134,67,8,'b_a',130,'Household Member is',126,'Household Member of',1,NULL,NULL,NULL), + (135,68,8,'a_b',73,'Household Member of',130,'Household Member is',1,NULL,NULL,NULL), + (136,68,8,'b_a',130,'Household Member is',73,'Household Member of',1,NULL,NULL,NULL), + (137,69,7,'a_b',92,'Head of Household for',130,'Head of Household is',1,NULL,NULL,NULL), + (138,69,7,'b_a',130,'Head of Household is',92,'Head of Household for',1,NULL,NULL,NULL), + (139,70,2,'a_b',64,'Spouse of',92,'Spouse of',1,NULL,NULL,NULL), + (140,70,2,'b_a',92,'Spouse of',64,'Spouse of',1,NULL,NULL,NULL), + (141,71,1,'a_b',123,'Child of',105,'Parent of',1,NULL,NULL,NULL), + (142,71,1,'b_a',105,'Parent of',123,'Child of',1,NULL,NULL,NULL), + (143,72,1,'a_b',201,'Child of',105,'Parent of',1,NULL,NULL,NULL), + (144,72,1,'b_a',105,'Parent of',201,'Child of',1,NULL,NULL,NULL), + (145,73,1,'a_b',123,'Child of',162,'Parent of',1,NULL,NULL,NULL), + (146,73,1,'b_a',162,'Parent of',123,'Child of',1,NULL,NULL,NULL), + (147,74,1,'a_b',201,'Child of',162,'Parent of',1,NULL,NULL,NULL), + (148,74,1,'b_a',162,'Parent of',201,'Child of',1,NULL,NULL,NULL), + (149,75,4,'a_b',201,'Sibling of',123,'Sibling of',1,NULL,NULL,NULL), + (150,75,4,'b_a',123,'Sibling of',201,'Sibling of',1,NULL,NULL,NULL), + (151,76,8,'a_b',162,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (152,76,8,'b_a',167,'Household Member is',162,'Household Member of',1,NULL,NULL,NULL), + (153,77,8,'a_b',123,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (154,77,8,'b_a',167,'Household Member is',123,'Household Member of',1,NULL,NULL,NULL), + (155,78,8,'a_b',201,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), + (156,78,8,'b_a',167,'Household Member is',201,'Household Member of',1,NULL,NULL,NULL), + (157,79,7,'a_b',105,'Head of Household for',167,'Head of Household is',0,NULL,NULL,NULL), + (158,79,7,'b_a',167,'Head of Household is',105,'Head of Household for',0,NULL,NULL,NULL), + (159,80,2,'a_b',162,'Spouse of',105,'Spouse of',0,NULL,NULL,NULL), + (160,80,2,'b_a',105,'Spouse of',162,'Spouse of',0,NULL,NULL,NULL), + (161,81,1,'a_b',79,'Child of',5,'Parent of',1,NULL,NULL,NULL), + (162,81,1,'b_a',5,'Parent of',79,'Child of',1,NULL,NULL,NULL), + (163,82,1,'a_b',88,'Child of',5,'Parent of',1,NULL,NULL,NULL), + (164,82,1,'b_a',5,'Parent of',88,'Child of',1,NULL,NULL,NULL), + (165,83,1,'a_b',79,'Child of',16,'Parent of',1,NULL,NULL,NULL), + (166,83,1,'b_a',16,'Parent of',79,'Child of',1,NULL,NULL,NULL), + (167,84,1,'a_b',88,'Child of',16,'Parent of',1,NULL,NULL,NULL), + (168,84,1,'b_a',16,'Parent of',88,'Child of',1,NULL,NULL,NULL), + (169,85,4,'a_b',88,'Sibling of',79,'Sibling of',1,NULL,NULL,NULL), + (170,85,4,'b_a',79,'Sibling of',88,'Sibling of',1,NULL,NULL,NULL), + (171,86,8,'a_b',16,'Household Member of',197,'Household Member is',1,NULL,NULL,NULL), + (172,86,8,'b_a',197,'Household Member is',16,'Household Member of',1,NULL,NULL,NULL), + (173,87,8,'a_b',79,'Household Member of',197,'Household Member is',1,NULL,NULL,NULL), + (174,87,8,'b_a',197,'Household Member is',79,'Household Member of',1,NULL,NULL,NULL), + (175,88,8,'a_b',88,'Household Member of',197,'Household Member is',1,NULL,NULL,NULL), + (176,88,8,'b_a',197,'Household Member is',88,'Household Member of',1,NULL,NULL,NULL), + (177,89,7,'a_b',5,'Head of Household for',197,'Head of Household is',0,NULL,NULL,NULL), + (178,89,7,'b_a',197,'Head of Household is',5,'Head of Household for',0,NULL,NULL,NULL), + (179,90,2,'a_b',16,'Spouse of',5,'Spouse of',0,NULL,NULL,NULL), + (180,90,2,'b_a',5,'Spouse of',16,'Spouse of',0,NULL,NULL,NULL), + (181,91,1,'a_b',14,'Child of',141,'Parent of',1,NULL,NULL,NULL), + (182,91,1,'b_a',141,'Parent of',14,'Child of',1,NULL,NULL,NULL), + (183,92,1,'a_b',26,'Child of',141,'Parent of',1,NULL,NULL,NULL), + (184,92,1,'b_a',141,'Parent of',26,'Child of',1,NULL,NULL,NULL), + (185,93,1,'a_b',14,'Child of',194,'Parent of',1,NULL,NULL,NULL), + (186,93,1,'b_a',194,'Parent of',14,'Child of',1,NULL,NULL,NULL), + (187,94,1,'a_b',26,'Child of',194,'Parent of',1,NULL,NULL,NULL), + (188,94,1,'b_a',194,'Parent of',26,'Child of',1,NULL,NULL,NULL), + (189,95,4,'a_b',26,'Sibling of',14,'Sibling of',1,NULL,NULL,NULL), + (190,95,4,'b_a',14,'Sibling of',26,'Sibling of',1,NULL,NULL,NULL), + (191,96,8,'a_b',194,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), + (192,96,8,'b_a',127,'Household Member is',194,'Household Member of',1,NULL,NULL,NULL), + (193,97,8,'a_b',14,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), + (194,97,8,'b_a',127,'Household Member is',14,'Household Member of',1,NULL,NULL,NULL), + (195,98,8,'a_b',26,'Household Member of',127,'Household Member is',1,NULL,NULL,NULL), + (196,98,8,'b_a',127,'Household Member is',26,'Household Member of',1,NULL,NULL,NULL), + (197,99,7,'a_b',141,'Head of Household for',127,'Head of Household is',1,NULL,NULL,NULL), + (198,99,7,'b_a',127,'Head of Household is',141,'Head of Household for',1,NULL,NULL,NULL), + (199,100,2,'a_b',194,'Spouse of',141,'Spouse of',1,NULL,NULL,NULL), + (200,100,2,'b_a',141,'Spouse of',194,'Spouse of',1,NULL,NULL,NULL), + (201,101,1,'a_b',150,'Child of',65,'Parent of',1,NULL,NULL,NULL), + (202,101,1,'b_a',65,'Parent of',150,'Child of',1,NULL,NULL,NULL), + (203,102,1,'a_b',37,'Child of',65,'Parent of',1,NULL,NULL,NULL), + (204,102,1,'b_a',65,'Parent of',37,'Child of',1,NULL,NULL,NULL), + (205,103,1,'a_b',150,'Child of',71,'Parent of',1,NULL,NULL,NULL), + (206,103,1,'b_a',71,'Parent of',150,'Child of',1,NULL,NULL,NULL), + (207,104,1,'a_b',37,'Child of',71,'Parent of',1,NULL,NULL,NULL), + (208,104,1,'b_a',71,'Parent of',37,'Child of',1,NULL,NULL,NULL), + (209,105,4,'a_b',37,'Sibling of',150,'Sibling of',1,NULL,NULL,NULL), + (210,105,4,'b_a',150,'Sibling of',37,'Sibling of',1,NULL,NULL,NULL), + (211,106,8,'a_b',71,'Household Member of',61,'Household Member is',1,NULL,NULL,NULL), + (212,106,8,'b_a',61,'Household Member is',71,'Household Member of',1,NULL,NULL,NULL), + (213,107,8,'a_b',150,'Household Member of',61,'Household Member is',1,NULL,NULL,NULL), + (214,107,8,'b_a',61,'Household Member is',150,'Household Member of',1,NULL,NULL,NULL), + (215,108,8,'a_b',37,'Household Member of',61,'Household Member is',1,NULL,NULL,NULL), + (216,108,8,'b_a',61,'Household Member is',37,'Household Member of',1,NULL,NULL,NULL), + (217,109,7,'a_b',65,'Head of Household for',61,'Head of Household is',0,NULL,NULL,NULL), + (218,109,7,'b_a',61,'Head of Household is',65,'Head of Household for',0,NULL,NULL,NULL), + (219,110,2,'a_b',71,'Spouse of',65,'Spouse of',0,NULL,NULL,NULL), + (220,110,2,'b_a',65,'Spouse of',71,'Spouse of',0,NULL,NULL,NULL), + (221,111,1,'a_b',89,'Child of',124,'Parent of',1,NULL,NULL,NULL), + (222,111,1,'b_a',124,'Parent of',89,'Child of',1,NULL,NULL,NULL), + (223,112,1,'a_b',181,'Child of',124,'Parent of',1,NULL,NULL,NULL), + (224,112,1,'b_a',124,'Parent of',181,'Child of',1,NULL,NULL,NULL), + (225,113,1,'a_b',89,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (226,113,1,'b_a',120,'Parent of',89,'Child of',1,NULL,NULL,NULL), + (227,114,1,'a_b',181,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (228,114,1,'b_a',120,'Parent of',181,'Child of',1,NULL,NULL,NULL), + (229,115,4,'a_b',181,'Sibling of',89,'Sibling of',1,NULL,NULL,NULL), + (230,115,4,'b_a',89,'Sibling of',181,'Sibling of',1,NULL,NULL,NULL), + (231,116,8,'a_b',120,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL), + (232,116,8,'b_a',82,'Household Member is',120,'Household Member of',1,NULL,NULL,NULL), + (233,117,8,'a_b',89,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL), + (234,117,8,'b_a',82,'Household Member is',89,'Household Member of',1,NULL,NULL,NULL), + (235,118,8,'a_b',181,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL), + (236,118,8,'b_a',82,'Household Member is',181,'Household Member of',1,NULL,NULL,NULL), + (237,119,7,'a_b',124,'Head of Household for',82,'Head of Household is',0,NULL,NULL,NULL), + (238,119,7,'b_a',82,'Head of Household is',124,'Head of Household for',0,NULL,NULL,NULL), + (239,120,2,'a_b',120,'Spouse of',124,'Spouse of',0,NULL,NULL,NULL), + (240,120,2,'b_a',124,'Spouse of',120,'Spouse of',0,NULL,NULL,NULL), + (241,121,1,'a_b',27,'Child of',25,'Parent of',1,NULL,NULL,NULL), + (242,121,1,'b_a',25,'Parent of',27,'Child of',1,NULL,NULL,NULL), + (243,122,1,'a_b',189,'Child of',25,'Parent of',1,NULL,NULL,NULL), + (244,122,1,'b_a',25,'Parent of',189,'Child of',1,NULL,NULL,NULL), + (245,123,1,'a_b',27,'Child of',19,'Parent of',1,NULL,NULL,NULL), + (246,123,1,'b_a',19,'Parent of',27,'Child of',1,NULL,NULL,NULL), + (247,124,1,'a_b',189,'Child of',19,'Parent of',1,NULL,NULL,NULL), + (248,124,1,'b_a',19,'Parent of',189,'Child of',1,NULL,NULL,NULL), + (249,125,4,'a_b',189,'Sibling of',27,'Sibling of',1,NULL,NULL,NULL), + (250,125,4,'b_a',27,'Sibling of',189,'Sibling of',1,NULL,NULL,NULL), + (251,126,8,'a_b',19,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (252,126,8,'b_a',80,'Household Member is',19,'Household Member of',1,NULL,NULL,NULL), + (253,127,8,'a_b',27,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (254,127,8,'b_a',80,'Household Member is',27,'Household Member of',1,NULL,NULL,NULL), + (255,128,8,'a_b',189,'Household Member of',80,'Household Member is',1,NULL,NULL,NULL), + (256,128,8,'b_a',80,'Household Member is',189,'Household Member of',1,NULL,NULL,NULL), + (257,129,7,'a_b',25,'Head of Household for',80,'Head of Household is',1,NULL,NULL,NULL), + (258,129,7,'b_a',80,'Head of Household is',25,'Head of Household for',1,NULL,NULL,NULL), + (259,130,2,'a_b',19,'Spouse of',25,'Spouse of',1,NULL,NULL,NULL), + (260,130,2,'b_a',25,'Spouse of',19,'Spouse of',1,NULL,NULL,NULL), + (261,131,1,'a_b',98,'Child of',86,'Parent of',1,NULL,NULL,NULL), + (262,131,1,'b_a',86,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (263,132,1,'a_b',43,'Child of',86,'Parent of',1,NULL,NULL,NULL), + (264,132,1,'b_a',86,'Parent of',43,'Child of',1,NULL,NULL,NULL), + (265,133,1,'a_b',98,'Child of',87,'Parent of',1,NULL,NULL,NULL), + (266,133,1,'b_a',87,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (267,134,1,'a_b',43,'Child of',87,'Parent of',1,NULL,NULL,NULL), + (268,134,1,'b_a',87,'Parent of',43,'Child of',1,NULL,NULL,NULL), + (269,135,4,'a_b',43,'Sibling of',98,'Sibling of',1,NULL,NULL,NULL), + (270,135,4,'b_a',98,'Sibling of',43,'Sibling of',1,NULL,NULL,NULL), + (271,136,8,'a_b',87,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), + (272,136,8,'b_a',51,'Household Member is',87,'Household Member of',1,NULL,NULL,NULL), + (273,137,8,'a_b',98,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), + (274,137,8,'b_a',51,'Household Member is',98,'Household Member of',1,NULL,NULL,NULL), + (275,138,8,'a_b',43,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), + (276,138,8,'b_a',51,'Household Member is',43,'Household Member of',1,NULL,NULL,NULL), + (277,139,7,'a_b',86,'Head of Household for',51,'Head of Household is',1,NULL,NULL,NULL), + (278,139,7,'b_a',51,'Head of Household is',86,'Head of Household for',1,NULL,NULL,NULL), + (279,140,2,'a_b',87,'Spouse of',86,'Spouse of',1,NULL,NULL,NULL), + (280,140,2,'b_a',86,'Spouse of',87,'Spouse of',1,NULL,NULL,NULL), + (281,141,1,'a_b',145,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (282,141,1,'b_a',121,'Parent of',145,'Child of',1,NULL,NULL,NULL), + (283,142,1,'a_b',54,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (284,142,1,'b_a',121,'Parent of',54,'Child of',1,NULL,NULL,NULL), + (285,143,1,'a_b',145,'Child of',24,'Parent of',1,NULL,NULL,NULL), + (286,143,1,'b_a',24,'Parent of',145,'Child of',1,NULL,NULL,NULL), + (287,144,1,'a_b',54,'Child of',24,'Parent of',1,NULL,NULL,NULL), + (288,144,1,'b_a',24,'Parent of',54,'Child of',1,NULL,NULL,NULL), + (289,145,4,'a_b',54,'Sibling of',145,'Sibling of',1,NULL,NULL,NULL), + (290,145,4,'b_a',145,'Sibling of',54,'Sibling of',1,NULL,NULL,NULL), + (291,146,8,'a_b',24,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), + (292,146,8,'b_a',180,'Household Member is',24,'Household Member of',1,NULL,NULL,NULL), + (293,147,8,'a_b',145,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), + (294,147,8,'b_a',180,'Household Member is',145,'Household Member of',1,NULL,NULL,NULL), + (295,148,8,'a_b',54,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL), + (296,148,8,'b_a',180,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), + (297,149,7,'a_b',121,'Head of Household for',180,'Head of Household is',1,NULL,NULL,NULL), + (298,149,7,'b_a',180,'Head of Household is',121,'Head of Household for',1,NULL,NULL,NULL), + (299,150,2,'a_b',24,'Spouse of',121,'Spouse of',1,NULL,NULL,NULL), + (300,150,2,'b_a',121,'Spouse of',24,'Spouse of',1,NULL,NULL,NULL), + (301,151,1,'a_b',184,'Child of',60,'Parent of',1,NULL,NULL,NULL), + (302,151,1,'b_a',60,'Parent of',184,'Child of',1,NULL,NULL,NULL), + (303,152,1,'a_b',199,'Child of',60,'Parent of',1,NULL,NULL,NULL), + (304,152,1,'b_a',60,'Parent of',199,'Child of',1,NULL,NULL,NULL), + (305,153,1,'a_b',184,'Child of',172,'Parent of',1,NULL,NULL,NULL), + (306,153,1,'b_a',172,'Parent of',184,'Child of',1,NULL,NULL,NULL), + (307,154,1,'a_b',199,'Child of',172,'Parent of',1,NULL,NULL,NULL), + (308,154,1,'b_a',172,'Parent of',199,'Child of',1,NULL,NULL,NULL), + (309,155,4,'a_b',199,'Sibling of',184,'Sibling of',1,NULL,NULL,NULL), + (310,155,4,'b_a',184,'Sibling of',199,'Sibling of',1,NULL,NULL,NULL), + (311,156,8,'a_b',172,'Household Member of',8,'Household Member is',1,NULL,NULL,NULL), + (312,156,8,'b_a',8,'Household Member is',172,'Household Member of',1,NULL,NULL,NULL), + (313,157,8,'a_b',184,'Household Member of',8,'Household Member is',1,NULL,NULL,NULL), + (314,157,8,'b_a',8,'Household Member is',184,'Household Member of',1,NULL,NULL,NULL), + (315,158,8,'a_b',199,'Household Member of',8,'Household Member is',1,NULL,NULL,NULL), + (316,158,8,'b_a',8,'Household Member is',199,'Household Member of',1,NULL,NULL,NULL), + (317,159,7,'a_b',60,'Head of Household for',8,'Head of Household is',0,NULL,NULL,NULL), + (318,159,7,'b_a',8,'Head of Household is',60,'Head of Household for',0,NULL,NULL,NULL), + (319,160,2,'a_b',172,'Spouse of',60,'Spouse of',0,NULL,NULL,NULL), + (320,160,2,'b_a',60,'Spouse of',172,'Spouse of',0,NULL,NULL,NULL), + (321,161,1,'a_b',97,'Child of',149,'Parent of',1,NULL,NULL,NULL), + (322,161,1,'b_a',149,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (323,162,1,'a_b',165,'Child of',149,'Parent of',1,NULL,NULL,NULL), + (324,162,1,'b_a',149,'Parent of',165,'Child of',1,NULL,NULL,NULL), + (325,163,1,'a_b',97,'Child of',132,'Parent of',1,NULL,NULL,NULL), + (326,163,1,'b_a',132,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (327,164,1,'a_b',165,'Child of',132,'Parent of',1,NULL,NULL,NULL), + (328,164,1,'b_a',132,'Parent of',165,'Child of',1,NULL,NULL,NULL), + (329,165,4,'a_b',165,'Sibling of',97,'Sibling of',1,NULL,NULL,NULL), + (330,165,4,'b_a',97,'Sibling of',165,'Sibling of',1,NULL,NULL,NULL), + (331,166,8,'a_b',132,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (332,166,8,'b_a',179,'Household Member is',132,'Household Member of',1,NULL,NULL,NULL), + (333,167,8,'a_b',97,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (334,167,8,'b_a',179,'Household Member is',97,'Household Member of',1,NULL,NULL,NULL), + (335,168,8,'a_b',165,'Household Member of',179,'Household Member is',1,NULL,NULL,NULL), + (336,168,8,'b_a',179,'Household Member is',165,'Household Member of',1,NULL,NULL,NULL), + (337,169,7,'a_b',149,'Head of Household for',179,'Head of Household is',0,NULL,NULL,NULL), + (338,169,7,'b_a',179,'Head of Household is',149,'Head of Household for',0,NULL,NULL,NULL), + (339,170,2,'a_b',132,'Spouse of',149,'Spouse of',0,NULL,NULL,NULL), + (340,170,2,'b_a',149,'Spouse of',132,'Spouse of',0,NULL,NULL,NULL), + (341,171,1,'a_b',13,'Child of',42,'Parent of',1,NULL,NULL,NULL), + (342,171,1,'b_a',42,'Parent of',13,'Child of',1,NULL,NULL,NULL), + (343,172,1,'a_b',56,'Child of',42,'Parent of',1,NULL,NULL,NULL), + (344,172,1,'b_a',42,'Parent of',56,'Child of',1,NULL,NULL,NULL), + (345,173,1,'a_b',13,'Child of',151,'Parent of',1,NULL,NULL,NULL), + (346,173,1,'b_a',151,'Parent of',13,'Child of',1,NULL,NULL,NULL), + (347,174,1,'a_b',56,'Child of',151,'Parent of',1,NULL,NULL,NULL), + (348,174,1,'b_a',151,'Parent of',56,'Child of',1,NULL,NULL,NULL), + (349,175,4,'a_b',56,'Sibling of',13,'Sibling of',1,NULL,NULL,NULL), + (350,175,4,'b_a',13,'Sibling of',56,'Sibling of',1,NULL,NULL,NULL), + (351,176,8,'a_b',151,'Household Member of',7,'Household Member is',1,NULL,NULL,NULL), + (352,176,8,'b_a',7,'Household Member is',151,'Household Member of',1,NULL,NULL,NULL), + (353,177,8,'a_b',13,'Household Member of',7,'Household Member is',1,NULL,NULL,NULL), + (354,177,8,'b_a',7,'Household Member is',13,'Household Member of',1,NULL,NULL,NULL), + (355,178,8,'a_b',56,'Household Member of',7,'Household Member is',1,NULL,NULL,NULL), + (356,178,8,'b_a',7,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), + (357,179,7,'a_b',42,'Head of Household for',7,'Head of Household is',1,NULL,NULL,NULL), + (358,179,7,'b_a',7,'Head of Household is',42,'Head of Household for',1,NULL,NULL,NULL), + (359,180,2,'a_b',151,'Spouse of',42,'Spouse of',1,NULL,NULL,NULL), + (360,180,2,'b_a',42,'Spouse of',151,'Spouse of',1,NULL,NULL,NULL), + (361,181,1,'a_b',139,'Child of',102,'Parent of',1,NULL,NULL,NULL), + (362,181,1,'b_a',102,'Parent of',139,'Child of',1,NULL,NULL,NULL), + (363,182,1,'a_b',129,'Child of',102,'Parent of',1,NULL,NULL,NULL), + (364,182,1,'b_a',102,'Parent of',129,'Child of',1,NULL,NULL,NULL), + (365,183,1,'a_b',139,'Child of',186,'Parent of',1,NULL,NULL,NULL), + (366,183,1,'b_a',186,'Parent of',139,'Child of',1,NULL,NULL,NULL), + (367,184,1,'a_b',129,'Child of',186,'Parent of',1,NULL,NULL,NULL), + (368,184,1,'b_a',186,'Parent of',129,'Child of',1,NULL,NULL,NULL), + (369,185,4,'a_b',129,'Sibling of',139,'Sibling of',1,NULL,NULL,NULL), + (370,185,4,'b_a',139,'Sibling of',129,'Sibling of',1,NULL,NULL,NULL), + (371,186,8,'a_b',186,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (372,186,8,'b_a',32,'Household Member is',186,'Household Member of',1,NULL,NULL,NULL), + (373,187,8,'a_b',139,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (374,187,8,'b_a',32,'Household Member is',139,'Household Member of',1,NULL,NULL,NULL), + (375,188,8,'a_b',129,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (376,188,8,'b_a',32,'Household Member is',129,'Household Member of',1,NULL,NULL,NULL), + (377,189,7,'a_b',102,'Head of Household for',32,'Head of Household is',1,NULL,NULL,NULL), + (378,189,7,'b_a',32,'Head of Household is',102,'Head of Household for',1,NULL,NULL,NULL), + (379,190,2,'a_b',186,'Spouse of',102,'Spouse of',1,NULL,NULL,NULL), + (380,190,2,'b_a',102,'Spouse of',186,'Spouse of',1,NULL,NULL,NULL), + (381,191,1,'a_b',12,'Child of',93,'Parent of',1,NULL,NULL,NULL), + (382,191,1,'b_a',93,'Parent of',12,'Child of',1,NULL,NULL,NULL), + (383,192,1,'a_b',159,'Child of',93,'Parent of',1,NULL,NULL,NULL), + (384,192,1,'b_a',93,'Parent of',159,'Child of',1,NULL,NULL,NULL), + (385,193,1,'a_b',12,'Child of',99,'Parent of',1,NULL,NULL,NULL), + (386,193,1,'b_a',99,'Parent of',12,'Child of',1,NULL,NULL,NULL), + (387,194,1,'a_b',159,'Child of',99,'Parent of',1,NULL,NULL,NULL), + (388,194,1,'b_a',99,'Parent of',159,'Child of',1,NULL,NULL,NULL), + (389,195,4,'a_b',159,'Sibling of',12,'Sibling of',1,NULL,NULL,NULL), + (390,195,4,'b_a',12,'Sibling of',159,'Sibling of',1,NULL,NULL,NULL), + (391,196,8,'a_b',99,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), + (392,196,8,'b_a',40,'Household Member is',99,'Household Member of',1,NULL,NULL,NULL), + (393,197,8,'a_b',12,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), + (394,197,8,'b_a',40,'Household Member is',12,'Household Member of',1,NULL,NULL,NULL), + (395,198,8,'a_b',159,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), + (396,198,8,'b_a',40,'Household Member is',159,'Household Member of',1,NULL,NULL,NULL), + (397,199,7,'a_b',93,'Head of Household for',40,'Head of Household is',1,NULL,NULL,NULL), + (398,199,7,'b_a',40,'Head of Household is',93,'Head of Household for',1,NULL,NULL,NULL), + (399,200,2,'a_b',99,'Spouse of',93,'Spouse of',1,NULL,NULL,NULL), + (400,200,2,'b_a',93,'Spouse of',99,'Spouse of',1,NULL,NULL,NULL), + (401,201,5,'a_b',145,'Employee of',3,'Employer of',1,NULL,NULL,NULL), + (402,201,5,'b_a',3,'Employer of',145,'Employee of',1,NULL,NULL,NULL), + (403,202,5,'a_b',171,'Employee of',21,'Employer of',1,NULL,NULL,NULL), + (404,202,5,'b_a',21,'Employer of',171,'Employee of',1,NULL,NULL,NULL), + (405,203,5,'a_b',86,'Employee of',36,'Employer of',1,NULL,NULL,NULL), + (406,203,5,'b_a',36,'Employer of',86,'Employee of',1,NULL,NULL,NULL), + (407,204,5,'a_b',115,'Employee of',58,'Employer of',1,NULL,NULL,NULL), + (408,204,5,'b_a',58,'Employer of',115,'Employee of',1,NULL,NULL,NULL), + (409,205,5,'a_b',96,'Employee of',77,'Employer of',1,NULL,NULL,NULL), + (410,205,5,'b_a',77,'Employer of',96,'Employee of',1,NULL,NULL,NULL), + (411,206,5,'a_b',30,'Employee of',83,'Employer of',1,NULL,NULL,NULL), + (412,206,5,'b_a',83,'Employer of',30,'Employee of',1,NULL,NULL,NULL), + (413,207,5,'a_b',22,'Employee of',85,'Employer of',1,NULL,NULL,NULL), + (414,207,5,'b_a',85,'Employer of',22,'Employee of',1,NULL,NULL,NULL), + (415,208,5,'a_b',72,'Employee of',90,'Employer of',1,NULL,NULL,NULL), + (416,208,5,'b_a',90,'Employer of',72,'Employee of',1,NULL,NULL,NULL), + (417,209,5,'a_b',139,'Employee of',103,'Employer of',1,NULL,NULL,NULL), + (418,209,5,'b_a',103,'Employer of',139,'Employee of',1,NULL,NULL,NULL), + (419,210,5,'a_b',54,'Employee of',107,'Employer of',1,NULL,NULL,NULL), + (420,210,5,'b_a',107,'Employer of',54,'Employee of',1,NULL,NULL,NULL), + (421,211,5,'a_b',11,'Employee of',128,'Employer of',1,NULL,NULL,NULL), + (422,211,5,'b_a',128,'Employer of',11,'Employee of',1,NULL,NULL,NULL), + (423,212,5,'a_b',201,'Employee of',134,'Employer of',1,NULL,NULL,NULL), + (424,212,5,'b_a',134,'Employer of',201,'Employee of',1,NULL,NULL,NULL), + (425,213,5,'a_b',175,'Employee of',136,'Employer of',1,NULL,NULL,NULL), + (426,213,5,'b_a',136,'Employer of',175,'Employee of',1,NULL,NULL,NULL), + (427,214,5,'a_b',95,'Employee of',152,'Employer of',1,NULL,NULL,NULL), + (428,214,5,'b_a',152,'Employer of',95,'Employee of',1,NULL,NULL,NULL), + (429,215,5,'a_b',198,'Employee of',170,'Employer of',1,NULL,NULL,NULL), + (430,215,5,'b_a',170,'Employer of',198,'Employee of',1,NULL,NULL,NULL), + (431,216,5,'a_b',199,'Employee of',173,'Employer of',1,NULL,NULL,NULL), + (432,216,5,'b_a',173,'Employer of',199,'Employee of',1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_relationship_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -7924,15 +7918,15 @@ LOCK TABLES `civicrm_relationship_type` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_type` DISABLE KEYS */; INSERT INTO `civicrm_relationship_type` (`id`, `name_a_b`, `label_a_b`, `name_b_a`, `label_b_a`, `description`, `contact_type_a`, `contact_type_b`, `contact_sub_type_a`, `contact_sub_type_b`, `is_reserved`, `is_active`) VALUES (1,'Child of','Child of','Parent of','Parent of','Parent/child relationship.','Individual','Individual',NULL,NULL,0,1), -(2,'Spouse of','Spouse of','Spouse of','Spouse of','Spousal relationship.','Individual','Individual',NULL,NULL,0,1), -(3,'Partner of','Partner of','Partner of','Partner of','Partner relationship.','Individual','Individual',NULL,NULL,0,1), -(4,'Sibling of','Sibling of','Sibling of','Sibling of','Sibling relationship.','Individual','Individual',NULL,NULL,0,1), -(5,'Employee of','Employee of','Employer of','Employer of','Employment relationship.','Individual','Organization',NULL,NULL,1,1), -(6,'Volunteer for','Volunteer for','Volunteer is','Volunteer is','Volunteer relationship.','Individual','Organization',NULL,NULL,0,1), -(7,'Head of Household for','Head of Household for','Head of Household is','Head of Household is','Head of household.','Individual','Household',NULL,NULL,1,1), -(8,'Household Member of','Household Member of','Household Member is','Household Member is','Household membership.','Individual','Household',NULL,NULL,1,1), -(9,'Case Coordinator is','Case Coordinator is','Case Coordinator','Case Coordinator','Case Coordinator','Individual','Individual',NULL,NULL,0,1), -(10,'Supervised by','Supervised by','Supervisor','Supervisor','Immediate workplace supervisor','Individual','Individual',NULL,NULL,0,1); + (2,'Spouse of','Spouse of','Spouse of','Spouse of','Spousal relationship.','Individual','Individual',NULL,NULL,0,1), + (3,'Partner of','Partner of','Partner of','Partner of','Partner relationship.','Individual','Individual',NULL,NULL,0,1), + (4,'Sibling of','Sibling of','Sibling of','Sibling of','Sibling relationship.','Individual','Individual',NULL,NULL,0,1), + (5,'Employee of','Employee of','Employer of','Employer of','Employment relationship.','Individual','Organization',NULL,NULL,1,1), + (6,'Volunteer for','Volunteer for','Volunteer is','Volunteer is','Volunteer relationship.','Individual','Organization',NULL,NULL,0,1), + (7,'Head of Household for','Head of Household for','Head of Household is','Head of Household is','Head of household.','Individual','Household',NULL,NULL,1,1), + (8,'Household Member of','Household Member of','Household Member is','Household Member is','Household membership.','Individual','Household',NULL,NULL,1,1), + (9,'Case Coordinator is','Case Coordinator is','Case Coordinator','Case Coordinator','Case Coordinator','Individual','Individual',NULL,NULL,0,1), + (10,'Supervised by','Supervised by','Supervisor','Supervisor','Immediate workplace supervisor','Individual','Individual',NULL,NULL,0,1); /*!40000 ALTER TABLE `civicrm_relationship_type` ENABLE KEYS */; UNLOCK TABLES; @@ -7944,40 +7938,40 @@ LOCK TABLES `civicrm_report_instance` WRITE; /*!40000 ALTER TABLE `civicrm_report_instance` DISABLE KEYS */; INSERT INTO `civicrm_report_instance` (`id`, `domain_id`, `title`, `report_id`, `name`, `args`, `description`, `permission`, `grouprole`, `form_values`, `is_active`, `created_id`, `owner_id`, `email_subject`, `email_to`, `email_cc`, `header`, `footer`, `navigation_id`, `drilldown_id`, `is_reserved`) VALUES (1,1,'Constituent Summary','contact/summary',NULL,NULL,'Provides a list of address and telephone information for constituent records in your system.','view all contacts',NULL,'a:31:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:14:\"street_address\";s:1:\"1\";s:4:\"city\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:92:\"Provides a list of address and telephone information for constituent records in your system.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','view all contacts',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(3,1,'Activity Details','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','view all contacts',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','view all contacts',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','view all contacts',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(6,1,'Activity Summary','activitySummary',NULL,NULL,'Shows activity statistics by type / date','view all contacts',NULL,'a:26:{s:6:\"fields\";a:4:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:8:\"duration\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:27:\"activity_date_time_relative\";s:0:\"\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:14:\"priority_id_op\";s:2:\"in\";s:17:\"priority_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"group_bys\";a:2:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:18:\"activity_date_time\";s:5:\"MONTH\";}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:16:\"activity_type_id\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:40:\"Shows activity statistics by type / date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(7,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(8,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:56:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:7:\"note_op\";s:3:\"has\";s:10:\"note_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:194:\"Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(9,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(10,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.','access CiviContribute',NULL,'a:16:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(11,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.','access CiviContribute',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:22:\"last_year_total_amount\";s:1:\"1\";s:23:\"civicrm_life_time_total\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(12,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(13,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(14,1,'Top Donors','contribute/topDonor',NULL,NULL,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(15,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(16,1,'Contribution Aggregate by Relationship','contribute/history',NULL,NULL,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.','access CiviContribute',NULL,'a:41:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:17:\"civicrm_upto_2009\";s:1:\"1\";i:2010;s:1:\"1\";i:2011;s:1:\"1\";i:2012;s:1:\"1\";i:2013;s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"in\";s:26:\"relationship_type_id_value\";a:0:{}s:12:\"this_year_op\";s:2:\"eq\";s:15:\"this_year_value\";s:0:\"\";s:13:\"other_year_op\";s:2:\"eq\";s:16:\"other_year_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:127:\"List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(17,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(18,1,'Pledge Detail','pledge/detail',NULL,NULL,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(19,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(20,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:40:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:21:\"debit_accounting_code\";s:1:\"1\";s:22:\"credit_accounting_code\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:9:\"trxn_date\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:24:\"debit_accounting_code_op\";s:2:\"in\";s:27:\"debit_accounting_code_value\";a:0:{}s:25:\"credit_accounting_code_op\";s:2:\"in\";s:28:\"credit_accounting_code_value\";a:0:{}s:13:\"debit_name_op\";s:2:\"in\";s:16:\"debit_name_value\";a:0:{}s:14:\"credit_name_op\";s:2:\"in\";s:17:\"credit_name_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:18:\"trxn_date_relative\";s:1:\"0\";s:14:\"trxn_date_from\";s:0:\"\";s:12:\"trxn_date_to\";s:0:\"\";s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:11:\"description\";s:133:\"Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(21,1,'Recurring Contributions','contribute/recur',NULL,NULL,'Provides information about the status of recurring contributions','access CiviContribute',NULL,'a:39:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:18:\"frequency_interval\";s:1:\"1\";s:14:\"frequency_unit\";s:1:\"1\";s:12:\"installments\";s:1:\"1\";s:8:\"end_date\";s:1:\"1\";}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"5\";}s:11:\"currency_op\";s:2:\"in\";s:14:\"currency_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:17:\"frequency_unit_op\";s:2:\"in\";s:20:\"frequency_unit_value\";a:0:{}s:22:\"frequency_interval_min\";s:0:\"\";s:22:\"frequency_interval_max\";s:0:\"\";s:21:\"frequency_interval_op\";s:3:\"lte\";s:24:\"frequency_interval_value\";s:0:\"\";s:16:\"installments_min\";s:0:\"\";s:16:\"installments_max\";s:0:\"\";s:15:\"installments_op\";s:3:\"lte\";s:18:\"installments_value\";s:0:\"\";s:19:\"start_date_relative\";s:0:\"\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:37:\"next_sched_contribution_date_relative\";s:0:\"\";s:33:\"next_sched_contribution_date_from\";s:0:\"\";s:31:\"next_sched_contribution_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:0:\"\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:28:\"calculated_end_date_relative\";s:0:\"\";s:24:\"calculated_end_date_from\";s:0:\"\";s:22:\"calculated_end_date_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:41:\"Shows all pending recurring contributions\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:14:\"addToDashboard\";s:1:\"1\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(22,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by Type and Member Since.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:59:\"Provides a summary of memberships by Type and Member Since.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(23,1,'Membership Details','member/detail',NULL,NULL,'Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:151:\"Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(24,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(25,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(26,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(27,1,'Event Income Summary','event/summary',NULL,NULL,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(28,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(29,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(30,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(31,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:17:\"unique_open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(32,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(33,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(34,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), -(35,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); + (2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','view all contacts',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (3,1,'Activity Details','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','view all contacts',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','view all contacts',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','view all contacts',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (6,1,'Activity Summary','activitySummary',NULL,NULL,'Shows activity statistics by type / date','view all contacts',NULL,'a:26:{s:6:\"fields\";a:4:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:8:\"duration\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:27:\"activity_date_time_relative\";s:0:\"\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:14:\"priority_id_op\";s:2:\"in\";s:17:\"priority_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"group_bys\";a:2:{s:16:\"activity_type_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:18:\"activity_date_time\";s:5:\"MONTH\";}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:16:\"activity_type_id\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:40:\"Shows activity statistics by type / date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:10:\"permission\";s:17:\"view all contacts\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (7,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (8,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:56:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:7:\"note_op\";s:3:\"has\";s:10:\"note_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:194:\"Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (9,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (10,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.','access CiviContribute',NULL,'a:16:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"Some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (11,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.','access CiviContribute',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:22:\"last_year_total_amount\";s:1:\"1\";s:23:\"civicrm_life_time_total\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"Last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (12,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (13,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (14,1,'Top Donors','contribute/topDonor',NULL,NULL,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (15,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (16,1,'Contribution Aggregate by Relationship','contribute/history',NULL,NULL,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.','access CiviContribute',NULL,'a:41:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:17:\"civicrm_upto_2009\";s:1:\"1\";i:2010;s:1:\"1\";i:2011;s:1:\"1\";i:2012;s:1:\"1\";i:2013;s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"in\";s:26:\"relationship_type_id_value\";a:0:{}s:12:\"this_year_op\";s:2:\"eq\";s:15:\"this_year_value\";s:0:\"\";s:13:\"other_year_op\";s:2:\"eq\";s:16:\"other_year_value\";s:0:\"\";s:21:\"receive_date_relative\";s:0:\"\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:127:\"List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (17,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (18,1,'Pledge Detail','pledge/detail',NULL,NULL,'List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (19,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (20,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:40:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:21:\"debit_accounting_code\";s:1:\"1\";s:22:\"credit_accounting_code\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:9:\"trxn_date\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:24:\"debit_accounting_code_op\";s:2:\"in\";s:27:\"debit_accounting_code_value\";a:0:{}s:25:\"credit_accounting_code_op\";s:2:\"in\";s:28:\"credit_accounting_code_value\";a:0:{}s:13:\"debit_name_op\";s:2:\"in\";s:16:\"debit_name_value\";a:0:{}s:14:\"credit_name_op\";s:2:\"in\";s:17:\"credit_name_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:18:\"trxn_date_relative\";s:1:\"0\";s:14:\"trxn_date_from\";s:0:\"\";s:12:\"trxn_date_to\";s:0:\"\";s:10:\"amount_min\";s:0:\"\";s:10:\"amount_max\";s:0:\"\";s:9:\"amount_op\";s:3:\"lte\";s:12:\"amount_value\";s:0:\"\";s:11:\"description\";s:133:\"Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;s:11:\"is_reserved\";b:0;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (21,1,'Recurring Contributions','contribute/recur',NULL,NULL,'Provides information about the status of recurring contributions','access CiviContribute',NULL,'a:39:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:18:\"frequency_interval\";s:1:\"1\";s:14:\"frequency_unit\";s:1:\"1\";s:12:\"installments\";s:1:\"1\";s:8:\"end_date\";s:1:\"1\";}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"5\";}s:11:\"currency_op\";s:2:\"in\";s:14:\"currency_value\";a:0:{}s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:17:\"frequency_unit_op\";s:2:\"in\";s:20:\"frequency_unit_value\";a:0:{}s:22:\"frequency_interval_min\";s:0:\"\";s:22:\"frequency_interval_max\";s:0:\"\";s:21:\"frequency_interval_op\";s:3:\"lte\";s:24:\"frequency_interval_value\";s:0:\"\";s:16:\"installments_min\";s:0:\"\";s:16:\"installments_max\";s:0:\"\";s:15:\"installments_op\";s:3:\"lte\";s:18:\"installments_value\";s:0:\"\";s:19:\"start_date_relative\";s:0:\"\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:37:\"next_sched_contribution_date_relative\";s:0:\"\";s:33:\"next_sched_contribution_date_from\";s:0:\"\";s:31:\"next_sched_contribution_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:0:\"\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:28:\"calculated_end_date_relative\";s:0:\"\";s:24:\"calculated_end_date_from\";s:0:\"\";s:22:\"calculated_end_date_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:41:\"Shows all pending recurring contributions\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:9:\"row_count\";s:0:\"\";s:14:\"addToDashboard\";s:1:\"1\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"parent_id\";s:0:\"\";s:11:\"instance_id\";N;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (22,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by Type and Member Since.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:59:\"Provides a summary of memberships by Type and Member Since.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (23,1,'Membership Details','member/detail',NULL,NULL,'Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date). Can also display contributions (payments) associated with each membership.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:151:\"Provides a list of members along with their Membership Status and membership details (Member Since, Membership Start Date, Membership Expiration Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (24,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:29:\"membership_join_date_relative\";s:1:\"0\";s:25:\"membership_join_date_from\";s:0:\"\";s:23:\"membership_join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (25,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (26,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (27,1,'Event Income Summary','event/summary',NULL,NULL,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (28,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (29,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (30,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (31,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:17:\"unique_open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (32,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (33,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (34,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0), + (35,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_report_instance` ENABLE KEYS */; UNLOCK TABLES; @@ -7988,15 +7982,15 @@ UNLOCK TABLES; LOCK TABLES `civicrm_saved_search` WRITE; /*!40000 ALTER TABLE `civicrm_saved_search` DISABLE KEYS */; INSERT INTO `civicrm_saved_search` (`id`, `name`, `label`, `form_values`, `mapping_id`, `search_custom_id`, `api_entity`, `api_params`, `created_id`, `modified_id`, `expires_date`, `created_date`, `modified_date`, `description`, `is_template`) VALUES - (1,'Administer_Campaigns','Administer Campaigns',NULL,NULL,NULL,'Campaign','{\"version\":4,\"select\":[\"id\",\"title\",\"description\",\"is_active\",\"start_date\",\"end_date\",\"campaign_type_id:label\",\"status_id:label\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), -(2,'Administer_Petitions','Administer Petitions',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), -(3,'Administer_Survey_Options','Administer Survey Options',NULL,NULL,NULL,'OptionValue','{\"version\":4,\"select\":[\"label\",\"value\",\"filter\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), -(4,'Administer_Surveys','Administer Surveys',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"activity_type_id:label\",\"release_frequency\",\"default_number_of_contacts\",\"max_number_of_contacts\",\"is_active\",\"is_default\",\"result_id:label\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"!=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:54','2025-02-11 21:13:54',NULL,0), -(5,'Email_Bounce_History','Email Bounce History',NULL,NULL,NULL,'MailingEventBounce','{\"version\":4,\"select\":[\"time_stamp\",\"bounce_type_id:label\",\"bounce_reason\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[[\"MailingEventQueue AS MailingEventBounce_MailingEventQueue_event_queue_id_01\",\"INNER\",[\"event_queue_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01.id\"]],[\"MailingJob AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01.job_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.id\"]],[\"Mailing AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.mailing_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), -(6,'Site_Email_Addresses','Site Email Addresses',NULL,NULL,NULL,'SiteEmailAddress','{\"version\":4,\"select\":[\"display_name\",\"email\",\"description\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), -(7,'Contact_Summary_Notes','Contact Summary Notes',NULL,NULL,NULL,'Note','{\"version\":4,\"select\":[\"id\",\"subject\",\"note\",\"note_date\",\"modified_date\",\"contact_id.sort_name\",\"GROUP_CONCAT(UNIQUE Note_EntityFile_File_01.file_name) AS GROUP_CONCAT_Note_EntityFile_File_01_file_name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[\"id\"],\"join\":[[\"File AS Note_EntityFile_File_01\",\"LEFT\",\"EntityFile\",[\"id\",\"=\",\"Note_EntityFile_File_01.entity_id\"],[\"Note_EntityFile_File_01.entity_table\",\"=\",\"\'civicrm_note\'\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), -(8,'Contact_Summary_Relationships','Contact Summary Relationships',NULL,NULL,NULL,'RelationshipCache','{\"version\":4,\"select\":[\"near_relation:label\",\"RelationshipCache_Contact_far_contact_id_01.display_name\",\"start_date\",\"end_date\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.city\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.state_province_id:label\",\"RelationshipCache_Contact_far_contact_id_01.email_primary.email\",\"RelationshipCache_Contact_far_contact_id_01.phone_primary.phone\",\"permission_near_to_far:label\",\"permission_far_to_near:label\",\"is_active\"],\"orderBy\":[],\"where\":[[\"RelationshipCache_Contact_far_contact_id_01.is_deleted\",\"=\",false]],\"groupBy\":[],\"join\":[[\"Contact AS RelationshipCache_Contact_far_contact_id_01\",\"LEFT\",[\"far_contact_id\",\"=\",\"RelationshipCache_Contact_far_contact_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0), -(9,'Administer_Site_Tokens','Administer Site Tokens',NULL,NULL,NULL,'SiteToken','{\"version\":4,\"select\":[\"id\",\"is_active\",\"name\",\"label\",\"is_reserved\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 21:13:55','2025-02-11 21:13:55',NULL,0); + (1,'Administer_Campaigns','Administer Campaigns',NULL,NULL,NULL,'Campaign','{\"version\":4,\"select\":[\"id\",\"title\",\"description\",\"is_active\",\"start_date\",\"end_date\",\"campaign_type_id:label\",\"status_id:label\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (2,'Administer_Petitions','Administer Petitions',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (3,'Administer_Survey_Options','Administer Survey Options',NULL,NULL,NULL,'OptionValue','{\"version\":4,\"select\":[\"label\",\"value\",\"filter\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (4,'Administer_Surveys','Administer Surveys',NULL,NULL,NULL,'Survey','{\"version\":4,\"select\":[\"id\",\"title\",\"campaign_id:label\",\"activity_type_id:label\",\"release_frequency\",\"default_number_of_contacts\",\"max_number_of_contacts\",\"is_active\",\"is_default\",\"result_id:label\"],\"orderBy\":[],\"where\":[[\"activity_type_id:name\",\"!=\",\"Petition\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (5,'Email_Bounce_History','Email Bounce History',NULL,NULL,NULL,'MailingEventBounce','{\"version\":4,\"select\":[\"time_stamp\",\"bounce_type_id:label\",\"bounce_reason\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[],\"join\":[[\"MailingEventQueue AS MailingEventBounce_MailingEventQueue_event_queue_id_01\",\"INNER\",[\"event_queue_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01.id\"]],[\"MailingJob AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01.job_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.id\"]],[\"Mailing AS MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01\",\"INNER\",[\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01.mailing_id\",\"=\",\"MailingEventBounce_MailingEventQueue_event_queue_id_01_MailingEventQueue_MailingJob_job_id_01_MailingJob_Mailing_mailing_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (6,'Site_Email_Addresses','Site Email Addresses',NULL,NULL,NULL,'SiteEmailAddress','{\"version\":4,\"select\":[\"display_name\",\"email\",\"description\",\"is_active\",\"is_default\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (7,'Contact_Summary_Notes','Contact Summary Notes',NULL,NULL,NULL,'Note','{\"version\":4,\"select\":[\"id\",\"subject\",\"note\",\"note_date\",\"modified_date\",\"contact_id.sort_name\",\"GROUP_CONCAT(UNIQUE Note_EntityFile_File_01.file_name) AS GROUP_CONCAT_Note_EntityFile_File_01_file_name\"],\"orderBy\":[],\"where\":[],\"groupBy\":[\"id\"],\"join\":[[\"File AS Note_EntityFile_File_01\",\"LEFT\",\"EntityFile\",[\"id\",\"=\",\"Note_EntityFile_File_01.entity_id\"],[\"Note_EntityFile_File_01.entity_table\",\"=\",\"\'civicrm_note\'\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (8,'Contact_Summary_Relationships','Contact Summary Relationships',NULL,NULL,NULL,'RelationshipCache','{\"version\":4,\"select\":[\"near_relation:label\",\"RelationshipCache_Contact_far_contact_id_01.display_name\",\"start_date\",\"end_date\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.city\",\"RelationshipCache_Contact_far_contact_id_01.address_primary.state_province_id:label\",\"RelationshipCache_Contact_far_contact_id_01.email_primary.email\",\"RelationshipCache_Contact_far_contact_id_01.phone_primary.phone\",\"permission_near_to_far:label\",\"permission_far_to_near:label\",\"is_active\"],\"orderBy\":[],\"where\":[[\"RelationshipCache_Contact_far_contact_id_01.is_deleted\",\"=\",false]],\"groupBy\":[],\"join\":[[\"Contact AS RelationshipCache_Contact_far_contact_id_01\",\"LEFT\",[\"far_contact_id\",\"=\",\"RelationshipCache_Contact_far_contact_id_01.id\"]]],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0), + (9,'Administer_Site_Tokens','Administer Site Tokens',NULL,NULL,NULL,'SiteToken','{\"version\":4,\"select\":[\"id\",\"is_active\",\"name\",\"label\",\"is_reserved\"],\"orderBy\":[],\"where\":[[\"domain_id:name\",\"=\",\"current_domain\"]],\"groupBy\":[],\"join\":[],\"having\":[]}',NULL,NULL,NULL,'2025-02-11 22:13:21','2025-02-11 22:13:21',NULL,0); /*!40000 ALTER TABLE `civicrm_saved_search` ENABLE KEYS */; UNLOCK TABLES; @@ -8027,7 +8021,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_site_token` WRITE; /*!40000 ALTER TABLE `civicrm_site_token` DISABLE KEYS */; INSERT INTO `civicrm_site_token` (`id`, `domain_id`, `name`, `label`, `body_html`, `body_text`, `is_active`, `is_reserved`, `created_id`, `modified_id`, `modified_date`) VALUES - (1,1,'message_header','Message Header','
','Sample Header for TEXT formatted content.',1,1,NULL,NULL,'2025-02-11 21:13:43'); + (1,1,'message_header','Message Header','
','Sample Header for TEXT formatted content.',1,1,NULL,NULL,'2025-02-11 22:13:17'); /*!40000 ALTER TABLE `civicrm_site_token` ENABLE KEYS */; UNLOCK TABLES; @@ -8048,4091 +8042,4091 @@ LOCK TABLES `civicrm_state_province` WRITE; /*!40000 ALTER TABLE `civicrm_state_province` DISABLE KEYS */; INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id`, `is_active`) VALUES (1000,'Alabama','AL',1228,1), -(1001,'Alaska','AK',1228,1), -(1002,'Arizona','AZ',1228,1), -(1003,'Arkansas','AR',1228,1), -(1004,'California','CA',1228,1), -(1005,'Colorado','CO',1228,1), -(1006,'Connecticut','CT',1228,1), -(1007,'Delaware','DE',1228,1), -(1008,'Florida','FL',1228,1), -(1009,'Georgia','GA',1228,1), -(1010,'Hawaii','HI',1228,1), -(1011,'Idaho','ID',1228,1), -(1012,'Illinois','IL',1228,1), -(1013,'Indiana','IN',1228,1), -(1014,'Iowa','IA',1228,1), -(1015,'Kansas','KS',1228,1), -(1016,'Kentucky','KY',1228,1), -(1017,'Louisiana','LA',1228,1), -(1018,'Maine','ME',1228,1), -(1019,'Maryland','MD',1228,1), -(1020,'Massachusetts','MA',1228,1), -(1021,'Michigan','MI',1228,1), -(1022,'Minnesota','MN',1228,1), -(1023,'Mississippi','MS',1228,1), -(1024,'Missouri','MO',1228,1), -(1025,'Montana','MT',1228,1), -(1026,'Nebraska','NE',1228,1), -(1027,'Nevada','NV',1228,1), -(1028,'New Hampshire','NH',1228,1), -(1029,'New Jersey','NJ',1228,1), -(1030,'New Mexico','NM',1228,1), -(1031,'New York','NY',1228,1), -(1032,'North Carolina','NC',1228,1), -(1033,'North Dakota','ND',1228,1), -(1034,'Ohio','OH',1228,1), -(1035,'Oklahoma','OK',1228,1), -(1036,'Oregon','OR',1228,1), -(1037,'Pennsylvania','PA',1228,1), -(1038,'Rhode Island','RI',1228,1), -(1039,'South Carolina','SC',1228,1), -(1040,'South Dakota','SD',1228,1), -(1041,'Tennessee','TN',1228,1), -(1042,'Texas','TX',1228,1), -(1043,'Utah','UT',1228,1), -(1044,'Vermont','VT',1228,1), -(1045,'Virginia','VA',1228,1), -(1046,'Washington','WA',1228,1), -(1047,'West Virginia','WV',1228,1), -(1048,'Wisconsin','WI',1228,1), -(1049,'Wyoming','WY',1228,1), -(1050,'District of Columbia','DC',1228,1), -(1051,'American Samoa','AS',1228,1), -(1052,'Guam','GU',1228,1), -(1053,'Northern Mariana Islands','MP',1228,1), -(1054,'Puerto Rico','PR',1228,1), -(1055,'Virgin Islands','VI',1228,1), -(1056,'United States Minor Outlying Islands','UM',1228,1), -(1057,'Armed Forces Europe','AE',1228,1), -(1058,'Armed Forces Americas','AA',1228,1), -(1059,'Armed Forces Pacific','AP',1228,1), -(1060,'Alberta','AB',1039,1), -(1061,'British Columbia','BC',1039,1), -(1062,'Manitoba','MB',1039,1), -(1063,'New Brunswick','NB',1039,1), -(1064,'Newfoundland and Labrador','NL',1039,1), -(1065,'Northwest Territories','NT',1039,1), -(1066,'Nova Scotia','NS',1039,1), -(1067,'Nunavut','NU',1039,1), -(1068,'Ontario','ON',1039,1), -(1069,'Prince Edward Island','PE',1039,1), -(1070,'Quebec','QC',1039,1), -(1071,'Saskatchewan','SK',1039,1), -(1072,'Yukon Territory','YT',1039,1), -(1073,'Maharashtra','MH',1101,1), -(1074,'Karnataka','KA',1101,1), -(1075,'Andhra Pradesh','AP',1101,1), -(1076,'Arunachal Pradesh','AR',1101,1), -(1077,'Assam','AS',1101,1), -(1078,'Bihar','BR',1101,1), -(1079,'Chhattisgarh','CG',1101,1), -(1080,'Goa','GA',1101,1), -(1081,'Gujarat','GJ',1101,1), -(1082,'Haryana','HR',1101,1), -(1083,'Himachal Pradesh','HP',1101,1), -(1084,'Jammu and Kashmir','JK',1101,1), -(1085,'Jharkhand','JH',1101,1), -(1086,'Kerala','KL',1101,1), -(1087,'Madhya Pradesh','MP',1101,1), -(1088,'Manipur','MN',1101,1), -(1089,'Meghalaya','ML',1101,1), -(1090,'Mizoram','MZ',1101,1), -(1091,'Nagaland','NL',1101,1), -(1092,'Orissa','OR',1101,1), -(1093,'Punjab','PB',1101,1), -(1094,'Rajasthan','RJ',1101,1), -(1095,'Sikkim','SK',1101,1), -(1096,'Tamil Nadu','TN',1101,1), -(1097,'Tripura','TR',1101,1), -(1098,'Uttarakhand','UT',1101,1), -(1099,'Uttar Pradesh','UP',1101,1), -(1100,'West Bengal','WB',1101,1), -(1101,'Andaman and Nicobar Islands','AN',1101,1), -(1102,'Delhi','DL',1101,1), -(1103,'Lakshadweep','LD',1101,1), -(1104,'Pondicherry','PY',1101,1), -(1105,'Telangana','TG',1101,1), -(1106,'Dādra and Nagar Haveli and Damān and Diu','DH',1101,1), -(1107,'Ladākh','LA',1101,1), -(1108,'Chandigarh','CH',1101,1), -(1109,'mazowieckie','MZ',1172,1), -(1110,'pomorskie','PM',1172,1), -(1111,'dolnośląskie','DS',1172,1), -(1112,'kujawsko-pomorskie','KP',1172,1), -(1113,'lubelskie','LU',1172,1), -(1114,'lubuskie','LB',1172,1), -(1115,'łódzkie','LD',1172,1), -(1116,'małopolskie','MA',1172,1), -(1117,'opolskie','OP',1172,1), -(1118,'podkarpackie','PK',1172,1), -(1119,'podlaskie','PD',1172,1), -(1120,'śląskie','SL',1172,1), -(1121,'świętokrzyskie','SK',1172,1), -(1122,'warmińsko-mazurskie','WN',1172,1), -(1123,'wielkopolskie','WP',1172,1), -(1124,'zachodniopomorskie','ZP',1172,1), -(1125,'Abu Zaby','AZ',1225,1), -(1126,'\'Ajman','AJ',1225,1), -(1127,'Al Fujayrah','FU',1225,1), -(1128,'Ash Shariqah','SH',1225,1), -(1129,'Dubayy','DU',1225,1), -(1130,'Ra\'s al Khaymah','RK',1225,1), -(1131,'Dac Lac','33',1233,1), -(1132,'Umm al Qaywayn','UQ',1225,1), -(1133,'Badakhshan','BDS',1001,1), -(1134,'Badghis','BDG',1001,1), -(1135,'Baghlan','BGL',1001,1), -(1136,'Balkh','BAL',1001,1), -(1137,'Bamian','BAM',1001,1), -(1138,'Farah','FRA',1001,1), -(1139,'Faryab','FYB',1001,1), -(1140,'Ghazni','GHA',1001,1), -(1141,'Ghowr','GHO',1001,1), -(1142,'Helmand','HEL',1001,1), -(1143,'Herat','HER',1001,1), -(1144,'Jowzjan','JOW',1001,1), -(1145,'Kabul','KAB',1001,1), -(1146,'Kandahar','KAN',1001,1), -(1147,'Kapisa','KAP',1001,1), -(1148,'Khowst','KHO',1001,1), -(1149,'Konar','KNR',1001,1), -(1150,'Kondoz','KDZ',1001,1), -(1151,'Laghman','LAG',1001,1), -(1152,'Lowgar','LOW',1001,1), -(1153,'Nangrahar','NAN',1001,1), -(1154,'Nimruz','NIM',1001,1), -(1155,'Nurestan','NUR',1001,1), -(1156,'Oruzgan','ORU',1001,1), -(1157,'Paktia','PIA',1001,1), -(1158,'Paktika','PKA',1001,1), -(1159,'Parwan','PAR',1001,1), -(1160,'Samangan','SAM',1001,1), -(1161,'Sar-e Pol','SAR',1001,1), -(1162,'Takhar','TAK',1001,1), -(1163,'Wardak','WAR',1001,1), -(1164,'Zabol','ZAB',1001,1), -(1165,'Berat','BR',1002,1), -(1166,'Bulqizë','BU',1002,1), -(1167,'Delvinë','DL',1002,1), -(1168,'Devoll','DV',1002,1), -(1169,'Dibër','DI',1002,1), -(1170,'Durrës','DR',1002,1), -(1171,'Elbasan','EL',1002,1), -(1172,'Fier','FR',1002,1), -(1173,'Gramsh','GR',1002,1), -(1174,'Gjirokastër','GJ',1002,1), -(1175,'Has','HA',1002,1), -(1176,'Kavajë','KA',1002,1), -(1177,'Kolonjë','ER',1002,1), -(1178,'Korçë','KO',1002,1), -(1179,'Krujë','KR',1002,1), -(1180,'Kuçovë','KC',1002,1), -(1181,'Kukës','KU',1002,1), -(1182,'Kurbin','KB',1002,1), -(1183,'Lezhë','LE',1002,1), -(1184,'Librazhd','LB',1002,1), -(1185,'Lushnjë','LU',1002,1), -(1186,'Malësi e Madhe','MM',1002,1), -(1187,'Mallakastër','MK',1002,1), -(1188,'Mat','MT',1002,1), -(1189,'Mirditë','MR',1002,1), -(1190,'Peqin','PQ',1002,1), -(1191,'Përmet','PR',1002,1), -(1192,'Pogradec','PG',1002,1), -(1193,'Pukë','PU',1002,1), -(1194,'Sarandë','SR',1002,1), -(1195,'Skrapar','SK',1002,1), -(1196,'Shkodër','SH',1002,1), -(1197,'Tepelenë','TE',1002,1), -(1198,'Tiranë','TR',1002,1), -(1199,'Tropojë','TP',1002,1), -(1200,'Vlorë','VL',1002,1), -(1201,'Erevan','ER',1011,1), -(1202,'Aragacotn','AG',1011,1), -(1203,'Ararat','AR',1011,1), -(1204,'Armavir','AV',1011,1), -(1205,'Gegarkunik\'','GR',1011,1), -(1206,'Kotayk\'','KT',1011,1), -(1207,'Lory','LO',1011,1), -(1208,'Sirak','SH',1011,1), -(1209,'Syunik\'','SU',1011,1), -(1210,'Tavus','TV',1011,1), -(1211,'Vayoc Jor','VD',1011,1), -(1212,'Andorra la Vella','07',1005,1), -(1213,'Canillo','02',1005,1), -(1214,'Encamp','03',1005,1), -(1215,'Escaldes-Engordany','08',1005,1), -(1216,'La Massana','04',1005,1), -(1217,'Ordino','05',1005,1), -(1218,'Sant Julia de Loria','06',1005,1), -(1219,'Bengo','BGO',1006,1), -(1220,'Benguela','BGU',1006,1), -(1221,'Bie','BIE',1006,1), -(1222,'Cabinda','CAB',1006,1), -(1223,'Cuando-Cubango','CCU',1006,1), -(1224,'Cuanza Norte','CNO',1006,1), -(1225,'Cuanza Sul','CUS',1006,1), -(1226,'Cunene','CNN',1006,1), -(1227,'Huambo','HUA',1006,1), -(1228,'Huila','HUI',1006,1), -(1229,'Luanda','LUA',1006,1), -(1230,'Lunda Norte','LNO',1006,1), -(1231,'Lunda Sul','LSU',1006,1), -(1232,'Malange','MAL',1006,1), -(1233,'Moxico','MOX',1006,1), -(1234,'Namibe','NAM',1006,1), -(1235,'Uige','UIG',1006,1), -(1236,'Zaire','ZAI',1006,1), -(1237,'Saint George','03',1009,1), -(1238,'Saint John','04',1009,1), -(1239,'Saint Mary','05',1009,1), -(1240,'Saint Paul','06',1009,1), -(1241,'Saint Peter','07',1009,1), -(1242,'Saint Philip','08',1009,1), -(1243,'Barbuda','10',1009,1), -(1244,'Redonda','11',1009,1), -(1245,'Capital federal','C',1010,1), -(1246,'Buenos Aires','B',1010,1), -(1247,'Catamarca','K',1010,1), -(1248,'Cordoba','X',1010,1), -(1249,'Corrientes','W',1010,1), -(1250,'Chaco','H',1010,1), -(1251,'Chubut','U',1010,1), -(1252,'Entre Rios','E',1010,1), -(1253,'Formosa','P',1010,1), -(1254,'Jujuy','Y',1010,1), -(1255,'La Pampa','L',1010,1), -(1256,'Mendoza','M',1010,1), -(1257,'Misiones','N',1010,1), -(1258,'Neuquen','Q',1010,1), -(1259,'Rio Negro','R',1010,1), -(1260,'Salta','A',1010,1), -(1261,'San Juan','J',1010,1), -(1262,'San Luis','D',1010,1), -(1263,'Santa Cruz','Z',1010,1), -(1264,'Santa Fe','S',1010,1), -(1265,'Santiago del Estero','G',1010,1), -(1266,'Tierra del Fuego','V',1010,1), -(1267,'Tucuman','T',1010,1), -(1268,'La Rioja','F',1010,1), -(1269,'Burgenland','1',1014,1), -(1270,'Kärnten','2',1014,1), -(1271,'Niederösterreich','3',1014,1), -(1272,'Oberösterreich','4',1014,1), -(1273,'Salzburg','5',1014,1), -(1274,'Steiermark','6',1014,1), -(1275,'Tirol','7',1014,1), -(1276,'Vorarlberg','8',1014,1), -(1277,'Wien','9',1014,1), -(1278,'Australian Antarctic Territory','AAT',1008,1), -(1279,'Australian Capital Territory','ACT',1013,1), -(1280,'Northern Territory','NT',1013,1), -(1281,'New South Wales','NSW',1013,1), -(1282,'Queensland','QLD',1013,1), -(1283,'South Australia','SA',1013,1), -(1284,'Tasmania','TAS',1013,1), -(1285,'Victoria','VIC',1013,1), -(1286,'Western Australia','WA',1013,1), -(1287,'Naxcivan','NX',1015,1), -(1288,'Ali Bayramli','AB',1015,1), -(1289,'Baki','BA',1015,1), -(1290,'Ganca','GA',1015,1), -(1291,'Lankaran','LA',1015,1), -(1292,'Mingacevir','MI',1015,1), -(1293,'Naftalan','NA',1015,1), -(1294,'Saki','SA',1015,1), -(1295,'Sumqayit','SM',1015,1), -(1296,'Susa','SS',1015,1), -(1297,'Xankandi','XA',1015,1), -(1298,'Yevlax','YE',1015,1), -(1299,'Abseron','ABS',1015,1), -(1300,'Agcabadi','AGC',1015,1), -(1301,'Agdam','AGM',1015,1), -(1302,'Agdas','AGS',1015,1), -(1303,'Agstafa','AGA',1015,1), -(1304,'Agsu','AGU',1015,1), -(1305,'Astara','AST',1015,1), -(1306,'Babak','BAB',1015,1), -(1307,'Balakan','BAL',1015,1), -(1308,'Barda','BAR',1015,1), -(1309,'Beylagan','BEY',1015,1), -(1310,'Bilasuvar','BIL',1015,1), -(1311,'Cabrayll','CAB',1015,1), -(1312,'Calilabad','CAL',1015,1), -(1313,'Culfa','CUL',1015,1), -(1314,'Daskasan','DAS',1015,1), -(1315,'Davaci','DAV',1015,1), -(1316,'Fuzuli','FUZ',1015,1), -(1317,'Gadabay','GAD',1015,1), -(1318,'Goranboy','GOR',1015,1), -(1319,'Goycay','GOY',1015,1), -(1320,'Haciqabul','HAC',1015,1), -(1321,'Imisli','IMI',1015,1), -(1322,'Ismayilli','ISM',1015,1), -(1323,'Kalbacar','KAL',1015,1), -(1324,'Kurdamir','KUR',1015,1), -(1325,'Lacin','LAC',1015,1), -(1326,'Lerik','LER',1015,1), -(1327,'Masalli','MAS',1015,1), -(1328,'Neftcala','NEF',1015,1), -(1329,'Oguz','OGU',1015,1), -(1330,'Ordubad','ORD',1015,1), -(1331,'Qabala','QAB',1015,1), -(1332,'Qax','QAX',1015,1), -(1333,'Qazax','QAZ',1015,1), -(1334,'Qobustan','QOB',1015,1), -(1335,'Quba','QBA',1015,1), -(1336,'Qubadli','QBI',1015,1), -(1337,'Qusar','QUS',1015,1), -(1338,'Saatli','SAT',1015,1), -(1339,'Sabirabad','SAB',1015,1), -(1340,'Sadarak','SAD',1015,1), -(1341,'Sahbuz','SAH',1015,1), -(1342,'Salyan','SAL',1015,1), -(1343,'Samaxi','SMI',1015,1), -(1344,'Samkir','SKR',1015,1), -(1345,'Samux','SMX',1015,1), -(1346,'Sarur','SAR',1015,1), -(1347,'Siyazan','SIY',1015,1), -(1348,'Tartar','TAR',1015,1), -(1349,'Tovuz','TOV',1015,1), -(1350,'Ucar','UCA',1015,1), -(1351,'Xacmaz','XAC',1015,1), -(1352,'Xanlar','XAN',1015,1), -(1353,'Xizi','XIZ',1015,1), -(1354,'Xocali','XCI',1015,1), -(1355,'Xocavand','XVD',1015,1), -(1356,'Yardimli','YAR',1015,1), -(1357,'Zangilan','ZAN',1015,1), -(1358,'Zaqatala','ZAQ',1015,1), -(1359,'Zardab','ZAR',1015,1), -(1360,'Federacija Bosna i Hercegovina','BIH',1026,1), -(1361,'Republika Srpska','SRP',1026,1), -(1362,'Bagerhat zila','05',1017,1), -(1363,'Bandarban zila','01',1017,1), -(1364,'Barguna zila','02',1017,1), -(1365,'Barisal zila','06',1017,1), -(1366,'Bhola zila','07',1017,1), -(1367,'Bogra zila','03',1017,1), -(1368,'Brahmanbaria zila','04',1017,1), -(1369,'Chandpur zila','09',1017,1), -(1370,'Chittagong zila','10',1017,1), -(1371,'Chuadanga zila','12',1017,1), -(1372,'Comilla zila','08',1017,1), -(1373,'Cox\'s Bazar zila','11',1017,1), -(1374,'Dhaka zila','13',1017,1), -(1375,'Dinajpur zila','14',1017,1), -(1376,'Faridpur zila','15',1017,1), -(1377,'Feni zila','16',1017,1), -(1378,'Gaibandha zila','19',1017,1), -(1379,'Gazipur zila','18',1017,1), -(1380,'Gopalganj zila','17',1017,1), -(1381,'Habiganj zila','20',1017,1), -(1382,'Jaipurhat zila','24',1017,1), -(1383,'Jamalpur zila','21',1017,1), -(1384,'Jessore zila','22',1017,1), -(1385,'Jhalakati zila','25',1017,1), -(1386,'Jhenaidah zila','23',1017,1), -(1387,'Khagrachari zila','29',1017,1), -(1388,'Khulna zila','27',1017,1), -(1389,'Kishorganj zila','26',1017,1), -(1390,'Kurigram zila','28',1017,1), -(1391,'Kushtia zila','30',1017,1), -(1392,'Lakshmipur zila','31',1017,1), -(1393,'Lalmonirhat zila','32',1017,1), -(1394,'Madaripur zila','36',1017,1), -(1395,'Magura zila','37',1017,1), -(1396,'Manikganj zila','33',1017,1), -(1397,'Meherpur zila','39',1017,1), -(1398,'Moulvibazar zila','38',1017,1), -(1399,'Munshiganj zila','35',1017,1), -(1400,'Mymensingh zila','34',1017,1), -(1401,'Naogaon zila','48',1017,1), -(1402,'Narail zila','43',1017,1), -(1403,'Narayanganj zila','40',1017,1), -(1404,'Narsingdi zila','42',1017,1), -(1405,'Natore zila','44',1017,1), -(1406,'Nawabganj zila','45',1017,1), -(1407,'Netrakona zila','41',1017,1), -(1408,'Nilphamari zila','46',1017,1), -(1409,'Noakhali zila','47',1017,1), -(1410,'Pabna zila','49',1017,1), -(1411,'Panchagarh zila','52',1017,1), -(1412,'Patuakhali zila','51',1017,1), -(1413,'Pirojpur zila','50',1017,1), -(1414,'Rajbari zila','53',1017,1), -(1415,'Rajshahi zila','54',1017,1), -(1416,'Rangamati zila','56',1017,1), -(1417,'Rangpur zila','55',1017,1), -(1418,'Satkhira zila','58',1017,1), -(1419,'Shariatpur zila','62',1017,1), -(1420,'Sherpur zila','57',1017,1), -(1421,'Sirajganj zila','59',1017,1), -(1422,'Sunamganj zila','61',1017,1), -(1423,'Sylhet zila','60',1017,1), -(1424,'Tangail zila','63',1017,1), -(1425,'Thakurgaon zila','64',1017,1), -(1426,'Christ Church','01',1018,1), -(1427,'Saint Andrew','02',1018,1), -(1428,'Saint George','03',1018,1), -(1429,'Saint James','04',1018,1), -(1430,'Saint John','05',1018,1), -(1431,'Saint Joseph','06',1018,1), -(1432,'Saint Lucy','07',1018,1), -(1433,'Saint Michael','08',1018,1), -(1434,'Saint Peter','09',1018,1), -(1435,'Saint Philip','10',1018,1), -(1436,'Saint Thomas','11',1018,1), -(1437,'Brussels','BRU',1020,1), -(1438,'Antwerpen','VAN',1020,1), -(1439,'Brabant Wallon','WBR',1020,1), -(1440,'Hainaut','WHT',1020,1), -(1441,'Liege','WLG',1020,1), -(1442,'Limburg','VLI',1020,1), -(1443,'Luxembourg','WLX',1020,1), -(1444,'Namur','WNA',1020,1), -(1445,'Oost-Vlaanderen','VOV',1020,1), -(1446,'Vlaams-Brabant','VBR',1020,1), -(1447,'West-Vlaanderen','VWV',1020,1), -(1448,'Devonshire','DEV',1023,1), -(1449,'Hamilton Parish','HAM',1023,1), -(1450,'City of Hamilton','HA',1023,1), -(1451,'Paget','PAG',1023,1), -(1452,'Pembroke','PEM',1023,1), -(1453,'Town of St. George','SG',1023,1), -(1454,'Saint George\'s','SGE',1023,1), -(1455,'Sandys','SAN',1023,1), -(1456,'Smiths','SMI',1023,1), -(1457,'Southampton','SOU',1023,1), -(1458,'Warwick','WAR',1023,1), -(1459,'Bale','BAL',1034,1), -(1460,'Bam','BAM',1034,1), -(1461,'Banwa','BAN',1034,1), -(1462,'Bazega','BAZ',1034,1), -(1463,'Bougouriba','BGR',1034,1), -(1464,'Boulgou','BLG',1034,1), -(1465,'Boulkiemde','BLK',1034,1), -(1466,'Comoe','COM',1034,1), -(1467,'Ganzourgou','GAN',1034,1), -(1468,'Gnagna','GNA',1034,1), -(1469,'Gourma','GOU',1034,1), -(1470,'Houet','HOU',1034,1), -(1471,'Ioba','IOB',1034,1), -(1472,'Kadiogo','KAD',1034,1), -(1473,'Kenedougou','KEN',1034,1), -(1474,'Komondjari','KMD',1034,1), -(1475,'Kompienga','KMP',1034,1), -(1476,'Kossi','KOS',1034,1), -(1477,'Koulpulogo','KOP',1034,1), -(1478,'Kouritenga','KOT',1034,1), -(1479,'Kourweogo','KOW',1034,1), -(1480,'Leraba','LER',1034,1), -(1481,'Loroum','LOR',1034,1), -(1482,'Mouhoun','MOU',1034,1), -(1483,'Nahouri','NAO',1034,1), -(1484,'Namentenga','NAM',1034,1), -(1485,'Nayala','NAY',1034,1), -(1486,'Noumbiel','NOU',1034,1), -(1487,'Oubritenga','OUB',1034,1), -(1488,'Oudalan','OUD',1034,1), -(1489,'Passore','PAS',1034,1), -(1490,'Poni','PON',1034,1), -(1491,'Sanguie','SNG',1034,1), -(1492,'Sanmatenga','SMT',1034,1), -(1493,'Seno','SEN',1034,1), -(1494,'Siasili','SIS',1034,1), -(1495,'Soum','SOM',1034,1), -(1496,'Sourou','SOR',1034,1), -(1497,'Tapoa','TAP',1034,1), -(1498,'Tui','TUI',1034,1), -(1499,'Yagha','YAG',1034,1), -(1500,'Yatenga','YAT',1034,1), -(1501,'Ziro','ZIR',1034,1), -(1502,'Zondoma','ZON',1034,1), -(1503,'Zoundweogo','ZOU',1034,1), -(1504,'Blagoevgrad','01',1033,1), -(1505,'Burgas','02',1033,1), -(1506,'Dobrich','08',1033,1), -(1507,'Gabrovo','07',1033,1), -(1508,'Haskovo','26',1033,1), -(1509,'Yambol','28',1033,1), -(1510,'Kardzhali','09',1033,1), -(1511,'Kyustendil','10',1033,1), -(1512,'Lovech','11',1033,1), -(1513,'Montana','12',1033,1), -(1514,'Pazardzhik','13',1033,1), -(1515,'Pernik','14',1033,1), -(1516,'Pleven','15',1033,1), -(1517,'Plovdiv','16',1033,1), -(1518,'Razgrad','17',1033,1), -(1519,'Ruse','18',1033,1), -(1520,'Silistra','19',1033,1), -(1521,'Sliven','20',1033,1), -(1522,'Smolyan','21',1033,1), -(1523,'Sofia','23',1033,1), -(1524,'Stara Zagora','24',1033,1), -(1525,'Shumen','27',1033,1), -(1526,'Targovishte','25',1033,1), -(1527,'Varna','03',1033,1), -(1528,'Veliko Tarnovo','04',1033,1), -(1529,'Vidin','05',1033,1), -(1530,'Vratsa','06',1033,1), -(1531,'Al Hadd','01',1016,1), -(1532,'Al Manamah','03',1016,1), -(1533,'Al Mintaqah al Gharbiyah','10',1016,1), -(1534,'Al Mintagah al Wusta','07',1016,1), -(1535,'Al Mintaqah ash Shamaliyah','05',1016,1), -(1536,'Al Muharraq','02',1016,1), -(1537,'Ar Rifa','09',1016,1), -(1538,'Jidd Hafs','04',1016,1), -(1539,'Madluat Jamad','12',1016,1), -(1540,'Madluat Isa','08',1016,1), -(1541,'Mintaqat Juzur tawar','11',1016,1), -(1542,'Sitrah','06',1016,1), -(1543,'Bubanza','BB',1036,1), -(1544,'Bujumbura','BJ',1036,1), -(1545,'Bururi','BR',1036,1), -(1546,'Cankuzo','CA',1036,1), -(1547,'Cibitoke','CI',1036,1), -(1548,'Gitega','GI',1036,1), -(1549,'Karuzi','KR',1036,1), -(1550,'Kayanza','KY',1036,1), -(1551,'Makamba','MA',1036,1), -(1552,'Muramvya','MU',1036,1), -(1553,'Mwaro','MW',1036,1), -(1554,'Ngozi','NG',1036,1), -(1555,'Rutana','RT',1036,1), -(1556,'Ruyigi','RY',1036,1), -(1557,'Alibori','AL',1022,1), -(1558,'Atakora','AK',1022,1), -(1559,'Atlantique','AQ',1022,1), -(1560,'Borgou','BO',1022,1), -(1561,'Collines','CO',1022,1), -(1562,'Donga','DO',1022,1), -(1563,'Kouffo','KO',1022,1), -(1564,'Littoral','LI',1022,1), -(1565,'Mono','MO',1022,1), -(1566,'Oueme','OU',1022,1), -(1567,'Plateau','PL',1022,1), -(1568,'Zou','ZO',1022,1), -(1569,'Belait','BE',1032,1), -(1570,'Brunei-Muara','BM',1032,1), -(1571,'Temburong','TE',1032,1), -(1572,'Tutong','TU',1032,1), -(1573,'Cochabamba','C',1025,1), -(1574,'Chuquisaca','H',1025,1), -(1575,'El Beni','B',1025,1), -(1576,'La Paz','L',1025,1), -(1577,'Oruro','O',1025,1), -(1578,'Pando','N',1025,1), -(1579,'Potosi','P',1025,1), -(1580,'Tarija','T',1025,1), -(1581,'Acre','AC',1029,1), -(1582,'Alagoas','AL',1029,1), -(1583,'Amazonas','AM',1029,1), -(1584,'Amapa','AP',1029,1), -(1585,'Bahia','BA',1029,1), -(1586,'Ceara','CE',1029,1), -(1587,'Distrito Federal','DF',1029,1), -(1588,'Espirito Santo','ES',1029,1), -(1589,'Goias','GO',1029,1), -(1590,'Maranhao','MA',1029,1), -(1591,'Minas Gerais','MG',1029,1), -(1592,'Mato Grosso do Sul','MS',1029,1), -(1593,'Mato Grosso','MT',1029,1), -(1594,'Para','PA',1029,1), -(1595,'Paraiba','PB',1029,1), -(1596,'Pernambuco','PE',1029,1), -(1597,'Piaui','PI',1029,1), -(1598,'Parana','PR',1029,1), -(1599,'Rio de Janeiro','RJ',1029,1), -(1600,'Rio Grande do Norte','RN',1029,1), -(1601,'Rondonia','RO',1029,1), -(1602,'Roraima','RR',1029,1), -(1603,'Rio Grande do Sul','RS',1029,1), -(1604,'Santa Catarina','SC',1029,1), -(1605,'Sergipe','SE',1029,1), -(1606,'Sao Paulo','SP',1029,1), -(1607,'Tocantins','TO',1029,1), -(1608,'Acklins and Crooked Islands','AC',1212,1), -(1609,'Bimini','BI',1212,1), -(1610,'Cat Island','CI',1212,1), -(1611,'Exuma','EX',1212,1), -(1612,'Inagua','IN',1212,1), -(1613,'Long Island','LI',1212,1), -(1614,'Mayaguana','MG',1212,1), -(1615,'New Providence','NP',1212,1), -(1616,'Ragged Island','RI',1212,1), -(1617,'Abaco Islands','AB',1212,1), -(1618,'Andros Island','AN',1212,1), -(1619,'Berry Islands','BR',1212,1), -(1620,'Eleuthera','EL',1212,1), -(1621,'Grand Bahama','GB',1212,1), -(1622,'Rum Cay','RC',1212,1), -(1623,'San Salvador Island','SS',1212,1), -(1624,'Bumthang','33',1024,1), -(1625,'Chhukha','12',1024,1), -(1626,'Dagana','22',1024,1), -(1627,'Gasa','GA',1024,1), -(1628,'Ha','13',1024,1), -(1629,'Lhuentse','44',1024,1), -(1630,'Monggar','42',1024,1), -(1631,'Paro','11',1024,1), -(1632,'Pemagatshel','43',1024,1), -(1633,'Punakha','23',1024,1), -(1634,'Samdrup Jongkha','45',1024,1), -(1635,'Samtee','14',1024,1), -(1636,'Sarpang','31',1024,1), -(1637,'Thimphu','15',1024,1), -(1638,'Trashigang','41',1024,1), -(1639,'Trashi Yangtse','TY',1024,1), -(1640,'Trongsa','32',1024,1), -(1641,'Tsirang','21',1024,1), -(1642,'Wangdue Phodrang','24',1024,1), -(1643,'Zhemgang','34',1024,1), -(1644,'Central','CE',1027,1), -(1645,'Ghanzi','GH',1027,1), -(1646,'Kgalagadi','KG',1027,1), -(1647,'Kgatleng','KL',1027,1), -(1648,'Kweneng','KW',1027,1), -(1649,'Ngamiland','NG',1027,1), -(1650,'North-East','NE',1027,1), -(1651,'North-West','NW',1027,1), -(1652,'South-East','SE',1027,1), -(1653,'Southern','SO',1027,1), -(1654,'Brèsckaja voblasc\'','BR',1019,1), -(1655,'Homel\'skaja voblasc\'','HO',1019,1), -(1656,'Hrodzenskaja voblasc\'','HR',1019,1), -(1657,'Mahilëuskaja voblasc\'','MA',1019,1), -(1658,'Minskaja voblasc\'','MI',1019,1), -(1659,'Vicebskaja voblasc\'','VI',1019,1), -(1660,'Belize','BZ',1021,1), -(1661,'Cayo','CY',1021,1), -(1662,'Corozal','CZL',1021,1), -(1663,'Orange Walk','OW',1021,1), -(1664,'Stann Creek','SC',1021,1), -(1665,'Toledo','TOL',1021,1), -(1666,'Kinshasa','KN',1050,1), -(1667,'Equateur','EQ',1050,1), -(1668,'Kasai-Oriental','KE',1050,1), -(1669,'Maniema','MA',1050,1), -(1670,'Nord-Kivu','NK',1050,1), -(1671,'Sud-Kivu','SK',1050,1), -(1672,'Bangui','BGF',1042,1), -(1673,'Bamingui-Bangoran','BB',1042,1), -(1674,'Basse-Kotto','BK',1042,1), -(1675,'Haute-Kotto','HK',1042,1), -(1676,'Haut-Mbomou','HM',1042,1), -(1677,'Kemo','KG',1042,1), -(1678,'Lobaye','LB',1042,1), -(1679,'Mambere-Kadei','HS',1042,1), -(1680,'Mbomou','MB',1042,1), -(1681,'Nana-Grebizi','KB',1042,1), -(1682,'Nana-Mambere','NM',1042,1), -(1683,'Ombella-Mpoko','MP',1042,1), -(1684,'Ouaka','UK',1042,1), -(1685,'Ouham','AC',1042,1), -(1686,'Ouham-Pende','OP',1042,1), -(1687,'Sangha-Mbaere','SE',1042,1), -(1688,'Vakaga','VR',1042,1), -(1689,'Kongo central','01',1050,1), -(1690,'Kwango','02',1050,1), -(1691,'Kwilu','03',1050,1), -(1692,'Mai-Ndombe','04',1050,1), -(1693,'Kasai','05',1050,1), -(1694,'Lulua','06',1050,1), -(1695,'Lomami','07',1050,1), -(1696,'Sankuru','08',1050,1), -(1697,'Ituri','09',1050,1), -(1698,'Haut-Uele','10',1050,1), -(1699,'Tshopo','11',1050,1), -(1700,'Bas-Uele','12',1050,1), -(1701,'Nord-Ubangi','13',1050,1), -(1702,'Mongala','14',1050,1), -(1703,'Sud-Ubangi','15',1050,1), -(1704,'Tshuapa','16',1050,1), -(1705,'Haut-Lomami','17',1050,1), -(1706,'Lualaba','18',1050,1), -(1707,'Haut-Katanga','19',1050,1), -(1708,'Tanganyika','20',1050,1), -(1709,'Brazzaville','BZV',1051,1), -(1710,'Bouenza','11',1051,1), -(1711,'Cuvette','8',1051,1), -(1712,'Cuvette-Ouest','15',1051,1), -(1713,'Kouilou','5',1051,1), -(1714,'Lekoumou','2',1051,1), -(1715,'Likouala','7',1051,1), -(1716,'Niari','9',1051,1), -(1717,'Plateaux','14',1051,1), -(1718,'Pool','12',1051,1), -(1719,'Sangha','13',1051,1), -(1720,'Estuaire','01',1080,1), -(1721,'Haut-Ogooué','02',1080,1), -(1722,'Moyen-Ogooué','03',1080,1), -(1723,'Ngounié','04',1080,1), -(1724,'Nyanga','05',1080,1), -(1725,'Ogooué-Ivindo','06',1080,1), -(1726,'Ogooué-Lolo','07',1080,1), -(1727,'Ogooué-Maritime','08',1080,1), -(1728,'Woleu-Ntem','09',1080,1), -(1729,'Aargau','AG',1205,1), -(1730,'Appenzell Innerrhoden','AI',1205,1), -(1731,'Appenzell Ausserrhoden','AR',1205,1), -(1732,'Bern','BE',1205,1), -(1733,'Basel-Landschaft','BL',1205,1), -(1734,'Basel-Stadt','BS',1205,1), -(1735,'Fribourg','FR',1205,1), -(1736,'Geneva','GE',1205,1), -(1737,'Glarus','GL',1205,1), -(1738,'Graubunden','GR',1205,1), -(1739,'Jura','JU',1205,1), -(1740,'Luzern','LU',1205,1), -(1741,'Neuchatel','NE',1205,1), -(1742,'Nidwalden','NW',1205,1), -(1743,'Obwalden','OW',1205,1), -(1744,'Sankt Gallen','SG',1205,1), -(1745,'Schaffhausen','SH',1205,1), -(1746,'Solothurn','SO',1205,1), -(1747,'Schwyz','SZ',1205,1), -(1748,'Thurgau','TG',1205,1), -(1749,'Ticino','TI',1205,1), -(1750,'Uri','UR',1205,1), -(1751,'Vaud','VD',1205,1), -(1752,'Valais','VS',1205,1), -(1753,'Zug','ZG',1205,1), -(1754,'Zurich','ZH',1205,1), -(1755,'18 Montagnes','06',1054,1), -(1756,'Agnebi','16',1054,1), -(1757,'Bas-Sassandra','09',1054,1), -(1758,'Denguele','10',1054,1), -(1759,'Haut-Sassandra','02',1054,1), -(1760,'Lacs','07',1054,1), -(1761,'Lagunes','01',1054,1), -(1762,'Marahoue','12',1054,1), -(1763,'Moyen-Comoe','05',1054,1), -(1764,'Nzi-Comoe','11',1054,1), -(1765,'Savanes','03',1054,1), -(1766,'Sud-Bandama','15',1054,1), -(1767,'Sud-Comoe','13',1054,1), -(1768,'Vallee du Bandama','04',1054,1), -(1769,'Worodouqou','14',1054,1), -(1770,'Zanzan','08',1054,1), -(1771,'Aisen del General Carlos Ibanez del Campo','AI',1044,1), -(1772,'Antofagasta','AN',1044,1), -(1773,'Araucania','AR',1044,1), -(1774,'Atacama','AT',1044,1), -(1775,'Bio-Bio','BI',1044,1), -(1776,'Coquimbo','CO',1044,1), -(1777,'Libertador General Bernardo O\'Higgins','LI',1044,1), -(1778,'Los Lagos','LL',1044,1), -(1779,'Magallanes','MA',1044,1), -(1780,'Maule','ML',1044,1), -(1781,'Santiago Metropolitan','SM',1044,1), -(1782,'Tarapaca','TA',1044,1), -(1783,'Valparaiso','VS',1044,1), -(1784,'Los Rios','LR',1044,1), -(1785,'Arica y Parinacota','AP',1044,1), -(1786,'Adamaoua','AD',1038,1), -(1787,'Centre','CE',1038,1), -(1788,'East','ES',1038,1), -(1789,'Far North','EN',1038,1), -(1790,'North','NO',1038,1), -(1791,'South','SW',1038,1), -(1792,'South-West','SW',1038,1), -(1793,'West','OU',1038,1), -(1794,'Littoral','LT',1038,1), -(1795,'Nord-Ouest','NW',1038,1), -(1796,'Beijing','11',1045,1), -(1797,'Chongqing','50',1045,1), -(1798,'Shanghai','31',1045,1), -(1799,'Tianjin','12',1045,1), -(1800,'Anhui','34',1045,1), -(1801,'Fujian','35',1045,1), -(1802,'Gansu','62',1045,1), -(1803,'Guangdong','44',1045,1), -(1804,'Guizhou','52',1045,1), -(1805,'Hainan','46',1045,1), -(1806,'Hebei','13',1045,1), -(1807,'Heilongjiang','23',1045,1), -(1808,'Henan','41',1045,1), -(1809,'Hubei','42',1045,1), -(1810,'Hunan','43',1045,1), -(1811,'Jiangsu','32',1045,1), -(1812,'Jiangxi','36',1045,1), -(1813,'Jilin','22',1045,1), -(1814,'Liaoning','21',1045,1), -(1815,'Qinghai','63',1045,1), -(1816,'Shaanxi','61',1045,1), -(1817,'Shandong','37',1045,1), -(1818,'Shanxi','14',1045,1), -(1819,'Sichuan','51',1045,1), -(1820,'Taiwan','71',1045,1), -(1821,'Yunnan','53',1045,1), -(1822,'Zhejiang','33',1045,1), -(1823,'Guangxi','45',1045,1), -(1824,'Neia Mongol (mn)','15',1045,1), -(1825,'Xinjiang','65',1045,1), -(1826,'Xizang','54',1045,1), -(1827,'Hong Kong','91',1045,1), -(1828,'Macau','92',1045,1), -(1829,'Yinchuan','YN',1045,1), -(1830,'Shizuishan','SZ',1045,1), -(1831,'Wuzhong','WZ',1045,1), -(1832,'Guyuan','GY',1045,1), -(1833,'Zhongwei','ZW',1045,1), -(1834,'Distrito Capital de Bogotá','DC',1048,1), -(1835,'Amazonea','AMA',1048,1), -(1836,'Antioquia','ANT',1048,1), -(1837,'Arauca','ARA',1048,1), -(1838,'Atlántico','ATL',1048,1), -(1839,'Bolívar','BOL',1048,1), -(1840,'Boyacá','BOY',1048,1), -(1841,'Caldea','CAL',1048,1), -(1842,'Caquetá','CAQ',1048,1), -(1843,'Casanare','CAS',1048,1), -(1844,'Cauca','CAU',1048,1), -(1845,'Cesar','CES',1048,1), -(1846,'Córdoba','COR',1048,1), -(1847,'Cundinamarca','CUN',1048,1), -(1848,'Chocó','CHO',1048,1), -(1849,'Guainía','GUA',1048,1), -(1850,'Guaviare','GUV',1048,1), -(1851,'La Guajira','LAG',1048,1), -(1852,'Magdalena','MAG',1048,1), -(1853,'Meta','MET',1048,1), -(1854,'Nariño','NAR',1048,1), -(1855,'Norte de Santander','NSA',1048,1), -(1856,'Putumayo','PUT',1048,1), -(1857,'Quindio','QUI',1048,1), -(1858,'Risaralda','RIS',1048,1), -(1859,'San Andrés, Providencia y Santa Catalina','SAP',1048,1), -(1860,'Santander','SAN',1048,1), -(1861,'Sucre','SUC',1048,1), -(1862,'Tolima','TOL',1048,1), -(1863,'Valle del Cauca','VAC',1048,1), -(1864,'Vaupés','VAU',1048,1), -(1865,'Vichada','VID',1048,1), -(1866,'Huila','HUI',1048,1), -(1867,'Alajuela','A',1053,1), -(1868,'Cartago','C',1053,1), -(1869,'Guanacaste','G',1053,1), -(1870,'Heredia','H',1053,1), -(1871,'Limon','L',1053,1), -(1872,'Puntarenas','P',1053,1), -(1873,'San Jose','SJ',1053,1), -(1874,'Camagey','09',1056,1), -(1875,'Ciego de `vila','08',1056,1), -(1876,'Cienfuegos','06',1056,1), -(1877,'Ciudad de La Habana','03',1056,1), -(1878,'Granma','12',1056,1), -(1879,'Guantanamo','14',1056,1), -(1880,'Holquin','11',1056,1), -(1881,'La Habana','02',1056,1), -(1882,'Las Tunas','10',1056,1), -(1883,'Matanzas','04',1056,1), -(1884,'Pinar del Rio','01',1056,1), -(1885,'Sancti Spiritus','07',1056,1), -(1886,'Santiago de Cuba','13',1056,1), -(1887,'Villa Clara','05',1056,1), -(1888,'Isla de la Juventud','99',1056,1), -(1889,'Pinar del Roo','PR',1056,1), -(1890,'Ciego de Avila','CA',1056,1), -(1891,'Camagoey','CG',1056,1), -(1892,'Holgun','HO',1056,1), -(1893,'Sancti Spritus','SS',1056,1), -(1894,'Municipio Especial Isla de la Juventud','IJ',1056,1), -(1895,'Boa Vista','BV',1040,1), -(1896,'Brava','BR',1040,1), -(1897,'Calheta de Sao Miguel','CS',1040,1), -(1898,'Fogo','FO',1040,1), -(1899,'Maio','MA',1040,1), -(1900,'Mosteiros','MO',1040,1), -(1901,'Paul','PA',1040,1), -(1902,'Porto Novo','PN',1040,1), -(1903,'Praia','PR',1040,1), -(1904,'Ribeira Grande','RG',1040,1), -(1905,'Sal','SL',1040,1), -(1906,'Sao Domingos','SD',1040,1), -(1907,'Sao Filipe','SF',1040,1), -(1908,'Sao Nicolau','SN',1040,1), -(1909,'Sao Vicente','SV',1040,1), -(1910,'Tarrafal','TA',1040,1), -(1911,'Ammochostos Magusa','04',1057,1), -(1912,'Keryneia','06',1057,1), -(1913,'Larnaka','03',1057,1), -(1914,'Lefkosia','01',1057,1), -(1915,'Lemesos','02',1057,1), -(1916,'Pafos','05',1057,1), -(1917,'Jihočeský kraj','JC',1058,1), -(1918,'Jihomoravský kraj','JM',1058,1), -(1919,'Karlovarský kraj','KA',1058,1), -(1920,'Královéhradecký kraj','KR',1058,1), -(1921,'Liberecký kraj','LI',1058,1), -(1922,'Moravskoslezský kraj','MO',1058,1), -(1923,'Olomoucký kraj','OL',1058,1), -(1924,'Pardubický kraj','PA',1058,1), -(1925,'Plzeňský kraj','PL',1058,1), -(1926,'Praha, hlavní město','PR',1058,1), -(1927,'Středočeský kraj','ST',1058,1), -(1928,'Ústecký kraj','US',1058,1), -(1929,'Vysočina','VY',1058,1), -(1930,'Zlínský kraj','ZL',1058,1), -(1931,'Abkhazia','AB',1081,1), -(1932,'Adjara','AJ',1081,1), -(1933,'Tbilisi','TB',1081,1), -(1934,'Guria','GU',1081,1), -(1935,'Imereti','IM',1081,1), -(1936,'Kakheti','KA',1081,1), -(1937,'Kvemo Kartli','KK',1081,1), -(1938,'Mtskheta-Mtianeti','MM',1081,1), -(1939,'Racha-Lechkhumi and Kvemo Svaneti','RL',1081,1), -(1940,'Samegrelo-Zemo Svaneti','SZ',1081,1), -(1941,'Samtskhe-Javakheti','SJ',1081,1), -(1942,'Shida Kartli','SK',1081,1), -(1943,'Baden-Württemberg','BW',1082,1), -(1944,'Bayern','BY',1082,1), -(1945,'Bremen','HB',1082,1), -(1946,'Hamburg','HH',1082,1), -(1947,'Hessen','HE',1082,1), -(1948,'Niedersachsen','NI',1082,1), -(1949,'Nordrhein-Westfalen','NW',1082,1), -(1950,'Rheinland-Pfalz','RP',1082,1), -(1951,'Saarland','SL',1082,1), -(1952,'Schleswig-Holstein','SH',1082,1), -(1953,'Berlin','BE',1082,1), -(1954,'Brandenburg','BB',1082,1), -(1955,'Mecklenburg-Vorpommern','MV',1082,1), -(1956,'Sachsen','SN',1082,1), -(1957,'Sachsen-Anhalt','ST',1082,1), -(1958,'Thüringen','TH',1082,1), -(1959,'Ali Sabiah','AS',1060,1), -(1960,'Dikhil','DI',1060,1), -(1961,'Djibouti','DJ',1060,1), -(1962,'Obock','OB',1060,1), -(1963,'Tadjoura','TA',1060,1), -(1964,'Frederiksberg','147',1059,1), -(1965,'Copenhagen City','101',1059,1), -(1966,'Copenhagen','015',1059,1), -(1967,'Frederiksborg','020',1059,1), -(1968,'Roskilde','025',1059,1), -(1969,'Vestsjælland','030',1059,1), -(1970,'Storstrøm','035',1059,1), -(1971,'Bornholm','040',1059,1), -(1972,'Fyn','042',1059,1), -(1973,'South Jutland','050',1059,1), -(1974,'Ribe','055',1059,1), -(1975,'Vejle','060',1059,1), -(1976,'Ringkjøbing','065',1059,1), -(1977,'Århus','070',1059,1), -(1978,'Viborg','076',1059,1), -(1979,'North Jutland','080',1059,1), -(1980,'Distrito Nacional (Santo Domingo)','01',1062,1), -(1981,'Azua','02',1062,1), -(1982,'Bahoruco','03',1062,1), -(1983,'Barahona','04',1062,1), -(1984,'Dajabón','05',1062,1), -(1985,'Duarte','06',1062,1), -(1986,'El Seybo [El Seibo]','08',1062,1), -(1987,'Espaillat','09',1062,1), -(1988,'Hato Mayor','30',1062,1), -(1989,'Independencia','10',1062,1), -(1990,'La Altagracia','11',1062,1), -(1991,'La Estrelleta [Elias Pina]','07',1062,1), -(1992,'La Romana','12',1062,1), -(1993,'La Vega','13',1062,1), -(1994,'Maroia Trinidad Sánchez','14',1062,1), -(1995,'Monseñor Nouel','28',1062,1), -(1996,'Monte Cristi','15',1062,1), -(1997,'Monte Plata','29',1062,1), -(1998,'Pedernales','16',1062,1), -(1999,'Peravia','17',1062,1), -(2000,'Puerto Plata','18',1062,1), -(2001,'Salcedo','19',1062,1), -(2002,'Samaná','20',1062,1), -(2003,'San Cristóbal','21',1062,1), -(2004,'San Pedro de Macorís','23',1062,1), -(2005,'Sánchez Ramírez','24',1062,1), -(2006,'Santiago','25',1062,1), -(2007,'Santiago Rodríguez','26',1062,1), -(2008,'Valverde','27',1062,1), -(2009,'Adrar','01',1003,1), -(2010,'Ain Defla','44',1003,1), -(2011,'Ain Tmouchent','46',1003,1), -(2012,'Alger','16',1003,1), -(2013,'Annaba','23',1003,1), -(2014,'Batna','05',1003,1), -(2015,'Bechar','08',1003,1), -(2016,'Bejaia','06',1003,1), -(2017,'Biskra','07',1003,1), -(2018,'Blida','09',1003,1), -(2019,'Bordj Bou Arreridj','34',1003,1), -(2020,'Bouira','10',1003,1), -(2021,'Boumerdes','35',1003,1), -(2022,'Chlef','02',1003,1), -(2023,'Constantine','25',1003,1), -(2024,'Djelfa','17',1003,1), -(2025,'El Bayadh','32',1003,1), -(2026,'El Oued','39',1003,1), -(2027,'El Tarf','36',1003,1), -(2028,'Ghardaia','47',1003,1), -(2029,'Guelma','24',1003,1), -(2030,'Illizi','33',1003,1), -(2031,'Jijel','18',1003,1), -(2032,'Khenchela','40',1003,1), -(2033,'Laghouat','03',1003,1), -(2034,'Mascara','29',1003,1), -(2035,'Medea','26',1003,1), -(2036,'Mila','43',1003,1), -(2037,'Mostaganem','27',1003,1), -(2038,'Msila','28',1003,1), -(2039,'Naama','45',1003,1), -(2040,'Oran','31',1003,1), -(2041,'Ouargla','30',1003,1), -(2042,'Oum el Bouaghi','04',1003,1), -(2043,'Relizane','48',1003,1), -(2044,'Saida','20',1003,1), -(2045,'Setif','19',1003,1), -(2046,'Sidi Bel Abbes','22',1003,1), -(2047,'Skikda','21',1003,1), -(2048,'Souk Ahras','41',1003,1), -(2049,'Tamanghasset','11',1003,1), -(2050,'Tebessa','12',1003,1), -(2051,'Tiaret','14',1003,1), -(2052,'Tindouf','37',1003,1), -(2053,'Tipaza','42',1003,1), -(2054,'Tissemsilt','38',1003,1), -(2055,'Tizi Ouzou','15',1003,1), -(2056,'Tlemcen','13',1003,1), -(2057,'Azuay','A',1064,1), -(2058,'Bolivar','B',1064,1), -(2059,'Canar','F',1064,1), -(2060,'Carchi','C',1064,1), -(2061,'Cotopaxi','X',1064,1), -(2062,'Chimborazo','H',1064,1), -(2063,'El Oro','O',1064,1), -(2064,'Esmeraldas','E',1064,1), -(2065,'Galapagos','W',1064,1), -(2066,'Guayas','G',1064,1), -(2067,'Imbabura','I',1064,1), -(2068,'Loja','L',1064,1), -(2069,'Los Rios','R',1064,1), -(2070,'Manabi','M',1064,1), -(2071,'Morona-Santiago','S',1064,1), -(2072,'Napo','N',1064,1), -(2073,'Orellana','D',1064,1), -(2074,'Pastaza','Y',1064,1), -(2075,'Pichincha','P',1064,1), -(2076,'Sucumbios','U',1064,1), -(2077,'Tungurahua','T',1064,1), -(2078,'Zamora-Chinchipe','Z',1064,1), -(2079,'Harjumaa','37',1069,1), -(2080,'Hiiumaa','39',1069,1), -(2081,'Ida-Virumaa','44',1069,1), -(2082,'Jõgevamaa','49',1069,1), -(2083,'Järvamaa','51',1069,1), -(2084,'Läänemaa','57',1069,1), -(2085,'Lääne-Virumaa','59',1069,1), -(2086,'Põlvamaa','65',1069,1), -(2087,'Pärnumaa','67',1069,1), -(2088,'Raplamaa','70',1069,1), -(2089,'Saaremaa','74',1069,1), -(2090,'Tartumaa','7B',1069,1), -(2091,'Valgamaa','82',1069,1), -(2092,'Viljandimaa','84',1069,1), -(2093,'Võrumaa','86',1069,1), -(2094,'Ad Daqahllyah','DK',1065,1), -(2095,'Al Bahr al Ahmar','BA',1065,1), -(2096,'Al Buhayrah','BH',1065,1), -(2097,'Al Fayym','FYM',1065,1), -(2098,'Al Gharbiyah','GH',1065,1), -(2099,'Al Iskandarlyah','ALX',1065,1), -(2100,'Al Isma illyah','IS',1065,1), -(2101,'Al Jizah','GZ',1065,1), -(2102,'Al Minuflyah','MNF',1065,1), -(2103,'Al Minya','MN',1065,1), -(2104,'Al Qahirah','C',1065,1), -(2105,'Al Qalyublyah','KB',1065,1), -(2106,'Al Wadi al Jadid','WAD',1065,1), -(2107,'Ash Sharqiyah','SHR',1065,1), -(2108,'As Suways','SUZ',1065,1), -(2109,'Aswan','ASN',1065,1), -(2110,'Asyut','AST',1065,1), -(2111,'Bani Suwayf','BNS',1065,1), -(2112,'Bur Sa\'id','PTS',1065,1), -(2113,'Dumyat','DT',1065,1), -(2114,'Janub Sina\'','JS',1065,1), -(2115,'Kafr ash Shaykh','KFS',1065,1), -(2116,'Matruh','MT',1065,1), -(2117,'Qina','KN',1065,1), -(2118,'Shamal Sina\'','SIN',1065,1), -(2119,'Suhaj','SHG',1065,1), -(2120,'Anseba','AN',1068,1), -(2121,'Debub','DU',1068,1), -(2122,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068,1), -(2123,'Gash-Barka','GB',1068,1), -(2124,'Maakel [Maekel]','MA',1068,1), -(2125,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068,1), -(2126,'Álava','VI',1198,1), -(2127,'Albacete','AB',1198,1), -(2128,'Alicante','A',1198,1), -(2129,'Almería','AL',1198,1), -(2130,'Asturias','O',1198,1), -(2131,'Ávila','AV',1198,1), -(2132,'Badajoz','BA',1198,1), -(2133,'Baleares','PM',1198,1), -(2134,'Barcelona','B',1198,1), -(2135,'Burgos','BU',1198,1), -(2136,'Cáceres','CC',1198,1), -(2137,'Cádiz','CA',1198,1), -(2138,'Cantabria','S',1198,1), -(2139,'Castellón','CS',1198,1), -(2140,'Ciudad Real','CR',1198,1), -(2141,'Cuenca','CU',1198,1), -(2142,'Girona [Gerona]','GE',1198,1), -(2143,'Granada','GR',1198,1), -(2144,'Guadalajara','GU',1198,1), -(2145,'Guipúzcoa','SS',1198,1), -(2146,'Huelva','H',1198,1), -(2147,'Huesca','HU',1198,1), -(2148,'Jaén','J',1198,1), -(2149,'La Coruña','C',1198,1), -(2150,'La Rioja','LO',1198,1), -(2151,'Las Palmas','GC',1198,1), -(2152,'León','LE',1198,1), -(2153,'Lleida [Lérida]','L',1198,1), -(2154,'Lugo','LU',1198,1), -(2155,'Madrid','M',1198,1), -(2156,'Málaga','MA',1198,1), -(2157,'Murcia','MU',1198,1), -(2158,'Navarra','NA',1198,1), -(2159,'Ourense','OR',1198,1), -(2160,'Palencia','P',1198,1), -(2161,'Pontevedra','PO',1198,1), -(2162,'Salamanca','SA',1198,1), -(2163,'Santa Cruz de Tenerife','TF',1198,1), -(2164,'Segovia','SG',1198,1), -(2165,'Sevilla','SE',1198,1), -(2166,'Soria','SO',1198,1), -(2167,'Tarragona','T',1198,1), -(2168,'Teruel','TE',1198,1), -(2169,'Valencia','V',1198,1), -(2170,'Valladolid','VA',1198,1), -(2171,'Vizcaya','BI',1198,1), -(2172,'Zamora','ZA',1198,1), -(2173,'Zaragoza','Z',1198,1), -(2174,'Ceuta','CE',1198,1), -(2175,'Melilla','ML',1198,1), -(2176,'Toledo','TO',1198,1), -(2177,'Córdoba','CO',1198,1), -(2178,'Addis Ababa','AA',1070,1), -(2179,'Dire Dawa','DD',1070,1), -(2180,'Afar','AF',1070,1), -(2181,'Amara','AM',1070,1), -(2182,'Benshangul-Gumaz','BE',1070,1), -(2183,'Gambela Peoples','GA',1070,1), -(2184,'Harari People','HA',1070,1), -(2185,'Oromia','OR',1070,1), -(2186,'Somali','SO',1070,1), -(2187,'Southern Nations, Nationalities and Peoples','SN',1070,1), -(2188,'Tigrai','TI',1070,1), -(2189,'Eastern','E',1074,1), -(2190,'Northern','N',1074,1), -(2191,'Western','W',1074,1), -(2192,'Rotuma','R',1074,1), -(2193,'Central','C',1074,1), -(2194,'Chuuk','TRK',1141,1), -(2195,'Kosrae','KSA',1141,1), -(2196,'Pohnpei','PNI',1141,1), -(2197,'Yap','YAP',1141,1), -(2198,'Ain','01',1076,1), -(2199,'Aisne','02',1076,1), -(2200,'Allier','03',1076,1), -(2201,'Alpes-de-Haute-Provence','04',1076,1), -(2202,'Alpes-Maritimes','06',1076,1), -(2203,'Ardèche','07',1076,1), -(2204,'Ardennes','08',1076,1), -(2205,'Ariège','09',1076,1), -(2206,'Aube','10',1076,1), -(2207,'Aude','11',1076,1), -(2208,'Aveyron','12',1076,1), -(2209,'Bas-Rhin','67',1076,1), -(2210,'Bouches-du-Rhône','13',1076,1), -(2211,'Calvados','14',1076,1), -(2212,'Cantal','15',1076,1), -(2213,'Charente','16',1076,1), -(2214,'Charente-Maritime','17',1076,1), -(2215,'Cher','18',1076,1), -(2216,'Corrèze','19',1076,1), -(2217,'Corse-du-Sud','20A',1076,1), -(2218,'Côte-d\'Or','21',1076,1), -(2219,'Côtes-d\'Armor','22',1076,1), -(2220,'Creuse','23',1076,1), -(2221,'Deux-Sèvres','79',1076,1), -(2222,'Dordogne','24',1076,1), -(2223,'Doubs','25',1076,1), -(2224,'Drôme','26',1076,1), -(2225,'Essonne','91',1076,1), -(2226,'Eure','27',1076,1), -(2227,'Eure-et-Loir','28',1076,1), -(2228,'Finistère','29',1076,1), -(2229,'Gard','30',1076,1), -(2230,'Gers','32',1076,1), -(2231,'Gironde','33',1076,1), -(2232,'Haut-Rhin','68',1076,1), -(2233,'Haute-Corse','20B',1076,1), -(2234,'Haute-Garonne','31',1076,1), -(2235,'Haute-Loire','43',1076,1), -(2236,'Haute-Saône','70',1076,1), -(2237,'Haute-Savoie','74',1076,1), -(2238,'Haute-Vienne','87',1076,1), -(2239,'Hautes-Alpes','05',1076,1), -(2240,'Hautes-Pyrénées','65',1076,1), -(2241,'Hauts-de-Seine','92',1076,1), -(2242,'Hérault','34',1076,1), -(2243,'Indre','36',1076,1), -(2244,'Ille-et-Vilaine','35',1076,1), -(2245,'Indre-et-Loire','37',1076,1), -(2246,'Isère','38',1076,1), -(2247,'Landes','40',1076,1), -(2248,'Loir-et-Cher','41',1076,1), -(2249,'Loire','42',1076,1), -(2250,'Loire-Atlantique','44',1076,1), -(2251,'Loiret','45',1076,1), -(2252,'Lot','46',1076,1), -(2253,'Lot-et-Garonne','47',1076,1), -(2254,'Lozère','48',1076,1), -(2255,'Maine-et-Loire','49',1076,1), -(2256,'Manche','50',1076,1), -(2257,'Marne','51',1076,1), -(2258,'Mayenne','53',1076,1), -(2259,'Meurthe-et-Moselle','54',1076,1), -(2260,'Meuse','55',1076,1), -(2261,'Morbihan','56',1076,1), -(2262,'Moselle','57',1076,1), -(2263,'Nièvre','58',1076,1), -(2264,'Nord','59',1076,1), -(2265,'Oise','60',1076,1), -(2266,'Orne','61',1076,1), -(2267,'Paris','75',1076,1), -(2268,'Pas-de-Calais','62',1076,1), -(2269,'Puy-de-Dôme','63',1076,1), -(2270,'Pyrénées-Atlantiques','64',1076,1), -(2271,'Pyrénées-Orientales','66',1076,1), -(2272,'Rhône','69',1076,1), -(2273,'Saône-et-Loire','71',1076,1), -(2274,'Sarthe','72',1076,1), -(2275,'Savoie','73',1076,1), -(2276,'Seine-et-Marne','77',1076,1), -(2277,'Seine-Maritime','76',1076,1), -(2278,'Seine-Saint-Denis','93',1076,1), -(2279,'Somme','80',1076,1), -(2280,'Tarn','81',1076,1), -(2281,'Tarn-et-Garonne','82',1076,1), -(2282,'Val d\'Oise','95',1076,1), -(2283,'Territoire de Belfort','90',1076,1), -(2284,'Val-de-Marne','94',1076,1), -(2285,'Var','83',1076,1), -(2286,'Vaucluse','84',1076,1), -(2287,'Vendée','85',1076,1), -(2288,'Vienne','86',1076,1), -(2289,'Vosges','88',1076,1), -(2290,'Yonne','89',1076,1), -(2291,'Yvelines','78',1076,1), -(2292,'Guadeloupe','GP',1076,1), -(2293,'Martinique','MQ',1076,1), -(2294,'Guyane','GF',1076,1), -(2295,'La Réunion','RE',1076,1), -(2296,'Mayotte','YT',1076,1), -(2297,'Wallis-et-Futuna','WF',1076,1), -(2298,'Nouvelle-Calédonie','NC',1076,1), -(2299,'Haute-Marne','52',1076,1), -(2300,'Jura','39',1076,1), -(2301,'Aberdeen City','ABE',1226,1), -(2302,'Aberdeenshire','ABD',1226,1), -(2303,'Angus','ANS',1226,1), -(2304,'Co Antrim','ANT',1226,1), -(2305,'Argyll and Bute','AGB',1226,1), -(2306,'Co Armagh','ARM',1226,1), -(2307,'Bedfordshire','BDF',1226,1), -(2308,'Blaenau Gwent','BGW',1226,1), -(2309,'Bristol, City of','BST',1226,1), -(2310,'Buckinghamshire','BKM',1226,1), -(2311,'Cambridgeshire','CAM',1226,1), -(2312,'Cheshire','CHS',1226,1), -(2313,'Clackmannanshire','CLK',1226,1), -(2314,'Cornwall','CON',1226,1), -(2315,'Cumbria','CMA',1226,1), -(2316,'Derbyshire','DBY',1226,1), -(2317,'Co Londonderry','DRY',1226,1), -(2318,'Devon','DEV',1226,1), -(2319,'Dorset','DOR',1226,1), -(2320,'Co Down','DOW',1226,1), -(2321,'Dumfries and Galloway','DGY',1226,1), -(2322,'Dundee City','DND',1226,1), -(2323,'County Durham','DUR',1226,1), -(2324,'East Ayrshire','EAY',1226,1), -(2325,'East Dunbartonshire','EDU',1226,1), -(2326,'East Lothian','ELN',1226,1), -(2327,'East Renfrewshire','ERW',1226,1), -(2328,'East Riding of Yorkshire','ERY',1226,1), -(2329,'East Sussex','ESX',1226,1), -(2330,'Edinburgh, City of','EDH',1226,1), -(2331,'Na h-Eileanan Siar','ELS',1226,1), -(2332,'Essex','ESS',1226,1), -(2333,'Falkirk','FAL',1226,1), -(2334,'Co Fermanagh','FER',1226,1), -(2335,'Fife','FIF',1226,1), -(2336,'Glasgow City','GLG',1226,1), -(2337,'Gloucestershire','GLS',1226,1), -(2338,'Gwynedd','GWN',1226,1), -(2339,'Hampshire','HAM',1226,1), -(2340,'Herefordshire','HEF',1226,1), -(2341,'Hertfordshire','HRT',1226,1), -(2342,'Highland','HED',1226,1), -(2343,'Inverclyde','IVC',1226,1), -(2344,'Isle of Wight','IOW',1226,1), -(2345,'Kent','KEN',1226,1), -(2346,'Lancashire','LAN',1226,1), -(2347,'Leicestershire','LEC',1226,1), -(2348,'Lincolnshire','LIN',1226,1), -(2349,'Midlothian','MLN',1226,1), -(2350,'Moray','MRY',1226,1), -(2351,'Norfolk','NFK',1226,1), -(2352,'North Ayrshire','NAY',1226,1), -(2353,'North Lanarkshire','NLK',1226,1), -(2354,'North Yorkshire','NYK',1226,1), -(2355,'Northamptonshire','NTH',1226,1), -(2356,'Northumberland','NBL',1226,1), -(2357,'Nottinghamshire','NTT',1226,1), -(2358,'Oldham','OLD',1226,1), -(2359,'Omagh','OMH',1226,1), -(2360,'Orkney Islands','ORR',1226,1), -(2361,'Oxfordshire','OXF',1226,1), -(2362,'Perth and Kinross','PKN',1226,1), -(2363,'Powys','POW',1226,1), -(2364,'Renfrewshire','RFW',1226,1), -(2365,'Rutland','RUT',1226,1), -(2366,'Scottish Borders','SCB',1226,1), -(2367,'Shetland Islands','ZET',1226,1), -(2368,'Shropshire','SHR',1226,1), -(2369,'Somerset','SOM',1226,1), -(2370,'South Ayrshire','SAY',1226,1), -(2371,'South Gloucestershire','SGC',1226,1), -(2372,'South Lanarkshire','SLK',1226,1), -(2373,'Staffordshire','STS',1226,1), -(2374,'Stirling','STG',1226,1), -(2375,'Suffolk','SFK',1226,1), -(2376,'Surrey','SRY',1226,1), -(2377,'Vale of Glamorgan, The','VGL',1226,1), -(2378,'Warwickshire','WAR',1226,1), -(2379,'West Dunbartonshire','WDU',1226,1), -(2380,'West Lothian','WLN',1226,1), -(2381,'West Sussex','WSX',1226,1), -(2382,'Wiltshire','WIL',1226,1), -(2383,'Worcestershire','WOR',1226,1), -(2384,'Antrim and Newtownabbey','ANN',1226,1), -(2385,'Ards and North Down','AND',1226,1), -(2386,'Armagh City, Banbridge and Craigavon','ABC',1226,1), -(2387,'Belfast','BFS',1226,1), -(2388,'Causeway Coast and Glens','CCG',1226,1), -(2389,'Derry City and Strabane','DRS',1226,1), -(2390,'Fermanagh and Omagh','FMO',1226,1), -(2391,'Lisburn and Castlereagh','LBC',1226,1), -(2392,'Mid and East Antrim','MEA',1226,1), -(2393,'Mid Ulster','MUL',1226,1), -(2394,'Newry, Mourne and Down','NMD',1226,1), -(2395,'Bridgend','BGE',1226,1), -(2396,'Caerphilly','CAY',1226,1), -(2397,'Cardiff','CRF',1226,1), -(2398,'Carmarthenshire','CMN',1226,1), -(2399,'Ceredigion','CGN',1226,1), -(2400,'Conwy','CWY',1226,1), -(2401,'Denbighshire','DEN',1226,1), -(2402,'Flintshire','FLN',1226,1), -(2403,'Isle of Anglesey','AGY',1226,1), -(2404,'Merthyr Tydfil','MTY',1226,1), -(2405,'Neath Port Talbot','NTL',1226,1), -(2406,'Newport','NWP',1226,1), -(2407,'Pembrokeshire','PEM',1226,1), -(2408,'Rhondda, Cynon, Taff','RCT',1226,1), -(2409,'Swansea','SWA',1226,1), -(2410,'Torfaen','TOF',1226,1), -(2411,'Wrexham','WRX',1226,1), -(2412,'Monmouthshire','MON',1226,1), -(2413,'Tyne and Wear','TWR',1226,1), -(2414,'Greater Manchester','GTM',1226,1), -(2415,'Co Tyrone','TYR',1226,1), -(2416,'West Yorkshire','WYK',1226,1), -(2417,'South Yorkshire','SYK',1226,1), -(2418,'Merseyside','MSY',1226,1), -(2419,'Berkshire','BRK',1226,1), -(2420,'West Midlands','WMD',1226,1), -(2421,'West Glamorgan','WGM',1226,1), -(2422,'London','LON',1226,1), -(2423,'Clwyd','CWD',1226,1), -(2424,'South Glamorgan','SGM',1226,1), -(2425,'Ashanti','AH',1083,1), -(2426,'Brong-Ahafo','BA',1083,1), -(2427,'Greater Accra','AA',1083,1), -(2428,'Upper East','UE',1083,1), -(2429,'Upper West','UW',1083,1), -(2430,'Volta','TV',1083,1), -(2431,'Central','CP',1083,1), -(2432,'Eastern','EP',1083,1), -(2433,'Northern','NP',1083,1), -(2434,'Western','WP',1083,1), -(2435,'Banjul','B',1213,1), -(2436,'Lower River','L',1213,1), -(2437,'MacCarthy Island','M',1213,1), -(2438,'North Bank','N',1213,1), -(2439,'Upper River','U',1213,1), -(2440,'Beyla','BE',1091,1), -(2441,'Boffa','BF',1091,1), -(2442,'Boke','BK',1091,1), -(2443,'Coyah','CO',1091,1), -(2444,'Dabola','DB',1091,1), -(2445,'Dalaba','DL',1091,1), -(2446,'Dinguiraye','DI',1091,1), -(2447,'Dubreka','DU',1091,1), -(2448,'Faranah','FA',1091,1), -(2449,'Forecariah','FO',1091,1), -(2450,'Fria','FR',1091,1), -(2451,'Gaoual','GA',1091,1), -(2452,'Guekedou','GU',1091,1), -(2453,'Kankan','KA',1091,1), -(2454,'Kerouane','KE',1091,1), -(2455,'Kindia','KD',1091,1), -(2456,'Kissidougou','KS',1091,1), -(2457,'Koubia','KB',1091,1), -(2458,'Koundara','KN',1091,1), -(2459,'Kouroussa','KO',1091,1), -(2460,'Labe','LA',1091,1), -(2461,'Lelouma','LE',1091,1), -(2462,'Lola','LO',1091,1), -(2463,'Macenta','MC',1091,1), -(2464,'Mali','ML',1091,1), -(2465,'Mamou','MM',1091,1), -(2466,'Mandiana','MD',1091,1), -(2467,'Nzerekore','NZ',1091,1), -(2468,'Pita','PI',1091,1), -(2469,'Siguiri','SI',1091,1), -(2470,'Telimele','TE',1091,1), -(2471,'Tougue','TO',1091,1), -(2472,'Yomou','YO',1091,1), -(2473,'Region Continental','C',1067,1), -(2474,'Region Insular','I',1067,1), -(2475,'Annobon','AN',1067,1), -(2476,'Bioko Norte','BN',1067,1), -(2477,'Bioko Sur','BS',1067,1), -(2478,'Centro Sur','CS',1067,1), -(2479,'Kie-Ntem','KN',1067,1), -(2480,'Litoral','LI',1067,1), -(2481,'Wele-Nzas','WN',1067,1), -(2482,'Achaïa','13',1085,1), -(2483,'Aitolia-Akarnania','01',1085,1), -(2484,'Argolis','11',1085,1), -(2485,'Arkadia','12',1085,1), -(2486,'Arta','31',1085,1), -(2487,'Attiki','A1',1085,1), -(2488,'Chalkidiki','64',1085,1), -(2489,'Chania','94',1085,1), -(2490,'Chios','85',1085,1), -(2491,'Dodekanisos','81',1085,1), -(2492,'Drama','52',1085,1), -(2493,'Evros','71',1085,1), -(2494,'Evrytania','05',1085,1), -(2495,'Evvoia','04',1085,1), -(2496,'Florina','63',1085,1), -(2497,'Fokis','07',1085,1), -(2498,'Fthiotis','06',1085,1), -(2499,'Grevena','51',1085,1), -(2500,'Ileia','14',1085,1), -(2501,'Imathia','53',1085,1), -(2502,'Ioannina','33',1085,1), -(2503,'Irakleion','91',1085,1), -(2504,'Karditsa','41',1085,1), -(2505,'Kastoria','56',1085,1), -(2506,'Kavalla','55',1085,1), -(2507,'Kefallinia','23',1085,1), -(2508,'Kerkyra','22',1085,1), -(2509,'Kilkis','57',1085,1), -(2510,'Korinthia','15',1085,1), -(2511,'Kozani','58',1085,1), -(2512,'Kyklades','82',1085,1), -(2513,'Lakonia','16',1085,1), -(2514,'Larisa','42',1085,1), -(2515,'Lasithion','92',1085,1), -(2516,'Lefkas','24',1085,1), -(2517,'Lesvos','83',1085,1), -(2518,'Magnisia','43',1085,1), -(2519,'Messinia','17',1085,1), -(2520,'Pella','59',1085,1), -(2521,'Preveza','34',1085,1), -(2522,'Rethymnon','93',1085,1), -(2523,'Rodopi','73',1085,1), -(2524,'Samos','84',1085,1), -(2525,'Serrai','62',1085,1), -(2526,'Thesprotia','32',1085,1), -(2527,'Thessaloniki','54',1085,1), -(2528,'Trikala','44',1085,1), -(2529,'Voiotia','03',1085,1), -(2530,'Xanthi','72',1085,1), -(2531,'Zakynthos','21',1085,1), -(2532,'Agio Oros','69',1085,1), -(2533,'Pieria','61',1085,1), -(2534,'Alta Verapaz','AV',1090,1), -(2535,'Baja Verapaz','BV',1090,1), -(2536,'Chimaltenango','CM',1090,1), -(2537,'Chiquimula','CQ',1090,1), -(2538,'El Progreso','PR',1090,1), -(2539,'Escuintla','ES',1090,1), -(2540,'Guatemala','GU',1090,1), -(2541,'Huehuetenango','HU',1090,1), -(2542,'Izabal','IZ',1090,1), -(2543,'Jalapa','JA',1090,1), -(2544,'Jutiapa','JU',1090,1), -(2545,'Peten','PE',1090,1), -(2546,'Quetzaltenango','QZ',1090,1), -(2547,'Quiche','QC',1090,1), -(2548,'Retalhuleu','RE',1090,1), -(2549,'Sacatepequez','SA',1090,1), -(2550,'San Marcos','SM',1090,1), -(2551,'Santa Rosa','SR',1090,1), -(2552,'Sololá','SO',1090,1), -(2553,'Suchitepequez','SU',1090,1), -(2554,'Totonicapan','TO',1090,1), -(2555,'Zacapa','ZA',1090,1), -(2556,'Bissau','BS',1092,1), -(2557,'Bafata','BA',1092,1), -(2558,'Biombo','BM',1092,1), -(2559,'Bolama','BL',1092,1), -(2560,'Cacheu','CA',1092,1), -(2561,'Gabu','GA',1092,1), -(2562,'Oio','OI',1092,1), -(2563,'Quloara','QU',1092,1), -(2564,'Tombali S','TO',1092,1), -(2565,'Barima-Waini','BA',1093,1), -(2566,'Cuyuni-Mazaruni','CU',1093,1), -(2567,'Demerara-Mahaica','DE',1093,1), -(2568,'East Berbice-Corentyne','EB',1093,1), -(2569,'Essequibo Islands-West Demerara','ES',1093,1), -(2570,'Mahaica-Berbice','MA',1093,1), -(2571,'Pomeroon-Supenaam','PM',1093,1), -(2572,'Potaro-Siparuni','PT',1093,1), -(2573,'Upper Demerara-Berbice','UD',1093,1), -(2574,'Upper Takutu-Upper Essequibo','UT',1093,1), -(2575,'Atlantida','AT',1097,1), -(2576,'Colon','CL',1097,1), -(2577,'Comayagua','CM',1097,1), -(2578,'Copan','CP',1097,1), -(2579,'Cortes','CR',1097,1), -(2580,'Choluteca','CH',1097,1), -(2581,'El Paraiso','EP',1097,1), -(2582,'Francisco Morazan','FM',1097,1), -(2583,'Gracias a Dios','GD',1097,1), -(2584,'Intibuca','IN',1097,1), -(2585,'Islas de la Bahia','IB',1097,1), -(2586,'Lempira','LE',1097,1), -(2587,'Ocotepeque','OC',1097,1), -(2588,'Olancho','OL',1097,1), -(2589,'Santa Barbara','SB',1097,1), -(2590,'Valle','VA',1097,1), -(2591,'Yoro','YO',1097,1), -(2592,'La Paz','LP',1097,1), -(2593,'Bjelovarsko-bilogorska zupanija','07',1055,1), -(2594,'Brodsko-posavska zupanija','12',1055,1), -(2595,'Dubrovacko-neretvanska zupanija','19',1055,1), -(2596,'Istarska zupanija','18',1055,1), -(2597,'Karlovacka zupanija','04',1055,1), -(2598,'Koprivnickco-krizevacka zupanija','06',1055,1), -(2599,'Krapinako-zagorska zupanija','02',1055,1), -(2600,'Licko-senjska zupanija','09',1055,1), -(2601,'Medimurska zupanija','20',1055,1), -(2602,'Osjecko-baranjska zupanija','14',1055,1), -(2603,'Pozesko-slavonska zupanija','11',1055,1), -(2604,'Primorsko-goranska zupanija','08',1055,1), -(2605,'Sisacko-moelavacka Iupanija','03',1055,1), -(2606,'Splitako-dalmatinska zupanija','17',1055,1), -(2607,'Sibenako-kninska zupanija','15',1055,1), -(2608,'Varaidinska zupanija','05',1055,1), -(2609,'VirovitiEko-podravska zupanija','10',1055,1), -(2610,'VuRovarako-srijemska zupanija','16',1055,1), -(2611,'Zadaraka','13',1055,1), -(2612,'Zagrebacka zupanija','01',1055,1), -(2613,'Grande-Anse','GA',1094,1), -(2614,'Nord-Est','NE',1094,1), -(2615,'Nord-Ouest','NO',1094,1), -(2616,'Ouest','OU',1094,1), -(2617,'Sud','SD',1094,1), -(2618,'Sud-Est','SE',1094,1), -(2619,'Artibonite','AR',1094,1), -(2620,'Centre','CE',1094,1), -(2621,'Nippes','NI',1094,1), -(2622,'Nord','ND',1094,1), -(2623,'Budapest','BU',1099,1), -(2624,'Bács-Kiskun','BK',1099,1), -(2625,'Baranya','BA',1099,1), -(2626,'Békés','BE',1099,1), -(2627,'Borsod-Abaúj-Zemplén','BZ',1099,1), -(2628,'Csongrád','CS',1099,1), -(2629,'Fejér','FE',1099,1), -(2630,'Győr-Moson-Sopron','GS',1099,1), -(2631,'Hajdu-Bihar','HB',1099,1), -(2632,'Heves','HE',1099,1), -(2633,'Jász-Nagykun-Szolnok','JN',1099,1), -(2634,'Komárom-Esztergom','KE',1099,1), -(2635,'Nográd','NO',1099,1), -(2636,'Pest','PE',1099,1), -(2637,'Somogy','SO',1099,1), -(2638,'Szabolcs-Szatmár-Bereg','SZ',1099,1), -(2639,'Tolna','TO',1099,1), -(2640,'Vas','VA',1099,1), -(2641,'Veszprém','VE',1099,1), -(2642,'Zala','ZA',1099,1), -(2643,'Békéscsaba','BC',1099,1), -(2644,'Debrecen','DE',1099,1), -(2645,'Dunaújváros','DU',1099,1), -(2646,'Eger','EG',1099,1), -(2647,'Győr','GY',1099,1), -(2648,'Hódmezővásárhely','HV',1099,1), -(2649,'Kaposvár','KV',1099,1), -(2650,'Kecskemét','KM',1099,1), -(2651,'Miskolc','MI',1099,1), -(2652,'Nagykanizsa','NK',1099,1), -(2653,'Nyiregyháza','NY',1099,1), -(2654,'Pécs','PS',1099,1), -(2655,'Salgótarján','ST',1099,1), -(2656,'Sopron','SN',1099,1), -(2657,'Szeged','SD',1099,1), -(2658,'Székesfehérvár','SF',1099,1), -(2659,'Szekszárd','SS',1099,1), -(2660,'Szolnok','SK',1099,1), -(2661,'Szombathely','SH',1099,1), -(2662,'Tatabánya','TB',1099,1), -(2663,'Zalaegerszeg','ZE',1099,1), -(2664,'Bali','BA',1102,1), -(2665,'Kepulauan Bangka Belitung','BB',1102,1), -(2666,'Banten','BT',1102,1), -(2667,'Bengkulu','BE',1102,1), -(2668,'Gorontalo','GO',1102,1), -(2669,'Papua Barat','PB',1102,1), -(2670,'Jambi','JA',1102,1), -(2671,'Jawa Barat','JB',1102,1), -(2672,'Jawa Tengah','JT',1102,1), -(2673,'Jawa Timur','JI',1102,1), -(2674,'Kalimantan Barat','KB',1102,1), -(2675,'Kalimantan Timur','KI',1102,1), -(2676,'Kalimantan Selatan','KS',1102,1), -(2677,'Kepulauan Riau','KR',1102,1), -(2678,'Lampung','LA',1102,1), -(2679,'Maluku','MA',1102,1), -(2680,'Maluku Utara','MU',1102,1), -(2681,'Nusa Tenggara Barat','NB',1102,1), -(2682,'Nusa Tenggara Timur','NT',1102,1), -(2683,'Papua','PA',1102,1), -(2684,'Riau','RI',1102,1), -(2685,'Sulawesi Selatan','SN',1102,1), -(2686,'Sulawesi Tengah','ST',1102,1), -(2687,'Sulawesi Tenggara','SG',1102,1), -(2688,'Sulawesi Utara','SA',1102,1), -(2689,'Sumatra Barat','SB',1102,1), -(2690,'Sumatra Selatan','SS',1102,1), -(2691,'Sumatera Utara','SU',1102,1), -(2692,'DKI Jakarta','JK',1102,1), -(2693,'Aceh','AC',1102,1), -(2694,'DI Yogyakarta','YO',1102,1), -(2695,'Kalimantan Tengah','KT',1102,1), -(2696,'Sulawesi Barat','SR',1102,1), -(2697,'Kalimantan Utara','KU',1102,1), -(2698,'Cork','C',1105,1), -(2699,'Clare','CE',1105,1), -(2700,'Cavan','CN',1105,1), -(2701,'Carlow','CW',1105,1), -(2702,'Dublin','D',1105,1), -(2703,'Donegal','DL',1105,1), -(2704,'Galway','G',1105,1), -(2705,'Kildare','KE',1105,1), -(2706,'Kilkenny','KK',1105,1), -(2707,'Kerry','KY',1105,1), -(2708,'Longford','LD',1105,1), -(2709,'Louth','LH',1105,1), -(2710,'Limerick','LK',1105,1), -(2711,'Leitrim','LM',1105,1), -(2712,'Laois','LS',1105,1), -(2713,'Meath','MH',1105,1), -(2714,'Monaghan','MN',1105,1), -(2715,'Mayo','MO',1105,1), -(2716,'Offaly','OY',1105,1), -(2717,'Roscommon','RN',1105,1), -(2718,'Sligo','SO',1105,1), -(2719,'Tipperary','TA',1105,1), -(2720,'Waterford','WD',1105,1), -(2721,'Westmeath','WH',1105,1), -(2722,'Wicklow','WW',1105,1), -(2723,'Wexford','WX',1105,1), -(2724,'HaDarom','D',1106,1), -(2725,'HaMerkaz','M',1106,1), -(2726,'HaZafon','Z',1106,1), -(2727,'Haifa','HA',1106,1), -(2728,'Tel-Aviv','TA',1106,1), -(2729,'Jerusalem','JM',1106,1), -(2730,'Al Anbar','AN',1104,1), -(2731,'Al Ba,rah','BA',1104,1), -(2732,'Al Muthanna','MU',1104,1), -(2733,'Al Qadisiyah','QA',1104,1), -(2734,'An Najef','NA',1104,1), -(2735,'Arbil','AR',1104,1), -(2736,'As Sulaymaniyah','SW',1104,1), -(2737,'At Ta\'mim','TS',1104,1), -(2738,'Babil','BB',1104,1), -(2739,'Baghdad','BG',1104,1), -(2740,'Dahuk','DA',1104,1), -(2741,'Dhi Qar','DQ',1104,1), -(2742,'Diyala','DI',1104,1), -(2743,'Karbala\'','KA',1104,1), -(2744,'Maysan','MA',1104,1), -(2745,'Ninawa','NI',1104,1), -(2746,'Salah ad Din','SD',1104,1), -(2747,'Wasit','WA',1104,1), -(2748,'Ardabil','03',1103,1), -(2749,'Azarbayjan-e Gharbi','02',1103,1), -(2750,'Azarbayjan-e Sharqi','01',1103,1), -(2751,'Bushehr','06',1103,1), -(2752,'Chahar Mahall va Bakhtiari','08',1103,1), -(2753,'Esfahan','04',1103,1), -(2754,'Fars','14',1103,1), -(2755,'Gilan','19',1103,1), -(2756,'Golestan','27',1103,1), -(2757,'Hamadan','24',1103,1), -(2758,'Hormozgan','23',1103,1), -(2759,'Iiam','05',1103,1), -(2760,'Kerman','15',1103,1), -(2761,'Kermanshah','17',1103,1), -(2762,'Khorasan','09',1103,1), -(2763,'Khuzestan','10',1103,1), -(2764,'Kohjiluyeh va Buyer Ahmad','18',1103,1), -(2765,'Kordestan','16',1103,1), -(2766,'Lorestan','20',1103,1), -(2767,'Markazi','22',1103,1), -(2768,'Mazandaran','21',1103,1), -(2769,'Qazvin','28',1103,1), -(2770,'Qom','26',1103,1), -(2771,'Semnan','12',1103,1), -(2772,'Sistan va Baluchestan','13',1103,1), -(2773,'Tehran','07',1103,1), -(2774,'Yazd','25',1103,1), -(2775,'Zanjan','11',1103,1), -(2776,'Austurland','7',1100,1), -(2777,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100,1), -(2778,'Norourland eystra','6',1100,1), -(2779,'Norourland vestra','5',1100,1), -(2780,'Reykjavik','0',1100,1), -(2781,'Suourland','8',1100,1), -(2782,'Suournes','2',1100,1), -(2783,'Vestfirolr','4',1100,1), -(2784,'Vesturland','3',1100,1), -(2785,'Agrigento','AG',1107,1), -(2786,'Alessandria','AL',1107,1), -(2787,'Ancona','AN',1107,1), -(2788,'Aosta','AO',1107,1), -(2789,'Arezzo','AR',1107,1), -(2790,'Ascoli Piceno','AP',1107,1), -(2791,'Asti','AT',1107,1), -(2792,'Avellino','AV',1107,1), -(2793,'Bari','BA',1107,1), -(2794,'Belluno','BL',1107,1), -(2795,'Benevento','BN',1107,1), -(2796,'Bergamo','BG',1107,1), -(2797,'Biella','BI',1107,1), -(2798,'Bologna','BO',1107,1), -(2799,'Bolzano','BZ',1107,1), -(2800,'Brescia','BS',1107,1), -(2801,'Brindisi','BR',1107,1), -(2802,'Cagliari','CA',1107,1), -(2803,'Caltanissetta','CL',1107,1), -(2804,'Campobasso','CB',1107,1), -(2805,'Caserta','CE',1107,1), -(2806,'Catania','CT',1107,1), -(2807,'Catanzaro','CZ',1107,1), -(2808,'Chieti','CH',1107,1), -(2809,'Como','CO',1107,1), -(2810,'Cosenza','CS',1107,1), -(2811,'Cremona','CR',1107,1), -(2812,'Crotone','KR',1107,1), -(2813,'Cuneo','CN',1107,1), -(2814,'Enna','EN',1107,1), -(2815,'Ferrara','FE',1107,1), -(2816,'Firenze','FI',1107,1), -(2817,'Foggia','FG',1107,1), -(2818,'Forlì-Cesena','FC',1107,1), -(2819,'Frosinone','FR',1107,1), -(2820,'Genova','GE',1107,1), -(2821,'Gorizia','GO',1107,1), -(2822,'Grosseto','GR',1107,1), -(2823,'Imperia','IM',1107,1), -(2824,'Isernia','IS',1107,1), -(2825,'L\'Aquila','AQ',1107,1), -(2826,'La Spezia','SP',1107,1), -(2827,'Latina','LT',1107,1), -(2828,'Lecce','LE',1107,1), -(2829,'Lecco','LC',1107,1), -(2830,'Livorno','LI',1107,1), -(2831,'Lodi','LO',1107,1), -(2832,'Lucca','LU',1107,1), -(2833,'Macerata','MC',1107,1), -(2834,'Mantova','MN',1107,1), -(2835,'Massa-Carrara','MS',1107,1), -(2836,'Matera','MT',1107,1), -(2837,'Messina','ME',1107,1), -(2838,'Milano','MI',1107,1), -(2839,'Modena','MO',1107,1), -(2840,'Napoli','NA',1107,1), -(2841,'Novara','NO',1107,1), -(2842,'Nuoro','NU',1107,1), -(2843,'Oristano','OR',1107,1), -(2844,'Padova','PD',1107,1), -(2845,'Palermo','PA',1107,1), -(2846,'Parma','PR',1107,1), -(2847,'Pavia','PV',1107,1), -(2848,'Perugia','PG',1107,1), -(2849,'Pesaro e Urbino','PU',1107,1), -(2850,'Pescara','PE',1107,1), -(2851,'Piacenza','PC',1107,1), -(2852,'Pisa','PI',1107,1), -(2853,'Pistoia','PT',1107,1), -(2854,'Pordenone','PN',1107,1), -(2855,'Potenza','PZ',1107,1), -(2856,'Prato','PO',1107,1), -(2857,'Ragusa','RG',1107,1), -(2858,'Ravenna','RA',1107,1), -(2859,'Reggio Calabria','RC',1107,1), -(2860,'Reggio Emilia','RE',1107,1), -(2861,'Rieti','RI',1107,1), -(2862,'Rimini','RN',1107,1), -(2863,'Roma','RM',1107,1), -(2864,'Rovigo','RO',1107,1), -(2865,'Salerno','SA',1107,1), -(2866,'Sassari','SS',1107,1), -(2867,'Savona','SV',1107,1), -(2868,'Siena','SI',1107,1), -(2869,'Siracusa','SR',1107,1), -(2870,'Sondrio','SO',1107,1), -(2871,'Taranto','TA',1107,1), -(2872,'Teramo','TE',1107,1), -(2873,'Terni','TR',1107,1), -(2874,'Torino','TO',1107,1), -(2875,'Trapani','TP',1107,1), -(2876,'Trento','TN',1107,1), -(2877,'Treviso','TV',1107,1), -(2878,'Trieste','TS',1107,1), -(2879,'Udine','UD',1107,1), -(2880,'Varese','VA',1107,1), -(2881,'Venezia','VE',1107,1), -(2882,'Verbano-Cusio-Ossola','VB',1107,1), -(2883,'Vercelli','VC',1107,1), -(2884,'Verona','VR',1107,1), -(2885,'Vibo Valentia','VV',1107,1), -(2886,'Vicenza','VI',1107,1), -(2887,'Viterbo','VT',1107,1), -(2888,'Barletta-Andria-Trani','BT',1107,1), -(2889,'Fermo','FM',1107,1), -(2890,'Monza e Brianza','MB',1107,1), -(2891,'Carbonia-Iglesias','CI',1107,1), -(2892,'Olbia-Tempio','OT',1107,1), -(2893,'Medio Campidano','VS',1107,1), -(2894,'Ogliastra','OG',1107,1), -(2895,'Aichi','23',1109,1), -(2896,'Akita','05',1109,1), -(2897,'Aomori','02',1109,1), -(2898,'Chiba','12',1109,1), -(2899,'Ehime','38',1109,1), -(2900,'Fukui','18',1109,1), -(2901,'Fukuoka','40',1109,1), -(2902,'Fukusima','07',1109,1), -(2903,'Gifu','21',1109,1), -(2904,'Gunma','10',1109,1), -(2905,'Hiroshima','34',1109,1), -(2906,'Hokkaido','01',1109,1), -(2907,'Hyogo','28',1109,1), -(2908,'Ibaraki','08',1109,1), -(2909,'Ishikawa','17',1109,1), -(2910,'Iwate','03',1109,1), -(2911,'Kagawa','37',1109,1), -(2912,'Kagoshima','46',1109,1), -(2913,'Kanagawa','14',1109,1), -(2914,'Kochi','39',1109,1), -(2915,'Kumamoto','43',1109,1), -(2916,'Kyoto','26',1109,1), -(2917,'Mie','24',1109,1), -(2918,'Miyagi','04',1109,1), -(2919,'Miyazaki','45',1109,1), -(2920,'Nagano','20',1109,1), -(2921,'Nagasaki','42',1109,1), -(2922,'Nara','29',1109,1), -(2923,'Niigata','15',1109,1), -(2924,'Oita','44',1109,1), -(2925,'Okayama','33',1109,1), -(2926,'Okinawa','47',1109,1), -(2927,'Osaka','27',1109,1), -(2928,'Saga','41',1109,1), -(2929,'Saitama','11',1109,1), -(2930,'Shiga','25',1109,1), -(2931,'Shimane','32',1109,1), -(2932,'Shizuoka','22',1109,1), -(2933,'Tochigi','09',1109,1), -(2934,'Tokushima','36',1109,1), -(2935,'Tokyo','13',1109,1), -(2936,'Tottori','31',1109,1), -(2937,'Toyama','16',1109,1), -(2938,'Wakayama','30',1109,1), -(2939,'Yamagata','06',1109,1), -(2940,'Yamaguchi','35',1109,1), -(2941,'Yamanashi','19',1109,1), -(2942,'Clarendon','CN',1108,1), -(2943,'Hanover','HR',1108,1), -(2944,'Kingston','KN',1108,1), -(2945,'Portland','PD',1108,1), -(2946,'Saint Andrew','AW',1108,1), -(2947,'Saint Ann','AN',1108,1), -(2948,'Saint Catherine','CE',1108,1), -(2949,'Saint Elizabeth','EH',1108,1), -(2950,'Saint James','JS',1108,1), -(2951,'Saint Mary','MY',1108,1), -(2952,'Saint Thomas','TS',1108,1), -(2953,'Trelawny','TY',1108,1), -(2954,'Westmoreland','WD',1108,1), -(2955,'Ajln','AJ',1110,1), -(2956,'Al \'Aqaba','AQ',1110,1), -(2957,'Al Balqa\'','BA',1110,1), -(2958,'Al Karak','KA',1110,1), -(2959,'Al Mafraq','MA',1110,1), -(2960,'Amman','AM',1110,1), -(2961,'At Tafilah','AT',1110,1), -(2962,'Az Zarga','AZ',1110,1), -(2963,'Irbid','JR',1110,1), -(2964,'Jarash','JA',1110,1), -(2965,'Ma\'an','MN',1110,1), -(2966,'Madaba','MD',1110,1), -(2967,'Baringo','01',1112,1), -(2968,'Bomet','02',1112,1), -(2969,'Bungoma','03',1112,1), -(2970,'Busia','04',1112,1), -(2971,'Elgeyo/Marakwet','05',1112,1), -(2972,'Embu','06',1112,1), -(2973,'Garissa','07',1112,1), -(2974,'Homa Bay','08',1112,1), -(2975,'Isiolo','09',1112,1), -(2976,'Kajiado','10',1112,1), -(2977,'Kakamega','11',1112,1), -(2978,'Kericho','12',1112,1), -(2979,'Kiambu','13',1112,1), -(2980,'Kilifi','14',1112,1), -(2981,'Kirinyaga','15',1112,1), -(2982,'Kisii','16',1112,1), -(2983,'Kisumu','17',1112,1), -(2984,'Kitui','18',1112,1), -(2985,'Kwale','19',1112,1), -(2986,'Laikipia','20',1112,1), -(2987,'Lamu','21',1112,1), -(2988,'Machakos','22',1112,1), -(2989,'Makueni','23',1112,1), -(2990,'Mandera','24',1112,1), -(2991,'Marsabit','25',1112,1), -(2992,'Meru','26',1112,1), -(2993,'Migori','27',1112,1), -(2994,'Mombasa','28',1112,1), -(2995,'Murang\'a','29',1112,1), -(2996,'Nairobi City','30',1112,1), -(2997,'Nakuru','31',1112,1), -(2998,'Nandi','32',1112,1), -(2999,'Narok','33',1112,1), -(3000,'Nyamira','34',1112,1), -(3001,'Nyandarua','35',1112,1), -(3002,'Nyeri','36',1112,1), -(3003,'Samburu','37',1112,1), -(3004,'Siaya','38',1112,1), -(3005,'Taita/Taveta','39',1112,1), -(3006,'Tana River','40',1112,1), -(3007,'Tharaka-Nithi','41',1112,1), -(3008,'Trans Nzoia','42',1112,1), -(3009,'Turkana','43',1112,1), -(3010,'Uasin Gishu','44',1112,1), -(3011,'Vihiga','45',1112,1), -(3012,'Wajir','46',1112,1), -(3013,'West Pokot','47',1112,1), -(3014,'Bishkek','GB',1117,1), -(3015,'Batken','B',1117,1), -(3016,'Chu','C',1117,1), -(3017,'Jalal-Abad','J',1117,1), -(3018,'Naryn','N',1117,1), -(3019,'Osh','O',1117,1), -(3020,'Talas','T',1117,1), -(3021,'Ysyk-Kol','Y',1117,1), -(3022,'Krong Kaeb','23',1037,1), -(3023,'Krong Pailin','24',1037,1), -(3024,'Xrong Preah Sihanouk','18',1037,1), -(3025,'Phnom Penh','12',1037,1), -(3026,'Baat Dambang','2',1037,1), -(3027,'Banteay Mean Chey','1',1037,1), -(3028,'Rampong Chaam','3',1037,1), -(3029,'Kampong Chhnang','4',1037,1), -(3030,'Kampong Spueu','5',1037,1), -(3031,'Kampong Thum','6',1037,1), -(3032,'Kampot','7',1037,1), -(3033,'Kandaal','8',1037,1), -(3034,'Kach Kong','9',1037,1), -(3035,'Krachoh','10',1037,1), -(3036,'Mondol Kiri','11',1037,1), -(3037,'Otdar Mean Chey','22',1037,1), -(3038,'Pousaat','15',1037,1), -(3039,'Preah Vihear','13',1037,1), -(3040,'Prey Veaeng','14',1037,1), -(3041,'Rotanak Kiri','16',1037,1), -(3042,'Siem Reab','17',1037,1), -(3043,'Stueng Traeng','19',1037,1), -(3044,'Svaay Rieng','20',1037,1), -(3045,'Taakaev','21',1037,1), -(3046,'Gilbert Islands','G',1113,1), -(3047,'Line Islands','L',1113,1), -(3048,'Phoenix Islands','P',1113,1), -(3049,'Anjouan Ndzouani','A',1049,1), -(3050,'Grande Comore Ngazidja','G',1049,1), -(3051,'Moheli Moili','M',1049,1), -(3052,'Kaesong-si','KAE',1114,1), -(3053,'Nampo-si','NAM',1114,1), -(3054,'Pyongyang-ai','PYO',1114,1), -(3055,'Chagang-do','CHA',1114,1), -(3056,'Hamgyongbuk-do','HAB',1114,1), -(3057,'Hamgyongnam-do','HAN',1114,1), -(3058,'Hwanghaebuk-do','HWB',1114,1), -(3059,'Hwanghaenam-do','HWN',1114,1), -(3060,'Kangwon-do','KAN',1114,1), -(3061,'Pyonganbuk-do','PYB',1114,1), -(3062,'Pyongannam-do','PYN',1114,1), -(3063,'Yanggang-do','YAN',1114,1), -(3064,'Najin Sonbong-si','NAJ',1114,1), -(3065,'Seoul Teugbyeolsi','11',1115,1), -(3066,'Busan Gwang\'yeogsi','26',1115,1), -(3067,'Daegu Gwang\'yeogsi','27',1115,1), -(3068,'Daejeon Gwang\'yeogsi','30',1115,1), -(3069,'Gwangju Gwang\'yeogsi','29',1115,1), -(3070,'Incheon Gwang\'yeogsi','28',1115,1), -(3071,'Ulsan Gwang\'yeogsi','31',1115,1), -(3072,'Chungcheongbugdo','43',1115,1), -(3073,'Chungcheongnamdo','44',1115,1), -(3074,'Gang\'weondo','42',1115,1), -(3075,'Gyeonggido','41',1115,1), -(3076,'Gyeongsangbugdo','47',1115,1), -(3077,'Gyeongsangnamdo','48',1115,1), -(3078,'Jejudo','49',1115,1), -(3079,'Jeonrabugdo','45',1115,1), -(3080,'Jeonranamdo','46',1115,1), -(3081,'Sejong','50',1115,1), -(3082,'Al Ahmadi','AH',1116,1), -(3083,'Al Farwanlyah','FA',1116,1), -(3084,'Al Jahrah','JA',1116,1), -(3085,'Al Kuwayt','KU',1116,1), -(3086,'Hawalli','HA',1116,1), -(3087,'Almaty','ALA',1111,1), -(3088,'Astana','AST',1111,1), -(3089,'Almaty oblysy','ALM',1111,1), -(3090,'Aqmola oblysy','AKM',1111,1), -(3091,'Aqtobe oblysy','AKT',1111,1), -(3092,'Atyrau oblyfiy','ATY',1111,1), -(3093,'Batys Quzaqstan oblysy','ZAP',1111,1), -(3094,'Mangghystau oblysy','MAN',1111,1), -(3095,'Ongtustik Quzaqstan oblysy','YUZ',1111,1), -(3096,'Pavlodar oblysy','PAV',1111,1), -(3097,'Qaraghandy oblysy','KAR',1111,1), -(3098,'Qostanay oblysy','KUS',1111,1), -(3099,'Qyzylorda oblysy','KZY',1111,1), -(3100,'Shyghys Quzaqstan oblysy','VOS',1111,1), -(3101,'Soltustik Quzaqstan oblysy','SEV',1111,1), -(3102,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111,1), -(3103,'Vientiane','VT',1118,1), -(3104,'Attapu','AT',1118,1), -(3105,'Bokeo','BK',1118,1), -(3106,'Bolikhamxai','BL',1118,1), -(3107,'Champasak','CH',1118,1), -(3108,'Houaphan','HO',1118,1), -(3109,'Khammouan','KH',1118,1), -(3110,'Louang Namtha','LM',1118,1), -(3111,'Louangphabang','LP',1118,1), -(3112,'Oudomxai','OU',1118,1), -(3113,'Phongsali','PH',1118,1), -(3114,'Salavan','SL',1118,1), -(3115,'Savannakhet','SV',1118,1), -(3116,'Xaignabouli','XA',1118,1), -(3117,'Xiasomboun','XN',1118,1), -(3118,'Xekong','XE',1118,1), -(3119,'Xiangkhoang','XI',1118,1), -(3120,'Beirut','BA',1120,1), -(3121,'Beqaa','BI',1120,1), -(3122,'Mount Lebanon','JL',1120,1), -(3123,'North Lebanon','AS',1120,1), -(3124,'South Lebanon','JA',1120,1), -(3125,'Nabatieh','NA',1120,1), -(3126,'Ampara','52',1199,1), -(3127,'Anuradhapura','71',1199,1), -(3128,'Badulla','81',1199,1), -(3129,'Batticaloa','51',1199,1), -(3130,'Colombo','11',1199,1), -(3131,'Galle','31',1199,1), -(3132,'Gampaha','12',1199,1), -(3133,'Hambantota','33',1199,1), -(3134,'Jaffna','41',1199,1), -(3135,'Kalutara','13',1199,1), -(3136,'Kandy','21',1199,1), -(3137,'Kegalla','92',1199,1), -(3138,'Kilinochchi','42',1199,1), -(3139,'Kurunegala','61',1199,1), -(3140,'Mannar','43',1199,1), -(3141,'Matale','22',1199,1), -(3142,'Matara','32',1199,1), -(3143,'Monaragala','82',1199,1), -(3144,'Mullaittivu','45',1199,1), -(3145,'Nuwara Eliya','23',1199,1), -(3146,'Polonnaruwa','72',1199,1), -(3147,'Puttalum','62',1199,1), -(3148,'Ratnapura','91',1199,1), -(3149,'Trincomalee','53',1199,1), -(3150,'VavunLya','44',1199,1), -(3151,'Bomi','BM',1122,1), -(3152,'Bong','BG',1122,1), -(3153,'Grand Basaa','GB',1122,1), -(3154,'Grand Cape Mount','CM',1122,1), -(3155,'Grand Gedeh','GG',1122,1), -(3156,'Grand Kru','GK',1122,1), -(3157,'Lofa','LO',1122,1), -(3158,'Margibi','MG',1122,1), -(3159,'Maryland','MY',1122,1), -(3160,'Montserrado','MO',1122,1), -(3161,'Nimba','NI',1122,1), -(3162,'Rivercess','RI',1122,1), -(3163,'Sinoe','SI',1122,1), -(3164,'Berea','D',1121,1), -(3165,'Butha-Buthe','B',1121,1), -(3166,'Leribe','C',1121,1), -(3167,'Mafeteng','E',1121,1), -(3168,'Maseru','A',1121,1), -(3169,'Mohale\'s Hoek','F',1121,1), -(3170,'Mokhotlong','J',1121,1), -(3171,'Qacha\'s Nek','H',1121,1), -(3172,'Quthing','G',1121,1), -(3173,'Thaba-Tseka','K',1121,1), -(3174,'Alytaus Apskritis','AL',1125,1), -(3175,'Kauno Apskritis','KU',1125,1), -(3176,'Klaipėdos Apskritis','KL',1125,1), -(3177,'Marijampolės Apskritis','MR',1125,1), -(3178,'Panevėžio Apskritis','PN',1125,1), -(3179,'Šiaulių Apskritis','SA',1125,1), -(3180,'Tauragės Apskritis','TA',1125,1), -(3181,'Telšių Apskritis','TE',1125,1), -(3182,'Utenos Apskritis','UT',1125,1), -(3183,'Vilniaus Apskritis','VL',1125,1), -(3184,'Luxembourg','LU',1126,1), -(3185,'Diekirch','DI',1126,1), -(3186,'Grevenmacher','GR',1126,1), -(3187,'Capellen','CA',1126,1), -(3188,'Clervaux','CL',1126,1), -(3189,'Echternach','EC',1126,1), -(3190,'Esch-sur-Alzette','ES',1126,1), -(3191,'Mersch','ME',1126,1), -(3192,'Redange-sur-Attert','RD',1126,1), -(3193,'Remich','RM',1126,1), -(3194,'Vianden','VD',1126,1), -(3195,'Wiltz','WI',1126,1), -(3196,'Daugavpils','DGV',1119,1), -(3197,'Jelgava','JEL',1119,1), -(3198,'Jūrmala','JUR',1119,1), -(3199,'Liepāja','LPX',1119,1), -(3200,'Rēzekne','REZ',1119,1), -(3201,'Rīga','RIX',1119,1), -(3202,'Ventspils','VEN',1119,1), -(3203,'Aizkraukles novads','002',1119,1), -(3204,'Jaunjelgavas novads','038',1119,1), -(3205,'Pļaviņu novads','072',1119,1), -(3206,'Kokneses novads','046',1119,1), -(3207,'Neretas novads','065',1119,1), -(3208,'Skrīveru novads','092',1119,1), -(3209,'Alūksnes novads','007',1119,1), -(3210,'Apes novads','009',1119,1), -(3211,'Balvu novads','015',1119,1), -(3212,'Viļakas novads','108',1119,1), -(3213,'Baltinavas novads','014',1119,1), -(3214,'Rugāju novads','082',1119,1), -(3215,'Bauskas novads','016',1119,1), -(3216,'Iecavas novads','034',1119,1), -(3217,'Rundāles novads','083',1119,1), -(3218,'Vecumnieku novads','105',1119,1), -(3219,'Cēsu novads','022',1119,1), -(3220,'Līgatnes novads','055',1119,1), -(3221,'Amatas novads','008',1119,1), -(3222,'Jaunpiebalgas novads','039',1119,1), -(3223,'Priekuļu novads','075',1119,1), -(3224,'Pārgaujas novads','070',1119,1), -(3225,'Raunas novads','076',1119,1), -(3226,'Vecpiebalgas novads','104',1119,1), -(3227,'Daugavpils novads','025',1119,1), -(3228,'Ilūkstes novads','036',1119,1), -(3229,'Dobeles novads','026',1119,1), -(3230,'Auces novads','010',1119,1), -(3231,'Tērvetes novads','098',1119,1), -(3232,'Gulbenes novads','033',1119,1), -(3233,'Jelgavas novads','041',1119,1), -(3234,'Ozolnieku novads','069',1119,1), -(3235,'Jēkabpils novads','042',1119,1), -(3236,'Aknīstes novads','004',1119,1), -(3237,'Viesītes novads','107',1119,1), -(3238,'Krustpils novads','049',1119,1), -(3239,'Salas novads','085',1119,1), -(3240,'Krāslavas novads','047',1119,1), -(3241,'Dagdas novads','024',1119,1), -(3242,'Aglonas novads','001',1119,1), -(3243,'Kuldīgas novads','050',1119,1), -(3244,'Skrundas novads','093',1119,1), -(3245,'Alsungas novads','006',1119,1), -(3246,'Aizputes novads','003',1119,1), -(3247,'Durbes novads','028',1119,1), -(3248,'Grobiņas novads','032',1119,1), -(3249,'Pāvilostas novads','071',1119,1), -(3250,'Priekules novads','074',1119,1), -(3251,'Nīcas novads','066',1119,1), -(3252,'Rucavas novads','081',1119,1), -(3253,'Vaiņodes novads','100',1119,1), -(3254,'Limbažu novads','054',1119,1), -(3255,'Alojas novads','005',1119,1), -(3256,'Salacgrīvas novads','086',1119,1), -(3257,'Ludzas novads','058',1119,1), -(3258,'Kārsavas novads','044',1119,1), -(3259,'Zilupes novads','110',1119,1), -(3260,'Ciblas novads','023',1119,1), -(3261,'Madonas novads','059',1119,1), -(3262,'Cesvaines novads','021',1119,1), -(3263,'Lubānas novads','057',1119,1), -(3264,'Varakļānu novads','102',1119,1), -(3265,'Ērgļu novads','030',1119,1), -(3266,'Ogres novads','067',1119,1), -(3267,'Ikšķiles novads','035',1119,1), -(3268,'Ķeguma novads','051',1119,1), -(3269,'Lielvārdes novads','053',1119,1), -(3270,'Preiļu novads','073',1119,1), -(3271,'Līvānu novads','056',1119,1), -(3272,'Riebiņu novads','078',1119,1), -(3273,'Vārkavas novads','103',1119,1), -(3274,'Rēzeknes novads','077',1119,1), -(3275,'Viļānu novads','109',1119,1), -(3276,'Baldones novads','013',1119,1), -(3277,'Ķekavas novads','052',1119,1), -(3278,'Olaines novads','068',1119,1), -(3279,'Salaspils novads','087',1119,1), -(3280,'Saulkrastu novads','089',1119,1), -(3281,'Siguldas novads','091',1119,1), -(3282,'Inčukalna novads','037',1119,1), -(3283,'Ādažu novads','011',1119,1), -(3284,'Babītes novads','012',1119,1), -(3285,'Carnikavas novads','020',1119,1), -(3286,'Garkalnes novads','031',1119,1), -(3287,'Krimuldas novads','048',1119,1), -(3288,'Mālpils novads','061',1119,1), -(3289,'Mārupes novads','062',1119,1), -(3290,'Ropažu novads','080',1119,1), -(3291,'Sējas novads','090',1119,1), -(3292,'Stopiņu novads','095',1119,1), -(3293,'Saldus novads','088',1119,1), -(3294,'Brocēnu novads','018',1119,1), -(3295,'Talsu novads','097',1119,1), -(3296,'Dundagas novads','027',1119,1), -(3297,'Mērsraga novads','063',1119,1), -(3298,'Rojas novads','079',1119,1), -(3299,'Tukuma novads','099',1119,1), -(3300,'Kandavas novads','043',1119,1), -(3301,'Engures novads','029',1119,1), -(3302,'Jaunpils novads','040',1119,1), -(3303,'Valkas novads','101',1119,1), -(3304,'Smiltenes novads','094',1119,1), -(3305,'Strenču novads','096',1119,1), -(3306,'Kocēnu novads','045',1119,1), -(3307,'Mazsalacas novads','060',1119,1), -(3308,'Rūjienas novads','084',1119,1), -(3309,'Beverīnas novads','017',1119,1), -(3310,'Burtnieku novads','019',1119,1), -(3311,'Naukšēnu novads','064',1119,1), -(3312,'Ventspils novads','106',1119,1), -(3313,'Jēkabpils','JKB',1119,1), -(3314,'Valmiera','VMR',1119,1), -(3315,'Ajdābiyā','AJ',1123,1), -(3316,'Al Buţnān','BU',1123,1), -(3317,'Al Hizām al Akhdar','HZ',1123,1), -(3318,'Al Jabal al Akhdar','JA',1123,1), -(3319,'Al Jifārah','JI',1123,1), -(3320,'Al Jufrah','JU',1123,1), -(3321,'Al Kufrah','KF',1123,1), -(3322,'Al Marj','MJ',1123,1), -(3323,'Al Marqab','MB',1123,1), -(3324,'Al Qaţrūn','QT',1123,1), -(3325,'Al Qubbah','QB',1123,1), -(3326,'Al Wāhah','WA',1123,1), -(3327,'An Nuqaţ al Khams','NQ',1123,1), -(3328,'Ash Shāţi\'','SH',1123,1), -(3329,'Az Zāwiyah','ZA',1123,1), -(3330,'Banghāzī','BA',1123,1), -(3331,'Banī Walīd','BW',1123,1), -(3332,'Darnah','DR',1123,1), -(3333,'Ghadāmis','GD',1123,1), -(3334,'Gharyān','GR',1123,1), -(3335,'Ghāt','GT',1123,1), -(3336,'Jaghbūb','JB',1123,1), -(3337,'Mişrātah','MI',1123,1), -(3338,'Mizdah','MZ',1123,1), -(3339,'Murzuq','MQ',1123,1), -(3340,'Nālūt','NL',1123,1), -(3341,'Sabhā','SB',1123,1), -(3342,'Şabrātah Şurmān','SS',1123,1), -(3343,'Surt','SR',1123,1), -(3344,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123,1), -(3345,'Ţarābulus','TB',1123,1), -(3346,'Tarhūnah-Masallātah','TM',1123,1), -(3347,'Wādī al hayāt','WD',1123,1), -(3348,'Yafran-Jādū','YJ',1123,1), -(3349,'Agadir','AGD',1146,1), -(3350,'Aït Baha','BAH',1146,1), -(3351,'Aït Melloul','MEL',1146,1), -(3352,'Al Haouz','HAO',1146,1), -(3353,'Al Hoceïma','HOC',1146,1), -(3354,'Assa-Zag','ASZ',1146,1), -(3355,'Azilal','AZI',1146,1), -(3356,'Beni Mellal','BEM',1146,1), -(3357,'Ben Sllmane','BES',1146,1), -(3358,'Berkane','BER',1146,1), -(3359,'Boujdour','BOD',1146,1), -(3360,'Boulemane','BOM',1146,1), -(3361,'Casablanca [Dar el Beïda]','CAS',1146,1), -(3362,'Chefchaouene','CHE',1146,1), -(3363,'Chichaoua','CHI',1146,1), -(3364,'El Hajeb','HAJ',1146,1), -(3365,'El Jadida','JDI',1146,1), -(3366,'Errachidia','ERR',1146,1), -(3367,'Essaouira','ESI',1146,1), -(3368,'Es Smara','ESM',1146,1), -(3369,'Fès','FES',1146,1), -(3370,'Figuig','FIG',1146,1), -(3371,'Guelmim','GUE',1146,1), -(3372,'Ifrane','IFR',1146,1), -(3373,'Jerada','JRA',1146,1), -(3374,'Kelaat Sraghna','KES',1146,1), -(3375,'Kénitra','KEN',1146,1), -(3376,'Khemisaet','KHE',1146,1), -(3377,'Khenifra','KHN',1146,1), -(3378,'Khouribga','KHO',1146,1), -(3379,'Laâyoune (EH)','LAA',1146,1), -(3380,'Larache','LAP',1146,1), -(3381,'Marrakech','MAR',1146,1), -(3382,'Meknsès','MEK',1146,1), -(3383,'Nador','NAD',1146,1), -(3384,'Ouarzazate','OUA',1146,1), -(3385,'Oued ed Dahab (EH)','OUD',1146,1), -(3386,'Oujda','OUJ',1146,1), -(3387,'Rabat-Salé','RBA',1146,1), -(3388,'Safi','SAF',1146,1), -(3389,'Sefrou','SEF',1146,1), -(3390,'Settat','SET',1146,1), -(3391,'Sidl Kacem','SIK',1146,1), -(3392,'Tanger','TNG',1146,1), -(3393,'Tan-Tan','TNT',1146,1), -(3394,'Taounate','TAO',1146,1), -(3395,'Taroudannt','TAR',1146,1), -(3396,'Tata','TAT',1146,1), -(3397,'Taza','TAZ',1146,1), -(3398,'Tétouan','TET',1146,1), -(3399,'Tiznit','TIZ',1146,1), -(3400,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142,1), -(3401,'Chisinau','CU',1142,1), -(3402,'Stinga Nistrului, unitatea teritoriala din','SN',1142,1), -(3403,'Balti','BA',1142,1), -(3404,'Cahul','CA',1142,1), -(3405,'Edinet','ED',1142,1), -(3406,'Lapusna','LA',1142,1), -(3407,'Orhei','OR',1142,1), -(3408,'Soroca','SO',1142,1), -(3409,'Taraclia','TA',1142,1), -(3410,'Tighina [Bender]','TI',1142,1), -(3411,'Ungheni','UN',1142,1), -(3412,'Antananarivo','T',1129,1), -(3413,'Antsiranana','D',1129,1), -(3414,'Fianarantsoa','F',1129,1), -(3415,'Mahajanga','M',1129,1), -(3416,'Toamasina','A',1129,1), -(3417,'Toliara','U',1129,1), -(3418,'Ailinglapalap','ALL',1135,1), -(3419,'Ailuk','ALK',1135,1), -(3420,'Arno','ARN',1135,1), -(3421,'Aur','AUR',1135,1), -(3422,'Ebon','EBO',1135,1), -(3423,'Eniwetok','ENI',1135,1), -(3424,'Jaluit','JAL',1135,1), -(3425,'Kili','KIL',1135,1), -(3426,'Kwajalein','KWA',1135,1), -(3427,'Lae','LAE',1135,1), -(3428,'Lib','LIB',1135,1), -(3429,'Likiep','LIK',1135,1), -(3430,'Majuro','MAJ',1135,1), -(3431,'Maloelap','MAL',1135,1), -(3432,'Mejit','MEJ',1135,1), -(3433,'Mili','MIL',1135,1), -(3434,'Namorik','NMK',1135,1), -(3435,'Namu','NMU',1135,1), -(3436,'Rongelap','RON',1135,1), -(3437,'Ujae','UJA',1135,1), -(3438,'Ujelang','UJL',1135,1), -(3439,'Utirik','UTI',1135,1), -(3440,'Wotho','WTN',1135,1), -(3441,'Wotje','WTJ',1135,1), -(3442,'Bamako','BK0',1133,1), -(3443,'Gao','7',1133,1), -(3444,'Kayes','1',1133,1), -(3445,'Kidal','8',1133,1), -(3446,'Xoulikoro','2',1133,1), -(3447,'Mopti','5',1133,1), -(3448,'S69ou','4',1133,1), -(3449,'Sikasso','3',1133,1), -(3450,'Tombouctou','6',1133,1), -(3451,'Ayeyarwady','07',1035,1), -(3452,'Bago','02',1035,1), -(3453,'Magway','03',1035,1), -(3454,'Mandalay','04',1035,1), -(3455,'Sagaing','01',1035,1), -(3456,'Tanintharyi','05',1035,1), -(3457,'Yangon','06',1035,1), -(3458,'Chin','14',1035,1), -(3459,'Kachin','11',1035,1), -(3460,'Kayah','12',1035,1), -(3461,'Kayin','13',1035,1), -(3462,'Mon','15',1035,1), -(3463,'Rakhine','16',1035,1), -(3464,'Shan','17',1035,1), -(3465,'Ulaanbaatar','1',1144,1), -(3466,'Arhangay','073',1144,1), -(3467,'Bayanhongor','069',1144,1), -(3468,'Bayan-Olgiy','071',1144,1), -(3469,'Bulgan','067',1144,1), -(3470,'Darhan uul','037',1144,1), -(3471,'Dornod','061',1144,1), -(3472,'Dornogov,','063',1144,1), -(3473,'DundgovL','059',1144,1), -(3474,'Dzavhan','057',1144,1), -(3475,'Govi-Altay','065',1144,1), -(3476,'Govi-Smber','064',1144,1), -(3477,'Hentiy','039',1144,1), -(3478,'Hovd','043',1144,1), -(3479,'Hovsgol','041',1144,1), -(3480,'Omnogovi','053',1144,1), -(3481,'Orhon','035',1144,1), -(3482,'Ovorhangay','055',1144,1), -(3483,'Selenge','049',1144,1), -(3484,'Shbaatar','051',1144,1), -(3485,'Tov','047',1144,1), -(3486,'Uvs','046',1144,1), -(3487,'Nouakchott','NKC',1137,1), -(3488,'Assaba','03',1137,1), -(3489,'Brakna','05',1137,1), -(3490,'Dakhlet Nouadhibou','08',1137,1), -(3491,'Gorgol','04',1137,1), -(3492,'Guidimaka','10',1137,1), -(3493,'Hodh ech Chargui','01',1137,1), -(3494,'Hodh el Charbi','02',1137,1), -(3495,'Inchiri','12',1137,1), -(3496,'Tagant','09',1137,1), -(3497,'Tiris Zemmour','11',1137,1), -(3498,'Trarza','06',1137,1), -(3499,'Beau Bassin-Rose Hill','BR',1138,1), -(3500,'Curepipe','CU',1138,1), -(3501,'Port Louis','PU',1138,1), -(3502,'Quatre Bornes','QB',1138,1), -(3503,'Vacosa-Phoenix','VP',1138,1), -(3504,'Black River','BL',1138,1), -(3505,'Flacq','FL',1138,1), -(3506,'Grand Port','GP',1138,1), -(3507,'Moka','MO',1138,1), -(3508,'Pamplemousses','PA',1138,1), -(3509,'Plaines Wilhems','PW',1138,1), -(3510,'Riviere du Rempart','RP',1138,1), -(3511,'Savanne','SA',1138,1), -(3512,'Agalega Islands','AG',1138,1), -(3513,'Cargados Carajos Shoals','CC',1138,1), -(3514,'Rodrigues Island','RO',1138,1), -(3515,'Male','MLE',1132,1), -(3516,'Alif','02',1132,1), -(3517,'Baa','20',1132,1), -(3518,'Dhaalu','17',1132,1), -(3519,'Faafu','14',1132,1), -(3520,'Gaaf Alif','27',1132,1), -(3521,'Gaefu Dhaalu','28',1132,1), -(3522,'Gnaviyani','29',1132,1), -(3523,'Haa Alif','07',1132,1), -(3524,'Haa Dhaalu','23',1132,1), -(3525,'Kaafu','26',1132,1), -(3526,'Laamu','05',1132,1), -(3527,'Lhaviyani','03',1132,1), -(3528,'Meemu','12',1132,1), -(3529,'Noonu','25',1132,1), -(3530,'Raa','13',1132,1), -(3531,'Seenu','01',1132,1), -(3532,'Shaviyani','24',1132,1), -(3533,'Thaa','08',1132,1), -(3534,'Vaavu','04',1132,1), -(3535,'Balaka','BA',1130,1), -(3536,'Blantyre','BL',1130,1), -(3537,'Chikwawa','CK',1130,1), -(3538,'Chiradzulu','CR',1130,1), -(3539,'Chitipa','CT',1130,1), -(3540,'Dedza','DE',1130,1), -(3541,'Dowa','DO',1130,1), -(3542,'Karonga','KR',1130,1), -(3543,'Kasungu','KS',1130,1), -(3544,'Likoma Island','LK',1130,1), -(3545,'Lilongwe','LI',1130,1), -(3546,'Machinga','MH',1130,1), -(3547,'Mangochi','MG',1130,1), -(3548,'Mchinji','MC',1130,1), -(3549,'Mulanje','MU',1130,1), -(3550,'Mwanza','MW',1130,1), -(3551,'Mzimba','MZ',1130,1), -(3552,'Nkhata Bay','NB',1130,1), -(3553,'Nkhotakota','NK',1130,1), -(3554,'Nsanje','NS',1130,1), -(3555,'Ntcheu','NU',1130,1), -(3556,'Ntchisi','NI',1130,1), -(3557,'Phalomba','PH',1130,1), -(3558,'Rumphi','RU',1130,1), -(3559,'Salima','SA',1130,1), -(3560,'Thyolo','TH',1130,1), -(3561,'Zomba','ZO',1130,1), -(3562,'Aguascalientes','AGU',1140,1), -(3563,'Baja California','BCN',1140,1), -(3564,'Baja California Sur','BCS',1140,1), -(3565,'Campeche','CAM',1140,1), -(3566,'Coahuila','COA',1140,1), -(3567,'Colima','COL',1140,1), -(3568,'Chiapas','CHP',1140,1), -(3569,'Chihuahua','CHH',1140,1), -(3570,'Durango','DUR',1140,1), -(3571,'Guanajuato','GUA',1140,1), -(3572,'Guerrero','GRO',1140,1), -(3573,'Hidalgo','HID',1140,1), -(3574,'Jalisco','JAL',1140,1), -(3575,'Mexico','MEX',1140,1), -(3576,'Michoacin','MIC',1140,1), -(3577,'Morelos','MOR',1140,1), -(3578,'Nayarit','NAY',1140,1), -(3579,'Nuevo Leon','NLE',1140,1), -(3580,'Oaxaca','OAX',1140,1), -(3581,'Puebla','PUE',1140,1), -(3582,'Queretaro','QUE',1140,1), -(3583,'Quintana Roo','ROO',1140,1), -(3584,'San Luis Potosi','SLP',1140,1), -(3585,'Sinaloa','SIN',1140,1), -(3586,'Sonora','SON',1140,1), -(3587,'Tabasco','TAB',1140,1), -(3588,'Tamaulipas','TAM',1140,1), -(3589,'Tlaxcala','TLA',1140,1), -(3590,'Veracruz','VER',1140,1), -(3591,'Yucatan','YUC',1140,1), -(3592,'Zacatecas','ZAC',1140,1), -(3593,'Distrito Federal','DIF',1140,1), -(3594,'Wilayah Persekutuan Kuala Lumpur','14',1131,1), -(3595,'Wilayah Persekutuan Labuan','15',1131,1), -(3596,'Wilayah Persekutuan Putrajaya','16',1131,1), -(3597,'Johor','01',1131,1), -(3598,'Kedah','02',1131,1), -(3599,'Kelantan','03',1131,1), -(3600,'Melaka','04',1131,1), -(3601,'Negeri Sembilan','05',1131,1), -(3602,'Pahang','06',1131,1), -(3603,'Perak','08',1131,1), -(3604,'Perlis','09',1131,1), -(3605,'Pulau Pinang','07',1131,1), -(3606,'Sabah','12',1131,1), -(3607,'Sarawak','13',1131,1), -(3608,'Selangor','10',1131,1), -(3609,'Terengganu','11',1131,1), -(3610,'Maputo','MPM',1147,1), -(3611,'Cabo Delgado','P',1147,1), -(3612,'Gaza','G',1147,1), -(3613,'Inhambane','I',1147,1), -(3614,'Manica','B',1147,1), -(3615,'Numpula','N',1147,1), -(3616,'Niaaea','A',1147,1), -(3617,'Sofala','S',1147,1), -(3618,'Tete','T',1147,1), -(3619,'Zambezia','Q',1147,1), -(3620,'Caprivi','CA',1148,1), -(3621,'Erongo','ER',1148,1), -(3622,'Hardap','HA',1148,1), -(3623,'Karas','KA',1148,1), -(3624,'Khomas','KH',1148,1), -(3625,'Kunene','KU',1148,1), -(3626,'Ohangwena','OW',1148,1), -(3627,'Okavango','OK',1148,1), -(3628,'Omaheke','OH',1148,1), -(3629,'Omusati','OS',1148,1), -(3630,'Oshana','ON',1148,1), -(3631,'Oshikoto','OT',1148,1), -(3632,'Otjozondjupa','OD',1148,1), -(3633,'Niamey','8',1156,1), -(3634,'Agadez','1',1156,1), -(3635,'Diffa','2',1156,1), -(3636,'Dosso','3',1156,1), -(3637,'Maradi','4',1156,1), -(3638,'Tahoua','S',1156,1), -(3639,'Tillaberi','6',1156,1), -(3640,'Zinder','7',1156,1), -(3641,'Abuja Federal Capital Territory','FC',1157,1), -(3642,'Abia','AB',1157,1), -(3643,'Adamawa','AD',1157,1), -(3644,'Akwa Ibom','AK',1157,1), -(3645,'Anambra','AN',1157,1), -(3646,'Bauchi','BA',1157,1), -(3647,'Bayelsa','BY',1157,1), -(3648,'Benue','BE',1157,1), -(3649,'Borno','BO',1157,1), -(3650,'Cross River','CR',1157,1), -(3651,'Delta','DE',1157,1), -(3652,'Ebonyi','EB',1157,1), -(3653,'Edo','ED',1157,1), -(3654,'Ekiti','EK',1157,1), -(3655,'Enugu','EN',1157,1), -(3656,'Gombe','GO',1157,1), -(3657,'Imo','IM',1157,1), -(3658,'Jigawa','JI',1157,1), -(3659,'Kaduna','KD',1157,1), -(3660,'Kano','KN',1157,1), -(3661,'Katsina','KT',1157,1), -(3662,'Kebbi','KE',1157,1), -(3663,'Kogi','KO',1157,1), -(3664,'Kwara','KW',1157,1), -(3665,'Lagos','LA',1157,1), -(3666,'Nassarawa','NA',1157,1), -(3667,'Niger','NI',1157,1), -(3668,'Ogun','OG',1157,1), -(3669,'Ondo','ON',1157,1), -(3670,'Osun','OS',1157,1), -(3671,'Oyo','OY',1157,1), -(3672,'Rivers','RI',1157,1), -(3673,'Sokoto','SO',1157,1), -(3674,'Taraba','TA',1157,1), -(3675,'Yobe','YO',1157,1), -(3676,'Zamfara','ZA',1157,1), -(3677,'Plateau','PL',1157,1), -(3678,'Boaco','BO',1155,1), -(3679,'Carazo','CA',1155,1), -(3680,'Chinandega','CI',1155,1), -(3681,'Chontales','CO',1155,1), -(3682,'Esteli','ES',1155,1), -(3683,'Jinotega','JI',1155,1), -(3684,'Leon','LE',1155,1), -(3685,'Madriz','MD',1155,1), -(3686,'Managua','MN',1155,1), -(3687,'Masaya','MS',1155,1), -(3688,'Matagalpa','MT',1155,1), -(3689,'Nueva Segovia','NS',1155,1), -(3690,'Rio San Juan','SJ',1155,1), -(3691,'Rivas','RI',1155,1), -(3692,'Atlantico Norte','AN',1155,1), -(3693,'Atlantico Sur','AS',1155,1), -(3694,'Drente','DR',1152,1), -(3695,'Flevoland','FL',1152,1), -(3696,'Friesland','FR',1152,1), -(3697,'Gelderland','GL',1152,1), -(3698,'Groningen','GR',1152,1), -(3699,'Noord-Brabant','NB',1152,1), -(3700,'Noord-Holland','NH',1152,1), -(3701,'Overijssel','OV',1152,1), -(3702,'Utrecht','UT',1152,1), -(3703,'Zuid-Holland','ZH',1152,1), -(3704,'Zeeland','ZL',1152,1), -(3705,'Akershus','02',1161,1), -(3706,'Aust-Agder','09',1161,1), -(3707,'Buskerud','06',1161,1), -(3708,'Finnmark','20',1161,1), -(3709,'Hedmark','04',1161,1), -(3710,'Møre og Romsdal','15',1161,1), -(3711,'Nordland','18',1161,1), -(3712,'Nord-Trøndelag','17',1161,1), -(3713,'Oppland','05',1161,1), -(3714,'Oslo','03',1161,1), -(3715,'Rogaland','11',1161,1), -(3716,'Sør-Trøndelag','16',1161,1), -(3717,'Telemark','06',1161,1), -(3718,'Troms','19',1161,1), -(3719,'Vest-Agder','10',1161,1), -(3720,'Vestfold','07',1161,1), -(3721,'Vestland','46',1161,1), -(3722,'Østfold','01',1161,1), -(3723,'Jan Mayen','22',1161,1), -(3724,'Svalbard','21',1161,1), -(3725,'Auckland','AUK',1154,1), -(3726,'Bay of Plenty','BOP',1154,1), -(3727,'Canterbury','CAN',1154,1), -(3728,'Gisborne','GIS',1154,1), -(3729,'Hawkes Bay','HKB',1154,1), -(3730,'Manawatu-Wanganui','MWT',1154,1), -(3731,'Marlborough','MBH',1154,1), -(3732,'Nelson','NSN',1154,1), -(3733,'Northland','NTL',1154,1), -(3734,'Otago','OTA',1154,1), -(3735,'Southland','STL',1154,1), -(3736,'Taranaki','TKI',1154,1), -(3737,'Tasman','TAS',1154,1), -(3738,'Waikato','WKO',1154,1), -(3739,'Wellington','WGN',1154,1), -(3740,'West Coast','WTC',1154,1), -(3741,'Ad Dakhillyah','DA',1162,1), -(3742,'Al Batinah','BA',1162,1), -(3743,'Al Janblyah','JA',1162,1), -(3744,'Al Wusta','WU',1162,1), -(3745,'Ash Sharqlyah','SH',1162,1), -(3746,'Az Zahirah','ZA',1162,1), -(3747,'Masqat','MA',1162,1), -(3748,'Musandam','MU',1162,1), -(3749,'Jenin','_A',1165,1), -(3750,'Tubas','_B',1165,1), -(3751,'Tulkarm','_C',1165,1), -(3752,'Nablus','_D',1165,1), -(3753,'Qalqilya','_E',1165,1), -(3754,'Salfit','_F',1165,1), -(3755,'Ramallah and Al-Bireh','_G',1165,1), -(3756,'Jericho','_H',1165,1), -(3757,'Jerusalem','_I',1165,1), -(3758,'Bethlehem','_J',1165,1), -(3759,'Hebron','_K',1165,1), -(3760,'North Gaza','_L',1165,1), -(3761,'Gaza','_M',1165,1), -(3762,'Deir el-Balah','_N',1165,1), -(3763,'Khan Yunis','_O',1165,1), -(3764,'Rafah','_P',1165,1), -(3765,'Bocas del Toro','1',1166,1), -(3766,'Cocle','2',1166,1), -(3767,'Chiriqui','4',1166,1), -(3768,'Darien','5',1166,1), -(3769,'Herrera','6',1166,1), -(3770,'Loa Santoa','7',1166,1), -(3771,'Panama','8',1166,1), -(3772,'Veraguas','9',1166,1), -(3773,'Comarca de San Blas','Q',1166,1), -(3774,'El Callao','CAL',1169,1), -(3775,'Ancash','ANC',1169,1), -(3776,'Apurimac','APU',1169,1), -(3777,'Arequipa','ARE',1169,1), -(3778,'Ayacucho','AYA',1169,1), -(3779,'Cajamarca','CAJ',1169,1), -(3780,'Cuzco','CUS',1169,1), -(3781,'Huancavelica','HUV',1169,1), -(3782,'Huanuco','HUC',1169,1), -(3783,'Ica','ICA',1169,1), -(3784,'Junin','JUN',1169,1), -(3785,'La Libertad','LAL',1169,1), -(3786,'Lambayeque','LAM',1169,1), -(3787,'Lima','LIM',1169,1), -(3788,'Loreto','LOR',1169,1), -(3789,'Madre de Dios','MDD',1169,1), -(3790,'Moquegua','MOQ',1169,1), -(3791,'Pasco','PAS',1169,1), -(3792,'Piura','PIU',1169,1), -(3793,'Puno','PUN',1169,1), -(3794,'San Martin','SAM',1169,1), -(3795,'Tacna','TAC',1169,1), -(3796,'Tumbes','TUM',1169,1), -(3797,'Ucayali','UCA',1169,1), -(3798,'Amazonas','AMA',1169,1), -(3799,'National Capital District (Port Moresby)','NCD',1167,1), -(3800,'Chimbu','CPK',1167,1), -(3801,'Eastern Highlands','EHG',1167,1), -(3802,'East New Britain','EBR',1167,1), -(3803,'East Sepik','ESW',1167,1), -(3804,'Enga','EPW',1167,1), -(3805,'Gulf','GPK',1167,1), -(3806,'Madang','MPM',1167,1), -(3807,'Manus','MRL',1167,1), -(3808,'Milne Bay','MBA',1167,1), -(3809,'Morobe','MPL',1167,1), -(3810,'New Ireland','NIK',1167,1), -(3811,'North Solomons','NSA',1167,1), -(3812,'Santaun','SAN',1167,1), -(3813,'Southern Highlands','SHM',1167,1), -(3814,'Western Highlands','WHM',1167,1), -(3815,'West New Britain','WBK',1167,1), -(3816,'Abra','ABR',1170,1), -(3817,'Agusan del Norte','AGN',1170,1), -(3818,'Agusan del Sur','AGS',1170,1), -(3819,'Aklan','AKL',1170,1), -(3820,'Albay','ALB',1170,1), -(3821,'Antique','ANT',1170,1), -(3822,'Apayao','APA',1170,1), -(3823,'Aurora','AUR',1170,1), -(3824,'Basilan','BAS',1170,1), -(3825,'Bataan','BAN',1170,1), -(3826,'Batanes','BTN',1170,1), -(3827,'Batangas','BTG',1170,1), -(3828,'Benguet','BEN',1170,1), -(3829,'Biliran','BIL',1170,1), -(3830,'Bohol','BOH',1170,1), -(3831,'Bukidnon','BUK',1170,1), -(3832,'Bulacan','BUL',1170,1), -(3833,'Cagayan','CAG',1170,1), -(3834,'Camarines Norte','CAN',1170,1), -(3835,'Camarines Sur','CAS',1170,1), -(3836,'Camiguin','CAM',1170,1), -(3837,'Capiz','CAP',1170,1), -(3838,'Catanduanes','CAT',1170,1), -(3839,'Cavite','CAV',1170,1), -(3840,'Cebu','CEB',1170,1), -(3841,'Davao de Oro','COM',1170,1), -(3842,'Davao del Norte','DAV',1170,1), -(3843,'Davao del Sur','DAS',1170,1), -(3844,'Davao Oriental','DAO',1170,1), -(3845,'Eastern Samar','EAS',1170,1), -(3846,'Guimaras','GUI',1170,1), -(3847,'Ifugao','IFU',1170,1), -(3848,'Ilocos Norte','ILN',1170,1), -(3849,'Ilocos Sur','ILS',1170,1), -(3850,'Iloilo','ILI',1170,1), -(3851,'Isabela','ISA',1170,1), -(3852,'Kalinga','KAL',1170,1), -(3853,'Laguna','LAG',1170,1), -(3854,'Lanao del Norte','LAN',1170,1), -(3855,'Lanao del Sur','LAS',1170,1), -(3856,'La Union','LUN',1170,1), -(3857,'Leyte','LEY',1170,1), -(3858,'Maguindanao','MAG',1170,1), -(3859,'Marinduque','MAD',1170,1), -(3860,'Masbate','MAS',1170,1), -(3861,'Mindoro Occidental','MDC',1170,1), -(3862,'Mindoro Oriental','MDR',1170,1), -(3863,'Misamis Occidental','MSC',1170,1), -(3864,'Misamis Oriental','MSR',1170,1), -(3865,'Mountain Province','MOU',1170,1), -(3866,'Negroe Occidental','NEC',1170,1), -(3867,'Negros Oriental','NER',1170,1), -(3868,'Cotabato','NCO',1170,1), -(3869,'Northern Samar','NSA',1170,1), -(3870,'Nueva Ecija','NUE',1170,1), -(3871,'Nueva Vizcaya','NUV',1170,1), -(3872,'Palawan','PLW',1170,1), -(3873,'Pampanga','PAM',1170,1), -(3874,'Pangasinan','PAN',1170,1), -(3875,'Quezon','QUE',1170,1), -(3876,'Quirino','QUI',1170,1), -(3877,'Rizal','RIZ',1170,1), -(3878,'Romblon','ROM',1170,1), -(3879,'Sarangani','SAR',1170,1), -(3880,'Siquijor','SIG',1170,1), -(3881,'Sorsogon','SOR',1170,1), -(3882,'South Cotabato','SCO',1170,1), -(3883,'Southern Leyte','SLE',1170,1), -(3884,'Sultan Kudarat','SUK',1170,1), -(3885,'Sulu','SLU',1170,1), -(3886,'Surigao del Norte','SUN',1170,1), -(3887,'Surigao del Sur','SUR',1170,1), -(3888,'Tarlac','TAR',1170,1), -(3889,'Tawi-Tawi','TAW',1170,1), -(3890,'Western Samar','WSA',1170,1), -(3891,'Zambales','ZMB',1170,1), -(3892,'Zamboanga del Norte','ZAN',1170,1), -(3893,'Zamboanga del Sur','ZAS',1170,1), -(3894,'Zamboanga Sibiguey','ZSI',1170,1), -(3895,'Dinagat Islands','DIN',1170,1), -(3896,'Metropolitan Manila','MNL',1170,1), -(3897,'Islamabad Federal Capital Area','IS',1163,1), -(3898,'Baluchistan','BA',1163,1), -(3899,'Khyber Pakhtun Khawa','NW',1163,1), -(3900,'Sindh','SD',1163,1), -(3901,'Federally Administered Tribal Areas','TA',1163,1), -(3902,'Azad Kashmir','JK',1163,1), -(3903,'Gilgit-Baltistan','NA',1163,1), -(3904,'Punjab','PB',1163,1), -(3905,'Aveiro','01',1173,1), -(3906,'Beja','02',1173,1), -(3907,'Braga','03',1173,1), -(3908,'Bragança','04',1173,1), -(3909,'Castelo Branco','05',1173,1), -(3910,'Coimbra','06',1173,1), -(3911,'Évora','07',1173,1), -(3912,'Faro','08',1173,1), -(3913,'Guarda','09',1173,1), -(3914,'Leiria','10',1173,1), -(3915,'Lisboa','11',1173,1), -(3916,'Portalegre','12',1173,1), -(3917,'Porto','13',1173,1), -(3918,'Santarém','14',1173,1), -(3919,'Setúbal','15',1173,1), -(3920,'Viana do Castelo','16',1173,1), -(3921,'Vila Real','17',1173,1), -(3922,'Viseu','18',1173,1), -(3923,'Região Autónoma dos Açores','20',1173,1), -(3924,'Região Autónoma da Madeira','30',1173,1), -(3925,'Asuncion','ASU',1168,1), -(3926,'Alto Paraguay','16',1168,1), -(3927,'Alto Parana','10',1168,1), -(3928,'Amambay','13',1168,1), -(3929,'Boqueron','19',1168,1), -(3930,'Caeguazu','5',1168,1), -(3931,'Caazapl','6',1168,1), -(3932,'Canindeyu','14',1168,1), -(3933,'Concepcion','1',1168,1), -(3934,'Cordillera','3',1168,1), -(3935,'Guaira','4',1168,1), -(3936,'Itapua','7',1168,1), -(3937,'Miaiones','8',1168,1), -(3938,'Neembucu','12',1168,1), -(3939,'Paraguari','9',1168,1), -(3940,'Presidente Hayes','15',1168,1), -(3941,'San Pedro','2',1168,1), -(3942,'Ad Dawhah','DA',1175,1), -(3943,'Al Ghuwayriyah','GH',1175,1), -(3944,'Al Jumayliyah','JU',1175,1), -(3945,'Al Khawr','KH',1175,1), -(3946,'Al Wakrah','WA',1175,1), -(3947,'Ar Rayyan','RA',1175,1), -(3948,'Jariyan al Batnah','JB',1175,1), -(3949,'Madinat ash Shamal','MS',1175,1), -(3950,'Umm Salal','US',1175,1), -(3951,'Bucuresti','B',1176,1), -(3952,'Alba','AB',1176,1), -(3953,'Arad','AR',1176,1), -(3954,'Argeș','AG',1176,1), -(3955,'Bacău','BC',1176,1), -(3956,'Bihor','BH',1176,1), -(3957,'Bistrița-Năsăud','BN',1176,1), -(3958,'Botoșani','BT',1176,1), -(3959,'Brașov','BV',1176,1), -(3960,'Brăila','BR',1176,1), -(3961,'Buzău','BZ',1176,1), -(3962,'Caraș-Severin','CS',1176,1), -(3963,'Călărași','CL',1176,1), -(3964,'Cluj','CJ',1176,1), -(3965,'Constanța','CT',1176,1), -(3966,'Covasna','CV',1176,1), -(3967,'Dâmbovița','DB',1176,1), -(3968,'Dolj','DJ',1176,1), -(3969,'Galați','GL',1176,1), -(3970,'Giurgiu','GR',1176,1), -(3971,'Gorj','GJ',1176,1), -(3972,'Harghita','HR',1176,1), -(3973,'Hunedoara','HD',1176,1), -(3974,'Ialomița','IL',1176,1), -(3975,'Iași','IS',1176,1), -(3976,'Ilfov','IF',1176,1), -(3977,'Maramureș','MM',1176,1), -(3978,'Mehedinți','MH',1176,1), -(3979,'Mureș','MS',1176,1), -(3980,'Neamț','NT',1176,1), -(3981,'Olt','OT',1176,1), -(3982,'Prahova','PH',1176,1), -(3983,'Satu Mare','SM',1176,1), -(3984,'Sălaj','SJ',1176,1), -(3985,'Sibiu','SB',1176,1), -(3986,'Suceava','SV',1176,1), -(3987,'Teleorman','TR',1176,1), -(3988,'Timiș','TM',1176,1), -(3989,'Tulcea','TL',1176,1), -(3990,'Vaslui','VS',1176,1), -(3991,'Vâlcea','VL',1176,1), -(3992,'Vrancea','VN',1176,1), -(3993,'Adygeya, Respublika','AD',1177,1), -(3994,'Altay, Respublika','AL',1177,1), -(3995,'Bashkortostan, Respublika','BA',1177,1), -(3996,'Buryatiya, Respublika','BU',1177,1), -(3997,'Chechenskaya Respublika','CE',1177,1), -(3998,'Chuvashskaya Respublika','CU',1177,1), -(3999,'Dagestan, Respublika','DA',1177,1), -(4000,'Ingushskaya Respublika','IN',1177,1), -(4001,'Kabardino-Balkarskaya','KB',1177,1), -(4002,'Kalmykiya, Respublika','KL',1177,1), -(4003,'Karachayevo-Cherkesskaya Respublika','KC',1177,1), -(4004,'Kareliya, Respublika','KR',1177,1), -(4005,'Khakasiya, Respublika','KK',1177,1), -(4006,'Komi, Respublika','KO',1177,1), -(4007,'Mariy El, Respublika','ME',1177,1), -(4008,'Mordoviya, Respublika','MO',1177,1), -(4009,'Sakha, Respublika [Yakutiya]','SA',1177,1), -(4010,'Severnaya Osetiya, Respublika','SE',1177,1), -(4011,'Tatarstan, Respublika','TA',1177,1), -(4012,'Tyva, Respublika [Tuva]','TY',1177,1), -(4013,'Udmurtskaya Respublika','UD',1177,1), -(4014,'Altayskiy kray','ALT',1177,1), -(4015,'Khabarovskiy kray','KHA',1177,1), -(4016,'Krasnodarskiy kray','KDA',1177,1), -(4017,'Krasnoyarskiy kray','KYA',1177,1), -(4018,'Primorskiy kray','PRI',1177,1), -(4019,'Stavropol\'skiy kray','STA',1177,1), -(4020,'Amurskaya oblast\'','AMU',1177,1), -(4021,'Arkhangel\'skaya oblast\'','ARK',1177,1), -(4022,'Astrakhanskaya oblast\'','AST',1177,1), -(4023,'Belgorodskaya oblast\'','BEL',1177,1), -(4024,'Bryanskaya oblast\'','BRY',1177,1), -(4025,'Chelyabinskaya oblast\'','CHE',1177,1), -(4026,'Zabaykalsky Krai\'','ZSK',1177,1), -(4027,'Irkutskaya oblast\'','IRK',1177,1), -(4028,'Ivanovskaya oblast\'','IVA',1177,1), -(4029,'Kaliningradskaya oblast\'','KGD',1177,1), -(4030,'Kaluzhskaya oblast\'','KLU',1177,1), -(4031,'Kamchatka Krai\'','KAM',1177,1), -(4032,'Kemerovskaya oblast\'','KEM',1177,1), -(4033,'Kirovskaya oblast\'','KIR',1177,1), -(4034,'Kostromskaya oblast\'','KOS',1177,1), -(4035,'Kurganskaya oblast\'','KGN',1177,1), -(4036,'Kurskaya oblast\'','KRS',1177,1), -(4037,'Leningradskaya oblast\'','LEN',1177,1), -(4038,'Lipetskaya oblast\'','LIP',1177,1), -(4039,'Magadanskaya oblast\'','MAG',1177,1), -(4040,'Moskovskaya oblast\'','MOS',1177,1), -(4041,'Murmanskaya oblast\'','MUR',1177,1), -(4042,'Nizhegorodskaya oblast\'','NIZ',1177,1), -(4043,'Novgorodskaya oblast\'','NGR',1177,1), -(4044,'Novosibirskaya oblast\'','NVS',1177,1), -(4045,'Omskaya oblast\'','OMS',1177,1), -(4046,'Orenburgskaya oblast\'','ORE',1177,1), -(4047,'Orlovskaya oblast\'','ORL',1177,1), -(4048,'Penzenskaya oblast\'','PNZ',1177,1), -(4049,'Perm krai\'','PEK',1177,1), -(4050,'Pskovskaya oblast\'','PSK',1177,1), -(4051,'Rostovskaya oblast\'','ROS',1177,1), -(4052,'Ryazanskaya oblast\'','RYA',1177,1), -(4053,'Sakhalinskaya oblast\'','SAK',1177,1), -(4054,'Samarskaya oblast\'','SAM',1177,1), -(4055,'Saratovskaya oblast\'','SAR',1177,1), -(4056,'Smolenskaya oblast\'','SMO',1177,1), -(4057,'Sverdlovskaya oblast\'','SVE',1177,1), -(4058,'Tambovskaya oblast\'','TAM',1177,1), -(4059,'Tomskaya oblast\'','TOM',1177,1), -(4060,'Tul\'skaya oblast\'','TUL',1177,1), -(4061,'Tverskaya oblast\'','TVE',1177,1), -(4062,'Tyumenskaya oblast\'','TYU',1177,1), -(4063,'Ul\'yanovskaya oblast\'','ULY',1177,1), -(4064,'Vladimirskaya oblast\'','VLA',1177,1), -(4065,'Volgogradskaya oblast\'','VGG',1177,1), -(4066,'Vologodskaya oblast\'','VLG',1177,1), -(4067,'Voronezhskaya oblast\'','VOR',1177,1), -(4068,'Yaroslavskaya oblast\'','YAR',1177,1), -(4069,'Moskva','MOW',1177,1), -(4070,'Sankt-Peterburg','SPE',1177,1), -(4071,'Yevreyskaya avtonomnaya oblast\'','YEV',1177,1), -(4072,'Chukotskiy avtonomnyy okrug','CHU',1177,1), -(4073,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177,1), -(4074,'Nenetskiy avtonomnyy okrug','NEN',1177,1), -(4075,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177,1), -(4076,'Butare','C',1178,1), -(4077,'Byumba','I',1178,1), -(4078,'Cyangugu','E',1178,1), -(4079,'Gikongoro','D',1178,1), -(4080,'Gisenyi','G',1178,1), -(4081,'Gitarama','B',1178,1), -(4082,'Kibungo','J',1178,1), -(4083,'Kibuye','F',1178,1), -(4084,'Kigali-Rural Kigali y\' Icyaro','K',1178,1), -(4085,'Kigali-Ville Kigali Ngari','L',1178,1), -(4086,'Mutara','M',1178,1), -(4087,'Ruhengeri','H',1178,1), -(4088,'Saint Kitts','K',1181,1), -(4089,'Nevis','N',1181,1), -(4090,'Al Bahah','11',1187,1), -(4091,'Al Hudud Ash Shamaliyah','08',1187,1), -(4092,'Al Jawf','12',1187,1), -(4093,'Al Madinah','03',1187,1), -(4094,'Al Qasim','05',1187,1), -(4095,'Ar Riyad','01',1187,1), -(4096,'Asir','14',1187,1), -(4097,'Ha\'il','06',1187,1), -(4098,'Jlzan','09',1187,1), -(4099,'Makkah','02',1187,1), -(4100,'Najran','10',1187,1), -(4101,'Tabuk','07',1187,1), -(4102,'Ash Sharqiyah','04',1187,1), -(4103,'Capital Territory (Honiara)','CT',1194,1), -(4104,'Guadalcanal','GU',1194,1), -(4105,'Isabel','IS',1194,1), -(4106,'Makira','MK',1194,1), -(4107,'Malaita','ML',1194,1), -(4108,'Temotu','TE',1194,1), -(4109,'A\'ali an Nil','23',1200,1), -(4110,'Al Bah al Ahmar','26',1200,1), -(4111,'Al Buhayrat','18',1200,1), -(4112,'Al Jazirah','07',1200,1), -(4113,'Al Khartum','03',1200,1), -(4114,'Al Qadarif','06',1200,1), -(4115,'Al Wahdah','22',1200,1), -(4116,'An Nil','04',1200,1), -(4117,'An Nil al Abyaq','08',1200,1), -(4118,'An Nil al Azraq','24',1200,1), -(4119,'Ash Shamallyah','01',1200,1), -(4120,'Bahr al Jabal','17',1200,1), -(4121,'Gharb al Istiwa\'iyah','16',1200,1), -(4122,'Gharb Ba~r al Ghazal','14',1200,1), -(4123,'Gharb Darfur','12',1200,1), -(4124,'Gharb Kurdufan','10',1200,1), -(4125,'Janub Darfur','11',1200,1), -(4126,'Janub Rurdufan','13',1200,1), -(4127,'Jnqall','20',1200,1), -(4128,'Kassala','05',1200,1), -(4129,'Shamal Batr al Ghazal','15',1200,1), -(4130,'Shamal Darfur','02',1200,1), -(4131,'Shamal Kurdufan','09',1200,1), -(4132,'Sharq al Istiwa\'iyah','19',1200,1), -(4133,'Sinnar','25',1200,1), -(4134,'Warab','21',1200,1), -(4135,'Blekinge län','K',1204,1), -(4136,'Dalarnas län','W',1204,1), -(4137,'Gotlands län','I',1204,1), -(4138,'Gävleborgs län','X',1204,1), -(4139,'Hallands län','N',1204,1), -(4140,'Jämtlands län','Z',1204,1), -(4141,'Jönkopings län','F',1204,1), -(4142,'Kalmar län','H',1204,1), -(4143,'Kronobergs län','G',1204,1), -(4144,'Norrbottens län','BD',1204,1), -(4145,'Skåne län','M',1204,1), -(4146,'Stockholms län','AB',1204,1), -(4147,'Södermanlands län','D',1204,1), -(4148,'Uppsala län','C',1204,1), -(4149,'Värmlands län','S',1204,1), -(4150,'Västerbottens län','AC',1204,1), -(4151,'Västernorrlands län','Y',1204,1), -(4152,'Västmanlands län','U',1204,1), -(4153,'Västra Götalands län','Q',1204,1), -(4154,'Örebro län','T',1204,1), -(4155,'Östergötlands län','E',1204,1), -(4156,'Saint Helena','SH',1180,1), -(4157,'Ascension','AC',1180,1), -(4158,'Tristan da Cunha','TA',1180,1), -(4159,'Ajdovščina','001',1193,1), -(4160,'Beltinci','002',1193,1), -(4161,'Benedikt','148',1193,1), -(4162,'Bistrica ob Sotli','149',1193,1), -(4163,'Bled','003',1193,1), -(4164,'Bloke','150',1193,1), -(4165,'Bohinj','004',1193,1), -(4166,'Borovnica','005',1193,1), -(4167,'Bovec','006',1193,1), -(4168,'Braslovče','151',1193,1), -(4169,'Brda','007',1193,1), -(4170,'Brezovica','008',1193,1), -(4171,'Brežice','009',1193,1), -(4172,'Cankova','152',1193,1), -(4173,'Celje','011',1193,1), -(4174,'Cerklje na Gorenjskem','012',1193,1), -(4175,'Cerknica','013',1193,1), -(4176,'Cerkno','014',1193,1), -(4177,'Cerkvenjak','153',1193,1), -(4178,'Črenšovci','015',1193,1), -(4179,'Črna na Koroškem','016',1193,1), -(4180,'Črnomelj','017',1193,1), -(4181,'Destrnik','018',1193,1), -(4182,'Divača','019',1193,1), -(4183,'Dobje','154',1193,1), -(4184,'Dobrepolje','020',1193,1), -(4185,'Dobrna','155',1193,1), -(4186,'Dobrova-Polhov Gradec','021',1193,1), -(4187,'Dobrovnik','156',1193,1), -(4188,'Dol pri Ljubljani','022',1193,1), -(4189,'Dolenjske Toplice','157',1193,1), -(4190,'Domžale','023',1193,1), -(4191,'Dornava','024',1193,1), -(4192,'Dravograd','025',1193,1), -(4193,'Duplek','026',1193,1), -(4194,'Gorenja vas-Poljane','027',1193,1), -(4195,'Gorišnica','028',1193,1), -(4196,'Gornja Radgona','029',1193,1), -(4197,'Gornji Grad','030',1193,1), -(4198,'Gornji Petrovci','031',1193,1), -(4199,'Grad','158',1193,1), -(4200,'Grosuplje','032',1193,1), -(4201,'Hajdina','159',1193,1), -(4202,'Hoče-Slivnica','160',1193,1), -(4203,'Hodoš','161',1193,1), -(4204,'Horjul','162',1193,1), -(4205,'Hrastnik','034',1193,1), -(4206,'Hrpelje-Kozina','035',1193,1), -(4207,'Idrija','036',1193,1), -(4208,'Ig','037',1193,1), -(4209,'Ilirska Bistrica','038',1193,1), -(4210,'Ivančna Gorica','039',1193,1), -(4211,'Izola','040',1193,1), -(4212,'Jesenice','041',1193,1), -(4213,'Jezersko','163',1193,1), -(4214,'Juršinci','042',1193,1), -(4215,'Kamnik','043',1193,1), -(4216,'Kanal','044',1193,1), -(4217,'Kidričevo','045',1193,1), -(4218,'Kobarid','046',1193,1), -(4219,'Kobilje','047',1193,1), -(4220,'Kočevje','048',1193,1), -(4221,'Komen','049',1193,1), -(4222,'Komenda','164',1193,1), -(4223,'Koper','050',1193,1), -(4224,'Kostel','165',1193,1), -(4225,'Kozje','051',1193,1), -(4226,'Kranj','052',1193,1), -(4227,'Kranjska Gora','053',1193,1), -(4228,'Križevci','166',1193,1), -(4229,'Krško','054',1193,1), -(4230,'Kungota','055',1193,1), -(4231,'Kuzma','056',1193,1), -(4232,'Laško','057',1193,1), -(4233,'Lenart','058',1193,1), -(4234,'Lendava','059',1193,1), -(4235,'Litija','060',1193,1), -(4236,'Ljubljana','061',1193,1), -(4237,'Ljubno','062',1193,1), -(4238,'Ljutomer','063',1193,1), -(4239,'Logatec','064',1193,1), -(4240,'Loška dolina','065',1193,1), -(4241,'Loški Potok','066',1193,1), -(4242,'Lovrenc na Pohorju','167',1193,1), -(4243,'Luče','067',1193,1), -(4244,'Lukovica','068',1193,1), -(4245,'Majšperk','069',1193,1), -(4246,'Maribor','070',1193,1), -(4247,'Markovci','168',1193,1), -(4248,'Medvode','071',1193,1), -(4249,'Mengeš','072',1193,1), -(4250,'Metlika','073',1193,1), -(4251,'Mežica','074',1193,1), -(4252,'Miklavž na Dravskem polju','169',1193,1), -(4253,'Miren-Kostanjevica','075',1193,1), -(4254,'Mirna Peč','170',1193,1), -(4255,'Mislinja','076',1193,1), -(4256,'Moravče','077',1193,1), -(4257,'Moravske Toplice','078',1193,1), -(4258,'Mozirje','079',1193,1), -(4259,'Murska Sobota','080',1193,1), -(4260,'Muta','081',1193,1), -(4261,'Naklo','082',1193,1), -(4262,'Nazarje','083',1193,1), -(4263,'Nova Gorica','084',1193,1), -(4264,'Novo mesto','085',1193,1), -(4265,'Sveta Ana','181',1193,1), -(4266,'Sveti Andraž v Slovenskih goricah','182',1193,1), -(4267,'Sveti Jurij','116',1193,1), -(4268,'Šalovci','033',1193,1), -(4269,'Šempeter-Vrtojba','183',1193,1), -(4270,'Šenčur','117',1193,1), -(4271,'Šentilj','118',1193,1), -(4272,'Šentjernej','119',1193,1), -(4273,'Šentjur','120',1193,1), -(4274,'Škocjan','121',1193,1), -(4275,'Škofja Loka','122',1193,1), -(4276,'Škofljica','123',1193,1), -(4277,'Šmarje pri Jelšah','124',1193,1), -(4278,'Šmartno ob Paki','125',1193,1), -(4279,'Šmartno pri Litiji','194',1193,1), -(4280,'Šoštanj','126',1193,1), -(4281,'Štore','127',1193,1), -(4282,'Tabor','184',1193,1), -(4283,'Tišina','010',1193,1), -(4284,'Tolmin','128',1193,1), -(4285,'Trbovlje','129',1193,1), -(4286,'Trebnje','130',1193,1), -(4287,'Trnovska vas','185',1193,1), -(4288,'Tržič','131',1193,1), -(4289,'Trzin','186',1193,1), -(4290,'Turnišče','132',1193,1), -(4291,'Velenje','133',1193,1), -(4292,'Velika Polana','187',1193,1), -(4293,'Velike Lašče','134',1193,1), -(4294,'Veržej','188',1193,1), -(4295,'Videm','135',1193,1), -(4296,'Vipava','136',1193,1), -(4297,'Vitanje','137',1193,1), -(4298,'Vojnik','138',1193,1), -(4299,'Vransko','189',1193,1), -(4300,'Vrhnika','140',1193,1), -(4301,'Vuzenica','141',1193,1), -(4302,'Zagorje ob Savi','142',1193,1), -(4303,'Zavrč','143',1193,1), -(4304,'Zreče','144',1193,1), -(4305,'Žalec','190',1193,1), -(4306,'Železniki','146',1193,1), -(4307,'Žetale','191',1193,1), -(4308,'Žiri','147',1193,1), -(4309,'Žirovnica','192',1193,1), -(4310,'Žužemberk','193',1193,1), -(4311,'Ankaran','86',1193,1), -(4312,'Apače','87',1193,1), -(4313,'Cirkulane','88',1193,1), -(4314,'Gorje','89',1193,1), -(4315,'Kostanjevica na Krki','90',1193,1), -(4316,'Log-Dragomer','91',1193,1), -(4317,'Makole','92',1193,1), -(4318,'Mirna','93',1193,1), -(4319,'Mokronog-Trebelno','94',1193,1), -(4320,'Odranci','95',1193,1), -(4321,'Oplotnica','96',1193,1), -(4322,'Ormož','97',1193,1), -(4323,'Osilnica','98',1193,1), -(4324,'Pesnica','99',1193,1), -(4325,'Piran','100',1193,1), -(4326,'Pivka','101',1193,1), -(4327,'Podčetrtek','102',1193,1), -(4328,'Podlehnik','103',1193,1), -(4329,'Podvelka','104',1193,1), -(4330,'Poljčane','105',1193,1), -(4331,'Polzela','106',1193,1), -(4332,'Postojna','107',1193,1), -(4333,'Prebold','108',1193,1), -(4334,'Preddvor','109',1193,1), -(4335,'Prevalje','110',1193,1), -(4336,'Ptuj','111',1193,1), -(4337,'Puconci','112',1193,1), -(4338,'Rače-Fram','113',1193,1), -(4339,'Radeče','114',1193,1), -(4340,'Radenci','115',1193,1), -(4341,'Radlje ob Dravi','139',1193,1), -(4342,'Radovljica','145',1193,1), -(4343,'Ravne na Koroškem','171',1193,1), -(4344,'Razkrižje','172',1193,1), -(4345,'Rečica ob Savinji','173',1193,1), -(4346,'Renče-Vogrsko','174',1193,1), -(4347,'Ribnica','175',1193,1), -(4348,'Ribnica na Pohorju','176',1193,1), -(4349,'Rogaška Slatina','177',1193,1), -(4350,'Rogašovci','178',1193,1), -(4351,'Rogatec','179',1193,1), -(4352,'Ruše','180',1193,1), -(4353,'Selnica ob Dravi','195',1193,1), -(4354,'Semič','196',1193,1), -(4355,'Šentrupert','197',1193,1), -(4356,'Sevnica','198',1193,1), -(4357,'Sežana','199',1193,1), -(4358,'Slovenj Gradec','200',1193,1), -(4359,'Slovenska Bistrica','201',1193,1), -(4360,'Slovenske Konjice','202',1193,1), -(4361,'Šmarješke Toplice','203',1193,1), -(4362,'Sodražica','204',1193,1), -(4363,'Solčava','205',1193,1), -(4364,'Središče ob Dravi','206',1193,1), -(4365,'Starše','207',1193,1), -(4366,'Straža','208',1193,1), -(4367,'Sveta Trojica v Slovenskih goricah','209',1193,1), -(4368,'Sveti Jurij v Slovenskih goricah','210',1193,1), -(4369,'Sveti Tomaž','211',1193,1), -(4370,'Vodice','212',1193,1), -(4371,'Banskobystrický kraj','BC',1192,1), -(4372,'Bratislavský kraj','BL',1192,1), -(4373,'Košický kraj','KI',1192,1), -(4374,'Nitriansky kraj','NJ',1192,1), -(4375,'Prešovský kraj','PV',1192,1), -(4376,'Trenčiansky kraj','TC',1192,1), -(4377,'Trnavský kraj','TA',1192,1), -(4378,'Žilinský kraj','ZI',1192,1), -(4379,'Western Area (Freetown)','W',1190,1), -(4380,'Eastern','E',1190,1), -(4381,'Northern','N',1190,1), -(4382,'Southern','S',1190,1), -(4383,'Dakar','DK',1188,1), -(4384,'Diourbel','DB',1188,1), -(4385,'Fatick','FK',1188,1), -(4386,'Kaolack','KL',1188,1), -(4387,'Kolda','KD',1188,1), -(4388,'Louga','LG',1188,1), -(4389,'Matam','MT',1188,1), -(4390,'Saint-Louis','SL',1188,1), -(4391,'Tambacounda','TC',1188,1), -(4392,'Thies','TH',1188,1), -(4393,'Ziguinchor','ZG',1188,1), -(4394,'Awdal','AW',1195,1), -(4395,'Bakool','BK',1195,1), -(4396,'Banaadir','BN',1195,1), -(4397,'Bay','BY',1195,1), -(4398,'Galguduud','GA',1195,1), -(4399,'Gedo','GE',1195,1), -(4400,'Hiirsan','HI',1195,1), -(4401,'Jubbada Dhexe','JD',1195,1), -(4402,'Jubbada Hoose','JH',1195,1), -(4403,'Mudug','MU',1195,1), -(4404,'Nugaal','NU',1195,1), -(4405,'Saneag','SA',1195,1), -(4406,'Shabeellaha Dhexe','SD',1195,1), -(4407,'Shabeellaha Hoose','SH',1195,1), -(4408,'Sool','SO',1195,1), -(4409,'Togdheer','TO',1195,1), -(4410,'Woqooyi Galbeed','WO',1195,1), -(4411,'Brokopondo','BR',1201,1), -(4412,'Commewijne','CM',1201,1), -(4413,'Coronie','CR',1201,1), -(4414,'Marowijne','MA',1201,1), -(4415,'Nickerie','NI',1201,1), -(4416,'Paramaribo','PM',1201,1), -(4417,'Saramacca','SA',1201,1), -(4418,'Sipaliwini','SI',1201,1), -(4419,'Wanica','WA',1201,1), -(4420,'Principe','P',1207,1), -(4421,'Sao Tome','S',1207,1), -(4422,'Ahuachapan','AH',1066,1), -(4423,'Cabanas','CA',1066,1), -(4424,'Cuscatlan','CU',1066,1), -(4425,'Chalatenango','CH',1066,1), -(4426,'Morazan','MO',1066,1), -(4427,'San Miguel','SM',1066,1), -(4428,'San Salvador','SS',1066,1), -(4429,'Santa Ana','SA',1066,1), -(4430,'San Vicente','SV',1066,1), -(4431,'Sonsonate','SO',1066,1), -(4432,'Usulutan','US',1066,1), -(4433,'La Libertad','LI',1066,1), -(4434,'La Paz','PA',1066,1), -(4435,'La Union','UN',1066,1), -(4436,'Al Hasakah','HA',1206,1), -(4437,'Al Ladhiqiyah','LA',1206,1), -(4438,'Al Qunaytirah','QU',1206,1), -(4439,'Ar Raqqah','RA',1206,1), -(4440,'As Suwayda\'','SU',1206,1), -(4441,'Dar\'a','DR',1206,1), -(4442,'Dayr az Zawr','DY',1206,1), -(4443,'Dimashq','DI',1206,1), -(4444,'Halab','HL',1206,1), -(4445,'Hamah','HM',1206,1), -(4446,'Jim\'','HI',1206,1), -(4447,'Idlib','ID',1206,1), -(4448,'Rif Dimashq','RD',1206,1), -(4449,'Tarts','TA',1206,1), -(4450,'Hhohho','HH',1203,1), -(4451,'Lubombo','LU',1203,1), -(4452,'Manzini','MA',1203,1), -(4453,'Shiselweni','SH',1203,1), -(4454,'Batha','BA',1043,1), -(4455,'Biltine','BI',1043,1), -(4456,'Borkou-Ennedi-Tibesti','BET',1043,1), -(4457,'Chari-Baguirmi','CB',1043,1), -(4458,'Guera','GR',1043,1), -(4459,'Kanem','KA',1043,1), -(4460,'Lac','LC',1043,1), -(4461,'Logone-Occidental','LO',1043,1), -(4462,'Logone-Oriental','LR',1043,1), -(4463,'Mayo-Kebbi','MK',1043,1), -(4464,'Moyen-Chari','MC',1043,1), -(4465,'Ouaddai','OD',1043,1), -(4466,'Salamat','SA',1043,1), -(4467,'Tandjile','TA',1043,1), -(4468,'Kara','K',1214,1), -(4469,'Maritime (Region)','M',1214,1), -(4470,'Savannes','S',1214,1), -(4471,'Krung Thep Maha Nakhon Bangkok','10',1211,1), -(4472,'Phatthaya','S',1211,1), -(4473,'Amnat Charoen','37',1211,1), -(4474,'Ang Thong','15',1211,1), -(4475,'Buri Ram','31',1211,1), -(4476,'Chachoengsao','24',1211,1), -(4477,'Chai Nat','18',1211,1), -(4478,'Chaiyaphum','36',1211,1), -(4479,'Chanthaburi','22',1211,1), -(4480,'Chiang Mai','50',1211,1), -(4481,'Chiang Rai','57',1211,1), -(4482,'Chon Buri','20',1211,1), -(4483,'Chumphon','86',1211,1), -(4484,'Kalasin','46',1211,1), -(4485,'Kamphasng Phet','62',1211,1), -(4486,'Kanchanaburi','71',1211,1), -(4487,'Khon Kaen','40',1211,1), -(4488,'Krabi','81',1211,1), -(4489,'Lampang','52',1211,1), -(4490,'Lamphun','51',1211,1), -(4491,'Loei','42',1211,1), -(4492,'Lop Buri','16',1211,1), -(4493,'Mae Hong Son','58',1211,1), -(4494,'Maha Sarakham','44',1211,1), -(4495,'Mukdahan','49',1211,1), -(4496,'Nakhon Nayok','26',1211,1), -(4497,'Nakhon Pathom','73',1211,1), -(4498,'Nakhon Phanom','48',1211,1), -(4499,'Nakhon Ratchasima','30',1211,1), -(4500,'Nakhon Sawan','60',1211,1), -(4501,'Nakhon Si Thammarat','80',1211,1), -(4502,'Nan','55',1211,1), -(4503,'Narathiwat','96',1211,1), -(4504,'Nong Bua Lam Phu','39',1211,1), -(4505,'Nong Khai','43',1211,1), -(4506,'Nonthaburi','12',1211,1), -(4507,'Pathum Thani','13',1211,1), -(4508,'Pattani','94',1211,1), -(4509,'Phangnga','82',1211,1), -(4510,'Phatthalung','93',1211,1), -(4511,'Phayao','56',1211,1), -(4512,'Phetchabun','67',1211,1), -(4513,'Phetchaburi','76',1211,1), -(4514,'Phichit','66',1211,1), -(4515,'Phitsanulok','65',1211,1), -(4516,'Phrae','54',1211,1), -(4517,'Phra Nakhon Si Ayutthaya','14',1211,1), -(4518,'Phuket','83',1211,1), -(4519,'Prachin Buri','25',1211,1), -(4520,'Prachuap Khiri Khan','77',1211,1), -(4521,'Ranong','85',1211,1), -(4522,'Ratchaburi','70',1211,1), -(4523,'Rayong','21',1211,1), -(4524,'Roi Et','45',1211,1), -(4525,'Sa Kaeo','27',1211,1), -(4526,'Sakon Nakhon','47',1211,1), -(4527,'Samut Prakan','11',1211,1), -(4528,'Samut Sakhon','74',1211,1), -(4529,'Samut Songkhram','75',1211,1), -(4530,'Saraburi','19',1211,1), -(4531,'Satun','91',1211,1), -(4532,'Sing Buri','17',1211,1), -(4533,'Si Sa Ket','33',1211,1), -(4534,'Songkhla','90',1211,1), -(4535,'Sukhothai','64',1211,1), -(4536,'Suphan Buri','72',1211,1), -(4537,'Surat Thani','84',1211,1), -(4538,'Surin','32',1211,1), -(4539,'Tak','63',1211,1), -(4540,'Trang','92',1211,1), -(4541,'Trat','23',1211,1), -(4542,'Ubon Ratchathani','34',1211,1), -(4543,'Udon Thani','41',1211,1), -(4544,'Uthai Thani','61',1211,1), -(4545,'Uttaradit','53',1211,1), -(4546,'Yala','95',1211,1), -(4547,'Yasothon','35',1211,1), -(4548,'Sughd','SU',1209,1), -(4549,'Khatlon','KT',1209,1), -(4550,'Gorno-Badakhshan','GB',1209,1), -(4551,'Dushanbe','DU',1209,1), -(4552,'Nohiyahoi Tobei Jumhurí','RA',1209,1), -(4553,'Ahal','A',1220,1), -(4554,'Balkan','B',1220,1), -(4555,'Dasoguz','D',1220,1), -(4556,'Lebap','L',1220,1), -(4557,'Mary','M',1220,1), -(4558,'Béja','31',1218,1), -(4559,'Ben Arous','13',1218,1), -(4560,'Bizerte','23',1218,1), -(4561,'Gabès','81',1218,1), -(4562,'Gafsa','71',1218,1), -(4563,'Jendouba','32',1218,1), -(4564,'Kairouan','41',1218,1), -(4565,'Rasserine','42',1218,1), -(4566,'Kebili','73',1218,1), -(4567,'L\'Ariana','12',1218,1), -(4568,'Le Ref','33',1218,1), -(4569,'Mahdia','53',1218,1), -(4570,'La Manouba','14',1218,1), -(4571,'Medenine','82',1218,1), -(4572,'Moneatir','52',1218,1), -(4573,'Naboul','21',1218,1), -(4574,'Sfax','61',1218,1), -(4575,'Sidi Bouxid','43',1218,1), -(4576,'Siliana','34',1218,1), -(4577,'Sousse','51',1218,1), -(4578,'Tataouine','83',1218,1), -(4579,'Tozeur','72',1218,1), -(4580,'Tunis','11',1218,1), -(4581,'Zaghouan','22',1218,1), -(4582,'Adana','01',1219,1), -(4583,'Ad yaman','02',1219,1), -(4584,'Afyon','03',1219,1), -(4585,'Ag r','04',1219,1), -(4586,'Aksaray','68',1219,1), -(4587,'Amasya','05',1219,1), -(4588,'Ankara','06',1219,1), -(4589,'Antalya','07',1219,1), -(4590,'Ardahan','75',1219,1), -(4591,'Artvin','08',1219,1), -(4592,'Aydin','09',1219,1), -(4593,'Bal kesir','10',1219,1), -(4594,'Bartin','74',1219,1), -(4595,'Batman','72',1219,1), -(4596,'Bayburt','69',1219,1), -(4597,'Bilecik','11',1219,1), -(4598,'Bingol','12',1219,1), -(4599,'Bitlis','13',1219,1), -(4600,'Bolu','14',1219,1), -(4601,'Burdur','15',1219,1), -(4602,'Bursa','16',1219,1), -(4603,'Canakkale','17',1219,1), -(4604,'Cankir','18',1219,1), -(4605,'Corum','19',1219,1), -(4606,'Denizli','20',1219,1), -(4607,'Diyarbakir','21',1219,1), -(4608,'Duzce','81',1219,1), -(4609,'Edirne','22',1219,1), -(4610,'Elazig','23',1219,1), -(4611,'Erzincan','24',1219,1), -(4612,'Erzurum','25',1219,1), -(4613,'Eskis\'ehir','26',1219,1), -(4614,'Gaziantep','27',1219,1), -(4615,'Giresun','28',1219,1), -(4616,'Gms\'hane','29',1219,1), -(4617,'Hakkari','30',1219,1), -(4618,'Hatay','31',1219,1), -(4619,'Igidir','76',1219,1), -(4620,'Isparta','32',1219,1), -(4621,'Icel','33',1219,1), -(4622,'Istanbul','34',1219,1), -(4623,'Izmir','35',1219,1), -(4624,'Kahramanmaras','46',1219,1), -(4625,'Karabk','78',1219,1), -(4626,'Karaman','70',1219,1), -(4627,'Kars','36',1219,1), -(4628,'Kastamonu','37',1219,1), -(4629,'Kayseri','38',1219,1), -(4630,'Kirikkale','71',1219,1), -(4631,'Kirklareli','39',1219,1), -(4632,'Kirs\'ehir','40',1219,1), -(4633,'Kilis','79',1219,1), -(4634,'Kocaeli','41',1219,1), -(4635,'Konya','42',1219,1), -(4636,'Ktahya','43',1219,1), -(4637,'Malatya','44',1219,1), -(4638,'Manisa','45',1219,1), -(4639,'Mardin','47',1219,1), -(4640,'Mugila','48',1219,1), -(4641,'Mus','49',1219,1), -(4642,'Nevs\'ehir','50',1219,1), -(4643,'Nigide','51',1219,1), -(4644,'Ordu','52',1219,1), -(4645,'Osmaniye','80',1219,1), -(4646,'Rize','53',1219,1), -(4647,'Sakarya','54',1219,1), -(4648,'Samsun','55',1219,1), -(4649,'Siirt','56',1219,1), -(4650,'Sinop','57',1219,1), -(4651,'Sivas','58',1219,1), -(4652,'S\'anliurfa','63',1219,1), -(4653,'S\'rnak','73',1219,1), -(4654,'Tekirdag','59',1219,1), -(4655,'Tokat','60',1219,1), -(4656,'Trabzon','61',1219,1), -(4657,'Tunceli','62',1219,1), -(4658,'Us\'ak','64',1219,1), -(4659,'Van','65',1219,1), -(4660,'Yalova','77',1219,1), -(4661,'Yozgat','66',1219,1), -(4662,'Zonguldak','67',1219,1), -(4663,'Couva-Tabaquite-Talparo','CTT',1217,1), -(4664,'Diego Martin','DMN',1217,1), -(4665,'Eastern Tobago','ETO',1217,1), -(4666,'Penal-Debe','PED',1217,1), -(4667,'Princes Town','PRT',1217,1), -(4668,'Rio Claro-Mayaro','RCM',1217,1), -(4669,'Sangre Grande','SGE',1217,1), -(4670,'San Juan-Laventille','SJL',1217,1), -(4671,'Siparia','SIP',1217,1), -(4672,'Tunapuna-Piarco','TUP',1217,1), -(4673,'Western Tobago','WTO',1217,1), -(4674,'Arima','ARI',1217,1), -(4675,'Chaguanas','CHA',1217,1), -(4676,'Point Fortin','PTF',1217,1), -(4677,'Port of Spain','POS',1217,1), -(4678,'San Fernando','SFO',1217,1), -(4679,'Aileu','AL',1063,1), -(4680,'Ainaro','AN',1063,1), -(4681,'Bacucau','BA',1063,1), -(4682,'Bobonaro','BO',1063,1), -(4683,'Cova Lima','CO',1063,1), -(4684,'Dili','DI',1063,1), -(4685,'Ermera','ER',1063,1), -(4686,'Laulem','LA',1063,1), -(4687,'Liquica','LI',1063,1), -(4688,'Manatuto','MT',1063,1), -(4689,'Manafahi','MF',1063,1), -(4690,'Oecussi','OE',1063,1), -(4691,'Viqueque','VI',1063,1), -(4692,'Changhua County','CHA',1208,1), -(4693,'Chiayi County','CYQ',1208,1), -(4694,'Hsinchu County','HSQ',1208,1), -(4695,'Hualien County','HUA',1208,1), -(4696,'Ilan County','ILA',1208,1), -(4697,'Kaohsiung County','KHQ',1208,1), -(4698,'Miaoli County','MIA',1208,1), -(4699,'Nantou County','NAN',1208,1), -(4700,'Penghu County','PEN',1208,1), -(4701,'Pingtung County','PIF',1208,1), -(4702,'Taichung County','TXQ',1208,1), -(4703,'Tainan County','TNQ',1208,1), -(4704,'Taipei County','TPQ',1208,1), -(4705,'Taitung County','TTT',1208,1), -(4706,'Taoyuan County','TAO',1208,1), -(4707,'Yunlin County','YUN',1208,1), -(4708,'Keelung City','KEE',1208,1), -(4709,'Taichung City','TXG',1208,1), -(4710,'Kaohsiung City','KHH',1208,1), -(4711,'Taipei City','TPE',1208,1), -(4712,'Chiayi City','CYI',1208,1), -(4713,'Hsinchu City','HSZ',1208,1), -(4714,'Tainan City','TNN',1208,1), -(4715,'Arusha','01',1210,1), -(4716,'Dar-es-Salaam','02',1210,1), -(4717,'Dodoma','03',1210,1), -(4718,'Iringa','04',1210,1), -(4719,'Kagera','05',1210,1), -(4720,'Kaskazini Pemba','06',1210,1), -(4721,'Kaskazini Unguja','07',1210,1), -(4722,'Xigoma','08',1210,1), -(4723,'Kilimanjaro','09',1210,1), -(4724,'Rusini Pemba','10',1210,1), -(4725,'Kusini Unguja','11',1210,1), -(4726,'Lindi','12',1210,1), -(4727,'Manyara','26',1210,1), -(4728,'Mara','13',1210,1), -(4729,'Mbeya','14',1210,1), -(4730,'Mjini Magharibi','15',1210,1), -(4731,'Morogoro','16',1210,1), -(4732,'Mtwara','17',1210,1), -(4733,'Pwani','19',1210,1), -(4734,'Rukwa','20',1210,1), -(4735,'Ruvuma','21',1210,1), -(4736,'Shinyanga','22',1210,1), -(4737,'Singida','23',1210,1), -(4738,'Tabora','24',1210,1), -(4739,'Tanga','25',1210,1), -(4740,'Cherkas\'ka Oblast\'','71',1224,1), -(4741,'Chernihivs\'ka Oblast\'','74',1224,1), -(4742,'Chernivets\'ka Oblast\'','77',1224,1), -(4743,'Dnipropetrovs\'ka Oblast\'','12',1224,1), -(4744,'Donets\'ka Oblast\'','14',1224,1), -(4745,'Ivano-Frankivs\'ka Oblast\'','26',1224,1), -(4746,'Kharkivs\'ka Oblast\'','63',1224,1), -(4747,'Khersons\'ka Oblast\'','65',1224,1), -(4748,'Khmel\'nyts\'ka Oblast\'','68',1224,1), -(4749,'Kirovohrads\'ka Oblast\'','35',1224,1), -(4750,'Kyivs\'ka Oblast\'','32',1224,1), -(4751,'Luhans\'ka Oblast\'','09',1224,1), -(4752,'L\'vivs\'ka Oblast\'','46',1224,1), -(4753,'Mykolaivs\'ka Oblast\'','48',1224,1), -(4754,'Odes \'ka Oblast\'','51',1224,1), -(4755,'Poltavs\'ka Oblast\'','53',1224,1), -(4756,'Rivnens\'ka Oblast\'','56',1224,1), -(4757,'Sums \'ka Oblast\'','59',1224,1), -(4758,'Ternopil\'s\'ka Oblast\'','61',1224,1), -(4759,'Vinnyts\'ka Oblast\'','05',1224,1), -(4760,'Volyos\'ka Oblast\'','07',1224,1), -(4761,'Zakarpats\'ka Oblast\'','21',1224,1), -(4762,'Zaporiz\'ka Oblast\'','23',1224,1), -(4763,'Zhytomyrs\'ka Oblast\'','18',1224,1), -(4764,'Respublika Krym','43',1224,1), -(4765,'Kyiv','30',1224,1), -(4766,'Sevastopol','40',1224,1), -(4767,'Adjumani','301',1223,1), -(4768,'Apac','302',1223,1), -(4769,'Arua','303',1223,1), -(4770,'Bugiri','201',1223,1), -(4771,'Bundibugyo','401',1223,1), -(4772,'Bushenyi','402',1223,1), -(4773,'Busia','202',1223,1), -(4774,'Gulu','304',1223,1), -(4775,'Hoima','403',1223,1), -(4776,'Iganga','203',1223,1), -(4777,'Jinja','204',1223,1), -(4778,'Kabale','404',1223,1), -(4779,'Kabarole','405',1223,1), -(4780,'Kaberamaido','213',1223,1), -(4781,'Kalangala','101',1223,1), -(4782,'Kampala','102',1223,1), -(4783,'Kamuli','205',1223,1), -(4784,'Kamwenge','413',1223,1), -(4785,'Kanungu','414',1223,1), -(4786,'Kapchorwa','206',1223,1), -(4787,'Kasese','406',1223,1), -(4788,'Katakwi','207',1223,1), -(4789,'Kayunga','112',1223,1), -(4790,'Kibaale','407',1223,1), -(4791,'Kiboga','103',1223,1), -(4792,'Kisoro','408',1223,1), -(4793,'Kitgum','305',1223,1), -(4794,'Kotido','306',1223,1), -(4795,'Kumi','208',1223,1), -(4796,'Kyenjojo','415',1223,1), -(4797,'Lira','307',1223,1), -(4798,'Luwero','104',1223,1), -(4799,'Masaka','105',1223,1), -(4800,'Masindi','409',1223,1), -(4801,'Mayuge','214',1223,1), -(4802,'Mbale','209',1223,1), -(4803,'Mbarara','410',1223,1), -(4804,'Moroto','308',1223,1), -(4805,'Moyo','309',1223,1), -(4806,'Mpigi','106',1223,1), -(4807,'Mubende','107',1223,1), -(4808,'Mukono','108',1223,1), -(4809,'Nakapiripirit','311',1223,1), -(4810,'Nakasongola','109',1223,1), -(4811,'Nebbi','310',1223,1), -(4812,'Ntungamo','411',1223,1), -(4813,'Pader','312',1223,1), -(4814,'Pallisa','210',1223,1), -(4815,'Rakai','110',1223,1), -(4816,'Rukungiri','412',1223,1), -(4817,'Sembabule','111',1223,1), -(4818,'Sironko','215',1223,1), -(4819,'Soroti','211',1223,1), -(4820,'Tororo','212',1223,1), -(4821,'Wakiso','113',1223,1), -(4822,'Yumbe','313',1223,1), -(4823,'Baker Island','81',1227,1), -(4824,'Howland Island','84',1227,1), -(4825,'Jarvis Island','86',1227,1), -(4826,'Johnston Atoll','67',1227,1), -(4827,'Kingman Reef','89',1227,1), -(4828,'Midway Islands','71',1227,1), -(4829,'Navassa Island','76',1227,1), -(4830,'Palmyra Atoll','95',1227,1), -(4831,'Wake Island','79',1227,1), -(4832,'Artigsa','AR',1229,1), -(4833,'Canelones','CA',1229,1), -(4834,'Cerro Largo','CL',1229,1), -(4835,'Colonia','CO',1229,1), -(4836,'Durazno','DU',1229,1), -(4837,'Flores','FS',1229,1), -(4838,'Lavalleja','LA',1229,1), -(4839,'Maldonado','MA',1229,1), -(4840,'Montevideo','MO',1229,1), -(4841,'Paysandu','PA',1229,1), -(4842,'Rivera','RV',1229,1), -(4843,'Rocha','RO',1229,1), -(4844,'Salto','SA',1229,1), -(4845,'Soriano','SO',1229,1), -(4846,'Tacuarembo','TA',1229,1), -(4847,'Treinta y Tres','TT',1229,1), -(4848,'Florida','FL',1229,1), -(4849,'Rio Negro','RN',1229,1), -(4850,'San Jose','SJ',1229,1), -(4851,'Toshkent (city)','TK',1230,1), -(4852,'Qoraqalpogiston Respublikasi','QR',1230,1), -(4853,'Andijon','AN',1230,1), -(4854,'Buxoro','BU',1230,1), -(4855,'Farg\'ona','FA',1230,1), -(4856,'Jizzax','JI',1230,1), -(4857,'Khorazm','KH',1230,1), -(4858,'Namangan','NG',1230,1), -(4859,'Navoiy','NW',1230,1), -(4860,'Qashqadaryo','QA',1230,1), -(4861,'Samarqand','SA',1230,1), -(4862,'Sirdaryo','SI',1230,1), -(4863,'Surxondaryo','SU',1230,1), -(4864,'Toshkent','TO',1230,1), -(4865,'Xorazm','XO',1230,1), -(4866,'Distrito Federal','A',1232,1), -(4867,'Anzoategui','B',1232,1), -(4868,'Apure','C',1232,1), -(4869,'Aragua','D',1232,1), -(4870,'Barinas','E',1232,1), -(4871,'Carabobo','G',1232,1), -(4872,'Cojedes','H',1232,1), -(4873,'Falcon','I',1232,1), -(4874,'Guarico','J',1232,1), -(4875,'Lara','K',1232,1), -(4876,'Merida','L',1232,1), -(4877,'Miranda','M',1232,1), -(4878,'Monagas','N',1232,1), -(4879,'Nueva Esparta','O',1232,1), -(4880,'Portuguesa','P',1232,1), -(4881,'Tachira','S',1232,1), -(4882,'Trujillo','T',1232,1), -(4883,'Vargas','X',1232,1), -(4884,'Yaracuy','U',1232,1), -(4885,'Zulia','V',1232,1), -(4886,'Delta Amacuro','Y',1232,1), -(4887,'Dependencias Federales','W',1232,1), -(4888,'An Giang','44',1233,1), -(4889,'Ba Ria - Vung Tau','43',1233,1), -(4890,'Bac Can','53',1233,1), -(4891,'Bac Giang','54',1233,1), -(4892,'Bac Lieu','55',1233,1), -(4893,'Bac Ninh','56',1233,1), -(4894,'Ben Tre','50',1233,1), -(4895,'Binh Dinh','31',1233,1), -(4896,'Binh Duong','57',1233,1), -(4897,'Binh Phuoc','58',1233,1), -(4898,'Binh Thuan','40',1233,1), -(4899,'Ca Mau','59',1233,1), -(4900,'Can Tho','48',1233,1), -(4901,'Cao Bang','04',1233,1), -(4902,'Da Nang, thanh pho','60',1233,1), -(4903,'Dong Nai','39',1233,1), -(4904,'Dong Thap','45',1233,1), -(4905,'Gia Lai','30',1233,1), -(4906,'Ha Giang','03',1233,1), -(4907,'Ha Nam','63',1233,1), -(4908,'Ha Noi, thu do','64',1233,1), -(4909,'Ha Tay','15',1233,1), -(4910,'Ha Tinh','23',1233,1), -(4911,'Hai Duong','61',1233,1), -(4912,'Hai Phong, thanh pho','62',1233,1), -(4913,'Hoa Binh','14',1233,1), -(4914,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233,1), -(4915,'Hung Yen','66',1233,1), -(4916,'Khanh Hoa','34',1233,1), -(4917,'Kien Giang','47',1233,1), -(4918,'Kon Tum','28',1233,1), -(4919,'Lai Chau','01',1233,1), -(4920,'Lam Dong','35',1233,1), -(4921,'Lang Son','09',1233,1), -(4922,'Lao Cai','02',1233,1), -(4923,'Long An','41',1233,1), -(4924,'Nam Dinh','67',1233,1), -(4925,'Nghe An','22',1233,1), -(4926,'Ninh Binh','18',1233,1), -(4927,'Ninh Thuan','36',1233,1), -(4928,'Phu Tho','68',1233,1), -(4929,'Phu Yen','32',1233,1), -(4930,'Quang Binh','24',1233,1), -(4931,'Quang Nam','27',1233,1), -(4932,'Quang Ngai','29',1233,1), -(4933,'Quang Ninh','13',1233,1), -(4934,'Quang Tri','25',1233,1), -(4935,'Soc Trang','52',1233,1), -(4936,'Son La','05',1233,1), -(4937,'Tay Ninh','37',1233,1), -(4938,'Thai Binh','20',1233,1), -(4939,'Thai Nguyen','69',1233,1), -(4940,'Thanh Hoa','21',1233,1), -(4941,'Thua Thien-Hue','26',1233,1), -(4942,'Tien Giang','46',1233,1), -(4943,'Tra Vinh','51',1233,1), -(4944,'Tuyen Quang','07',1233,1), -(4945,'Vinh Long','49',1233,1), -(4946,'Vinh Phuc','70',1233,1), -(4947,'Yen Bai','06',1233,1), -(4948,'Malampa','MAP',1231,1), -(4949,'Penama','PAM',1231,1), -(4950,'Sanma','SAM',1231,1), -(4951,'Shefa','SEE',1231,1), -(4952,'Tafea','TAE',1231,1), -(4953,'Torba','TOB',1231,1), -(4954,'A\'ana','AA',1185,1), -(4955,'Aiga-i-le-Tai','AL',1185,1), -(4956,'Atua','AT',1185,1), -(4957,'Fa\'aaaleleaga','FA',1185,1), -(4958,'Gaga\'emauga','GE',1185,1), -(4959,'Gagaifomauga','GI',1185,1), -(4960,'Palauli','PA',1185,1), -(4961,'Satupa\'itea','SA',1185,1), -(4962,'Tuamasaga','TU',1185,1), -(4963,'Va\'a-o-Fonoti','VF',1185,1), -(4964,'Vaisigano','VS',1185,1), -(4965,'Crna Gora','CG',1243,1), -(4966,'Srbija','SR',1242,1), -(4967,'Kosovo-Metohija','KM',1242,1), -(4968,'Vojvodina','VO',1242,1), -(4969,'Abyan','AB',1237,1), -(4970,'Adan','AD',1237,1), -(4971,'Ad Dali','DA',1237,1), -(4972,'Al Bayda\'','BA',1237,1), -(4973,'Al Hudaydah','MU',1237,1), -(4974,'Al Mahrah','MR',1237,1), -(4975,'Al Mahwit','MW',1237,1), -(4976,'Amran','AM',1237,1), -(4977,'Dhamar','DH',1237,1), -(4978,'Hadramawt','HD',1237,1), -(4979,'Hajjah','HJ',1237,1), -(4980,'Ibb','IB',1237,1), -(4981,'Lahij','LA',1237,1), -(4982,'Ma\'rib','MA',1237,1), -(4983,'Sa\'dah','SD',1237,1), -(4984,'San\'a\'','SN',1237,1), -(4985,'Shabwah','SH',1237,1), -(4986,'Ta\'izz','TA',1237,1), -(4987,'Eastern Cape','EC',1196,1), -(4988,'Free State','FS',1196,1), -(4989,'Gauteng','GT',1196,1), -(4990,'Kwazulu-Natal','NL',1196,1), -(4991,'Mpumalanga','MP',1196,1), -(4992,'Northern Cape','NC',1196,1), -(4993,'Limpopo','NP',1196,1), -(4994,'Western Cape','WC',1196,1), -(4995,'North West','NW',1196,1), -(4996,'Copperbelt','08',1239,1), -(4997,'Luapula','04',1239,1), -(4998,'Lusaka','09',1239,1), -(4999,'North-Western','06',1239,1), -(5000,'Central','C',1239,1), -(5001,'Eastern','E',1239,1), -(5002,'Muchinga','M',1239,1), -(5003,'Northern','N',1239,1), -(5004,'Southern','S',1239,1), -(5005,'Western','W',1239,1), -(5006,'Bulawayo','BU',1240,1), -(5007,'Harare','HA',1240,1), -(5008,'Manicaland','MA',1240,1), -(5009,'Mashonaland Central','MC',1240,1), -(5010,'Mashonaland East','ME',1240,1), -(5011,'Mashonaland West','MW',1240,1), -(5012,'Masvingo','MV',1240,1), -(5013,'Matabeleland North','MN',1240,1), -(5014,'Matabeleland South','MS',1240,1), -(5015,'Midlands','MI',1240,1), -(5016,'South Karelia','SK',1075,1), -(5017,'South Ostrobothnia','SO',1075,1), -(5018,'Etelä-Savo','ES',1075,1), -(5019,'Häme','HH',1075,1), -(5020,'Itä-Uusimaa','IU',1075,1), -(5021,'Kainuu','KA',1075,1), -(5022,'Central Ostrobothnia','CO',1075,1), -(5023,'Central Finland','CF',1075,1), -(5024,'Kymenlaakso','KY',1075,1), -(5025,'Lapland','LA',1075,1), -(5026,'Tampere Region','TR',1075,1), -(5027,'Ostrobothnia','OB',1075,1), -(5028,'North Karelia','NK',1075,1), -(5029,'Northern Ostrobothnia','NO',1075,1), -(5030,'Northern Savo','NS',1075,1), -(5031,'Päijät-Häme','PH',1075,1), -(5032,'Satakunta','SK',1075,1), -(5033,'Uusimaa','UM',1075,1), -(5034,'South-West Finland','SW',1075,1), -(5035,'Åland','AL',1075,1), -(5036,'Limburg','LI',1152,1), -(5037,'Central and Western','CW',1098,1), -(5038,'Eastern','EA',1098,1), -(5039,'Southern','SO',1098,1), -(5040,'Wan Chai','WC',1098,1), -(5041,'Kowloon City','KC',1098,1), -(5042,'Kwun Tong','KU',1098,1), -(5043,'Sham Shui Po','SS',1098,1), -(5044,'Wong Tai Sin','WT',1098,1), -(5045,'Yau Tsim Mong','YT',1098,1), -(5046,'Islands','IS',1098,1), -(5047,'Kwai Tsing','KI',1098,1), -(5048,'North','NO',1098,1), -(5049,'Sai Kung','SK',1098,1), -(5050,'Sha Tin','ST',1098,1), -(5051,'Tai Po','TP',1098,1), -(5052,'Tsuen Wan','TW',1098,1), -(5053,'Tuen Mun','TM',1098,1), -(5054,'Yuen Long','YL',1098,1), -(5055,'Manchester','MR',1108,1), -(5056,'Al Manāmah (Al ‘Āşimah)','13',1016,1), -(5057,'Al Janūbīyah','14',1016,1), -(5058,'Al Wusţá','16',1016,1), -(5059,'Ash Shamālīyah','17',1016,1), -(5060,'Anenii Noi','AN',1142,1), -(5061,'Basarabeasca','BS',1142,1), -(5062,'Briceni','BR',1142,1), -(5063,'Cantemir','CT',1142,1), -(5064,'Călărași','CL',1142,1), -(5065,'Căușeni','CS',1142,1), -(5066,'Cimislia','CM',1142,1), -(5067,'Criuleni','CR',1142,1), -(5068,'Dondușeni','DO',1142,1), -(5069,'Drochia','DR',1142,1), -(5070,'Dubăsari','DU',1142,1), -(5071,'Fălești','FA',1142,1), -(5072,'Florești','FL',1142,1), -(5073,'Glodeni','GL',1142,1), -(5074,'Hîncești','HI',1142,1), -(5075,'Ialoveni','IA',1142,1), -(5076,'Leova','LE',1142,1), -(5077,'Nisporeni','NI',1142,1), -(5078,'Ocnița','OC',1142,1), -(5079,'Rezina','RE',1142,1), -(5080,'Rîșcani','RI',1142,1), -(5081,'Sîngerei','SI',1142,1), -(5082,'Strășeni','ST',1142,1), -(5083,'Șoldănești','SD',1142,1), -(5084,'Ștefan Vodă','SV',1142,1), -(5085,'Telenești','TE',1142,1); + (1001,'Alaska','AK',1228,1), + (1002,'Arizona','AZ',1228,1), + (1003,'Arkansas','AR',1228,1), + (1004,'California','CA',1228,1), + (1005,'Colorado','CO',1228,1), + (1006,'Connecticut','CT',1228,1), + (1007,'Delaware','DE',1228,1), + (1008,'Florida','FL',1228,1), + (1009,'Georgia','GA',1228,1), + (1010,'Hawaii','HI',1228,1), + (1011,'Idaho','ID',1228,1), + (1012,'Illinois','IL',1228,1), + (1013,'Indiana','IN',1228,1), + (1014,'Iowa','IA',1228,1), + (1015,'Kansas','KS',1228,1), + (1016,'Kentucky','KY',1228,1), + (1017,'Louisiana','LA',1228,1), + (1018,'Maine','ME',1228,1), + (1019,'Maryland','MD',1228,1), + (1020,'Massachusetts','MA',1228,1), + (1021,'Michigan','MI',1228,1), + (1022,'Minnesota','MN',1228,1), + (1023,'Mississippi','MS',1228,1), + (1024,'Missouri','MO',1228,1), + (1025,'Montana','MT',1228,1), + (1026,'Nebraska','NE',1228,1), + (1027,'Nevada','NV',1228,1), + (1028,'New Hampshire','NH',1228,1), + (1029,'New Jersey','NJ',1228,1), + (1030,'New Mexico','NM',1228,1), + (1031,'New York','NY',1228,1), + (1032,'North Carolina','NC',1228,1), + (1033,'North Dakota','ND',1228,1), + (1034,'Ohio','OH',1228,1), + (1035,'Oklahoma','OK',1228,1), + (1036,'Oregon','OR',1228,1), + (1037,'Pennsylvania','PA',1228,1), + (1038,'Rhode Island','RI',1228,1), + (1039,'South Carolina','SC',1228,1), + (1040,'South Dakota','SD',1228,1), + (1041,'Tennessee','TN',1228,1), + (1042,'Texas','TX',1228,1), + (1043,'Utah','UT',1228,1), + (1044,'Vermont','VT',1228,1), + (1045,'Virginia','VA',1228,1), + (1046,'Washington','WA',1228,1), + (1047,'West Virginia','WV',1228,1), + (1048,'Wisconsin','WI',1228,1), + (1049,'Wyoming','WY',1228,1), + (1050,'District of Columbia','DC',1228,1), + (1051,'American Samoa','AS',1228,1), + (1052,'Guam','GU',1228,1), + (1053,'Northern Mariana Islands','MP',1228,1), + (1054,'Puerto Rico','PR',1228,1), + (1055,'Virgin Islands','VI',1228,1), + (1056,'United States Minor Outlying Islands','UM',1228,1), + (1057,'Armed Forces Europe','AE',1228,1), + (1058,'Armed Forces Americas','AA',1228,1), + (1059,'Armed Forces Pacific','AP',1228,1), + (1060,'Alberta','AB',1039,1), + (1061,'British Columbia','BC',1039,1), + (1062,'Manitoba','MB',1039,1), + (1063,'New Brunswick','NB',1039,1), + (1064,'Newfoundland and Labrador','NL',1039,1), + (1065,'Northwest Territories','NT',1039,1), + (1066,'Nova Scotia','NS',1039,1), + (1067,'Nunavut','NU',1039,1), + (1068,'Ontario','ON',1039,1), + (1069,'Prince Edward Island','PE',1039,1), + (1070,'Quebec','QC',1039,1), + (1071,'Saskatchewan','SK',1039,1), + (1072,'Yukon Territory','YT',1039,1), + (1073,'Maharashtra','MH',1101,1), + (1074,'Karnataka','KA',1101,1), + (1075,'Andhra Pradesh','AP',1101,1), + (1076,'Arunachal Pradesh','AR',1101,1), + (1077,'Assam','AS',1101,1), + (1078,'Bihar','BR',1101,1), + (1079,'Chhattisgarh','CG',1101,1), + (1080,'Goa','GA',1101,1), + (1081,'Gujarat','GJ',1101,1), + (1082,'Haryana','HR',1101,1), + (1083,'Himachal Pradesh','HP',1101,1), + (1084,'Jammu and Kashmir','JK',1101,1), + (1085,'Jharkhand','JH',1101,1), + (1086,'Kerala','KL',1101,1), + (1087,'Madhya Pradesh','MP',1101,1), + (1088,'Manipur','MN',1101,1), + (1089,'Meghalaya','ML',1101,1), + (1090,'Mizoram','MZ',1101,1), + (1091,'Nagaland','NL',1101,1), + (1092,'Orissa','OR',1101,1), + (1093,'Punjab','PB',1101,1), + (1094,'Rajasthan','RJ',1101,1), + (1095,'Sikkim','SK',1101,1), + (1096,'Tamil Nadu','TN',1101,1), + (1097,'Tripura','TR',1101,1), + (1098,'Uttarakhand','UT',1101,1), + (1099,'Uttar Pradesh','UP',1101,1), + (1100,'West Bengal','WB',1101,1), + (1101,'Andaman and Nicobar Islands','AN',1101,1), + (1102,'Delhi','DL',1101,1), + (1103,'Lakshadweep','LD',1101,1), + (1104,'Pondicherry','PY',1101,1), + (1105,'Telangana','TG',1101,1), + (1106,'Dādra and Nagar Haveli and Damān and Diu','DH',1101,1), + (1107,'Ladākh','LA',1101,1), + (1108,'Chandigarh','CH',1101,1), + (1109,'mazowieckie','MZ',1172,1), + (1110,'pomorskie','PM',1172,1), + (1111,'dolnośląskie','DS',1172,1), + (1112,'kujawsko-pomorskie','KP',1172,1), + (1113,'lubelskie','LU',1172,1), + (1114,'lubuskie','LB',1172,1), + (1115,'łódzkie','LD',1172,1), + (1116,'małopolskie','MA',1172,1), + (1117,'opolskie','OP',1172,1), + (1118,'podkarpackie','PK',1172,1), + (1119,'podlaskie','PD',1172,1), + (1120,'śląskie','SL',1172,1), + (1121,'świętokrzyskie','SK',1172,1), + (1122,'warmińsko-mazurskie','WN',1172,1), + (1123,'wielkopolskie','WP',1172,1), + (1124,'zachodniopomorskie','ZP',1172,1), + (1125,'Abu Zaby','AZ',1225,1), + (1126,'\'Ajman','AJ',1225,1), + (1127,'Al Fujayrah','FU',1225,1), + (1128,'Ash Shariqah','SH',1225,1), + (1129,'Dubayy','DU',1225,1), + (1130,'Ra\'s al Khaymah','RK',1225,1), + (1131,'Dac Lac','33',1233,1), + (1132,'Umm al Qaywayn','UQ',1225,1), + (1133,'Badakhshan','BDS',1001,1), + (1134,'Badghis','BDG',1001,1), + (1135,'Baghlan','BGL',1001,1), + (1136,'Balkh','BAL',1001,1), + (1137,'Bamian','BAM',1001,1), + (1138,'Farah','FRA',1001,1), + (1139,'Faryab','FYB',1001,1), + (1140,'Ghazni','GHA',1001,1), + (1141,'Ghowr','GHO',1001,1), + (1142,'Helmand','HEL',1001,1), + (1143,'Herat','HER',1001,1), + (1144,'Jowzjan','JOW',1001,1), + (1145,'Kabul','KAB',1001,1), + (1146,'Kandahar','KAN',1001,1), + (1147,'Kapisa','KAP',1001,1), + (1148,'Khowst','KHO',1001,1), + (1149,'Konar','KNR',1001,1), + (1150,'Kondoz','KDZ',1001,1), + (1151,'Laghman','LAG',1001,1), + (1152,'Lowgar','LOW',1001,1), + (1153,'Nangrahar','NAN',1001,1), + (1154,'Nimruz','NIM',1001,1), + (1155,'Nurestan','NUR',1001,1), + (1156,'Oruzgan','ORU',1001,1), + (1157,'Paktia','PIA',1001,1), + (1158,'Paktika','PKA',1001,1), + (1159,'Parwan','PAR',1001,1), + (1160,'Samangan','SAM',1001,1), + (1161,'Sar-e Pol','SAR',1001,1), + (1162,'Takhar','TAK',1001,1), + (1163,'Wardak','WAR',1001,1), + (1164,'Zabol','ZAB',1001,1), + (1165,'Berat','BR',1002,1), + (1166,'Bulqizë','BU',1002,1), + (1167,'Delvinë','DL',1002,1), + (1168,'Devoll','DV',1002,1), + (1169,'Dibër','DI',1002,1), + (1170,'Durrës','DR',1002,1), + (1171,'Elbasan','EL',1002,1), + (1172,'Fier','FR',1002,1), + (1173,'Gramsh','GR',1002,1), + (1174,'Gjirokastër','GJ',1002,1), + (1175,'Has','HA',1002,1), + (1176,'Kavajë','KA',1002,1), + (1177,'Kolonjë','ER',1002,1), + (1178,'Korçë','KO',1002,1), + (1179,'Krujë','KR',1002,1), + (1180,'Kuçovë','KC',1002,1), + (1181,'Kukës','KU',1002,1), + (1182,'Kurbin','KB',1002,1), + (1183,'Lezhë','LE',1002,1), + (1184,'Librazhd','LB',1002,1), + (1185,'Lushnjë','LU',1002,1), + (1186,'Malësi e Madhe','MM',1002,1), + (1187,'Mallakastër','MK',1002,1), + (1188,'Mat','MT',1002,1), + (1189,'Mirditë','MR',1002,1), + (1190,'Peqin','PQ',1002,1), + (1191,'Përmet','PR',1002,1), + (1192,'Pogradec','PG',1002,1), + (1193,'Pukë','PU',1002,1), + (1194,'Sarandë','SR',1002,1), + (1195,'Skrapar','SK',1002,1), + (1196,'Shkodër','SH',1002,1), + (1197,'Tepelenë','TE',1002,1), + (1198,'Tiranë','TR',1002,1), + (1199,'Tropojë','TP',1002,1), + (1200,'Vlorë','VL',1002,1), + (1201,'Erevan','ER',1011,1), + (1202,'Aragacotn','AG',1011,1), + (1203,'Ararat','AR',1011,1), + (1204,'Armavir','AV',1011,1), + (1205,'Gegarkunik\'','GR',1011,1), + (1206,'Kotayk\'','KT',1011,1), + (1207,'Lory','LO',1011,1), + (1208,'Sirak','SH',1011,1), + (1209,'Syunik\'','SU',1011,1), + (1210,'Tavus','TV',1011,1), + (1211,'Vayoc Jor','VD',1011,1), + (1212,'Andorra la Vella','07',1005,1), + (1213,'Canillo','02',1005,1), + (1214,'Encamp','03',1005,1), + (1215,'Escaldes-Engordany','08',1005,1), + (1216,'La Massana','04',1005,1), + (1217,'Ordino','05',1005,1), + (1218,'Sant Julia de Loria','06',1005,1), + (1219,'Bengo','BGO',1006,1), + (1220,'Benguela','BGU',1006,1), + (1221,'Bie','BIE',1006,1), + (1222,'Cabinda','CAB',1006,1), + (1223,'Cuando-Cubango','CCU',1006,1), + (1224,'Cuanza Norte','CNO',1006,1), + (1225,'Cuanza Sul','CUS',1006,1), + (1226,'Cunene','CNN',1006,1), + (1227,'Huambo','HUA',1006,1), + (1228,'Huila','HUI',1006,1), + (1229,'Luanda','LUA',1006,1), + (1230,'Lunda Norte','LNO',1006,1), + (1231,'Lunda Sul','LSU',1006,1), + (1232,'Malange','MAL',1006,1), + (1233,'Moxico','MOX',1006,1), + (1234,'Namibe','NAM',1006,1), + (1235,'Uige','UIG',1006,1), + (1236,'Zaire','ZAI',1006,1), + (1237,'Saint George','03',1009,1), + (1238,'Saint John','04',1009,1), + (1239,'Saint Mary','05',1009,1), + (1240,'Saint Paul','06',1009,1), + (1241,'Saint Peter','07',1009,1), + (1242,'Saint Philip','08',1009,1), + (1243,'Barbuda','10',1009,1), + (1244,'Redonda','11',1009,1), + (1245,'Capital federal','C',1010,1), + (1246,'Buenos Aires','B',1010,1), + (1247,'Catamarca','K',1010,1), + (1248,'Cordoba','X',1010,1), + (1249,'Corrientes','W',1010,1), + (1250,'Chaco','H',1010,1), + (1251,'Chubut','U',1010,1), + (1252,'Entre Rios','E',1010,1), + (1253,'Formosa','P',1010,1), + (1254,'Jujuy','Y',1010,1), + (1255,'La Pampa','L',1010,1), + (1256,'Mendoza','M',1010,1), + (1257,'Misiones','N',1010,1), + (1258,'Neuquen','Q',1010,1), + (1259,'Rio Negro','R',1010,1), + (1260,'Salta','A',1010,1), + (1261,'San Juan','J',1010,1), + (1262,'San Luis','D',1010,1), + (1263,'Santa Cruz','Z',1010,1), + (1264,'Santa Fe','S',1010,1), + (1265,'Santiago del Estero','G',1010,1), + (1266,'Tierra del Fuego','V',1010,1), + (1267,'Tucuman','T',1010,1), + (1268,'La Rioja','F',1010,1), + (1269,'Burgenland','1',1014,1), + (1270,'Kärnten','2',1014,1), + (1271,'Niederösterreich','3',1014,1), + (1272,'Oberösterreich','4',1014,1), + (1273,'Salzburg','5',1014,1), + (1274,'Steiermark','6',1014,1), + (1275,'Tirol','7',1014,1), + (1276,'Vorarlberg','8',1014,1), + (1277,'Wien','9',1014,1), + (1278,'Australian Antarctic Territory','AAT',1008,1), + (1279,'Australian Capital Territory','ACT',1013,1), + (1280,'Northern Territory','NT',1013,1), + (1281,'New South Wales','NSW',1013,1), + (1282,'Queensland','QLD',1013,1), + (1283,'South Australia','SA',1013,1), + (1284,'Tasmania','TAS',1013,1), + (1285,'Victoria','VIC',1013,1), + (1286,'Western Australia','WA',1013,1), + (1287,'Naxcivan','NX',1015,1), + (1288,'Ali Bayramli','AB',1015,1), + (1289,'Baki','BA',1015,1), + (1290,'Ganca','GA',1015,1), + (1291,'Lankaran','LA',1015,1), + (1292,'Mingacevir','MI',1015,1), + (1293,'Naftalan','NA',1015,1), + (1294,'Saki','SA',1015,1), + (1295,'Sumqayit','SM',1015,1), + (1296,'Susa','SS',1015,1), + (1297,'Xankandi','XA',1015,1), + (1298,'Yevlax','YE',1015,1), + (1299,'Abseron','ABS',1015,1), + (1300,'Agcabadi','AGC',1015,1), + (1301,'Agdam','AGM',1015,1), + (1302,'Agdas','AGS',1015,1), + (1303,'Agstafa','AGA',1015,1), + (1304,'Agsu','AGU',1015,1), + (1305,'Astara','AST',1015,1), + (1306,'Babak','BAB',1015,1), + (1307,'Balakan','BAL',1015,1), + (1308,'Barda','BAR',1015,1), + (1309,'Beylagan','BEY',1015,1), + (1310,'Bilasuvar','BIL',1015,1), + (1311,'Cabrayll','CAB',1015,1), + (1312,'Calilabad','CAL',1015,1), + (1313,'Culfa','CUL',1015,1), + (1314,'Daskasan','DAS',1015,1), + (1315,'Davaci','DAV',1015,1), + (1316,'Fuzuli','FUZ',1015,1), + (1317,'Gadabay','GAD',1015,1), + (1318,'Goranboy','GOR',1015,1), + (1319,'Goycay','GOY',1015,1), + (1320,'Haciqabul','HAC',1015,1), + (1321,'Imisli','IMI',1015,1), + (1322,'Ismayilli','ISM',1015,1), + (1323,'Kalbacar','KAL',1015,1), + (1324,'Kurdamir','KUR',1015,1), + (1325,'Lacin','LAC',1015,1), + (1326,'Lerik','LER',1015,1), + (1327,'Masalli','MAS',1015,1), + (1328,'Neftcala','NEF',1015,1), + (1329,'Oguz','OGU',1015,1), + (1330,'Ordubad','ORD',1015,1), + (1331,'Qabala','QAB',1015,1), + (1332,'Qax','QAX',1015,1), + (1333,'Qazax','QAZ',1015,1), + (1334,'Qobustan','QOB',1015,1), + (1335,'Quba','QBA',1015,1), + (1336,'Qubadli','QBI',1015,1), + (1337,'Qusar','QUS',1015,1), + (1338,'Saatli','SAT',1015,1), + (1339,'Sabirabad','SAB',1015,1), + (1340,'Sadarak','SAD',1015,1), + (1341,'Sahbuz','SAH',1015,1), + (1342,'Salyan','SAL',1015,1), + (1343,'Samaxi','SMI',1015,1), + (1344,'Samkir','SKR',1015,1), + (1345,'Samux','SMX',1015,1), + (1346,'Sarur','SAR',1015,1), + (1347,'Siyazan','SIY',1015,1), + (1348,'Tartar','TAR',1015,1), + (1349,'Tovuz','TOV',1015,1), + (1350,'Ucar','UCA',1015,1), + (1351,'Xacmaz','XAC',1015,1), + (1352,'Xanlar','XAN',1015,1), + (1353,'Xizi','XIZ',1015,1), + (1354,'Xocali','XCI',1015,1), + (1355,'Xocavand','XVD',1015,1), + (1356,'Yardimli','YAR',1015,1), + (1357,'Zangilan','ZAN',1015,1), + (1358,'Zaqatala','ZAQ',1015,1), + (1359,'Zardab','ZAR',1015,1), + (1360,'Federacija Bosna i Hercegovina','BIH',1026,1), + (1361,'Republika Srpska','SRP',1026,1), + (1362,'Bagerhat zila','05',1017,1), + (1363,'Bandarban zila','01',1017,1), + (1364,'Barguna zila','02',1017,1), + (1365,'Barisal zila','06',1017,1), + (1366,'Bhola zila','07',1017,1), + (1367,'Bogra zila','03',1017,1), + (1368,'Brahmanbaria zila','04',1017,1), + (1369,'Chandpur zila','09',1017,1), + (1370,'Chittagong zila','10',1017,1), + (1371,'Chuadanga zila','12',1017,1), + (1372,'Comilla zila','08',1017,1), + (1373,'Cox\'s Bazar zila','11',1017,1), + (1374,'Dhaka zila','13',1017,1), + (1375,'Dinajpur zila','14',1017,1), + (1376,'Faridpur zila','15',1017,1), + (1377,'Feni zila','16',1017,1), + (1378,'Gaibandha zila','19',1017,1), + (1379,'Gazipur zila','18',1017,1), + (1380,'Gopalganj zila','17',1017,1), + (1381,'Habiganj zila','20',1017,1), + (1382,'Jaipurhat zila','24',1017,1), + (1383,'Jamalpur zila','21',1017,1), + (1384,'Jessore zila','22',1017,1), + (1385,'Jhalakati zila','25',1017,1), + (1386,'Jhenaidah zila','23',1017,1), + (1387,'Khagrachari zila','29',1017,1), + (1388,'Khulna zila','27',1017,1), + (1389,'Kishorganj zila','26',1017,1), + (1390,'Kurigram zila','28',1017,1), + (1391,'Kushtia zila','30',1017,1), + (1392,'Lakshmipur zila','31',1017,1), + (1393,'Lalmonirhat zila','32',1017,1), + (1394,'Madaripur zila','36',1017,1), + (1395,'Magura zila','37',1017,1), + (1396,'Manikganj zila','33',1017,1), + (1397,'Meherpur zila','39',1017,1), + (1398,'Moulvibazar zila','38',1017,1), + (1399,'Munshiganj zila','35',1017,1), + (1400,'Mymensingh zila','34',1017,1), + (1401,'Naogaon zila','48',1017,1), + (1402,'Narail zila','43',1017,1), + (1403,'Narayanganj zila','40',1017,1), + (1404,'Narsingdi zila','42',1017,1), + (1405,'Natore zila','44',1017,1), + (1406,'Nawabganj zila','45',1017,1), + (1407,'Netrakona zila','41',1017,1), + (1408,'Nilphamari zila','46',1017,1), + (1409,'Noakhali zila','47',1017,1), + (1410,'Pabna zila','49',1017,1), + (1411,'Panchagarh zila','52',1017,1), + (1412,'Patuakhali zila','51',1017,1), + (1413,'Pirojpur zila','50',1017,1), + (1414,'Rajbari zila','53',1017,1), + (1415,'Rajshahi zila','54',1017,1), + (1416,'Rangamati zila','56',1017,1), + (1417,'Rangpur zila','55',1017,1), + (1418,'Satkhira zila','58',1017,1), + (1419,'Shariatpur zila','62',1017,1), + (1420,'Sherpur zila','57',1017,1), + (1421,'Sirajganj zila','59',1017,1), + (1422,'Sunamganj zila','61',1017,1), + (1423,'Sylhet zila','60',1017,1), + (1424,'Tangail zila','63',1017,1), + (1425,'Thakurgaon zila','64',1017,1), + (1426,'Christ Church','01',1018,1), + (1427,'Saint Andrew','02',1018,1), + (1428,'Saint George','03',1018,1), + (1429,'Saint James','04',1018,1), + (1430,'Saint John','05',1018,1), + (1431,'Saint Joseph','06',1018,1), + (1432,'Saint Lucy','07',1018,1), + (1433,'Saint Michael','08',1018,1), + (1434,'Saint Peter','09',1018,1), + (1435,'Saint Philip','10',1018,1), + (1436,'Saint Thomas','11',1018,1), + (1437,'Brussels','BRU',1020,1), + (1438,'Antwerpen','VAN',1020,1), + (1439,'Brabant Wallon','WBR',1020,1), + (1440,'Hainaut','WHT',1020,1), + (1441,'Liege','WLG',1020,1), + (1442,'Limburg','VLI',1020,1), + (1443,'Luxembourg','WLX',1020,1), + (1444,'Namur','WNA',1020,1), + (1445,'Oost-Vlaanderen','VOV',1020,1), + (1446,'Vlaams-Brabant','VBR',1020,1), + (1447,'West-Vlaanderen','VWV',1020,1), + (1448,'Devonshire','DEV',1023,1), + (1449,'Hamilton Parish','HAM',1023,1), + (1450,'City of Hamilton','HA',1023,1), + (1451,'Paget','PAG',1023,1), + (1452,'Pembroke','PEM',1023,1), + (1453,'Town of St. George','SG',1023,1), + (1454,'Saint George\'s','SGE',1023,1), + (1455,'Sandys','SAN',1023,1), + (1456,'Smiths','SMI',1023,1), + (1457,'Southampton','SOU',1023,1), + (1458,'Warwick','WAR',1023,1), + (1459,'Bale','BAL',1034,1), + (1460,'Bam','BAM',1034,1), + (1461,'Banwa','BAN',1034,1), + (1462,'Bazega','BAZ',1034,1), + (1463,'Bougouriba','BGR',1034,1), + (1464,'Boulgou','BLG',1034,1), + (1465,'Boulkiemde','BLK',1034,1), + (1466,'Comoe','COM',1034,1), + (1467,'Ganzourgou','GAN',1034,1), + (1468,'Gnagna','GNA',1034,1), + (1469,'Gourma','GOU',1034,1), + (1470,'Houet','HOU',1034,1), + (1471,'Ioba','IOB',1034,1), + (1472,'Kadiogo','KAD',1034,1), + (1473,'Kenedougou','KEN',1034,1), + (1474,'Komondjari','KMD',1034,1), + (1475,'Kompienga','KMP',1034,1), + (1476,'Kossi','KOS',1034,1), + (1477,'Koulpulogo','KOP',1034,1), + (1478,'Kouritenga','KOT',1034,1), + (1479,'Kourweogo','KOW',1034,1), + (1480,'Leraba','LER',1034,1), + (1481,'Loroum','LOR',1034,1), + (1482,'Mouhoun','MOU',1034,1), + (1483,'Nahouri','NAO',1034,1), + (1484,'Namentenga','NAM',1034,1), + (1485,'Nayala','NAY',1034,1), + (1486,'Noumbiel','NOU',1034,1), + (1487,'Oubritenga','OUB',1034,1), + (1488,'Oudalan','OUD',1034,1), + (1489,'Passore','PAS',1034,1), + (1490,'Poni','PON',1034,1), + (1491,'Sanguie','SNG',1034,1), + (1492,'Sanmatenga','SMT',1034,1), + (1493,'Seno','SEN',1034,1), + (1494,'Siasili','SIS',1034,1), + (1495,'Soum','SOM',1034,1), + (1496,'Sourou','SOR',1034,1), + (1497,'Tapoa','TAP',1034,1), + (1498,'Tui','TUI',1034,1), + (1499,'Yagha','YAG',1034,1), + (1500,'Yatenga','YAT',1034,1), + (1501,'Ziro','ZIR',1034,1), + (1502,'Zondoma','ZON',1034,1), + (1503,'Zoundweogo','ZOU',1034,1), + (1504,'Blagoevgrad','01',1033,1), + (1505,'Burgas','02',1033,1), + (1506,'Dobrich','08',1033,1), + (1507,'Gabrovo','07',1033,1), + (1508,'Haskovo','26',1033,1), + (1509,'Yambol','28',1033,1), + (1510,'Kardzhali','09',1033,1), + (1511,'Kyustendil','10',1033,1), + (1512,'Lovech','11',1033,1), + (1513,'Montana','12',1033,1), + (1514,'Pazardzhik','13',1033,1), + (1515,'Pernik','14',1033,1), + (1516,'Pleven','15',1033,1), + (1517,'Plovdiv','16',1033,1), + (1518,'Razgrad','17',1033,1), + (1519,'Ruse','18',1033,1), + (1520,'Silistra','19',1033,1), + (1521,'Sliven','20',1033,1), + (1522,'Smolyan','21',1033,1), + (1523,'Sofia','23',1033,1), + (1524,'Stara Zagora','24',1033,1), + (1525,'Shumen','27',1033,1), + (1526,'Targovishte','25',1033,1), + (1527,'Varna','03',1033,1), + (1528,'Veliko Tarnovo','04',1033,1), + (1529,'Vidin','05',1033,1), + (1530,'Vratsa','06',1033,1), + (1531,'Al Hadd','01',1016,1), + (1532,'Al Manamah','03',1016,1), + (1533,'Al Mintaqah al Gharbiyah','10',1016,1), + (1534,'Al Mintagah al Wusta','07',1016,1), + (1535,'Al Mintaqah ash Shamaliyah','05',1016,1), + (1536,'Al Muharraq','02',1016,1), + (1537,'Ar Rifa','09',1016,1), + (1538,'Jidd Hafs','04',1016,1), + (1539,'Madluat Jamad','12',1016,1), + (1540,'Madluat Isa','08',1016,1), + (1541,'Mintaqat Juzur tawar','11',1016,1), + (1542,'Sitrah','06',1016,1), + (1543,'Bubanza','BB',1036,1), + (1544,'Bujumbura','BJ',1036,1), + (1545,'Bururi','BR',1036,1), + (1546,'Cankuzo','CA',1036,1), + (1547,'Cibitoke','CI',1036,1), + (1548,'Gitega','GI',1036,1), + (1549,'Karuzi','KR',1036,1), + (1550,'Kayanza','KY',1036,1), + (1551,'Makamba','MA',1036,1), + (1552,'Muramvya','MU',1036,1), + (1553,'Mwaro','MW',1036,1), + (1554,'Ngozi','NG',1036,1), + (1555,'Rutana','RT',1036,1), + (1556,'Ruyigi','RY',1036,1), + (1557,'Alibori','AL',1022,1), + (1558,'Atakora','AK',1022,1), + (1559,'Atlantique','AQ',1022,1), + (1560,'Borgou','BO',1022,1), + (1561,'Collines','CO',1022,1), + (1562,'Donga','DO',1022,1), + (1563,'Kouffo','KO',1022,1), + (1564,'Littoral','LI',1022,1), + (1565,'Mono','MO',1022,1), + (1566,'Oueme','OU',1022,1), + (1567,'Plateau','PL',1022,1), + (1568,'Zou','ZO',1022,1), + (1569,'Belait','BE',1032,1), + (1570,'Brunei-Muara','BM',1032,1), + (1571,'Temburong','TE',1032,1), + (1572,'Tutong','TU',1032,1), + (1573,'Cochabamba','C',1025,1), + (1574,'Chuquisaca','H',1025,1), + (1575,'El Beni','B',1025,1), + (1576,'La Paz','L',1025,1), + (1577,'Oruro','O',1025,1), + (1578,'Pando','N',1025,1), + (1579,'Potosi','P',1025,1), + (1580,'Tarija','T',1025,1), + (1581,'Acre','AC',1029,1), + (1582,'Alagoas','AL',1029,1), + (1583,'Amazonas','AM',1029,1), + (1584,'Amapa','AP',1029,1), + (1585,'Bahia','BA',1029,1), + (1586,'Ceara','CE',1029,1), + (1587,'Distrito Federal','DF',1029,1), + (1588,'Espirito Santo','ES',1029,1), + (1589,'Goias','GO',1029,1), + (1590,'Maranhao','MA',1029,1), + (1591,'Minas Gerais','MG',1029,1), + (1592,'Mato Grosso do Sul','MS',1029,1), + (1593,'Mato Grosso','MT',1029,1), + (1594,'Para','PA',1029,1), + (1595,'Paraiba','PB',1029,1), + (1596,'Pernambuco','PE',1029,1), + (1597,'Piaui','PI',1029,1), + (1598,'Parana','PR',1029,1), + (1599,'Rio de Janeiro','RJ',1029,1), + (1600,'Rio Grande do Norte','RN',1029,1), + (1601,'Rondonia','RO',1029,1), + (1602,'Roraima','RR',1029,1), + (1603,'Rio Grande do Sul','RS',1029,1), + (1604,'Santa Catarina','SC',1029,1), + (1605,'Sergipe','SE',1029,1), + (1606,'Sao Paulo','SP',1029,1), + (1607,'Tocantins','TO',1029,1), + (1608,'Acklins and Crooked Islands','AC',1212,1), + (1609,'Bimini','BI',1212,1), + (1610,'Cat Island','CI',1212,1), + (1611,'Exuma','EX',1212,1), + (1612,'Inagua','IN',1212,1), + (1613,'Long Island','LI',1212,1), + (1614,'Mayaguana','MG',1212,1), + (1615,'New Providence','NP',1212,1), + (1616,'Ragged Island','RI',1212,1), + (1617,'Abaco Islands','AB',1212,1), + (1618,'Andros Island','AN',1212,1), + (1619,'Berry Islands','BR',1212,1), + (1620,'Eleuthera','EL',1212,1), + (1621,'Grand Bahama','GB',1212,1), + (1622,'Rum Cay','RC',1212,1), + (1623,'San Salvador Island','SS',1212,1), + (1624,'Bumthang','33',1024,1), + (1625,'Chhukha','12',1024,1), + (1626,'Dagana','22',1024,1), + (1627,'Gasa','GA',1024,1), + (1628,'Ha','13',1024,1), + (1629,'Lhuentse','44',1024,1), + (1630,'Monggar','42',1024,1), + (1631,'Paro','11',1024,1), + (1632,'Pemagatshel','43',1024,1), + (1633,'Punakha','23',1024,1), + (1634,'Samdrup Jongkha','45',1024,1), + (1635,'Samtee','14',1024,1), + (1636,'Sarpang','31',1024,1), + (1637,'Thimphu','15',1024,1), + (1638,'Trashigang','41',1024,1), + (1639,'Trashi Yangtse','TY',1024,1), + (1640,'Trongsa','32',1024,1), + (1641,'Tsirang','21',1024,1), + (1642,'Wangdue Phodrang','24',1024,1), + (1643,'Zhemgang','34',1024,1), + (1644,'Central','CE',1027,1), + (1645,'Ghanzi','GH',1027,1), + (1646,'Kgalagadi','KG',1027,1), + (1647,'Kgatleng','KL',1027,1), + (1648,'Kweneng','KW',1027,1), + (1649,'Ngamiland','NG',1027,1), + (1650,'North-East','NE',1027,1), + (1651,'North-West','NW',1027,1), + (1652,'South-East','SE',1027,1), + (1653,'Southern','SO',1027,1), + (1654,'Brèsckaja voblasc\'','BR',1019,1), + (1655,'Homel\'skaja voblasc\'','HO',1019,1), + (1656,'Hrodzenskaja voblasc\'','HR',1019,1), + (1657,'Mahilëuskaja voblasc\'','MA',1019,1), + (1658,'Minskaja voblasc\'','MI',1019,1), + (1659,'Vicebskaja voblasc\'','VI',1019,1), + (1660,'Belize','BZ',1021,1), + (1661,'Cayo','CY',1021,1), + (1662,'Corozal','CZL',1021,1), + (1663,'Orange Walk','OW',1021,1), + (1664,'Stann Creek','SC',1021,1), + (1665,'Toledo','TOL',1021,1), + (1666,'Kinshasa','KN',1050,1), + (1667,'Equateur','EQ',1050,1), + (1668,'Kasai-Oriental','KE',1050,1), + (1669,'Maniema','MA',1050,1), + (1670,'Nord-Kivu','NK',1050,1), + (1671,'Sud-Kivu','SK',1050,1), + (1672,'Bangui','BGF',1042,1), + (1673,'Bamingui-Bangoran','BB',1042,1), + (1674,'Basse-Kotto','BK',1042,1), + (1675,'Haute-Kotto','HK',1042,1), + (1676,'Haut-Mbomou','HM',1042,1), + (1677,'Kemo','KG',1042,1), + (1678,'Lobaye','LB',1042,1), + (1679,'Mambere-Kadei','HS',1042,1), + (1680,'Mbomou','MB',1042,1), + (1681,'Nana-Grebizi','KB',1042,1), + (1682,'Nana-Mambere','NM',1042,1), + (1683,'Ombella-Mpoko','MP',1042,1), + (1684,'Ouaka','UK',1042,1), + (1685,'Ouham','AC',1042,1), + (1686,'Ouham-Pende','OP',1042,1), + (1687,'Sangha-Mbaere','SE',1042,1), + (1688,'Vakaga','VR',1042,1), + (1689,'Kongo central','01',1050,1), + (1690,'Kwango','02',1050,1), + (1691,'Kwilu','03',1050,1), + (1692,'Mai-Ndombe','04',1050,1), + (1693,'Kasai','05',1050,1), + (1694,'Lulua','06',1050,1), + (1695,'Lomami','07',1050,1), + (1696,'Sankuru','08',1050,1), + (1697,'Ituri','09',1050,1), + (1698,'Haut-Uele','10',1050,1), + (1699,'Tshopo','11',1050,1), + (1700,'Bas-Uele','12',1050,1), + (1701,'Nord-Ubangi','13',1050,1), + (1702,'Mongala','14',1050,1), + (1703,'Sud-Ubangi','15',1050,1), + (1704,'Tshuapa','16',1050,1), + (1705,'Haut-Lomami','17',1050,1), + (1706,'Lualaba','18',1050,1), + (1707,'Haut-Katanga','19',1050,1), + (1708,'Tanganyika','20',1050,1), + (1709,'Brazzaville','BZV',1051,1), + (1710,'Bouenza','11',1051,1), + (1711,'Cuvette','8',1051,1), + (1712,'Cuvette-Ouest','15',1051,1), + (1713,'Kouilou','5',1051,1), + (1714,'Lekoumou','2',1051,1), + (1715,'Likouala','7',1051,1), + (1716,'Niari','9',1051,1), + (1717,'Plateaux','14',1051,1), + (1718,'Pool','12',1051,1), + (1719,'Sangha','13',1051,1), + (1720,'Estuaire','01',1080,1), + (1721,'Haut-Ogooué','02',1080,1), + (1722,'Moyen-Ogooué','03',1080,1), + (1723,'Ngounié','04',1080,1), + (1724,'Nyanga','05',1080,1), + (1725,'Ogooué-Ivindo','06',1080,1), + (1726,'Ogooué-Lolo','07',1080,1), + (1727,'Ogooué-Maritime','08',1080,1), + (1728,'Woleu-Ntem','09',1080,1), + (1729,'Aargau','AG',1205,1), + (1730,'Appenzell Innerrhoden','AI',1205,1), + (1731,'Appenzell Ausserrhoden','AR',1205,1), + (1732,'Bern','BE',1205,1), + (1733,'Basel-Landschaft','BL',1205,1), + (1734,'Basel-Stadt','BS',1205,1), + (1735,'Fribourg','FR',1205,1), + (1736,'Geneva','GE',1205,1), + (1737,'Glarus','GL',1205,1), + (1738,'Graubunden','GR',1205,1), + (1739,'Jura','JU',1205,1), + (1740,'Luzern','LU',1205,1), + (1741,'Neuchatel','NE',1205,1), + (1742,'Nidwalden','NW',1205,1), + (1743,'Obwalden','OW',1205,1), + (1744,'Sankt Gallen','SG',1205,1), + (1745,'Schaffhausen','SH',1205,1), + (1746,'Solothurn','SO',1205,1), + (1747,'Schwyz','SZ',1205,1), + (1748,'Thurgau','TG',1205,1), + (1749,'Ticino','TI',1205,1), + (1750,'Uri','UR',1205,1), + (1751,'Vaud','VD',1205,1), + (1752,'Valais','VS',1205,1), + (1753,'Zug','ZG',1205,1), + (1754,'Zurich','ZH',1205,1), + (1755,'18 Montagnes','06',1054,1), + (1756,'Agnebi','16',1054,1), + (1757,'Bas-Sassandra','09',1054,1), + (1758,'Denguele','10',1054,1), + (1759,'Haut-Sassandra','02',1054,1), + (1760,'Lacs','07',1054,1), + (1761,'Lagunes','01',1054,1), + (1762,'Marahoue','12',1054,1), + (1763,'Moyen-Comoe','05',1054,1), + (1764,'Nzi-Comoe','11',1054,1), + (1765,'Savanes','03',1054,1), + (1766,'Sud-Bandama','15',1054,1), + (1767,'Sud-Comoe','13',1054,1), + (1768,'Vallee du Bandama','04',1054,1), + (1769,'Worodouqou','14',1054,1), + (1770,'Zanzan','08',1054,1), + (1771,'Aisen del General Carlos Ibanez del Campo','AI',1044,1), + (1772,'Antofagasta','AN',1044,1), + (1773,'Araucania','AR',1044,1), + (1774,'Atacama','AT',1044,1), + (1775,'Bio-Bio','BI',1044,1), + (1776,'Coquimbo','CO',1044,1), + (1777,'Libertador General Bernardo O\'Higgins','LI',1044,1), + (1778,'Los Lagos','LL',1044,1), + (1779,'Magallanes','MA',1044,1), + (1780,'Maule','ML',1044,1), + (1781,'Santiago Metropolitan','SM',1044,1), + (1782,'Tarapaca','TA',1044,1), + (1783,'Valparaiso','VS',1044,1), + (1784,'Los Rios','LR',1044,1), + (1785,'Arica y Parinacota','AP',1044,1), + (1786,'Adamaoua','AD',1038,1), + (1787,'Centre','CE',1038,1), + (1788,'East','ES',1038,1), + (1789,'Far North','EN',1038,1), + (1790,'North','NO',1038,1), + (1791,'South','SW',1038,1), + (1792,'South-West','SW',1038,1), + (1793,'West','OU',1038,1), + (1794,'Littoral','LT',1038,1), + (1795,'Nord-Ouest','NW',1038,1), + (1796,'Beijing','11',1045,1), + (1797,'Chongqing','50',1045,1), + (1798,'Shanghai','31',1045,1), + (1799,'Tianjin','12',1045,1), + (1800,'Anhui','34',1045,1), + (1801,'Fujian','35',1045,1), + (1802,'Gansu','62',1045,1), + (1803,'Guangdong','44',1045,1), + (1804,'Guizhou','52',1045,1), + (1805,'Hainan','46',1045,1), + (1806,'Hebei','13',1045,1), + (1807,'Heilongjiang','23',1045,1), + (1808,'Henan','41',1045,1), + (1809,'Hubei','42',1045,1), + (1810,'Hunan','43',1045,1), + (1811,'Jiangsu','32',1045,1), + (1812,'Jiangxi','36',1045,1), + (1813,'Jilin','22',1045,1), + (1814,'Liaoning','21',1045,1), + (1815,'Qinghai','63',1045,1), + (1816,'Shaanxi','61',1045,1), + (1817,'Shandong','37',1045,1), + (1818,'Shanxi','14',1045,1), + (1819,'Sichuan','51',1045,1), + (1820,'Taiwan','71',1045,1), + (1821,'Yunnan','53',1045,1), + (1822,'Zhejiang','33',1045,1), + (1823,'Guangxi','45',1045,1), + (1824,'Neia Mongol (mn)','15',1045,1), + (1825,'Xinjiang','65',1045,1), + (1826,'Xizang','54',1045,1), + (1827,'Hong Kong','91',1045,1), + (1828,'Macau','92',1045,1), + (1829,'Yinchuan','YN',1045,1), + (1830,'Shizuishan','SZ',1045,1), + (1831,'Wuzhong','WZ',1045,1), + (1832,'Guyuan','GY',1045,1), + (1833,'Zhongwei','ZW',1045,1), + (1834,'Distrito Capital de Bogotá','DC',1048,1), + (1835,'Amazonea','AMA',1048,1), + (1836,'Antioquia','ANT',1048,1), + (1837,'Arauca','ARA',1048,1), + (1838,'Atlántico','ATL',1048,1), + (1839,'Bolívar','BOL',1048,1), + (1840,'Boyacá','BOY',1048,1), + (1841,'Caldea','CAL',1048,1), + (1842,'Caquetá','CAQ',1048,1), + (1843,'Casanare','CAS',1048,1), + (1844,'Cauca','CAU',1048,1), + (1845,'Cesar','CES',1048,1), + (1846,'Córdoba','COR',1048,1), + (1847,'Cundinamarca','CUN',1048,1), + (1848,'Chocó','CHO',1048,1), + (1849,'Guainía','GUA',1048,1), + (1850,'Guaviare','GUV',1048,1), + (1851,'La Guajira','LAG',1048,1), + (1852,'Magdalena','MAG',1048,1), + (1853,'Meta','MET',1048,1), + (1854,'Nariño','NAR',1048,1), + (1855,'Norte de Santander','NSA',1048,1), + (1856,'Putumayo','PUT',1048,1), + (1857,'Quindio','QUI',1048,1), + (1858,'Risaralda','RIS',1048,1), + (1859,'San Andrés, Providencia y Santa Catalina','SAP',1048,1), + (1860,'Santander','SAN',1048,1), + (1861,'Sucre','SUC',1048,1), + (1862,'Tolima','TOL',1048,1), + (1863,'Valle del Cauca','VAC',1048,1), + (1864,'Vaupés','VAU',1048,1), + (1865,'Vichada','VID',1048,1), + (1866,'Huila','HUI',1048,1), + (1867,'Alajuela','A',1053,1), + (1868,'Cartago','C',1053,1), + (1869,'Guanacaste','G',1053,1), + (1870,'Heredia','H',1053,1), + (1871,'Limon','L',1053,1), + (1872,'Puntarenas','P',1053,1), + (1873,'San Jose','SJ',1053,1), + (1874,'Camagey','09',1056,1), + (1875,'Ciego de `vila','08',1056,1), + (1876,'Cienfuegos','06',1056,1), + (1877,'Ciudad de La Habana','03',1056,1), + (1878,'Granma','12',1056,1), + (1879,'Guantanamo','14',1056,1), + (1880,'Holquin','11',1056,1), + (1881,'La Habana','02',1056,1), + (1882,'Las Tunas','10',1056,1), + (1883,'Matanzas','04',1056,1), + (1884,'Pinar del Rio','01',1056,1), + (1885,'Sancti Spiritus','07',1056,1), + (1886,'Santiago de Cuba','13',1056,1), + (1887,'Villa Clara','05',1056,1), + (1888,'Isla de la Juventud','99',1056,1), + (1889,'Pinar del Roo','PR',1056,1), + (1890,'Ciego de Avila','CA',1056,1), + (1891,'Camagoey','CG',1056,1), + (1892,'Holgun','HO',1056,1), + (1893,'Sancti Spritus','SS',1056,1), + (1894,'Municipio Especial Isla de la Juventud','IJ',1056,1), + (1895,'Boa Vista','BV',1040,1), + (1896,'Brava','BR',1040,1), + (1897,'Calheta de Sao Miguel','CS',1040,1), + (1898,'Fogo','FO',1040,1), + (1899,'Maio','MA',1040,1), + (1900,'Mosteiros','MO',1040,1), + (1901,'Paul','PA',1040,1), + (1902,'Porto Novo','PN',1040,1), + (1903,'Praia','PR',1040,1), + (1904,'Ribeira Grande','RG',1040,1), + (1905,'Sal','SL',1040,1), + (1906,'Sao Domingos','SD',1040,1), + (1907,'Sao Filipe','SF',1040,1), + (1908,'Sao Nicolau','SN',1040,1), + (1909,'Sao Vicente','SV',1040,1), + (1910,'Tarrafal','TA',1040,1), + (1911,'Ammochostos Magusa','04',1057,1), + (1912,'Keryneia','06',1057,1), + (1913,'Larnaka','03',1057,1), + (1914,'Lefkosia','01',1057,1), + (1915,'Lemesos','02',1057,1), + (1916,'Pafos','05',1057,1), + (1917,'Jihočeský kraj','JC',1058,1), + (1918,'Jihomoravský kraj','JM',1058,1), + (1919,'Karlovarský kraj','KA',1058,1), + (1920,'Královéhradecký kraj','KR',1058,1), + (1921,'Liberecký kraj','LI',1058,1), + (1922,'Moravskoslezský kraj','MO',1058,1), + (1923,'Olomoucký kraj','OL',1058,1), + (1924,'Pardubický kraj','PA',1058,1), + (1925,'Plzeňský kraj','PL',1058,1), + (1926,'Praha, hlavní město','PR',1058,1), + (1927,'Středočeský kraj','ST',1058,1), + (1928,'Ústecký kraj','US',1058,1), + (1929,'Vysočina','VY',1058,1), + (1930,'Zlínský kraj','ZL',1058,1), + (1931,'Abkhazia','AB',1081,1), + (1932,'Adjara','AJ',1081,1), + (1933,'Tbilisi','TB',1081,1), + (1934,'Guria','GU',1081,1), + (1935,'Imereti','IM',1081,1), + (1936,'Kakheti','KA',1081,1), + (1937,'Kvemo Kartli','KK',1081,1), + (1938,'Mtskheta-Mtianeti','MM',1081,1), + (1939,'Racha-Lechkhumi and Kvemo Svaneti','RL',1081,1), + (1940,'Samegrelo-Zemo Svaneti','SZ',1081,1), + (1941,'Samtskhe-Javakheti','SJ',1081,1), + (1942,'Shida Kartli','SK',1081,1), + (1943,'Baden-Württemberg','BW',1082,1), + (1944,'Bayern','BY',1082,1), + (1945,'Bremen','HB',1082,1), + (1946,'Hamburg','HH',1082,1), + (1947,'Hessen','HE',1082,1), + (1948,'Niedersachsen','NI',1082,1), + (1949,'Nordrhein-Westfalen','NW',1082,1), + (1950,'Rheinland-Pfalz','RP',1082,1), + (1951,'Saarland','SL',1082,1), + (1952,'Schleswig-Holstein','SH',1082,1), + (1953,'Berlin','BE',1082,1), + (1954,'Brandenburg','BB',1082,1), + (1955,'Mecklenburg-Vorpommern','MV',1082,1), + (1956,'Sachsen','SN',1082,1), + (1957,'Sachsen-Anhalt','ST',1082,1), + (1958,'Thüringen','TH',1082,1), + (1959,'Ali Sabiah','AS',1060,1), + (1960,'Dikhil','DI',1060,1), + (1961,'Djibouti','DJ',1060,1), + (1962,'Obock','OB',1060,1), + (1963,'Tadjoura','TA',1060,1), + (1964,'Frederiksberg','147',1059,1), + (1965,'Copenhagen City','101',1059,1), + (1966,'Copenhagen','015',1059,1), + (1967,'Frederiksborg','020',1059,1), + (1968,'Roskilde','025',1059,1), + (1969,'Vestsjælland','030',1059,1), + (1970,'Storstrøm','035',1059,1), + (1971,'Bornholm','040',1059,1), + (1972,'Fyn','042',1059,1), + (1973,'South Jutland','050',1059,1), + (1974,'Ribe','055',1059,1), + (1975,'Vejle','060',1059,1), + (1976,'Ringkjøbing','065',1059,1), + (1977,'Århus','070',1059,1), + (1978,'Viborg','076',1059,1), + (1979,'North Jutland','080',1059,1), + (1980,'Distrito Nacional (Santo Domingo)','01',1062,1), + (1981,'Azua','02',1062,1), + (1982,'Bahoruco','03',1062,1), + (1983,'Barahona','04',1062,1), + (1984,'Dajabón','05',1062,1), + (1985,'Duarte','06',1062,1), + (1986,'El Seybo [El Seibo]','08',1062,1), + (1987,'Espaillat','09',1062,1), + (1988,'Hato Mayor','30',1062,1), + (1989,'Independencia','10',1062,1), + (1990,'La Altagracia','11',1062,1), + (1991,'La Estrelleta [Elias Pina]','07',1062,1), + (1992,'La Romana','12',1062,1), + (1993,'La Vega','13',1062,1), + (1994,'Maroia Trinidad Sánchez','14',1062,1), + (1995,'Monseñor Nouel','28',1062,1), + (1996,'Monte Cristi','15',1062,1), + (1997,'Monte Plata','29',1062,1), + (1998,'Pedernales','16',1062,1), + (1999,'Peravia','17',1062,1), + (2000,'Puerto Plata','18',1062,1), + (2001,'Salcedo','19',1062,1), + (2002,'Samaná','20',1062,1), + (2003,'San Cristóbal','21',1062,1), + (2004,'San Pedro de Macorís','23',1062,1), + (2005,'Sánchez Ramírez','24',1062,1), + (2006,'Santiago','25',1062,1), + (2007,'Santiago Rodríguez','26',1062,1), + (2008,'Valverde','27',1062,1), + (2009,'Adrar','01',1003,1), + (2010,'Ain Defla','44',1003,1), + (2011,'Ain Tmouchent','46',1003,1), + (2012,'Alger','16',1003,1), + (2013,'Annaba','23',1003,1), + (2014,'Batna','05',1003,1), + (2015,'Bechar','08',1003,1), + (2016,'Bejaia','06',1003,1), + (2017,'Biskra','07',1003,1), + (2018,'Blida','09',1003,1), + (2019,'Bordj Bou Arreridj','34',1003,1), + (2020,'Bouira','10',1003,1), + (2021,'Boumerdes','35',1003,1), + (2022,'Chlef','02',1003,1), + (2023,'Constantine','25',1003,1), + (2024,'Djelfa','17',1003,1), + (2025,'El Bayadh','32',1003,1), + (2026,'El Oued','39',1003,1), + (2027,'El Tarf','36',1003,1), + (2028,'Ghardaia','47',1003,1), + (2029,'Guelma','24',1003,1), + (2030,'Illizi','33',1003,1), + (2031,'Jijel','18',1003,1), + (2032,'Khenchela','40',1003,1), + (2033,'Laghouat','03',1003,1), + (2034,'Mascara','29',1003,1), + (2035,'Medea','26',1003,1), + (2036,'Mila','43',1003,1), + (2037,'Mostaganem','27',1003,1), + (2038,'Msila','28',1003,1), + (2039,'Naama','45',1003,1), + (2040,'Oran','31',1003,1), + (2041,'Ouargla','30',1003,1), + (2042,'Oum el Bouaghi','04',1003,1), + (2043,'Relizane','48',1003,1), + (2044,'Saida','20',1003,1), + (2045,'Setif','19',1003,1), + (2046,'Sidi Bel Abbes','22',1003,1), + (2047,'Skikda','21',1003,1), + (2048,'Souk Ahras','41',1003,1), + (2049,'Tamanghasset','11',1003,1), + (2050,'Tebessa','12',1003,1), + (2051,'Tiaret','14',1003,1), + (2052,'Tindouf','37',1003,1), + (2053,'Tipaza','42',1003,1), + (2054,'Tissemsilt','38',1003,1), + (2055,'Tizi Ouzou','15',1003,1), + (2056,'Tlemcen','13',1003,1), + (2057,'Azuay','A',1064,1), + (2058,'Bolivar','B',1064,1), + (2059,'Canar','F',1064,1), + (2060,'Carchi','C',1064,1), + (2061,'Cotopaxi','X',1064,1), + (2062,'Chimborazo','H',1064,1), + (2063,'El Oro','O',1064,1), + (2064,'Esmeraldas','E',1064,1), + (2065,'Galapagos','W',1064,1), + (2066,'Guayas','G',1064,1), + (2067,'Imbabura','I',1064,1), + (2068,'Loja','L',1064,1), + (2069,'Los Rios','R',1064,1), + (2070,'Manabi','M',1064,1), + (2071,'Morona-Santiago','S',1064,1), + (2072,'Napo','N',1064,1), + (2073,'Orellana','D',1064,1), + (2074,'Pastaza','Y',1064,1), + (2075,'Pichincha','P',1064,1), + (2076,'Sucumbios','U',1064,1), + (2077,'Tungurahua','T',1064,1), + (2078,'Zamora-Chinchipe','Z',1064,1), + (2079,'Harjumaa','37',1069,1), + (2080,'Hiiumaa','39',1069,1), + (2081,'Ida-Virumaa','44',1069,1), + (2082,'Jõgevamaa','49',1069,1), + (2083,'Järvamaa','51',1069,1), + (2084,'Läänemaa','57',1069,1), + (2085,'Lääne-Virumaa','59',1069,1), + (2086,'Põlvamaa','65',1069,1), + (2087,'Pärnumaa','67',1069,1), + (2088,'Raplamaa','70',1069,1), + (2089,'Saaremaa','74',1069,1), + (2090,'Tartumaa','7B',1069,1), + (2091,'Valgamaa','82',1069,1), + (2092,'Viljandimaa','84',1069,1), + (2093,'Võrumaa','86',1069,1), + (2094,'Ad Daqahllyah','DK',1065,1), + (2095,'Al Bahr al Ahmar','BA',1065,1), + (2096,'Al Buhayrah','BH',1065,1), + (2097,'Al Fayym','FYM',1065,1), + (2098,'Al Gharbiyah','GH',1065,1), + (2099,'Al Iskandarlyah','ALX',1065,1), + (2100,'Al Isma illyah','IS',1065,1), + (2101,'Al Jizah','GZ',1065,1), + (2102,'Al Minuflyah','MNF',1065,1), + (2103,'Al Minya','MN',1065,1), + (2104,'Al Qahirah','C',1065,1), + (2105,'Al Qalyublyah','KB',1065,1), + (2106,'Al Wadi al Jadid','WAD',1065,1), + (2107,'Ash Sharqiyah','SHR',1065,1), + (2108,'As Suways','SUZ',1065,1), + (2109,'Aswan','ASN',1065,1), + (2110,'Asyut','AST',1065,1), + (2111,'Bani Suwayf','BNS',1065,1), + (2112,'Bur Sa\'id','PTS',1065,1), + (2113,'Dumyat','DT',1065,1), + (2114,'Janub Sina\'','JS',1065,1), + (2115,'Kafr ash Shaykh','KFS',1065,1), + (2116,'Matruh','MT',1065,1), + (2117,'Qina','KN',1065,1), + (2118,'Shamal Sina\'','SIN',1065,1), + (2119,'Suhaj','SHG',1065,1), + (2120,'Anseba','AN',1068,1), + (2121,'Debub','DU',1068,1), + (2122,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068,1), + (2123,'Gash-Barka','GB',1068,1), + (2124,'Maakel [Maekel]','MA',1068,1), + (2125,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068,1), + (2126,'Álava','VI',1198,1), + (2127,'Albacete','AB',1198,1), + (2128,'Alicante','A',1198,1), + (2129,'Almería','AL',1198,1), + (2130,'Asturias','O',1198,1), + (2131,'Ávila','AV',1198,1), + (2132,'Badajoz','BA',1198,1), + (2133,'Baleares','PM',1198,1), + (2134,'Barcelona','B',1198,1), + (2135,'Burgos','BU',1198,1), + (2136,'Cáceres','CC',1198,1), + (2137,'Cádiz','CA',1198,1), + (2138,'Cantabria','S',1198,1), + (2139,'Castellón','CS',1198,1), + (2140,'Ciudad Real','CR',1198,1), + (2141,'Cuenca','CU',1198,1), + (2142,'Girona [Gerona]','GE',1198,1), + (2143,'Granada','GR',1198,1), + (2144,'Guadalajara','GU',1198,1), + (2145,'Guipúzcoa','SS',1198,1), + (2146,'Huelva','H',1198,1), + (2147,'Huesca','HU',1198,1), + (2148,'Jaén','J',1198,1), + (2149,'La Coruña','C',1198,1), + (2150,'La Rioja','LO',1198,1), + (2151,'Las Palmas','GC',1198,1), + (2152,'León','LE',1198,1), + (2153,'Lleida [Lérida]','L',1198,1), + (2154,'Lugo','LU',1198,1), + (2155,'Madrid','M',1198,1), + (2156,'Málaga','MA',1198,1), + (2157,'Murcia','MU',1198,1), + (2158,'Navarra','NA',1198,1), + (2159,'Ourense','OR',1198,1), + (2160,'Palencia','P',1198,1), + (2161,'Pontevedra','PO',1198,1), + (2162,'Salamanca','SA',1198,1), + (2163,'Santa Cruz de Tenerife','TF',1198,1), + (2164,'Segovia','SG',1198,1), + (2165,'Sevilla','SE',1198,1), + (2166,'Soria','SO',1198,1), + (2167,'Tarragona','T',1198,1), + (2168,'Teruel','TE',1198,1), + (2169,'Valencia','V',1198,1), + (2170,'Valladolid','VA',1198,1), + (2171,'Vizcaya','BI',1198,1), + (2172,'Zamora','ZA',1198,1), + (2173,'Zaragoza','Z',1198,1), + (2174,'Ceuta','CE',1198,1), + (2175,'Melilla','ML',1198,1), + (2176,'Toledo','TO',1198,1), + (2177,'Córdoba','CO',1198,1), + (2178,'Addis Ababa','AA',1070,1), + (2179,'Dire Dawa','DD',1070,1), + (2180,'Afar','AF',1070,1), + (2181,'Amara','AM',1070,1), + (2182,'Benshangul-Gumaz','BE',1070,1), + (2183,'Gambela Peoples','GA',1070,1), + (2184,'Harari People','HA',1070,1), + (2185,'Oromia','OR',1070,1), + (2186,'Somali','SO',1070,1), + (2187,'Southern Nations, Nationalities and Peoples','SN',1070,1), + (2188,'Tigrai','TI',1070,1), + (2189,'Eastern','E',1074,1), + (2190,'Northern','N',1074,1), + (2191,'Western','W',1074,1), + (2192,'Rotuma','R',1074,1), + (2193,'Central','C',1074,1), + (2194,'Chuuk','TRK',1141,1), + (2195,'Kosrae','KSA',1141,1), + (2196,'Pohnpei','PNI',1141,1), + (2197,'Yap','YAP',1141,1), + (2198,'Ain','01',1076,1), + (2199,'Aisne','02',1076,1), + (2200,'Allier','03',1076,1), + (2201,'Alpes-de-Haute-Provence','04',1076,1), + (2202,'Alpes-Maritimes','06',1076,1), + (2203,'Ardèche','07',1076,1), + (2204,'Ardennes','08',1076,1), + (2205,'Ariège','09',1076,1), + (2206,'Aube','10',1076,1), + (2207,'Aude','11',1076,1), + (2208,'Aveyron','12',1076,1), + (2209,'Bas-Rhin','67',1076,1), + (2210,'Bouches-du-Rhône','13',1076,1), + (2211,'Calvados','14',1076,1), + (2212,'Cantal','15',1076,1), + (2213,'Charente','16',1076,1), + (2214,'Charente-Maritime','17',1076,1), + (2215,'Cher','18',1076,1), + (2216,'Corrèze','19',1076,1), + (2217,'Corse-du-Sud','20A',1076,1), + (2218,'Côte-d\'Or','21',1076,1), + (2219,'Côtes-d\'Armor','22',1076,1), + (2220,'Creuse','23',1076,1), + (2221,'Deux-Sèvres','79',1076,1), + (2222,'Dordogne','24',1076,1), + (2223,'Doubs','25',1076,1), + (2224,'Drôme','26',1076,1), + (2225,'Essonne','91',1076,1), + (2226,'Eure','27',1076,1), + (2227,'Eure-et-Loir','28',1076,1), + (2228,'Finistère','29',1076,1), + (2229,'Gard','30',1076,1), + (2230,'Gers','32',1076,1), + (2231,'Gironde','33',1076,1), + (2232,'Haut-Rhin','68',1076,1), + (2233,'Haute-Corse','20B',1076,1), + (2234,'Haute-Garonne','31',1076,1), + (2235,'Haute-Loire','43',1076,1), + (2236,'Haute-Saône','70',1076,1), + (2237,'Haute-Savoie','74',1076,1), + (2238,'Haute-Vienne','87',1076,1), + (2239,'Hautes-Alpes','05',1076,1), + (2240,'Hautes-Pyrénées','65',1076,1), + (2241,'Hauts-de-Seine','92',1076,1), + (2242,'Hérault','34',1076,1), + (2243,'Indre','36',1076,1), + (2244,'Ille-et-Vilaine','35',1076,1), + (2245,'Indre-et-Loire','37',1076,1), + (2246,'Isère','38',1076,1), + (2247,'Landes','40',1076,1), + (2248,'Loir-et-Cher','41',1076,1), + (2249,'Loire','42',1076,1), + (2250,'Loire-Atlantique','44',1076,1), + (2251,'Loiret','45',1076,1), + (2252,'Lot','46',1076,1), + (2253,'Lot-et-Garonne','47',1076,1), + (2254,'Lozère','48',1076,1), + (2255,'Maine-et-Loire','49',1076,1), + (2256,'Manche','50',1076,1), + (2257,'Marne','51',1076,1), + (2258,'Mayenne','53',1076,1), + (2259,'Meurthe-et-Moselle','54',1076,1), + (2260,'Meuse','55',1076,1), + (2261,'Morbihan','56',1076,1), + (2262,'Moselle','57',1076,1), + (2263,'Nièvre','58',1076,1), + (2264,'Nord','59',1076,1), + (2265,'Oise','60',1076,1), + (2266,'Orne','61',1076,1), + (2267,'Paris','75',1076,1), + (2268,'Pas-de-Calais','62',1076,1), + (2269,'Puy-de-Dôme','63',1076,1), + (2270,'Pyrénées-Atlantiques','64',1076,1), + (2271,'Pyrénées-Orientales','66',1076,1), + (2272,'Rhône','69',1076,1), + (2273,'Saône-et-Loire','71',1076,1), + (2274,'Sarthe','72',1076,1), + (2275,'Savoie','73',1076,1), + (2276,'Seine-et-Marne','77',1076,1), + (2277,'Seine-Maritime','76',1076,1), + (2278,'Seine-Saint-Denis','93',1076,1), + (2279,'Somme','80',1076,1), + (2280,'Tarn','81',1076,1), + (2281,'Tarn-et-Garonne','82',1076,1), + (2282,'Val d\'Oise','95',1076,1), + (2283,'Territoire de Belfort','90',1076,1), + (2284,'Val-de-Marne','94',1076,1), + (2285,'Var','83',1076,1), + (2286,'Vaucluse','84',1076,1), + (2287,'Vendée','85',1076,1), + (2288,'Vienne','86',1076,1), + (2289,'Vosges','88',1076,1), + (2290,'Yonne','89',1076,1), + (2291,'Yvelines','78',1076,1), + (2292,'Guadeloupe','GP',1076,1), + (2293,'Martinique','MQ',1076,1), + (2294,'Guyane','GF',1076,1), + (2295,'La Réunion','RE',1076,1), + (2296,'Mayotte','YT',1076,1), + (2297,'Wallis-et-Futuna','WF',1076,1), + (2298,'Nouvelle-Calédonie','NC',1076,1), + (2299,'Haute-Marne','52',1076,1), + (2300,'Jura','39',1076,1), + (2301,'Aberdeen City','ABE',1226,1), + (2302,'Aberdeenshire','ABD',1226,1), + (2303,'Angus','ANS',1226,1), + (2304,'Co Antrim','ANT',1226,1), + (2305,'Argyll and Bute','AGB',1226,1), + (2306,'Co Armagh','ARM',1226,1), + (2307,'Bedfordshire','BDF',1226,1), + (2308,'Blaenau Gwent','BGW',1226,1), + (2309,'Bristol, City of','BST',1226,1), + (2310,'Buckinghamshire','BKM',1226,1), + (2311,'Cambridgeshire','CAM',1226,1), + (2312,'Cheshire','CHS',1226,1), + (2313,'Clackmannanshire','CLK',1226,1), + (2314,'Cornwall','CON',1226,1), + (2315,'Cumbria','CMA',1226,1), + (2316,'Derbyshire','DBY',1226,1), + (2317,'Co Londonderry','DRY',1226,1), + (2318,'Devon','DEV',1226,1), + (2319,'Dorset','DOR',1226,1), + (2320,'Co Down','DOW',1226,1), + (2321,'Dumfries and Galloway','DGY',1226,1), + (2322,'Dundee City','DND',1226,1), + (2323,'County Durham','DUR',1226,1), + (2324,'East Ayrshire','EAY',1226,1), + (2325,'East Dunbartonshire','EDU',1226,1), + (2326,'East Lothian','ELN',1226,1), + (2327,'East Renfrewshire','ERW',1226,1), + (2328,'East Riding of Yorkshire','ERY',1226,1), + (2329,'East Sussex','ESX',1226,1), + (2330,'Edinburgh, City of','EDH',1226,1), + (2331,'Na h-Eileanan Siar','ELS',1226,1), + (2332,'Essex','ESS',1226,1), + (2333,'Falkirk','FAL',1226,1), + (2334,'Co Fermanagh','FER',1226,1), + (2335,'Fife','FIF',1226,1), + (2336,'Glasgow City','GLG',1226,1), + (2337,'Gloucestershire','GLS',1226,1), + (2338,'Gwynedd','GWN',1226,1), + (2339,'Hampshire','HAM',1226,1), + (2340,'Herefordshire','HEF',1226,1), + (2341,'Hertfordshire','HRT',1226,1), + (2342,'Highland','HED',1226,1), + (2343,'Inverclyde','IVC',1226,1), + (2344,'Isle of Wight','IOW',1226,1), + (2345,'Kent','KEN',1226,1), + (2346,'Lancashire','LAN',1226,1), + (2347,'Leicestershire','LEC',1226,1), + (2348,'Lincolnshire','LIN',1226,1), + (2349,'Midlothian','MLN',1226,1), + (2350,'Moray','MRY',1226,1), + (2351,'Norfolk','NFK',1226,1), + (2352,'North Ayrshire','NAY',1226,1), + (2353,'North Lanarkshire','NLK',1226,1), + (2354,'North Yorkshire','NYK',1226,1), + (2355,'Northamptonshire','NTH',1226,1), + (2356,'Northumberland','NBL',1226,1), + (2357,'Nottinghamshire','NTT',1226,1), + (2358,'Oldham','OLD',1226,1), + (2359,'Omagh','OMH',1226,1), + (2360,'Orkney Islands','ORR',1226,1), + (2361,'Oxfordshire','OXF',1226,1), + (2362,'Perth and Kinross','PKN',1226,1), + (2363,'Powys','POW',1226,1), + (2364,'Renfrewshire','RFW',1226,1), + (2365,'Rutland','RUT',1226,1), + (2366,'Scottish Borders','SCB',1226,1), + (2367,'Shetland Islands','ZET',1226,1), + (2368,'Shropshire','SHR',1226,1), + (2369,'Somerset','SOM',1226,1), + (2370,'South Ayrshire','SAY',1226,1), + (2371,'South Gloucestershire','SGC',1226,1), + (2372,'South Lanarkshire','SLK',1226,1), + (2373,'Staffordshire','STS',1226,1), + (2374,'Stirling','STG',1226,1), + (2375,'Suffolk','SFK',1226,1), + (2376,'Surrey','SRY',1226,1), + (2377,'Vale of Glamorgan, The','VGL',1226,1), + (2378,'Warwickshire','WAR',1226,1), + (2379,'West Dunbartonshire','WDU',1226,1), + (2380,'West Lothian','WLN',1226,1), + (2381,'West Sussex','WSX',1226,1), + (2382,'Wiltshire','WIL',1226,1), + (2383,'Worcestershire','WOR',1226,1), + (2384,'Antrim and Newtownabbey','ANN',1226,1), + (2385,'Ards and North Down','AND',1226,1), + (2386,'Armagh City, Banbridge and Craigavon','ABC',1226,1), + (2387,'Belfast','BFS',1226,1), + (2388,'Causeway Coast and Glens','CCG',1226,1), + (2389,'Derry City and Strabane','DRS',1226,1), + (2390,'Fermanagh and Omagh','FMO',1226,1), + (2391,'Lisburn and Castlereagh','LBC',1226,1), + (2392,'Mid and East Antrim','MEA',1226,1), + (2393,'Mid Ulster','MUL',1226,1), + (2394,'Newry, Mourne and Down','NMD',1226,1), + (2395,'Bridgend','BGE',1226,1), + (2396,'Caerphilly','CAY',1226,1), + (2397,'Cardiff','CRF',1226,1), + (2398,'Carmarthenshire','CMN',1226,1), + (2399,'Ceredigion','CGN',1226,1), + (2400,'Conwy','CWY',1226,1), + (2401,'Denbighshire','DEN',1226,1), + (2402,'Flintshire','FLN',1226,1), + (2403,'Isle of Anglesey','AGY',1226,1), + (2404,'Merthyr Tydfil','MTY',1226,1), + (2405,'Neath Port Talbot','NTL',1226,1), + (2406,'Newport','NWP',1226,1), + (2407,'Pembrokeshire','PEM',1226,1), + (2408,'Rhondda, Cynon, Taff','RCT',1226,1), + (2409,'Swansea','SWA',1226,1), + (2410,'Torfaen','TOF',1226,1), + (2411,'Wrexham','WRX',1226,1), + (2412,'Monmouthshire','MON',1226,1), + (2413,'Tyne and Wear','TWR',1226,1), + (2414,'Greater Manchester','GTM',1226,1), + (2415,'Co Tyrone','TYR',1226,1), + (2416,'West Yorkshire','WYK',1226,1), + (2417,'South Yorkshire','SYK',1226,1), + (2418,'Merseyside','MSY',1226,1), + (2419,'Berkshire','BRK',1226,1), + (2420,'West Midlands','WMD',1226,1), + (2421,'West Glamorgan','WGM',1226,1), + (2422,'London','LON',1226,1), + (2423,'Clwyd','CWD',1226,1), + (2424,'South Glamorgan','SGM',1226,1), + (2425,'Ashanti','AH',1083,1), + (2426,'Brong-Ahafo','BA',1083,1), + (2427,'Greater Accra','AA',1083,1), + (2428,'Upper East','UE',1083,1), + (2429,'Upper West','UW',1083,1), + (2430,'Volta','TV',1083,1), + (2431,'Central','CP',1083,1), + (2432,'Eastern','EP',1083,1), + (2433,'Northern','NP',1083,1), + (2434,'Western','WP',1083,1), + (2435,'Banjul','B',1213,1), + (2436,'Lower River','L',1213,1), + (2437,'MacCarthy Island','M',1213,1), + (2438,'North Bank','N',1213,1), + (2439,'Upper River','U',1213,1), + (2440,'Beyla','BE',1091,1), + (2441,'Boffa','BF',1091,1), + (2442,'Boke','BK',1091,1), + (2443,'Coyah','CO',1091,1), + (2444,'Dabola','DB',1091,1), + (2445,'Dalaba','DL',1091,1), + (2446,'Dinguiraye','DI',1091,1), + (2447,'Dubreka','DU',1091,1), + (2448,'Faranah','FA',1091,1), + (2449,'Forecariah','FO',1091,1), + (2450,'Fria','FR',1091,1), + (2451,'Gaoual','GA',1091,1), + (2452,'Guekedou','GU',1091,1), + (2453,'Kankan','KA',1091,1), + (2454,'Kerouane','KE',1091,1), + (2455,'Kindia','KD',1091,1), + (2456,'Kissidougou','KS',1091,1), + (2457,'Koubia','KB',1091,1), + (2458,'Koundara','KN',1091,1), + (2459,'Kouroussa','KO',1091,1), + (2460,'Labe','LA',1091,1), + (2461,'Lelouma','LE',1091,1), + (2462,'Lola','LO',1091,1), + (2463,'Macenta','MC',1091,1), + (2464,'Mali','ML',1091,1), + (2465,'Mamou','MM',1091,1), + (2466,'Mandiana','MD',1091,1), + (2467,'Nzerekore','NZ',1091,1), + (2468,'Pita','PI',1091,1), + (2469,'Siguiri','SI',1091,1), + (2470,'Telimele','TE',1091,1), + (2471,'Tougue','TO',1091,1), + (2472,'Yomou','YO',1091,1), + (2473,'Region Continental','C',1067,1), + (2474,'Region Insular','I',1067,1), + (2475,'Annobon','AN',1067,1), + (2476,'Bioko Norte','BN',1067,1), + (2477,'Bioko Sur','BS',1067,1), + (2478,'Centro Sur','CS',1067,1), + (2479,'Kie-Ntem','KN',1067,1), + (2480,'Litoral','LI',1067,1), + (2481,'Wele-Nzas','WN',1067,1), + (2482,'Achaïa','13',1085,1), + (2483,'Aitolia-Akarnania','01',1085,1), + (2484,'Argolis','11',1085,1), + (2485,'Arkadia','12',1085,1), + (2486,'Arta','31',1085,1), + (2487,'Attiki','A1',1085,1), + (2488,'Chalkidiki','64',1085,1), + (2489,'Chania','94',1085,1), + (2490,'Chios','85',1085,1), + (2491,'Dodekanisos','81',1085,1), + (2492,'Drama','52',1085,1), + (2493,'Evros','71',1085,1), + (2494,'Evrytania','05',1085,1), + (2495,'Evvoia','04',1085,1), + (2496,'Florina','63',1085,1), + (2497,'Fokis','07',1085,1), + (2498,'Fthiotis','06',1085,1), + (2499,'Grevena','51',1085,1), + (2500,'Ileia','14',1085,1), + (2501,'Imathia','53',1085,1), + (2502,'Ioannina','33',1085,1), + (2503,'Irakleion','91',1085,1), + (2504,'Karditsa','41',1085,1), + (2505,'Kastoria','56',1085,1), + (2506,'Kavalla','55',1085,1), + (2507,'Kefallinia','23',1085,1), + (2508,'Kerkyra','22',1085,1), + (2509,'Kilkis','57',1085,1), + (2510,'Korinthia','15',1085,1), + (2511,'Kozani','58',1085,1), + (2512,'Kyklades','82',1085,1), + (2513,'Lakonia','16',1085,1), + (2514,'Larisa','42',1085,1), + (2515,'Lasithion','92',1085,1), + (2516,'Lefkas','24',1085,1), + (2517,'Lesvos','83',1085,1), + (2518,'Magnisia','43',1085,1), + (2519,'Messinia','17',1085,1), + (2520,'Pella','59',1085,1), + (2521,'Preveza','34',1085,1), + (2522,'Rethymnon','93',1085,1), + (2523,'Rodopi','73',1085,1), + (2524,'Samos','84',1085,1), + (2525,'Serrai','62',1085,1), + (2526,'Thesprotia','32',1085,1), + (2527,'Thessaloniki','54',1085,1), + (2528,'Trikala','44',1085,1), + (2529,'Voiotia','03',1085,1), + (2530,'Xanthi','72',1085,1), + (2531,'Zakynthos','21',1085,1), + (2532,'Agio Oros','69',1085,1), + (2533,'Pieria','61',1085,1), + (2534,'Alta Verapaz','AV',1090,1), + (2535,'Baja Verapaz','BV',1090,1), + (2536,'Chimaltenango','CM',1090,1), + (2537,'Chiquimula','CQ',1090,1), + (2538,'El Progreso','PR',1090,1), + (2539,'Escuintla','ES',1090,1), + (2540,'Guatemala','GU',1090,1), + (2541,'Huehuetenango','HU',1090,1), + (2542,'Izabal','IZ',1090,1), + (2543,'Jalapa','JA',1090,1), + (2544,'Jutiapa','JU',1090,1), + (2545,'Peten','PE',1090,1), + (2546,'Quetzaltenango','QZ',1090,1), + (2547,'Quiche','QC',1090,1), + (2548,'Retalhuleu','RE',1090,1), + (2549,'Sacatepequez','SA',1090,1), + (2550,'San Marcos','SM',1090,1), + (2551,'Santa Rosa','SR',1090,1), + (2552,'Sololá','SO',1090,1), + (2553,'Suchitepequez','SU',1090,1), + (2554,'Totonicapan','TO',1090,1), + (2555,'Zacapa','ZA',1090,1), + (2556,'Bissau','BS',1092,1), + (2557,'Bafata','BA',1092,1), + (2558,'Biombo','BM',1092,1), + (2559,'Bolama','BL',1092,1), + (2560,'Cacheu','CA',1092,1), + (2561,'Gabu','GA',1092,1), + (2562,'Oio','OI',1092,1), + (2563,'Quloara','QU',1092,1), + (2564,'Tombali S','TO',1092,1), + (2565,'Barima-Waini','BA',1093,1), + (2566,'Cuyuni-Mazaruni','CU',1093,1), + (2567,'Demerara-Mahaica','DE',1093,1), + (2568,'East Berbice-Corentyne','EB',1093,1), + (2569,'Essequibo Islands-West Demerara','ES',1093,1), + (2570,'Mahaica-Berbice','MA',1093,1), + (2571,'Pomeroon-Supenaam','PM',1093,1), + (2572,'Potaro-Siparuni','PT',1093,1), + (2573,'Upper Demerara-Berbice','UD',1093,1), + (2574,'Upper Takutu-Upper Essequibo','UT',1093,1), + (2575,'Atlantida','AT',1097,1), + (2576,'Colon','CL',1097,1), + (2577,'Comayagua','CM',1097,1), + (2578,'Copan','CP',1097,1), + (2579,'Cortes','CR',1097,1), + (2580,'Choluteca','CH',1097,1), + (2581,'El Paraiso','EP',1097,1), + (2582,'Francisco Morazan','FM',1097,1), + (2583,'Gracias a Dios','GD',1097,1), + (2584,'Intibuca','IN',1097,1), + (2585,'Islas de la Bahia','IB',1097,1), + (2586,'Lempira','LE',1097,1), + (2587,'Ocotepeque','OC',1097,1), + (2588,'Olancho','OL',1097,1), + (2589,'Santa Barbara','SB',1097,1), + (2590,'Valle','VA',1097,1), + (2591,'Yoro','YO',1097,1), + (2592,'La Paz','LP',1097,1), + (2593,'Bjelovarsko-bilogorska zupanija','07',1055,1), + (2594,'Brodsko-posavska zupanija','12',1055,1), + (2595,'Dubrovacko-neretvanska zupanija','19',1055,1), + (2596,'Istarska zupanija','18',1055,1), + (2597,'Karlovacka zupanija','04',1055,1), + (2598,'Koprivnickco-krizevacka zupanija','06',1055,1), + (2599,'Krapinako-zagorska zupanija','02',1055,1), + (2600,'Licko-senjska zupanija','09',1055,1), + (2601,'Medimurska zupanija','20',1055,1), + (2602,'Osjecko-baranjska zupanija','14',1055,1), + (2603,'Pozesko-slavonska zupanija','11',1055,1), + (2604,'Primorsko-goranska zupanija','08',1055,1), + (2605,'Sisacko-moelavacka Iupanija','03',1055,1), + (2606,'Splitako-dalmatinska zupanija','17',1055,1), + (2607,'Sibenako-kninska zupanija','15',1055,1), + (2608,'Varaidinska zupanija','05',1055,1), + (2609,'VirovitiEko-podravska zupanija','10',1055,1), + (2610,'VuRovarako-srijemska zupanija','16',1055,1), + (2611,'Zadaraka','13',1055,1), + (2612,'Zagrebacka zupanija','01',1055,1), + (2613,'Grande-Anse','GA',1094,1), + (2614,'Nord-Est','NE',1094,1), + (2615,'Nord-Ouest','NO',1094,1), + (2616,'Ouest','OU',1094,1), + (2617,'Sud','SD',1094,1), + (2618,'Sud-Est','SE',1094,1), + (2619,'Artibonite','AR',1094,1), + (2620,'Centre','CE',1094,1), + (2621,'Nippes','NI',1094,1), + (2622,'Nord','ND',1094,1), + (2623,'Budapest','BU',1099,1), + (2624,'Bács-Kiskun','BK',1099,1), + (2625,'Baranya','BA',1099,1), + (2626,'Békés','BE',1099,1), + (2627,'Borsod-Abaúj-Zemplén','BZ',1099,1), + (2628,'Csongrád','CS',1099,1), + (2629,'Fejér','FE',1099,1), + (2630,'Győr-Moson-Sopron','GS',1099,1), + (2631,'Hajdu-Bihar','HB',1099,1), + (2632,'Heves','HE',1099,1), + (2633,'Jász-Nagykun-Szolnok','JN',1099,1), + (2634,'Komárom-Esztergom','KE',1099,1), + (2635,'Nográd','NO',1099,1), + (2636,'Pest','PE',1099,1), + (2637,'Somogy','SO',1099,1), + (2638,'Szabolcs-Szatmár-Bereg','SZ',1099,1), + (2639,'Tolna','TO',1099,1), + (2640,'Vas','VA',1099,1), + (2641,'Veszprém','VE',1099,1), + (2642,'Zala','ZA',1099,1), + (2643,'Békéscsaba','BC',1099,1), + (2644,'Debrecen','DE',1099,1), + (2645,'Dunaújváros','DU',1099,1), + (2646,'Eger','EG',1099,1), + (2647,'Győr','GY',1099,1), + (2648,'Hódmezővásárhely','HV',1099,1), + (2649,'Kaposvár','KV',1099,1), + (2650,'Kecskemét','KM',1099,1), + (2651,'Miskolc','MI',1099,1), + (2652,'Nagykanizsa','NK',1099,1), + (2653,'Nyiregyháza','NY',1099,1), + (2654,'Pécs','PS',1099,1), + (2655,'Salgótarján','ST',1099,1), + (2656,'Sopron','SN',1099,1), + (2657,'Szeged','SD',1099,1), + (2658,'Székesfehérvár','SF',1099,1), + (2659,'Szekszárd','SS',1099,1), + (2660,'Szolnok','SK',1099,1), + (2661,'Szombathely','SH',1099,1), + (2662,'Tatabánya','TB',1099,1), + (2663,'Zalaegerszeg','ZE',1099,1), + (2664,'Bali','BA',1102,1), + (2665,'Kepulauan Bangka Belitung','BB',1102,1), + (2666,'Banten','BT',1102,1), + (2667,'Bengkulu','BE',1102,1), + (2668,'Gorontalo','GO',1102,1), + (2669,'Papua Barat','PB',1102,1), + (2670,'Jambi','JA',1102,1), + (2671,'Jawa Barat','JB',1102,1), + (2672,'Jawa Tengah','JT',1102,1), + (2673,'Jawa Timur','JI',1102,1), + (2674,'Kalimantan Barat','KB',1102,1), + (2675,'Kalimantan Timur','KI',1102,1), + (2676,'Kalimantan Selatan','KS',1102,1), + (2677,'Kepulauan Riau','KR',1102,1), + (2678,'Lampung','LA',1102,1), + (2679,'Maluku','MA',1102,1), + (2680,'Maluku Utara','MU',1102,1), + (2681,'Nusa Tenggara Barat','NB',1102,1), + (2682,'Nusa Tenggara Timur','NT',1102,1), + (2683,'Papua','PA',1102,1), + (2684,'Riau','RI',1102,1), + (2685,'Sulawesi Selatan','SN',1102,1), + (2686,'Sulawesi Tengah','ST',1102,1), + (2687,'Sulawesi Tenggara','SG',1102,1), + (2688,'Sulawesi Utara','SA',1102,1), + (2689,'Sumatra Barat','SB',1102,1), + (2690,'Sumatra Selatan','SS',1102,1), + (2691,'Sumatera Utara','SU',1102,1), + (2692,'DKI Jakarta','JK',1102,1), + (2693,'Aceh','AC',1102,1), + (2694,'DI Yogyakarta','YO',1102,1), + (2695,'Kalimantan Tengah','KT',1102,1), + (2696,'Sulawesi Barat','SR',1102,1), + (2697,'Kalimantan Utara','KU',1102,1), + (2698,'Cork','C',1105,1), + (2699,'Clare','CE',1105,1), + (2700,'Cavan','CN',1105,1), + (2701,'Carlow','CW',1105,1), + (2702,'Dublin','D',1105,1), + (2703,'Donegal','DL',1105,1), + (2704,'Galway','G',1105,1), + (2705,'Kildare','KE',1105,1), + (2706,'Kilkenny','KK',1105,1), + (2707,'Kerry','KY',1105,1), + (2708,'Longford','LD',1105,1), + (2709,'Louth','LH',1105,1), + (2710,'Limerick','LK',1105,1), + (2711,'Leitrim','LM',1105,1), + (2712,'Laois','LS',1105,1), + (2713,'Meath','MH',1105,1), + (2714,'Monaghan','MN',1105,1), + (2715,'Mayo','MO',1105,1), + (2716,'Offaly','OY',1105,1), + (2717,'Roscommon','RN',1105,1), + (2718,'Sligo','SO',1105,1), + (2719,'Tipperary','TA',1105,1), + (2720,'Waterford','WD',1105,1), + (2721,'Westmeath','WH',1105,1), + (2722,'Wicklow','WW',1105,1), + (2723,'Wexford','WX',1105,1), + (2724,'HaDarom','D',1106,1), + (2725,'HaMerkaz','M',1106,1), + (2726,'HaZafon','Z',1106,1), + (2727,'Haifa','HA',1106,1), + (2728,'Tel-Aviv','TA',1106,1), + (2729,'Jerusalem','JM',1106,1), + (2730,'Al Anbar','AN',1104,1), + (2731,'Al Ba,rah','BA',1104,1), + (2732,'Al Muthanna','MU',1104,1), + (2733,'Al Qadisiyah','QA',1104,1), + (2734,'An Najef','NA',1104,1), + (2735,'Arbil','AR',1104,1), + (2736,'As Sulaymaniyah','SW',1104,1), + (2737,'At Ta\'mim','TS',1104,1), + (2738,'Babil','BB',1104,1), + (2739,'Baghdad','BG',1104,1), + (2740,'Dahuk','DA',1104,1), + (2741,'Dhi Qar','DQ',1104,1), + (2742,'Diyala','DI',1104,1), + (2743,'Karbala\'','KA',1104,1), + (2744,'Maysan','MA',1104,1), + (2745,'Ninawa','NI',1104,1), + (2746,'Salah ad Din','SD',1104,1), + (2747,'Wasit','WA',1104,1), + (2748,'Ardabil','03',1103,1), + (2749,'Azarbayjan-e Gharbi','02',1103,1), + (2750,'Azarbayjan-e Sharqi','01',1103,1), + (2751,'Bushehr','06',1103,1), + (2752,'Chahar Mahall va Bakhtiari','08',1103,1), + (2753,'Esfahan','04',1103,1), + (2754,'Fars','14',1103,1), + (2755,'Gilan','19',1103,1), + (2756,'Golestan','27',1103,1), + (2757,'Hamadan','24',1103,1), + (2758,'Hormozgan','23',1103,1), + (2759,'Iiam','05',1103,1), + (2760,'Kerman','15',1103,1), + (2761,'Kermanshah','17',1103,1), + (2762,'Khorasan','09',1103,1), + (2763,'Khuzestan','10',1103,1), + (2764,'Kohjiluyeh va Buyer Ahmad','18',1103,1), + (2765,'Kordestan','16',1103,1), + (2766,'Lorestan','20',1103,1), + (2767,'Markazi','22',1103,1), + (2768,'Mazandaran','21',1103,1), + (2769,'Qazvin','28',1103,1), + (2770,'Qom','26',1103,1), + (2771,'Semnan','12',1103,1), + (2772,'Sistan va Baluchestan','13',1103,1), + (2773,'Tehran','07',1103,1), + (2774,'Yazd','25',1103,1), + (2775,'Zanjan','11',1103,1), + (2776,'Austurland','7',1100,1), + (2777,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100,1), + (2778,'Norourland eystra','6',1100,1), + (2779,'Norourland vestra','5',1100,1), + (2780,'Reykjavik','0',1100,1), + (2781,'Suourland','8',1100,1), + (2782,'Suournes','2',1100,1), + (2783,'Vestfirolr','4',1100,1), + (2784,'Vesturland','3',1100,1), + (2785,'Agrigento','AG',1107,1), + (2786,'Alessandria','AL',1107,1), + (2787,'Ancona','AN',1107,1), + (2788,'Aosta','AO',1107,1), + (2789,'Arezzo','AR',1107,1), + (2790,'Ascoli Piceno','AP',1107,1), + (2791,'Asti','AT',1107,1), + (2792,'Avellino','AV',1107,1), + (2793,'Bari','BA',1107,1), + (2794,'Belluno','BL',1107,1), + (2795,'Benevento','BN',1107,1), + (2796,'Bergamo','BG',1107,1), + (2797,'Biella','BI',1107,1), + (2798,'Bologna','BO',1107,1), + (2799,'Bolzano','BZ',1107,1), + (2800,'Brescia','BS',1107,1), + (2801,'Brindisi','BR',1107,1), + (2802,'Cagliari','CA',1107,1), + (2803,'Caltanissetta','CL',1107,1), + (2804,'Campobasso','CB',1107,1), + (2805,'Caserta','CE',1107,1), + (2806,'Catania','CT',1107,1), + (2807,'Catanzaro','CZ',1107,1), + (2808,'Chieti','CH',1107,1), + (2809,'Como','CO',1107,1), + (2810,'Cosenza','CS',1107,1), + (2811,'Cremona','CR',1107,1), + (2812,'Crotone','KR',1107,1), + (2813,'Cuneo','CN',1107,1), + (2814,'Enna','EN',1107,1), + (2815,'Ferrara','FE',1107,1), + (2816,'Firenze','FI',1107,1), + (2817,'Foggia','FG',1107,1), + (2818,'Forlì-Cesena','FC',1107,1), + (2819,'Frosinone','FR',1107,1), + (2820,'Genova','GE',1107,1), + (2821,'Gorizia','GO',1107,1), + (2822,'Grosseto','GR',1107,1), + (2823,'Imperia','IM',1107,1), + (2824,'Isernia','IS',1107,1), + (2825,'L\'Aquila','AQ',1107,1), + (2826,'La Spezia','SP',1107,1), + (2827,'Latina','LT',1107,1), + (2828,'Lecce','LE',1107,1), + (2829,'Lecco','LC',1107,1), + (2830,'Livorno','LI',1107,1), + (2831,'Lodi','LO',1107,1), + (2832,'Lucca','LU',1107,1), + (2833,'Macerata','MC',1107,1), + (2834,'Mantova','MN',1107,1), + (2835,'Massa-Carrara','MS',1107,1), + (2836,'Matera','MT',1107,1), + (2837,'Messina','ME',1107,1), + (2838,'Milano','MI',1107,1), + (2839,'Modena','MO',1107,1), + (2840,'Napoli','NA',1107,1), + (2841,'Novara','NO',1107,1), + (2842,'Nuoro','NU',1107,1), + (2843,'Oristano','OR',1107,1), + (2844,'Padova','PD',1107,1), + (2845,'Palermo','PA',1107,1), + (2846,'Parma','PR',1107,1), + (2847,'Pavia','PV',1107,1), + (2848,'Perugia','PG',1107,1), + (2849,'Pesaro e Urbino','PU',1107,1), + (2850,'Pescara','PE',1107,1), + (2851,'Piacenza','PC',1107,1), + (2852,'Pisa','PI',1107,1), + (2853,'Pistoia','PT',1107,1), + (2854,'Pordenone','PN',1107,1), + (2855,'Potenza','PZ',1107,1), + (2856,'Prato','PO',1107,1), + (2857,'Ragusa','RG',1107,1), + (2858,'Ravenna','RA',1107,1), + (2859,'Reggio Calabria','RC',1107,1), + (2860,'Reggio Emilia','RE',1107,1), + (2861,'Rieti','RI',1107,1), + (2862,'Rimini','RN',1107,1), + (2863,'Roma','RM',1107,1), + (2864,'Rovigo','RO',1107,1), + (2865,'Salerno','SA',1107,1), + (2866,'Sassari','SS',1107,1), + (2867,'Savona','SV',1107,1), + (2868,'Siena','SI',1107,1), + (2869,'Siracusa','SR',1107,1), + (2870,'Sondrio','SO',1107,1), + (2871,'Taranto','TA',1107,1), + (2872,'Teramo','TE',1107,1), + (2873,'Terni','TR',1107,1), + (2874,'Torino','TO',1107,1), + (2875,'Trapani','TP',1107,1), + (2876,'Trento','TN',1107,1), + (2877,'Treviso','TV',1107,1), + (2878,'Trieste','TS',1107,1), + (2879,'Udine','UD',1107,1), + (2880,'Varese','VA',1107,1), + (2881,'Venezia','VE',1107,1), + (2882,'Verbano-Cusio-Ossola','VB',1107,1), + (2883,'Vercelli','VC',1107,1), + (2884,'Verona','VR',1107,1), + (2885,'Vibo Valentia','VV',1107,1), + (2886,'Vicenza','VI',1107,1), + (2887,'Viterbo','VT',1107,1), + (2888,'Barletta-Andria-Trani','BT',1107,1), + (2889,'Fermo','FM',1107,1), + (2890,'Monza e Brianza','MB',1107,1), + (2891,'Carbonia-Iglesias','CI',1107,1), + (2892,'Olbia-Tempio','OT',1107,1), + (2893,'Medio Campidano','VS',1107,1), + (2894,'Ogliastra','OG',1107,1), + (2895,'Aichi','23',1109,1), + (2896,'Akita','05',1109,1), + (2897,'Aomori','02',1109,1), + (2898,'Chiba','12',1109,1), + (2899,'Ehime','38',1109,1), + (2900,'Fukui','18',1109,1), + (2901,'Fukuoka','40',1109,1), + (2902,'Fukusima','07',1109,1), + (2903,'Gifu','21',1109,1), + (2904,'Gunma','10',1109,1), + (2905,'Hiroshima','34',1109,1), + (2906,'Hokkaido','01',1109,1), + (2907,'Hyogo','28',1109,1), + (2908,'Ibaraki','08',1109,1), + (2909,'Ishikawa','17',1109,1), + (2910,'Iwate','03',1109,1), + (2911,'Kagawa','37',1109,1), + (2912,'Kagoshima','46',1109,1), + (2913,'Kanagawa','14',1109,1), + (2914,'Kochi','39',1109,1), + (2915,'Kumamoto','43',1109,1), + (2916,'Kyoto','26',1109,1), + (2917,'Mie','24',1109,1), + (2918,'Miyagi','04',1109,1), + (2919,'Miyazaki','45',1109,1), + (2920,'Nagano','20',1109,1), + (2921,'Nagasaki','42',1109,1), + (2922,'Nara','29',1109,1), + (2923,'Niigata','15',1109,1), + (2924,'Oita','44',1109,1), + (2925,'Okayama','33',1109,1), + (2926,'Okinawa','47',1109,1), + (2927,'Osaka','27',1109,1), + (2928,'Saga','41',1109,1), + (2929,'Saitama','11',1109,1), + (2930,'Shiga','25',1109,1), + (2931,'Shimane','32',1109,1), + (2932,'Shizuoka','22',1109,1), + (2933,'Tochigi','09',1109,1), + (2934,'Tokushima','36',1109,1), + (2935,'Tokyo','13',1109,1), + (2936,'Tottori','31',1109,1), + (2937,'Toyama','16',1109,1), + (2938,'Wakayama','30',1109,1), + (2939,'Yamagata','06',1109,1), + (2940,'Yamaguchi','35',1109,1), + (2941,'Yamanashi','19',1109,1), + (2942,'Clarendon','CN',1108,1), + (2943,'Hanover','HR',1108,1), + (2944,'Kingston','KN',1108,1), + (2945,'Portland','PD',1108,1), + (2946,'Saint Andrew','AW',1108,1), + (2947,'Saint Ann','AN',1108,1), + (2948,'Saint Catherine','CE',1108,1), + (2949,'Saint Elizabeth','EH',1108,1), + (2950,'Saint James','JS',1108,1), + (2951,'Saint Mary','MY',1108,1), + (2952,'Saint Thomas','TS',1108,1), + (2953,'Trelawny','TY',1108,1), + (2954,'Westmoreland','WD',1108,1), + (2955,'Ajln','AJ',1110,1), + (2956,'Al \'Aqaba','AQ',1110,1), + (2957,'Al Balqa\'','BA',1110,1), + (2958,'Al Karak','KA',1110,1), + (2959,'Al Mafraq','MA',1110,1), + (2960,'Amman','AM',1110,1), + (2961,'At Tafilah','AT',1110,1), + (2962,'Az Zarga','AZ',1110,1), + (2963,'Irbid','JR',1110,1), + (2964,'Jarash','JA',1110,1), + (2965,'Ma\'an','MN',1110,1), + (2966,'Madaba','MD',1110,1), + (2967,'Baringo','01',1112,1), + (2968,'Bomet','02',1112,1), + (2969,'Bungoma','03',1112,1), + (2970,'Busia','04',1112,1), + (2971,'Elgeyo/Marakwet','05',1112,1), + (2972,'Embu','06',1112,1), + (2973,'Garissa','07',1112,1), + (2974,'Homa Bay','08',1112,1), + (2975,'Isiolo','09',1112,1), + (2976,'Kajiado','10',1112,1), + (2977,'Kakamega','11',1112,1), + (2978,'Kericho','12',1112,1), + (2979,'Kiambu','13',1112,1), + (2980,'Kilifi','14',1112,1), + (2981,'Kirinyaga','15',1112,1), + (2982,'Kisii','16',1112,1), + (2983,'Kisumu','17',1112,1), + (2984,'Kitui','18',1112,1), + (2985,'Kwale','19',1112,1), + (2986,'Laikipia','20',1112,1), + (2987,'Lamu','21',1112,1), + (2988,'Machakos','22',1112,1), + (2989,'Makueni','23',1112,1), + (2990,'Mandera','24',1112,1), + (2991,'Marsabit','25',1112,1), + (2992,'Meru','26',1112,1), + (2993,'Migori','27',1112,1), + (2994,'Mombasa','28',1112,1), + (2995,'Murang\'a','29',1112,1), + (2996,'Nairobi City','30',1112,1), + (2997,'Nakuru','31',1112,1), + (2998,'Nandi','32',1112,1), + (2999,'Narok','33',1112,1), + (3000,'Nyamira','34',1112,1), + (3001,'Nyandarua','35',1112,1), + (3002,'Nyeri','36',1112,1), + (3003,'Samburu','37',1112,1), + (3004,'Siaya','38',1112,1), + (3005,'Taita/Taveta','39',1112,1), + (3006,'Tana River','40',1112,1), + (3007,'Tharaka-Nithi','41',1112,1), + (3008,'Trans Nzoia','42',1112,1), + (3009,'Turkana','43',1112,1), + (3010,'Uasin Gishu','44',1112,1), + (3011,'Vihiga','45',1112,1), + (3012,'Wajir','46',1112,1), + (3013,'West Pokot','47',1112,1), + (3014,'Bishkek','GB',1117,1), + (3015,'Batken','B',1117,1), + (3016,'Chu','C',1117,1), + (3017,'Jalal-Abad','J',1117,1), + (3018,'Naryn','N',1117,1), + (3019,'Osh','O',1117,1), + (3020,'Talas','T',1117,1), + (3021,'Ysyk-Kol','Y',1117,1), + (3022,'Krong Kaeb','23',1037,1), + (3023,'Krong Pailin','24',1037,1), + (3024,'Xrong Preah Sihanouk','18',1037,1), + (3025,'Phnom Penh','12',1037,1), + (3026,'Baat Dambang','2',1037,1), + (3027,'Banteay Mean Chey','1',1037,1), + (3028,'Rampong Chaam','3',1037,1), + (3029,'Kampong Chhnang','4',1037,1), + (3030,'Kampong Spueu','5',1037,1), + (3031,'Kampong Thum','6',1037,1), + (3032,'Kampot','7',1037,1), + (3033,'Kandaal','8',1037,1), + (3034,'Kach Kong','9',1037,1), + (3035,'Krachoh','10',1037,1), + (3036,'Mondol Kiri','11',1037,1), + (3037,'Otdar Mean Chey','22',1037,1), + (3038,'Pousaat','15',1037,1), + (3039,'Preah Vihear','13',1037,1), + (3040,'Prey Veaeng','14',1037,1), + (3041,'Rotanak Kiri','16',1037,1), + (3042,'Siem Reab','17',1037,1), + (3043,'Stueng Traeng','19',1037,1), + (3044,'Svaay Rieng','20',1037,1), + (3045,'Taakaev','21',1037,1), + (3046,'Gilbert Islands','G',1113,1), + (3047,'Line Islands','L',1113,1), + (3048,'Phoenix Islands','P',1113,1), + (3049,'Anjouan Ndzouani','A',1049,1), + (3050,'Grande Comore Ngazidja','G',1049,1), + (3051,'Moheli Moili','M',1049,1), + (3052,'Kaesong-si','KAE',1114,1), + (3053,'Nampo-si','NAM',1114,1), + (3054,'Pyongyang-ai','PYO',1114,1), + (3055,'Chagang-do','CHA',1114,1), + (3056,'Hamgyongbuk-do','HAB',1114,1), + (3057,'Hamgyongnam-do','HAN',1114,1), + (3058,'Hwanghaebuk-do','HWB',1114,1), + (3059,'Hwanghaenam-do','HWN',1114,1), + (3060,'Kangwon-do','KAN',1114,1), + (3061,'Pyonganbuk-do','PYB',1114,1), + (3062,'Pyongannam-do','PYN',1114,1), + (3063,'Yanggang-do','YAN',1114,1), + (3064,'Najin Sonbong-si','NAJ',1114,1), + (3065,'Seoul Teugbyeolsi','11',1115,1), + (3066,'Busan Gwang\'yeogsi','26',1115,1), + (3067,'Daegu Gwang\'yeogsi','27',1115,1), + (3068,'Daejeon Gwang\'yeogsi','30',1115,1), + (3069,'Gwangju Gwang\'yeogsi','29',1115,1), + (3070,'Incheon Gwang\'yeogsi','28',1115,1), + (3071,'Ulsan Gwang\'yeogsi','31',1115,1), + (3072,'Chungcheongbugdo','43',1115,1), + (3073,'Chungcheongnamdo','44',1115,1), + (3074,'Gang\'weondo','42',1115,1), + (3075,'Gyeonggido','41',1115,1), + (3076,'Gyeongsangbugdo','47',1115,1), + (3077,'Gyeongsangnamdo','48',1115,1), + (3078,'Jejudo','49',1115,1), + (3079,'Jeonrabugdo','45',1115,1), + (3080,'Jeonranamdo','46',1115,1), + (3081,'Sejong','50',1115,1), + (3082,'Al Ahmadi','AH',1116,1), + (3083,'Al Farwanlyah','FA',1116,1), + (3084,'Al Jahrah','JA',1116,1), + (3085,'Al Kuwayt','KU',1116,1), + (3086,'Hawalli','HA',1116,1), + (3087,'Almaty','ALA',1111,1), + (3088,'Astana','AST',1111,1), + (3089,'Almaty oblysy','ALM',1111,1), + (3090,'Aqmola oblysy','AKM',1111,1), + (3091,'Aqtobe oblysy','AKT',1111,1), + (3092,'Atyrau oblyfiy','ATY',1111,1), + (3093,'Batys Quzaqstan oblysy','ZAP',1111,1), + (3094,'Mangghystau oblysy','MAN',1111,1), + (3095,'Ongtustik Quzaqstan oblysy','YUZ',1111,1), + (3096,'Pavlodar oblysy','PAV',1111,1), + (3097,'Qaraghandy oblysy','KAR',1111,1), + (3098,'Qostanay oblysy','KUS',1111,1), + (3099,'Qyzylorda oblysy','KZY',1111,1), + (3100,'Shyghys Quzaqstan oblysy','VOS',1111,1), + (3101,'Soltustik Quzaqstan oblysy','SEV',1111,1), + (3102,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111,1), + (3103,'Vientiane','VT',1118,1), + (3104,'Attapu','AT',1118,1), + (3105,'Bokeo','BK',1118,1), + (3106,'Bolikhamxai','BL',1118,1), + (3107,'Champasak','CH',1118,1), + (3108,'Houaphan','HO',1118,1), + (3109,'Khammouan','KH',1118,1), + (3110,'Louang Namtha','LM',1118,1), + (3111,'Louangphabang','LP',1118,1), + (3112,'Oudomxai','OU',1118,1), + (3113,'Phongsali','PH',1118,1), + (3114,'Salavan','SL',1118,1), + (3115,'Savannakhet','SV',1118,1), + (3116,'Xaignabouli','XA',1118,1), + (3117,'Xiasomboun','XN',1118,1), + (3118,'Xekong','XE',1118,1), + (3119,'Xiangkhoang','XI',1118,1), + (3120,'Beirut','BA',1120,1), + (3121,'Beqaa','BI',1120,1), + (3122,'Mount Lebanon','JL',1120,1), + (3123,'North Lebanon','AS',1120,1), + (3124,'South Lebanon','JA',1120,1), + (3125,'Nabatieh','NA',1120,1), + (3126,'Ampara','52',1199,1), + (3127,'Anuradhapura','71',1199,1), + (3128,'Badulla','81',1199,1), + (3129,'Batticaloa','51',1199,1), + (3130,'Colombo','11',1199,1), + (3131,'Galle','31',1199,1), + (3132,'Gampaha','12',1199,1), + (3133,'Hambantota','33',1199,1), + (3134,'Jaffna','41',1199,1), + (3135,'Kalutara','13',1199,1), + (3136,'Kandy','21',1199,1), + (3137,'Kegalla','92',1199,1), + (3138,'Kilinochchi','42',1199,1), + (3139,'Kurunegala','61',1199,1), + (3140,'Mannar','43',1199,1), + (3141,'Matale','22',1199,1), + (3142,'Matara','32',1199,1), + (3143,'Monaragala','82',1199,1), + (3144,'Mullaittivu','45',1199,1), + (3145,'Nuwara Eliya','23',1199,1), + (3146,'Polonnaruwa','72',1199,1), + (3147,'Puttalum','62',1199,1), + (3148,'Ratnapura','91',1199,1), + (3149,'Trincomalee','53',1199,1), + (3150,'VavunLya','44',1199,1), + (3151,'Bomi','BM',1122,1), + (3152,'Bong','BG',1122,1), + (3153,'Grand Basaa','GB',1122,1), + (3154,'Grand Cape Mount','CM',1122,1), + (3155,'Grand Gedeh','GG',1122,1), + (3156,'Grand Kru','GK',1122,1), + (3157,'Lofa','LO',1122,1), + (3158,'Margibi','MG',1122,1), + (3159,'Maryland','MY',1122,1), + (3160,'Montserrado','MO',1122,1), + (3161,'Nimba','NI',1122,1), + (3162,'Rivercess','RI',1122,1), + (3163,'Sinoe','SI',1122,1), + (3164,'Berea','D',1121,1), + (3165,'Butha-Buthe','B',1121,1), + (3166,'Leribe','C',1121,1), + (3167,'Mafeteng','E',1121,1), + (3168,'Maseru','A',1121,1), + (3169,'Mohale\'s Hoek','F',1121,1), + (3170,'Mokhotlong','J',1121,1), + (3171,'Qacha\'s Nek','H',1121,1), + (3172,'Quthing','G',1121,1), + (3173,'Thaba-Tseka','K',1121,1), + (3174,'Alytaus Apskritis','AL',1125,1), + (3175,'Kauno Apskritis','KU',1125,1), + (3176,'Klaipėdos Apskritis','KL',1125,1), + (3177,'Marijampolės Apskritis','MR',1125,1), + (3178,'Panevėžio Apskritis','PN',1125,1), + (3179,'Šiaulių Apskritis','SA',1125,1), + (3180,'Tauragės Apskritis','TA',1125,1), + (3181,'Telšių Apskritis','TE',1125,1), + (3182,'Utenos Apskritis','UT',1125,1), + (3183,'Vilniaus Apskritis','VL',1125,1), + (3184,'Luxembourg','LU',1126,1), + (3185,'Diekirch','DI',1126,1), + (3186,'Grevenmacher','GR',1126,1), + (3187,'Capellen','CA',1126,1), + (3188,'Clervaux','CL',1126,1), + (3189,'Echternach','EC',1126,1), + (3190,'Esch-sur-Alzette','ES',1126,1), + (3191,'Mersch','ME',1126,1), + (3192,'Redange-sur-Attert','RD',1126,1), + (3193,'Remich','RM',1126,1), + (3194,'Vianden','VD',1126,1), + (3195,'Wiltz','WI',1126,1), + (3196,'Daugavpils','DGV',1119,1), + (3197,'Jelgava','JEL',1119,1), + (3198,'Jūrmala','JUR',1119,1), + (3199,'Liepāja','LPX',1119,1), + (3200,'Rēzekne','REZ',1119,1), + (3201,'Rīga','RIX',1119,1), + (3202,'Ventspils','VEN',1119,1), + (3203,'Aizkraukles novads','002',1119,1), + (3204,'Jaunjelgavas novads','038',1119,1), + (3205,'Pļaviņu novads','072',1119,1), + (3206,'Kokneses novads','046',1119,1), + (3207,'Neretas novads','065',1119,1), + (3208,'Skrīveru novads','092',1119,1), + (3209,'Alūksnes novads','007',1119,1), + (3210,'Apes novads','009',1119,1), + (3211,'Balvu novads','015',1119,1), + (3212,'Viļakas novads','108',1119,1), + (3213,'Baltinavas novads','014',1119,1), + (3214,'Rugāju novads','082',1119,1), + (3215,'Bauskas novads','016',1119,1), + (3216,'Iecavas novads','034',1119,1), + (3217,'Rundāles novads','083',1119,1), + (3218,'Vecumnieku novads','105',1119,1), + (3219,'Cēsu novads','022',1119,1), + (3220,'Līgatnes novads','055',1119,1), + (3221,'Amatas novads','008',1119,1), + (3222,'Jaunpiebalgas novads','039',1119,1), + (3223,'Priekuļu novads','075',1119,1), + (3224,'Pārgaujas novads','070',1119,1), + (3225,'Raunas novads','076',1119,1), + (3226,'Vecpiebalgas novads','104',1119,1), + (3227,'Daugavpils novads','025',1119,1), + (3228,'Ilūkstes novads','036',1119,1), + (3229,'Dobeles novads','026',1119,1), + (3230,'Auces novads','010',1119,1), + (3231,'Tērvetes novads','098',1119,1), + (3232,'Gulbenes novads','033',1119,1), + (3233,'Jelgavas novads','041',1119,1), + (3234,'Ozolnieku novads','069',1119,1), + (3235,'Jēkabpils novads','042',1119,1), + (3236,'Aknīstes novads','004',1119,1), + (3237,'Viesītes novads','107',1119,1), + (3238,'Krustpils novads','049',1119,1), + (3239,'Salas novads','085',1119,1), + (3240,'Krāslavas novads','047',1119,1), + (3241,'Dagdas novads','024',1119,1), + (3242,'Aglonas novads','001',1119,1), + (3243,'Kuldīgas novads','050',1119,1), + (3244,'Skrundas novads','093',1119,1), + (3245,'Alsungas novads','006',1119,1), + (3246,'Aizputes novads','003',1119,1), + (3247,'Durbes novads','028',1119,1), + (3248,'Grobiņas novads','032',1119,1), + (3249,'Pāvilostas novads','071',1119,1), + (3250,'Priekules novads','074',1119,1), + (3251,'Nīcas novads','066',1119,1), + (3252,'Rucavas novads','081',1119,1), + (3253,'Vaiņodes novads','100',1119,1), + (3254,'Limbažu novads','054',1119,1), + (3255,'Alojas novads','005',1119,1), + (3256,'Salacgrīvas novads','086',1119,1), + (3257,'Ludzas novads','058',1119,1), + (3258,'Kārsavas novads','044',1119,1), + (3259,'Zilupes novads','110',1119,1), + (3260,'Ciblas novads','023',1119,1), + (3261,'Madonas novads','059',1119,1), + (3262,'Cesvaines novads','021',1119,1), + (3263,'Lubānas novads','057',1119,1), + (3264,'Varakļānu novads','102',1119,1), + (3265,'Ērgļu novads','030',1119,1), + (3266,'Ogres novads','067',1119,1), + (3267,'Ikšķiles novads','035',1119,1), + (3268,'Ķeguma novads','051',1119,1), + (3269,'Lielvārdes novads','053',1119,1), + (3270,'Preiļu novads','073',1119,1), + (3271,'Līvānu novads','056',1119,1), + (3272,'Riebiņu novads','078',1119,1), + (3273,'Vārkavas novads','103',1119,1), + (3274,'Rēzeknes novads','077',1119,1), + (3275,'Viļānu novads','109',1119,1), + (3276,'Baldones novads','013',1119,1), + (3277,'Ķekavas novads','052',1119,1), + (3278,'Olaines novads','068',1119,1), + (3279,'Salaspils novads','087',1119,1), + (3280,'Saulkrastu novads','089',1119,1), + (3281,'Siguldas novads','091',1119,1), + (3282,'Inčukalna novads','037',1119,1), + (3283,'Ādažu novads','011',1119,1), + (3284,'Babītes novads','012',1119,1), + (3285,'Carnikavas novads','020',1119,1), + (3286,'Garkalnes novads','031',1119,1), + (3287,'Krimuldas novads','048',1119,1), + (3288,'Mālpils novads','061',1119,1), + (3289,'Mārupes novads','062',1119,1), + (3290,'Ropažu novads','080',1119,1), + (3291,'Sējas novads','090',1119,1), + (3292,'Stopiņu novads','095',1119,1), + (3293,'Saldus novads','088',1119,1), + (3294,'Brocēnu novads','018',1119,1), + (3295,'Talsu novads','097',1119,1), + (3296,'Dundagas novads','027',1119,1), + (3297,'Mērsraga novads','063',1119,1), + (3298,'Rojas novads','079',1119,1), + (3299,'Tukuma novads','099',1119,1), + (3300,'Kandavas novads','043',1119,1), + (3301,'Engures novads','029',1119,1), + (3302,'Jaunpils novads','040',1119,1), + (3303,'Valkas novads','101',1119,1), + (3304,'Smiltenes novads','094',1119,1), + (3305,'Strenču novads','096',1119,1), + (3306,'Kocēnu novads','045',1119,1), + (3307,'Mazsalacas novads','060',1119,1), + (3308,'Rūjienas novads','084',1119,1), + (3309,'Beverīnas novads','017',1119,1), + (3310,'Burtnieku novads','019',1119,1), + (3311,'Naukšēnu novads','064',1119,1), + (3312,'Ventspils novads','106',1119,1), + (3313,'Jēkabpils','JKB',1119,1), + (3314,'Valmiera','VMR',1119,1), + (3315,'Ajdābiyā','AJ',1123,1), + (3316,'Al Buţnān','BU',1123,1), + (3317,'Al Hizām al Akhdar','HZ',1123,1), + (3318,'Al Jabal al Akhdar','JA',1123,1), + (3319,'Al Jifārah','JI',1123,1), + (3320,'Al Jufrah','JU',1123,1), + (3321,'Al Kufrah','KF',1123,1), + (3322,'Al Marj','MJ',1123,1), + (3323,'Al Marqab','MB',1123,1), + (3324,'Al Qaţrūn','QT',1123,1), + (3325,'Al Qubbah','QB',1123,1), + (3326,'Al Wāhah','WA',1123,1), + (3327,'An Nuqaţ al Khams','NQ',1123,1), + (3328,'Ash Shāţi\'','SH',1123,1), + (3329,'Az Zāwiyah','ZA',1123,1), + (3330,'Banghāzī','BA',1123,1), + (3331,'Banī Walīd','BW',1123,1), + (3332,'Darnah','DR',1123,1), + (3333,'Ghadāmis','GD',1123,1), + (3334,'Gharyān','GR',1123,1), + (3335,'Ghāt','GT',1123,1), + (3336,'Jaghbūb','JB',1123,1), + (3337,'Mişrātah','MI',1123,1), + (3338,'Mizdah','MZ',1123,1), + (3339,'Murzuq','MQ',1123,1), + (3340,'Nālūt','NL',1123,1), + (3341,'Sabhā','SB',1123,1), + (3342,'Şabrātah Şurmān','SS',1123,1), + (3343,'Surt','SR',1123,1), + (3344,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123,1), + (3345,'Ţarābulus','TB',1123,1), + (3346,'Tarhūnah-Masallātah','TM',1123,1), + (3347,'Wādī al hayāt','WD',1123,1), + (3348,'Yafran-Jādū','YJ',1123,1), + (3349,'Agadir','AGD',1146,1), + (3350,'Aït Baha','BAH',1146,1), + (3351,'Aït Melloul','MEL',1146,1), + (3352,'Al Haouz','HAO',1146,1), + (3353,'Al Hoceïma','HOC',1146,1), + (3354,'Assa-Zag','ASZ',1146,1), + (3355,'Azilal','AZI',1146,1), + (3356,'Beni Mellal','BEM',1146,1), + (3357,'Ben Sllmane','BES',1146,1), + (3358,'Berkane','BER',1146,1), + (3359,'Boujdour','BOD',1146,1), + (3360,'Boulemane','BOM',1146,1), + (3361,'Casablanca [Dar el Beïda]','CAS',1146,1), + (3362,'Chefchaouene','CHE',1146,1), + (3363,'Chichaoua','CHI',1146,1), + (3364,'El Hajeb','HAJ',1146,1), + (3365,'El Jadida','JDI',1146,1), + (3366,'Errachidia','ERR',1146,1), + (3367,'Essaouira','ESI',1146,1), + (3368,'Es Smara','ESM',1146,1), + (3369,'Fès','FES',1146,1), + (3370,'Figuig','FIG',1146,1), + (3371,'Guelmim','GUE',1146,1), + (3372,'Ifrane','IFR',1146,1), + (3373,'Jerada','JRA',1146,1), + (3374,'Kelaat Sraghna','KES',1146,1), + (3375,'Kénitra','KEN',1146,1), + (3376,'Khemisaet','KHE',1146,1), + (3377,'Khenifra','KHN',1146,1), + (3378,'Khouribga','KHO',1146,1), + (3379,'Laâyoune (EH)','LAA',1146,1), + (3380,'Larache','LAP',1146,1), + (3381,'Marrakech','MAR',1146,1), + (3382,'Meknsès','MEK',1146,1), + (3383,'Nador','NAD',1146,1), + (3384,'Ouarzazate','OUA',1146,1), + (3385,'Oued ed Dahab (EH)','OUD',1146,1), + (3386,'Oujda','OUJ',1146,1), + (3387,'Rabat-Salé','RBA',1146,1), + (3388,'Safi','SAF',1146,1), + (3389,'Sefrou','SEF',1146,1), + (3390,'Settat','SET',1146,1), + (3391,'Sidl Kacem','SIK',1146,1), + (3392,'Tanger','TNG',1146,1), + (3393,'Tan-Tan','TNT',1146,1), + (3394,'Taounate','TAO',1146,1), + (3395,'Taroudannt','TAR',1146,1), + (3396,'Tata','TAT',1146,1), + (3397,'Taza','TAZ',1146,1), + (3398,'Tétouan','TET',1146,1), + (3399,'Tiznit','TIZ',1146,1), + (3400,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142,1), + (3401,'Chisinau','CU',1142,1), + (3402,'Stinga Nistrului, unitatea teritoriala din','SN',1142,1), + (3403,'Balti','BA',1142,1), + (3404,'Cahul','CA',1142,1), + (3405,'Edinet','ED',1142,1), + (3406,'Lapusna','LA',1142,1), + (3407,'Orhei','OR',1142,1), + (3408,'Soroca','SO',1142,1), + (3409,'Taraclia','TA',1142,1), + (3410,'Tighina [Bender]','TI',1142,1), + (3411,'Ungheni','UN',1142,1), + (3412,'Antananarivo','T',1129,1), + (3413,'Antsiranana','D',1129,1), + (3414,'Fianarantsoa','F',1129,1), + (3415,'Mahajanga','M',1129,1), + (3416,'Toamasina','A',1129,1), + (3417,'Toliara','U',1129,1), + (3418,'Ailinglapalap','ALL',1135,1), + (3419,'Ailuk','ALK',1135,1), + (3420,'Arno','ARN',1135,1), + (3421,'Aur','AUR',1135,1), + (3422,'Ebon','EBO',1135,1), + (3423,'Eniwetok','ENI',1135,1), + (3424,'Jaluit','JAL',1135,1), + (3425,'Kili','KIL',1135,1), + (3426,'Kwajalein','KWA',1135,1), + (3427,'Lae','LAE',1135,1), + (3428,'Lib','LIB',1135,1), + (3429,'Likiep','LIK',1135,1), + (3430,'Majuro','MAJ',1135,1), + (3431,'Maloelap','MAL',1135,1), + (3432,'Mejit','MEJ',1135,1), + (3433,'Mili','MIL',1135,1), + (3434,'Namorik','NMK',1135,1), + (3435,'Namu','NMU',1135,1), + (3436,'Rongelap','RON',1135,1), + (3437,'Ujae','UJA',1135,1), + (3438,'Ujelang','UJL',1135,1), + (3439,'Utirik','UTI',1135,1), + (3440,'Wotho','WTN',1135,1), + (3441,'Wotje','WTJ',1135,1), + (3442,'Bamako','BK0',1133,1), + (3443,'Gao','7',1133,1), + (3444,'Kayes','1',1133,1), + (3445,'Kidal','8',1133,1), + (3446,'Xoulikoro','2',1133,1), + (3447,'Mopti','5',1133,1), + (3448,'S69ou','4',1133,1), + (3449,'Sikasso','3',1133,1), + (3450,'Tombouctou','6',1133,1), + (3451,'Ayeyarwady','07',1035,1), + (3452,'Bago','02',1035,1), + (3453,'Magway','03',1035,1), + (3454,'Mandalay','04',1035,1), + (3455,'Sagaing','01',1035,1), + (3456,'Tanintharyi','05',1035,1), + (3457,'Yangon','06',1035,1), + (3458,'Chin','14',1035,1), + (3459,'Kachin','11',1035,1), + (3460,'Kayah','12',1035,1), + (3461,'Kayin','13',1035,1), + (3462,'Mon','15',1035,1), + (3463,'Rakhine','16',1035,1), + (3464,'Shan','17',1035,1), + (3465,'Ulaanbaatar','1',1144,1), + (3466,'Arhangay','073',1144,1), + (3467,'Bayanhongor','069',1144,1), + (3468,'Bayan-Olgiy','071',1144,1), + (3469,'Bulgan','067',1144,1), + (3470,'Darhan uul','037',1144,1), + (3471,'Dornod','061',1144,1), + (3472,'Dornogov,','063',1144,1), + (3473,'DundgovL','059',1144,1), + (3474,'Dzavhan','057',1144,1), + (3475,'Govi-Altay','065',1144,1), + (3476,'Govi-Smber','064',1144,1), + (3477,'Hentiy','039',1144,1), + (3478,'Hovd','043',1144,1), + (3479,'Hovsgol','041',1144,1), + (3480,'Omnogovi','053',1144,1), + (3481,'Orhon','035',1144,1), + (3482,'Ovorhangay','055',1144,1), + (3483,'Selenge','049',1144,1), + (3484,'Shbaatar','051',1144,1), + (3485,'Tov','047',1144,1), + (3486,'Uvs','046',1144,1), + (3487,'Nouakchott','NKC',1137,1), + (3488,'Assaba','03',1137,1), + (3489,'Brakna','05',1137,1), + (3490,'Dakhlet Nouadhibou','08',1137,1), + (3491,'Gorgol','04',1137,1), + (3492,'Guidimaka','10',1137,1), + (3493,'Hodh ech Chargui','01',1137,1), + (3494,'Hodh el Charbi','02',1137,1), + (3495,'Inchiri','12',1137,1), + (3496,'Tagant','09',1137,1), + (3497,'Tiris Zemmour','11',1137,1), + (3498,'Trarza','06',1137,1), + (3499,'Beau Bassin-Rose Hill','BR',1138,1), + (3500,'Curepipe','CU',1138,1), + (3501,'Port Louis','PU',1138,1), + (3502,'Quatre Bornes','QB',1138,1), + (3503,'Vacosa-Phoenix','VP',1138,1), + (3504,'Black River','BL',1138,1), + (3505,'Flacq','FL',1138,1), + (3506,'Grand Port','GP',1138,1), + (3507,'Moka','MO',1138,1), + (3508,'Pamplemousses','PA',1138,1), + (3509,'Plaines Wilhems','PW',1138,1), + (3510,'Riviere du Rempart','RP',1138,1), + (3511,'Savanne','SA',1138,1), + (3512,'Agalega Islands','AG',1138,1), + (3513,'Cargados Carajos Shoals','CC',1138,1), + (3514,'Rodrigues Island','RO',1138,1), + (3515,'Male','MLE',1132,1), + (3516,'Alif','02',1132,1), + (3517,'Baa','20',1132,1), + (3518,'Dhaalu','17',1132,1), + (3519,'Faafu','14',1132,1), + (3520,'Gaaf Alif','27',1132,1), + (3521,'Gaefu Dhaalu','28',1132,1), + (3522,'Gnaviyani','29',1132,1), + (3523,'Haa Alif','07',1132,1), + (3524,'Haa Dhaalu','23',1132,1), + (3525,'Kaafu','26',1132,1), + (3526,'Laamu','05',1132,1), + (3527,'Lhaviyani','03',1132,1), + (3528,'Meemu','12',1132,1), + (3529,'Noonu','25',1132,1), + (3530,'Raa','13',1132,1), + (3531,'Seenu','01',1132,1), + (3532,'Shaviyani','24',1132,1), + (3533,'Thaa','08',1132,1), + (3534,'Vaavu','04',1132,1), + (3535,'Balaka','BA',1130,1), + (3536,'Blantyre','BL',1130,1), + (3537,'Chikwawa','CK',1130,1), + (3538,'Chiradzulu','CR',1130,1), + (3539,'Chitipa','CT',1130,1), + (3540,'Dedza','DE',1130,1), + (3541,'Dowa','DO',1130,1), + (3542,'Karonga','KR',1130,1), + (3543,'Kasungu','KS',1130,1), + (3544,'Likoma Island','LK',1130,1), + (3545,'Lilongwe','LI',1130,1), + (3546,'Machinga','MH',1130,1), + (3547,'Mangochi','MG',1130,1), + (3548,'Mchinji','MC',1130,1), + (3549,'Mulanje','MU',1130,1), + (3550,'Mwanza','MW',1130,1), + (3551,'Mzimba','MZ',1130,1), + (3552,'Nkhata Bay','NB',1130,1), + (3553,'Nkhotakota','NK',1130,1), + (3554,'Nsanje','NS',1130,1), + (3555,'Ntcheu','NU',1130,1), + (3556,'Ntchisi','NI',1130,1), + (3557,'Phalomba','PH',1130,1), + (3558,'Rumphi','RU',1130,1), + (3559,'Salima','SA',1130,1), + (3560,'Thyolo','TH',1130,1), + (3561,'Zomba','ZO',1130,1), + (3562,'Aguascalientes','AGU',1140,1), + (3563,'Baja California','BCN',1140,1), + (3564,'Baja California Sur','BCS',1140,1), + (3565,'Campeche','CAM',1140,1), + (3566,'Coahuila','COA',1140,1), + (3567,'Colima','COL',1140,1), + (3568,'Chiapas','CHP',1140,1), + (3569,'Chihuahua','CHH',1140,1), + (3570,'Durango','DUR',1140,1), + (3571,'Guanajuato','GUA',1140,1), + (3572,'Guerrero','GRO',1140,1), + (3573,'Hidalgo','HID',1140,1), + (3574,'Jalisco','JAL',1140,1), + (3575,'Mexico','MEX',1140,1), + (3576,'Michoacin','MIC',1140,1), + (3577,'Morelos','MOR',1140,1), + (3578,'Nayarit','NAY',1140,1), + (3579,'Nuevo Leon','NLE',1140,1), + (3580,'Oaxaca','OAX',1140,1), + (3581,'Puebla','PUE',1140,1), + (3582,'Queretaro','QUE',1140,1), + (3583,'Quintana Roo','ROO',1140,1), + (3584,'San Luis Potosi','SLP',1140,1), + (3585,'Sinaloa','SIN',1140,1), + (3586,'Sonora','SON',1140,1), + (3587,'Tabasco','TAB',1140,1), + (3588,'Tamaulipas','TAM',1140,1), + (3589,'Tlaxcala','TLA',1140,1), + (3590,'Veracruz','VER',1140,1), + (3591,'Yucatan','YUC',1140,1), + (3592,'Zacatecas','ZAC',1140,1), + (3593,'Distrito Federal','DIF',1140,1), + (3594,'Wilayah Persekutuan Kuala Lumpur','14',1131,1), + (3595,'Wilayah Persekutuan Labuan','15',1131,1), + (3596,'Wilayah Persekutuan Putrajaya','16',1131,1), + (3597,'Johor','01',1131,1), + (3598,'Kedah','02',1131,1), + (3599,'Kelantan','03',1131,1), + (3600,'Melaka','04',1131,1), + (3601,'Negeri Sembilan','05',1131,1), + (3602,'Pahang','06',1131,1), + (3603,'Perak','08',1131,1), + (3604,'Perlis','09',1131,1), + (3605,'Pulau Pinang','07',1131,1), + (3606,'Sabah','12',1131,1), + (3607,'Sarawak','13',1131,1), + (3608,'Selangor','10',1131,1), + (3609,'Terengganu','11',1131,1), + (3610,'Maputo','MPM',1147,1), + (3611,'Cabo Delgado','P',1147,1), + (3612,'Gaza','G',1147,1), + (3613,'Inhambane','I',1147,1), + (3614,'Manica','B',1147,1), + (3615,'Numpula','N',1147,1), + (3616,'Niaaea','A',1147,1), + (3617,'Sofala','S',1147,1), + (3618,'Tete','T',1147,1), + (3619,'Zambezia','Q',1147,1), + (3620,'Caprivi','CA',1148,1), + (3621,'Erongo','ER',1148,1), + (3622,'Hardap','HA',1148,1), + (3623,'Karas','KA',1148,1), + (3624,'Khomas','KH',1148,1), + (3625,'Kunene','KU',1148,1), + (3626,'Ohangwena','OW',1148,1), + (3627,'Okavango','OK',1148,1), + (3628,'Omaheke','OH',1148,1), + (3629,'Omusati','OS',1148,1), + (3630,'Oshana','ON',1148,1), + (3631,'Oshikoto','OT',1148,1), + (3632,'Otjozondjupa','OD',1148,1), + (3633,'Niamey','8',1156,1), + (3634,'Agadez','1',1156,1), + (3635,'Diffa','2',1156,1), + (3636,'Dosso','3',1156,1), + (3637,'Maradi','4',1156,1), + (3638,'Tahoua','S',1156,1), + (3639,'Tillaberi','6',1156,1), + (3640,'Zinder','7',1156,1), + (3641,'Abuja Federal Capital Territory','FC',1157,1), + (3642,'Abia','AB',1157,1), + (3643,'Adamawa','AD',1157,1), + (3644,'Akwa Ibom','AK',1157,1), + (3645,'Anambra','AN',1157,1), + (3646,'Bauchi','BA',1157,1), + (3647,'Bayelsa','BY',1157,1), + (3648,'Benue','BE',1157,1), + (3649,'Borno','BO',1157,1), + (3650,'Cross River','CR',1157,1), + (3651,'Delta','DE',1157,1), + (3652,'Ebonyi','EB',1157,1), + (3653,'Edo','ED',1157,1), + (3654,'Ekiti','EK',1157,1), + (3655,'Enugu','EN',1157,1), + (3656,'Gombe','GO',1157,1), + (3657,'Imo','IM',1157,1), + (3658,'Jigawa','JI',1157,1), + (3659,'Kaduna','KD',1157,1), + (3660,'Kano','KN',1157,1), + (3661,'Katsina','KT',1157,1), + (3662,'Kebbi','KE',1157,1), + (3663,'Kogi','KO',1157,1), + (3664,'Kwara','KW',1157,1), + (3665,'Lagos','LA',1157,1), + (3666,'Nassarawa','NA',1157,1), + (3667,'Niger','NI',1157,1), + (3668,'Ogun','OG',1157,1), + (3669,'Ondo','ON',1157,1), + (3670,'Osun','OS',1157,1), + (3671,'Oyo','OY',1157,1), + (3672,'Rivers','RI',1157,1), + (3673,'Sokoto','SO',1157,1), + (3674,'Taraba','TA',1157,1), + (3675,'Yobe','YO',1157,1), + (3676,'Zamfara','ZA',1157,1), + (3677,'Plateau','PL',1157,1), + (3678,'Boaco','BO',1155,1), + (3679,'Carazo','CA',1155,1), + (3680,'Chinandega','CI',1155,1), + (3681,'Chontales','CO',1155,1), + (3682,'Esteli','ES',1155,1), + (3683,'Jinotega','JI',1155,1), + (3684,'Leon','LE',1155,1), + (3685,'Madriz','MD',1155,1), + (3686,'Managua','MN',1155,1), + (3687,'Masaya','MS',1155,1), + (3688,'Matagalpa','MT',1155,1), + (3689,'Nueva Segovia','NS',1155,1), + (3690,'Rio San Juan','SJ',1155,1), + (3691,'Rivas','RI',1155,1), + (3692,'Atlantico Norte','AN',1155,1), + (3693,'Atlantico Sur','AS',1155,1), + (3694,'Drente','DR',1152,1), + (3695,'Flevoland','FL',1152,1), + (3696,'Friesland','FR',1152,1), + (3697,'Gelderland','GL',1152,1), + (3698,'Groningen','GR',1152,1), + (3699,'Noord-Brabant','NB',1152,1), + (3700,'Noord-Holland','NH',1152,1), + (3701,'Overijssel','OV',1152,1), + (3702,'Utrecht','UT',1152,1), + (3703,'Zuid-Holland','ZH',1152,1), + (3704,'Zeeland','ZL',1152,1), + (3705,'Akershus','02',1161,1), + (3706,'Aust-Agder','09',1161,1), + (3707,'Buskerud','06',1161,1), + (3708,'Finnmark','20',1161,1), + (3709,'Hedmark','04',1161,1), + (3710,'Møre og Romsdal','15',1161,1), + (3711,'Nordland','18',1161,1), + (3712,'Nord-Trøndelag','17',1161,1), + (3713,'Oppland','05',1161,1), + (3714,'Oslo','03',1161,1), + (3715,'Rogaland','11',1161,1), + (3716,'Sør-Trøndelag','16',1161,1), + (3717,'Telemark','06',1161,1), + (3718,'Troms','19',1161,1), + (3719,'Vest-Agder','10',1161,1), + (3720,'Vestfold','07',1161,1), + (3721,'Vestland','46',1161,1), + (3722,'Østfold','01',1161,1), + (3723,'Jan Mayen','22',1161,1), + (3724,'Svalbard','21',1161,1), + (3725,'Auckland','AUK',1154,1), + (3726,'Bay of Plenty','BOP',1154,1), + (3727,'Canterbury','CAN',1154,1), + (3728,'Gisborne','GIS',1154,1), + (3729,'Hawkes Bay','HKB',1154,1), + (3730,'Manawatu-Wanganui','MWT',1154,1), + (3731,'Marlborough','MBH',1154,1), + (3732,'Nelson','NSN',1154,1), + (3733,'Northland','NTL',1154,1), + (3734,'Otago','OTA',1154,1), + (3735,'Southland','STL',1154,1), + (3736,'Taranaki','TKI',1154,1), + (3737,'Tasman','TAS',1154,1), + (3738,'Waikato','WKO',1154,1), + (3739,'Wellington','WGN',1154,1), + (3740,'West Coast','WTC',1154,1), + (3741,'Ad Dakhillyah','DA',1162,1), + (3742,'Al Batinah','BA',1162,1), + (3743,'Al Janblyah','JA',1162,1), + (3744,'Al Wusta','WU',1162,1), + (3745,'Ash Sharqlyah','SH',1162,1), + (3746,'Az Zahirah','ZA',1162,1), + (3747,'Masqat','MA',1162,1), + (3748,'Musandam','MU',1162,1), + (3749,'Jenin','_A',1165,1), + (3750,'Tubas','_B',1165,1), + (3751,'Tulkarm','_C',1165,1), + (3752,'Nablus','_D',1165,1), + (3753,'Qalqilya','_E',1165,1), + (3754,'Salfit','_F',1165,1), + (3755,'Ramallah and Al-Bireh','_G',1165,1), + (3756,'Jericho','_H',1165,1), + (3757,'Jerusalem','_I',1165,1), + (3758,'Bethlehem','_J',1165,1), + (3759,'Hebron','_K',1165,1), + (3760,'North Gaza','_L',1165,1), + (3761,'Gaza','_M',1165,1), + (3762,'Deir el-Balah','_N',1165,1), + (3763,'Khan Yunis','_O',1165,1), + (3764,'Rafah','_P',1165,1), + (3765,'Bocas del Toro','1',1166,1), + (3766,'Cocle','2',1166,1), + (3767,'Chiriqui','4',1166,1), + (3768,'Darien','5',1166,1), + (3769,'Herrera','6',1166,1), + (3770,'Loa Santoa','7',1166,1), + (3771,'Panama','8',1166,1), + (3772,'Veraguas','9',1166,1), + (3773,'Comarca de San Blas','Q',1166,1), + (3774,'El Callao','CAL',1169,1), + (3775,'Ancash','ANC',1169,1), + (3776,'Apurimac','APU',1169,1), + (3777,'Arequipa','ARE',1169,1), + (3778,'Ayacucho','AYA',1169,1), + (3779,'Cajamarca','CAJ',1169,1), + (3780,'Cuzco','CUS',1169,1), + (3781,'Huancavelica','HUV',1169,1), + (3782,'Huanuco','HUC',1169,1), + (3783,'Ica','ICA',1169,1), + (3784,'Junin','JUN',1169,1), + (3785,'La Libertad','LAL',1169,1), + (3786,'Lambayeque','LAM',1169,1), + (3787,'Lima','LIM',1169,1), + (3788,'Loreto','LOR',1169,1), + (3789,'Madre de Dios','MDD',1169,1), + (3790,'Moquegua','MOQ',1169,1), + (3791,'Pasco','PAS',1169,1), + (3792,'Piura','PIU',1169,1), + (3793,'Puno','PUN',1169,1), + (3794,'San Martin','SAM',1169,1), + (3795,'Tacna','TAC',1169,1), + (3796,'Tumbes','TUM',1169,1), + (3797,'Ucayali','UCA',1169,1), + (3798,'Amazonas','AMA',1169,1), + (3799,'National Capital District (Port Moresby)','NCD',1167,1), + (3800,'Chimbu','CPK',1167,1), + (3801,'Eastern Highlands','EHG',1167,1), + (3802,'East New Britain','EBR',1167,1), + (3803,'East Sepik','ESW',1167,1), + (3804,'Enga','EPW',1167,1), + (3805,'Gulf','GPK',1167,1), + (3806,'Madang','MPM',1167,1), + (3807,'Manus','MRL',1167,1), + (3808,'Milne Bay','MBA',1167,1), + (3809,'Morobe','MPL',1167,1), + (3810,'New Ireland','NIK',1167,1), + (3811,'North Solomons','NSA',1167,1), + (3812,'Santaun','SAN',1167,1), + (3813,'Southern Highlands','SHM',1167,1), + (3814,'Western Highlands','WHM',1167,1), + (3815,'West New Britain','WBK',1167,1), + (3816,'Abra','ABR',1170,1), + (3817,'Agusan del Norte','AGN',1170,1), + (3818,'Agusan del Sur','AGS',1170,1), + (3819,'Aklan','AKL',1170,1), + (3820,'Albay','ALB',1170,1), + (3821,'Antique','ANT',1170,1), + (3822,'Apayao','APA',1170,1), + (3823,'Aurora','AUR',1170,1), + (3824,'Basilan','BAS',1170,1), + (3825,'Bataan','BAN',1170,1), + (3826,'Batanes','BTN',1170,1), + (3827,'Batangas','BTG',1170,1), + (3828,'Benguet','BEN',1170,1), + (3829,'Biliran','BIL',1170,1), + (3830,'Bohol','BOH',1170,1), + (3831,'Bukidnon','BUK',1170,1), + (3832,'Bulacan','BUL',1170,1), + (3833,'Cagayan','CAG',1170,1), + (3834,'Camarines Norte','CAN',1170,1), + (3835,'Camarines Sur','CAS',1170,1), + (3836,'Camiguin','CAM',1170,1), + (3837,'Capiz','CAP',1170,1), + (3838,'Catanduanes','CAT',1170,1), + (3839,'Cavite','CAV',1170,1), + (3840,'Cebu','CEB',1170,1), + (3841,'Davao de Oro','COM',1170,1), + (3842,'Davao del Norte','DAV',1170,1), + (3843,'Davao del Sur','DAS',1170,1), + (3844,'Davao Oriental','DAO',1170,1), + (3845,'Eastern Samar','EAS',1170,1), + (3846,'Guimaras','GUI',1170,1), + (3847,'Ifugao','IFU',1170,1), + (3848,'Ilocos Norte','ILN',1170,1), + (3849,'Ilocos Sur','ILS',1170,1), + (3850,'Iloilo','ILI',1170,1), + (3851,'Isabela','ISA',1170,1), + (3852,'Kalinga','KAL',1170,1), + (3853,'Laguna','LAG',1170,1), + (3854,'Lanao del Norte','LAN',1170,1), + (3855,'Lanao del Sur','LAS',1170,1), + (3856,'La Union','LUN',1170,1), + (3857,'Leyte','LEY',1170,1), + (3858,'Maguindanao','MAG',1170,1), + (3859,'Marinduque','MAD',1170,1), + (3860,'Masbate','MAS',1170,1), + (3861,'Mindoro Occidental','MDC',1170,1), + (3862,'Mindoro Oriental','MDR',1170,1), + (3863,'Misamis Occidental','MSC',1170,1), + (3864,'Misamis Oriental','MSR',1170,1), + (3865,'Mountain Province','MOU',1170,1), + (3866,'Negroe Occidental','NEC',1170,1), + (3867,'Negros Oriental','NER',1170,1), + (3868,'Cotabato','NCO',1170,1), + (3869,'Northern Samar','NSA',1170,1), + (3870,'Nueva Ecija','NUE',1170,1), + (3871,'Nueva Vizcaya','NUV',1170,1), + (3872,'Palawan','PLW',1170,1), + (3873,'Pampanga','PAM',1170,1), + (3874,'Pangasinan','PAN',1170,1), + (3875,'Quezon','QUE',1170,1), + (3876,'Quirino','QUI',1170,1), + (3877,'Rizal','RIZ',1170,1), + (3878,'Romblon','ROM',1170,1), + (3879,'Sarangani','SAR',1170,1), + (3880,'Siquijor','SIG',1170,1), + (3881,'Sorsogon','SOR',1170,1), + (3882,'South Cotabato','SCO',1170,1), + (3883,'Southern Leyte','SLE',1170,1), + (3884,'Sultan Kudarat','SUK',1170,1), + (3885,'Sulu','SLU',1170,1), + (3886,'Surigao del Norte','SUN',1170,1), + (3887,'Surigao del Sur','SUR',1170,1), + (3888,'Tarlac','TAR',1170,1), + (3889,'Tawi-Tawi','TAW',1170,1), + (3890,'Western Samar','WSA',1170,1), + (3891,'Zambales','ZMB',1170,1), + (3892,'Zamboanga del Norte','ZAN',1170,1), + (3893,'Zamboanga del Sur','ZAS',1170,1), + (3894,'Zamboanga Sibiguey','ZSI',1170,1), + (3895,'Dinagat Islands','DIN',1170,1), + (3896,'Metropolitan Manila','MNL',1170,1), + (3897,'Islamabad Federal Capital Area','IS',1163,1), + (3898,'Baluchistan','BA',1163,1), + (3899,'Khyber Pakhtun Khawa','NW',1163,1), + (3900,'Sindh','SD',1163,1), + (3901,'Federally Administered Tribal Areas','TA',1163,1), + (3902,'Azad Kashmir','JK',1163,1), + (3903,'Gilgit-Baltistan','NA',1163,1), + (3904,'Punjab','PB',1163,1), + (3905,'Aveiro','01',1173,1), + (3906,'Beja','02',1173,1), + (3907,'Braga','03',1173,1), + (3908,'Bragança','04',1173,1), + (3909,'Castelo Branco','05',1173,1), + (3910,'Coimbra','06',1173,1), + (3911,'Évora','07',1173,1), + (3912,'Faro','08',1173,1), + (3913,'Guarda','09',1173,1), + (3914,'Leiria','10',1173,1), + (3915,'Lisboa','11',1173,1), + (3916,'Portalegre','12',1173,1), + (3917,'Porto','13',1173,1), + (3918,'Santarém','14',1173,1), + (3919,'Setúbal','15',1173,1), + (3920,'Viana do Castelo','16',1173,1), + (3921,'Vila Real','17',1173,1), + (3922,'Viseu','18',1173,1), + (3923,'Região Autónoma dos Açores','20',1173,1), + (3924,'Região Autónoma da Madeira','30',1173,1), + (3925,'Asuncion','ASU',1168,1), + (3926,'Alto Paraguay','16',1168,1), + (3927,'Alto Parana','10',1168,1), + (3928,'Amambay','13',1168,1), + (3929,'Boqueron','19',1168,1), + (3930,'Caeguazu','5',1168,1), + (3931,'Caazapl','6',1168,1), + (3932,'Canindeyu','14',1168,1), + (3933,'Concepcion','1',1168,1), + (3934,'Cordillera','3',1168,1), + (3935,'Guaira','4',1168,1), + (3936,'Itapua','7',1168,1), + (3937,'Miaiones','8',1168,1), + (3938,'Neembucu','12',1168,1), + (3939,'Paraguari','9',1168,1), + (3940,'Presidente Hayes','15',1168,1), + (3941,'San Pedro','2',1168,1), + (3942,'Ad Dawhah','DA',1175,1), + (3943,'Al Ghuwayriyah','GH',1175,1), + (3944,'Al Jumayliyah','JU',1175,1), + (3945,'Al Khawr','KH',1175,1), + (3946,'Al Wakrah','WA',1175,1), + (3947,'Ar Rayyan','RA',1175,1), + (3948,'Jariyan al Batnah','JB',1175,1), + (3949,'Madinat ash Shamal','MS',1175,1), + (3950,'Umm Salal','US',1175,1), + (3951,'Bucuresti','B',1176,1), + (3952,'Alba','AB',1176,1), + (3953,'Arad','AR',1176,1), + (3954,'Argeș','AG',1176,1), + (3955,'Bacău','BC',1176,1), + (3956,'Bihor','BH',1176,1), + (3957,'Bistrița-Năsăud','BN',1176,1), + (3958,'Botoșani','BT',1176,1), + (3959,'Brașov','BV',1176,1), + (3960,'Brăila','BR',1176,1), + (3961,'Buzău','BZ',1176,1), + (3962,'Caraș-Severin','CS',1176,1), + (3963,'Călărași','CL',1176,1), + (3964,'Cluj','CJ',1176,1), + (3965,'Constanța','CT',1176,1), + (3966,'Covasna','CV',1176,1), + (3967,'Dâmbovița','DB',1176,1), + (3968,'Dolj','DJ',1176,1), + (3969,'Galați','GL',1176,1), + (3970,'Giurgiu','GR',1176,1), + (3971,'Gorj','GJ',1176,1), + (3972,'Harghita','HR',1176,1), + (3973,'Hunedoara','HD',1176,1), + (3974,'Ialomița','IL',1176,1), + (3975,'Iași','IS',1176,1), + (3976,'Ilfov','IF',1176,1), + (3977,'Maramureș','MM',1176,1), + (3978,'Mehedinți','MH',1176,1), + (3979,'Mureș','MS',1176,1), + (3980,'Neamț','NT',1176,1), + (3981,'Olt','OT',1176,1), + (3982,'Prahova','PH',1176,1), + (3983,'Satu Mare','SM',1176,1), + (3984,'Sălaj','SJ',1176,1), + (3985,'Sibiu','SB',1176,1), + (3986,'Suceava','SV',1176,1), + (3987,'Teleorman','TR',1176,1), + (3988,'Timiș','TM',1176,1), + (3989,'Tulcea','TL',1176,1), + (3990,'Vaslui','VS',1176,1), + (3991,'Vâlcea','VL',1176,1), + (3992,'Vrancea','VN',1176,1), + (3993,'Adygeya, Respublika','AD',1177,1), + (3994,'Altay, Respublika','AL',1177,1), + (3995,'Bashkortostan, Respublika','BA',1177,1), + (3996,'Buryatiya, Respublika','BU',1177,1), + (3997,'Chechenskaya Respublika','CE',1177,1), + (3998,'Chuvashskaya Respublika','CU',1177,1), + (3999,'Dagestan, Respublika','DA',1177,1), + (4000,'Ingushskaya Respublika','IN',1177,1), + (4001,'Kabardino-Balkarskaya','KB',1177,1), + (4002,'Kalmykiya, Respublika','KL',1177,1), + (4003,'Karachayevo-Cherkesskaya Respublika','KC',1177,1), + (4004,'Kareliya, Respublika','KR',1177,1), + (4005,'Khakasiya, Respublika','KK',1177,1), + (4006,'Komi, Respublika','KO',1177,1), + (4007,'Mariy El, Respublika','ME',1177,1), + (4008,'Mordoviya, Respublika','MO',1177,1), + (4009,'Sakha, Respublika [Yakutiya]','SA',1177,1), + (4010,'Severnaya Osetiya, Respublika','SE',1177,1), + (4011,'Tatarstan, Respublika','TA',1177,1), + (4012,'Tyva, Respublika [Tuva]','TY',1177,1), + (4013,'Udmurtskaya Respublika','UD',1177,1), + (4014,'Altayskiy kray','ALT',1177,1), + (4015,'Khabarovskiy kray','KHA',1177,1), + (4016,'Krasnodarskiy kray','KDA',1177,1), + (4017,'Krasnoyarskiy kray','KYA',1177,1), + (4018,'Primorskiy kray','PRI',1177,1), + (4019,'Stavropol\'skiy kray','STA',1177,1), + (4020,'Amurskaya oblast\'','AMU',1177,1), + (4021,'Arkhangel\'skaya oblast\'','ARK',1177,1), + (4022,'Astrakhanskaya oblast\'','AST',1177,1), + (4023,'Belgorodskaya oblast\'','BEL',1177,1), + (4024,'Bryanskaya oblast\'','BRY',1177,1), + (4025,'Chelyabinskaya oblast\'','CHE',1177,1), + (4026,'Zabaykalsky Krai\'','ZSK',1177,1), + (4027,'Irkutskaya oblast\'','IRK',1177,1), + (4028,'Ivanovskaya oblast\'','IVA',1177,1), + (4029,'Kaliningradskaya oblast\'','KGD',1177,1), + (4030,'Kaluzhskaya oblast\'','KLU',1177,1), + (4031,'Kamchatka Krai\'','KAM',1177,1), + (4032,'Kemerovskaya oblast\'','KEM',1177,1), + (4033,'Kirovskaya oblast\'','KIR',1177,1), + (4034,'Kostromskaya oblast\'','KOS',1177,1), + (4035,'Kurganskaya oblast\'','KGN',1177,1), + (4036,'Kurskaya oblast\'','KRS',1177,1), + (4037,'Leningradskaya oblast\'','LEN',1177,1), + (4038,'Lipetskaya oblast\'','LIP',1177,1), + (4039,'Magadanskaya oblast\'','MAG',1177,1), + (4040,'Moskovskaya oblast\'','MOS',1177,1), + (4041,'Murmanskaya oblast\'','MUR',1177,1), + (4042,'Nizhegorodskaya oblast\'','NIZ',1177,1), + (4043,'Novgorodskaya oblast\'','NGR',1177,1), + (4044,'Novosibirskaya oblast\'','NVS',1177,1), + (4045,'Omskaya oblast\'','OMS',1177,1), + (4046,'Orenburgskaya oblast\'','ORE',1177,1), + (4047,'Orlovskaya oblast\'','ORL',1177,1), + (4048,'Penzenskaya oblast\'','PNZ',1177,1), + (4049,'Perm krai\'','PEK',1177,1), + (4050,'Pskovskaya oblast\'','PSK',1177,1), + (4051,'Rostovskaya oblast\'','ROS',1177,1), + (4052,'Ryazanskaya oblast\'','RYA',1177,1), + (4053,'Sakhalinskaya oblast\'','SAK',1177,1), + (4054,'Samarskaya oblast\'','SAM',1177,1), + (4055,'Saratovskaya oblast\'','SAR',1177,1), + (4056,'Smolenskaya oblast\'','SMO',1177,1), + (4057,'Sverdlovskaya oblast\'','SVE',1177,1), + (4058,'Tambovskaya oblast\'','TAM',1177,1), + (4059,'Tomskaya oblast\'','TOM',1177,1), + (4060,'Tul\'skaya oblast\'','TUL',1177,1), + (4061,'Tverskaya oblast\'','TVE',1177,1), + (4062,'Tyumenskaya oblast\'','TYU',1177,1), + (4063,'Ul\'yanovskaya oblast\'','ULY',1177,1), + (4064,'Vladimirskaya oblast\'','VLA',1177,1), + (4065,'Volgogradskaya oblast\'','VGG',1177,1), + (4066,'Vologodskaya oblast\'','VLG',1177,1), + (4067,'Voronezhskaya oblast\'','VOR',1177,1), + (4068,'Yaroslavskaya oblast\'','YAR',1177,1), + (4069,'Moskva','MOW',1177,1), + (4070,'Sankt-Peterburg','SPE',1177,1), + (4071,'Yevreyskaya avtonomnaya oblast\'','YEV',1177,1), + (4072,'Chukotskiy avtonomnyy okrug','CHU',1177,1), + (4073,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177,1), + (4074,'Nenetskiy avtonomnyy okrug','NEN',1177,1), + (4075,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177,1), + (4076,'Butare','C',1178,1), + (4077,'Byumba','I',1178,1), + (4078,'Cyangugu','E',1178,1), + (4079,'Gikongoro','D',1178,1), + (4080,'Gisenyi','G',1178,1), + (4081,'Gitarama','B',1178,1), + (4082,'Kibungo','J',1178,1), + (4083,'Kibuye','F',1178,1), + (4084,'Kigali-Rural Kigali y\' Icyaro','K',1178,1), + (4085,'Kigali-Ville Kigali Ngari','L',1178,1), + (4086,'Mutara','M',1178,1), + (4087,'Ruhengeri','H',1178,1), + (4088,'Saint Kitts','K',1181,1), + (4089,'Nevis','N',1181,1), + (4090,'Al Bahah','11',1187,1), + (4091,'Al Hudud Ash Shamaliyah','08',1187,1), + (4092,'Al Jawf','12',1187,1), + (4093,'Al Madinah','03',1187,1), + (4094,'Al Qasim','05',1187,1), + (4095,'Ar Riyad','01',1187,1), + (4096,'Asir','14',1187,1), + (4097,'Ha\'il','06',1187,1), + (4098,'Jlzan','09',1187,1), + (4099,'Makkah','02',1187,1), + (4100,'Najran','10',1187,1), + (4101,'Tabuk','07',1187,1), + (4102,'Ash Sharqiyah','04',1187,1), + (4103,'Capital Territory (Honiara)','CT',1194,1), + (4104,'Guadalcanal','GU',1194,1), + (4105,'Isabel','IS',1194,1), + (4106,'Makira','MK',1194,1), + (4107,'Malaita','ML',1194,1), + (4108,'Temotu','TE',1194,1), + (4109,'A\'ali an Nil','23',1200,1), + (4110,'Al Bah al Ahmar','26',1200,1), + (4111,'Al Buhayrat','18',1200,1), + (4112,'Al Jazirah','07',1200,1), + (4113,'Al Khartum','03',1200,1), + (4114,'Al Qadarif','06',1200,1), + (4115,'Al Wahdah','22',1200,1), + (4116,'An Nil','04',1200,1), + (4117,'An Nil al Abyaq','08',1200,1), + (4118,'An Nil al Azraq','24',1200,1), + (4119,'Ash Shamallyah','01',1200,1), + (4120,'Bahr al Jabal','17',1200,1), + (4121,'Gharb al Istiwa\'iyah','16',1200,1), + (4122,'Gharb Ba~r al Ghazal','14',1200,1), + (4123,'Gharb Darfur','12',1200,1), + (4124,'Gharb Kurdufan','10',1200,1), + (4125,'Janub Darfur','11',1200,1), + (4126,'Janub Rurdufan','13',1200,1), + (4127,'Jnqall','20',1200,1), + (4128,'Kassala','05',1200,1), + (4129,'Shamal Batr al Ghazal','15',1200,1), + (4130,'Shamal Darfur','02',1200,1), + (4131,'Shamal Kurdufan','09',1200,1), + (4132,'Sharq al Istiwa\'iyah','19',1200,1), + (4133,'Sinnar','25',1200,1), + (4134,'Warab','21',1200,1), + (4135,'Blekinge län','K',1204,1), + (4136,'Dalarnas län','W',1204,1), + (4137,'Gotlands län','I',1204,1), + (4138,'Gävleborgs län','X',1204,1), + (4139,'Hallands län','N',1204,1), + (4140,'Jämtlands län','Z',1204,1), + (4141,'Jönkopings län','F',1204,1), + (4142,'Kalmar län','H',1204,1), + (4143,'Kronobergs län','G',1204,1), + (4144,'Norrbottens län','BD',1204,1), + (4145,'Skåne län','M',1204,1), + (4146,'Stockholms län','AB',1204,1), + (4147,'Södermanlands län','D',1204,1), + (4148,'Uppsala län','C',1204,1), + (4149,'Värmlands län','S',1204,1), + (4150,'Västerbottens län','AC',1204,1), + (4151,'Västernorrlands län','Y',1204,1), + (4152,'Västmanlands län','U',1204,1), + (4153,'Västra Götalands län','Q',1204,1), + (4154,'Örebro län','T',1204,1), + (4155,'Östergötlands län','E',1204,1), + (4156,'Saint Helena','SH',1180,1), + (4157,'Ascension','AC',1180,1), + (4158,'Tristan da Cunha','TA',1180,1), + (4159,'Ajdovščina','001',1193,1), + (4160,'Beltinci','002',1193,1), + (4161,'Benedikt','148',1193,1), + (4162,'Bistrica ob Sotli','149',1193,1), + (4163,'Bled','003',1193,1), + (4164,'Bloke','150',1193,1), + (4165,'Bohinj','004',1193,1), + (4166,'Borovnica','005',1193,1), + (4167,'Bovec','006',1193,1), + (4168,'Braslovče','151',1193,1), + (4169,'Brda','007',1193,1), + (4170,'Brezovica','008',1193,1), + (4171,'Brežice','009',1193,1), + (4172,'Cankova','152',1193,1), + (4173,'Celje','011',1193,1), + (4174,'Cerklje na Gorenjskem','012',1193,1), + (4175,'Cerknica','013',1193,1), + (4176,'Cerkno','014',1193,1), + (4177,'Cerkvenjak','153',1193,1), + (4178,'Črenšovci','015',1193,1), + (4179,'Črna na Koroškem','016',1193,1), + (4180,'Črnomelj','017',1193,1), + (4181,'Destrnik','018',1193,1), + (4182,'Divača','019',1193,1), + (4183,'Dobje','154',1193,1), + (4184,'Dobrepolje','020',1193,1), + (4185,'Dobrna','155',1193,1), + (4186,'Dobrova-Polhov Gradec','021',1193,1), + (4187,'Dobrovnik','156',1193,1), + (4188,'Dol pri Ljubljani','022',1193,1), + (4189,'Dolenjske Toplice','157',1193,1), + (4190,'Domžale','023',1193,1), + (4191,'Dornava','024',1193,1), + (4192,'Dravograd','025',1193,1), + (4193,'Duplek','026',1193,1), + (4194,'Gorenja vas-Poljane','027',1193,1), + (4195,'Gorišnica','028',1193,1), + (4196,'Gornja Radgona','029',1193,1), + (4197,'Gornji Grad','030',1193,1), + (4198,'Gornji Petrovci','031',1193,1), + (4199,'Grad','158',1193,1), + (4200,'Grosuplje','032',1193,1), + (4201,'Hajdina','159',1193,1), + (4202,'Hoče-Slivnica','160',1193,1), + (4203,'Hodoš','161',1193,1), + (4204,'Horjul','162',1193,1), + (4205,'Hrastnik','034',1193,1), + (4206,'Hrpelje-Kozina','035',1193,1), + (4207,'Idrija','036',1193,1), + (4208,'Ig','037',1193,1), + (4209,'Ilirska Bistrica','038',1193,1), + (4210,'Ivančna Gorica','039',1193,1), + (4211,'Izola','040',1193,1), + (4212,'Jesenice','041',1193,1), + (4213,'Jezersko','163',1193,1), + (4214,'Juršinci','042',1193,1), + (4215,'Kamnik','043',1193,1), + (4216,'Kanal','044',1193,1), + (4217,'Kidričevo','045',1193,1), + (4218,'Kobarid','046',1193,1), + (4219,'Kobilje','047',1193,1), + (4220,'Kočevje','048',1193,1), + (4221,'Komen','049',1193,1), + (4222,'Komenda','164',1193,1), + (4223,'Koper','050',1193,1), + (4224,'Kostel','165',1193,1), + (4225,'Kozje','051',1193,1), + (4226,'Kranj','052',1193,1), + (4227,'Kranjska Gora','053',1193,1), + (4228,'Križevci','166',1193,1), + (4229,'Krško','054',1193,1), + (4230,'Kungota','055',1193,1), + (4231,'Kuzma','056',1193,1), + (4232,'Laško','057',1193,1), + (4233,'Lenart','058',1193,1), + (4234,'Lendava','059',1193,1), + (4235,'Litija','060',1193,1), + (4236,'Ljubljana','061',1193,1), + (4237,'Ljubno','062',1193,1), + (4238,'Ljutomer','063',1193,1), + (4239,'Logatec','064',1193,1), + (4240,'Loška dolina','065',1193,1), + (4241,'Loški Potok','066',1193,1), + (4242,'Lovrenc na Pohorju','167',1193,1), + (4243,'Luče','067',1193,1), + (4244,'Lukovica','068',1193,1), + (4245,'Majšperk','069',1193,1), + (4246,'Maribor','070',1193,1), + (4247,'Markovci','168',1193,1), + (4248,'Medvode','071',1193,1), + (4249,'Mengeš','072',1193,1), + (4250,'Metlika','073',1193,1), + (4251,'Mežica','074',1193,1), + (4252,'Miklavž na Dravskem polju','169',1193,1), + (4253,'Miren-Kostanjevica','075',1193,1), + (4254,'Mirna Peč','170',1193,1), + (4255,'Mislinja','076',1193,1), + (4256,'Moravče','077',1193,1), + (4257,'Moravske Toplice','078',1193,1), + (4258,'Mozirje','079',1193,1), + (4259,'Murska Sobota','080',1193,1), + (4260,'Muta','081',1193,1), + (4261,'Naklo','082',1193,1), + (4262,'Nazarje','083',1193,1), + (4263,'Nova Gorica','084',1193,1), + (4264,'Novo mesto','085',1193,1), + (4265,'Sveta Ana','181',1193,1), + (4266,'Sveti Andraž v Slovenskih goricah','182',1193,1), + (4267,'Sveti Jurij','116',1193,1), + (4268,'Šalovci','033',1193,1), + (4269,'Šempeter-Vrtojba','183',1193,1), + (4270,'Šenčur','117',1193,1), + (4271,'Šentilj','118',1193,1), + (4272,'Šentjernej','119',1193,1), + (4273,'Šentjur','120',1193,1), + (4274,'Škocjan','121',1193,1), + (4275,'Škofja Loka','122',1193,1), + (4276,'Škofljica','123',1193,1), + (4277,'Šmarje pri Jelšah','124',1193,1), + (4278,'Šmartno ob Paki','125',1193,1), + (4279,'Šmartno pri Litiji','194',1193,1), + (4280,'Šoštanj','126',1193,1), + (4281,'Štore','127',1193,1), + (4282,'Tabor','184',1193,1), + (4283,'Tišina','010',1193,1), + (4284,'Tolmin','128',1193,1), + (4285,'Trbovlje','129',1193,1), + (4286,'Trebnje','130',1193,1), + (4287,'Trnovska vas','185',1193,1), + (4288,'Tržič','131',1193,1), + (4289,'Trzin','186',1193,1), + (4290,'Turnišče','132',1193,1), + (4291,'Velenje','133',1193,1), + (4292,'Velika Polana','187',1193,1), + (4293,'Velike Lašče','134',1193,1), + (4294,'Veržej','188',1193,1), + (4295,'Videm','135',1193,1), + (4296,'Vipava','136',1193,1), + (4297,'Vitanje','137',1193,1), + (4298,'Vojnik','138',1193,1), + (4299,'Vransko','189',1193,1), + (4300,'Vrhnika','140',1193,1), + (4301,'Vuzenica','141',1193,1), + (4302,'Zagorje ob Savi','142',1193,1), + (4303,'Zavrč','143',1193,1), + (4304,'Zreče','144',1193,1), + (4305,'Žalec','190',1193,1), + (4306,'Železniki','146',1193,1), + (4307,'Žetale','191',1193,1), + (4308,'Žiri','147',1193,1), + (4309,'Žirovnica','192',1193,1), + (4310,'Žužemberk','193',1193,1), + (4311,'Ankaran','86',1193,1), + (4312,'Apače','87',1193,1), + (4313,'Cirkulane','88',1193,1), + (4314,'Gorje','89',1193,1), + (4315,'Kostanjevica na Krki','90',1193,1), + (4316,'Log-Dragomer','91',1193,1), + (4317,'Makole','92',1193,1), + (4318,'Mirna','93',1193,1), + (4319,'Mokronog-Trebelno','94',1193,1), + (4320,'Odranci','95',1193,1), + (4321,'Oplotnica','96',1193,1), + (4322,'Ormož','97',1193,1), + (4323,'Osilnica','98',1193,1), + (4324,'Pesnica','99',1193,1), + (4325,'Piran','100',1193,1), + (4326,'Pivka','101',1193,1), + (4327,'Podčetrtek','102',1193,1), + (4328,'Podlehnik','103',1193,1), + (4329,'Podvelka','104',1193,1), + (4330,'Poljčane','105',1193,1), + (4331,'Polzela','106',1193,1), + (4332,'Postojna','107',1193,1), + (4333,'Prebold','108',1193,1), + (4334,'Preddvor','109',1193,1), + (4335,'Prevalje','110',1193,1), + (4336,'Ptuj','111',1193,1), + (4337,'Puconci','112',1193,1), + (4338,'Rače-Fram','113',1193,1), + (4339,'Radeče','114',1193,1), + (4340,'Radenci','115',1193,1), + (4341,'Radlje ob Dravi','139',1193,1), + (4342,'Radovljica','145',1193,1), + (4343,'Ravne na Koroškem','171',1193,1), + (4344,'Razkrižje','172',1193,1), + (4345,'Rečica ob Savinji','173',1193,1), + (4346,'Renče-Vogrsko','174',1193,1), + (4347,'Ribnica','175',1193,1), + (4348,'Ribnica na Pohorju','176',1193,1), + (4349,'Rogaška Slatina','177',1193,1), + (4350,'Rogašovci','178',1193,1), + (4351,'Rogatec','179',1193,1), + (4352,'Ruše','180',1193,1), + (4353,'Selnica ob Dravi','195',1193,1), + (4354,'Semič','196',1193,1), + (4355,'Šentrupert','197',1193,1), + (4356,'Sevnica','198',1193,1), + (4357,'Sežana','199',1193,1), + (4358,'Slovenj Gradec','200',1193,1), + (4359,'Slovenska Bistrica','201',1193,1), + (4360,'Slovenske Konjice','202',1193,1), + (4361,'Šmarješke Toplice','203',1193,1), + (4362,'Sodražica','204',1193,1), + (4363,'Solčava','205',1193,1), + (4364,'Središče ob Dravi','206',1193,1), + (4365,'Starše','207',1193,1), + (4366,'Straža','208',1193,1), + (4367,'Sveta Trojica v Slovenskih goricah','209',1193,1), + (4368,'Sveti Jurij v Slovenskih goricah','210',1193,1), + (4369,'Sveti Tomaž','211',1193,1), + (4370,'Vodice','212',1193,1), + (4371,'Banskobystrický kraj','BC',1192,1), + (4372,'Bratislavský kraj','BL',1192,1), + (4373,'Košický kraj','KI',1192,1), + (4374,'Nitriansky kraj','NJ',1192,1), + (4375,'Prešovský kraj','PV',1192,1), + (4376,'Trenčiansky kraj','TC',1192,1), + (4377,'Trnavský kraj','TA',1192,1), + (4378,'Žilinský kraj','ZI',1192,1), + (4379,'Western Area (Freetown)','W',1190,1), + (4380,'Eastern','E',1190,1), + (4381,'Northern','N',1190,1), + (4382,'Southern','S',1190,1), + (4383,'Dakar','DK',1188,1), + (4384,'Diourbel','DB',1188,1), + (4385,'Fatick','FK',1188,1), + (4386,'Kaolack','KL',1188,1), + (4387,'Kolda','KD',1188,1), + (4388,'Louga','LG',1188,1), + (4389,'Matam','MT',1188,1), + (4390,'Saint-Louis','SL',1188,1), + (4391,'Tambacounda','TC',1188,1), + (4392,'Thies','TH',1188,1), + (4393,'Ziguinchor','ZG',1188,1), + (4394,'Awdal','AW',1195,1), + (4395,'Bakool','BK',1195,1), + (4396,'Banaadir','BN',1195,1), + (4397,'Bay','BY',1195,1), + (4398,'Galguduud','GA',1195,1), + (4399,'Gedo','GE',1195,1), + (4400,'Hiirsan','HI',1195,1), + (4401,'Jubbada Dhexe','JD',1195,1), + (4402,'Jubbada Hoose','JH',1195,1), + (4403,'Mudug','MU',1195,1), + (4404,'Nugaal','NU',1195,1), + (4405,'Saneag','SA',1195,1), + (4406,'Shabeellaha Dhexe','SD',1195,1), + (4407,'Shabeellaha Hoose','SH',1195,1), + (4408,'Sool','SO',1195,1), + (4409,'Togdheer','TO',1195,1), + (4410,'Woqooyi Galbeed','WO',1195,1), + (4411,'Brokopondo','BR',1201,1), + (4412,'Commewijne','CM',1201,1), + (4413,'Coronie','CR',1201,1), + (4414,'Marowijne','MA',1201,1), + (4415,'Nickerie','NI',1201,1), + (4416,'Paramaribo','PM',1201,1), + (4417,'Saramacca','SA',1201,1), + (4418,'Sipaliwini','SI',1201,1), + (4419,'Wanica','WA',1201,1), + (4420,'Principe','P',1207,1), + (4421,'Sao Tome','S',1207,1), + (4422,'Ahuachapan','AH',1066,1), + (4423,'Cabanas','CA',1066,1), + (4424,'Cuscatlan','CU',1066,1), + (4425,'Chalatenango','CH',1066,1), + (4426,'Morazan','MO',1066,1), + (4427,'San Miguel','SM',1066,1), + (4428,'San Salvador','SS',1066,1), + (4429,'Santa Ana','SA',1066,1), + (4430,'San Vicente','SV',1066,1), + (4431,'Sonsonate','SO',1066,1), + (4432,'Usulutan','US',1066,1), + (4433,'La Libertad','LI',1066,1), + (4434,'La Paz','PA',1066,1), + (4435,'La Union','UN',1066,1), + (4436,'Al Hasakah','HA',1206,1), + (4437,'Al Ladhiqiyah','LA',1206,1), + (4438,'Al Qunaytirah','QU',1206,1), + (4439,'Ar Raqqah','RA',1206,1), + (4440,'As Suwayda\'','SU',1206,1), + (4441,'Dar\'a','DR',1206,1), + (4442,'Dayr az Zawr','DY',1206,1), + (4443,'Dimashq','DI',1206,1), + (4444,'Halab','HL',1206,1), + (4445,'Hamah','HM',1206,1), + (4446,'Jim\'','HI',1206,1), + (4447,'Idlib','ID',1206,1), + (4448,'Rif Dimashq','RD',1206,1), + (4449,'Tarts','TA',1206,1), + (4450,'Hhohho','HH',1203,1), + (4451,'Lubombo','LU',1203,1), + (4452,'Manzini','MA',1203,1), + (4453,'Shiselweni','SH',1203,1), + (4454,'Batha','BA',1043,1), + (4455,'Biltine','BI',1043,1), + (4456,'Borkou-Ennedi-Tibesti','BET',1043,1), + (4457,'Chari-Baguirmi','CB',1043,1), + (4458,'Guera','GR',1043,1), + (4459,'Kanem','KA',1043,1), + (4460,'Lac','LC',1043,1), + (4461,'Logone-Occidental','LO',1043,1), + (4462,'Logone-Oriental','LR',1043,1), + (4463,'Mayo-Kebbi','MK',1043,1), + (4464,'Moyen-Chari','MC',1043,1), + (4465,'Ouaddai','OD',1043,1), + (4466,'Salamat','SA',1043,1), + (4467,'Tandjile','TA',1043,1), + (4468,'Kara','K',1214,1), + (4469,'Maritime (Region)','M',1214,1), + (4470,'Savannes','S',1214,1), + (4471,'Krung Thep Maha Nakhon Bangkok','10',1211,1), + (4472,'Phatthaya','S',1211,1), + (4473,'Amnat Charoen','37',1211,1), + (4474,'Ang Thong','15',1211,1), + (4475,'Buri Ram','31',1211,1), + (4476,'Chachoengsao','24',1211,1), + (4477,'Chai Nat','18',1211,1), + (4478,'Chaiyaphum','36',1211,1), + (4479,'Chanthaburi','22',1211,1), + (4480,'Chiang Mai','50',1211,1), + (4481,'Chiang Rai','57',1211,1), + (4482,'Chon Buri','20',1211,1), + (4483,'Chumphon','86',1211,1), + (4484,'Kalasin','46',1211,1), + (4485,'Kamphasng Phet','62',1211,1), + (4486,'Kanchanaburi','71',1211,1), + (4487,'Khon Kaen','40',1211,1), + (4488,'Krabi','81',1211,1), + (4489,'Lampang','52',1211,1), + (4490,'Lamphun','51',1211,1), + (4491,'Loei','42',1211,1), + (4492,'Lop Buri','16',1211,1), + (4493,'Mae Hong Son','58',1211,1), + (4494,'Maha Sarakham','44',1211,1), + (4495,'Mukdahan','49',1211,1), + (4496,'Nakhon Nayok','26',1211,1), + (4497,'Nakhon Pathom','73',1211,1), + (4498,'Nakhon Phanom','48',1211,1), + (4499,'Nakhon Ratchasima','30',1211,1), + (4500,'Nakhon Sawan','60',1211,1), + (4501,'Nakhon Si Thammarat','80',1211,1), + (4502,'Nan','55',1211,1), + (4503,'Narathiwat','96',1211,1), + (4504,'Nong Bua Lam Phu','39',1211,1), + (4505,'Nong Khai','43',1211,1), + (4506,'Nonthaburi','12',1211,1), + (4507,'Pathum Thani','13',1211,1), + (4508,'Pattani','94',1211,1), + (4509,'Phangnga','82',1211,1), + (4510,'Phatthalung','93',1211,1), + (4511,'Phayao','56',1211,1), + (4512,'Phetchabun','67',1211,1), + (4513,'Phetchaburi','76',1211,1), + (4514,'Phichit','66',1211,1), + (4515,'Phitsanulok','65',1211,1), + (4516,'Phrae','54',1211,1), + (4517,'Phra Nakhon Si Ayutthaya','14',1211,1), + (4518,'Phuket','83',1211,1), + (4519,'Prachin Buri','25',1211,1), + (4520,'Prachuap Khiri Khan','77',1211,1), + (4521,'Ranong','85',1211,1), + (4522,'Ratchaburi','70',1211,1), + (4523,'Rayong','21',1211,1), + (4524,'Roi Et','45',1211,1), + (4525,'Sa Kaeo','27',1211,1), + (4526,'Sakon Nakhon','47',1211,1), + (4527,'Samut Prakan','11',1211,1), + (4528,'Samut Sakhon','74',1211,1), + (4529,'Samut Songkhram','75',1211,1), + (4530,'Saraburi','19',1211,1), + (4531,'Satun','91',1211,1), + (4532,'Sing Buri','17',1211,1), + (4533,'Si Sa Ket','33',1211,1), + (4534,'Songkhla','90',1211,1), + (4535,'Sukhothai','64',1211,1), + (4536,'Suphan Buri','72',1211,1), + (4537,'Surat Thani','84',1211,1), + (4538,'Surin','32',1211,1), + (4539,'Tak','63',1211,1), + (4540,'Trang','92',1211,1), + (4541,'Trat','23',1211,1), + (4542,'Ubon Ratchathani','34',1211,1), + (4543,'Udon Thani','41',1211,1), + (4544,'Uthai Thani','61',1211,1), + (4545,'Uttaradit','53',1211,1), + (4546,'Yala','95',1211,1), + (4547,'Yasothon','35',1211,1), + (4548,'Sughd','SU',1209,1), + (4549,'Khatlon','KT',1209,1), + (4550,'Gorno-Badakhshan','GB',1209,1), + (4551,'Dushanbe','DU',1209,1), + (4552,'Nohiyahoi Tobei Jumhurí','RA',1209,1), + (4553,'Ahal','A',1220,1), + (4554,'Balkan','B',1220,1), + (4555,'Dasoguz','D',1220,1), + (4556,'Lebap','L',1220,1), + (4557,'Mary','M',1220,1), + (4558,'Béja','31',1218,1), + (4559,'Ben Arous','13',1218,1), + (4560,'Bizerte','23',1218,1), + (4561,'Gabès','81',1218,1), + (4562,'Gafsa','71',1218,1), + (4563,'Jendouba','32',1218,1), + (4564,'Kairouan','41',1218,1), + (4565,'Rasserine','42',1218,1), + (4566,'Kebili','73',1218,1), + (4567,'L\'Ariana','12',1218,1), + (4568,'Le Ref','33',1218,1), + (4569,'Mahdia','53',1218,1), + (4570,'La Manouba','14',1218,1), + (4571,'Medenine','82',1218,1), + (4572,'Moneatir','52',1218,1), + (4573,'Naboul','21',1218,1), + (4574,'Sfax','61',1218,1), + (4575,'Sidi Bouxid','43',1218,1), + (4576,'Siliana','34',1218,1), + (4577,'Sousse','51',1218,1), + (4578,'Tataouine','83',1218,1), + (4579,'Tozeur','72',1218,1), + (4580,'Tunis','11',1218,1), + (4581,'Zaghouan','22',1218,1), + (4582,'Adana','01',1219,1), + (4583,'Ad yaman','02',1219,1), + (4584,'Afyon','03',1219,1), + (4585,'Ag r','04',1219,1), + (4586,'Aksaray','68',1219,1), + (4587,'Amasya','05',1219,1), + (4588,'Ankara','06',1219,1), + (4589,'Antalya','07',1219,1), + (4590,'Ardahan','75',1219,1), + (4591,'Artvin','08',1219,1), + (4592,'Aydin','09',1219,1), + (4593,'Bal kesir','10',1219,1), + (4594,'Bartin','74',1219,1), + (4595,'Batman','72',1219,1), + (4596,'Bayburt','69',1219,1), + (4597,'Bilecik','11',1219,1), + (4598,'Bingol','12',1219,1), + (4599,'Bitlis','13',1219,1), + (4600,'Bolu','14',1219,1), + (4601,'Burdur','15',1219,1), + (4602,'Bursa','16',1219,1), + (4603,'Canakkale','17',1219,1), + (4604,'Cankir','18',1219,1), + (4605,'Corum','19',1219,1), + (4606,'Denizli','20',1219,1), + (4607,'Diyarbakir','21',1219,1), + (4608,'Duzce','81',1219,1), + (4609,'Edirne','22',1219,1), + (4610,'Elazig','23',1219,1), + (4611,'Erzincan','24',1219,1), + (4612,'Erzurum','25',1219,1), + (4613,'Eskis\'ehir','26',1219,1), + (4614,'Gaziantep','27',1219,1), + (4615,'Giresun','28',1219,1), + (4616,'Gms\'hane','29',1219,1), + (4617,'Hakkari','30',1219,1), + (4618,'Hatay','31',1219,1), + (4619,'Igidir','76',1219,1), + (4620,'Isparta','32',1219,1), + (4621,'Icel','33',1219,1), + (4622,'Istanbul','34',1219,1), + (4623,'Izmir','35',1219,1), + (4624,'Kahramanmaras','46',1219,1), + (4625,'Karabk','78',1219,1), + (4626,'Karaman','70',1219,1), + (4627,'Kars','36',1219,1), + (4628,'Kastamonu','37',1219,1), + (4629,'Kayseri','38',1219,1), + (4630,'Kirikkale','71',1219,1), + (4631,'Kirklareli','39',1219,1), + (4632,'Kirs\'ehir','40',1219,1), + (4633,'Kilis','79',1219,1), + (4634,'Kocaeli','41',1219,1), + (4635,'Konya','42',1219,1), + (4636,'Ktahya','43',1219,1), + (4637,'Malatya','44',1219,1), + (4638,'Manisa','45',1219,1), + (4639,'Mardin','47',1219,1), + (4640,'Mugila','48',1219,1), + (4641,'Mus','49',1219,1), + (4642,'Nevs\'ehir','50',1219,1), + (4643,'Nigide','51',1219,1), + (4644,'Ordu','52',1219,1), + (4645,'Osmaniye','80',1219,1), + (4646,'Rize','53',1219,1), + (4647,'Sakarya','54',1219,1), + (4648,'Samsun','55',1219,1), + (4649,'Siirt','56',1219,1), + (4650,'Sinop','57',1219,1), + (4651,'Sivas','58',1219,1), + (4652,'S\'anliurfa','63',1219,1), + (4653,'S\'rnak','73',1219,1), + (4654,'Tekirdag','59',1219,1), + (4655,'Tokat','60',1219,1), + (4656,'Trabzon','61',1219,1), + (4657,'Tunceli','62',1219,1), + (4658,'Us\'ak','64',1219,1), + (4659,'Van','65',1219,1), + (4660,'Yalova','77',1219,1), + (4661,'Yozgat','66',1219,1), + (4662,'Zonguldak','67',1219,1), + (4663,'Couva-Tabaquite-Talparo','CTT',1217,1), + (4664,'Diego Martin','DMN',1217,1), + (4665,'Eastern Tobago','ETO',1217,1), + (4666,'Penal-Debe','PED',1217,1), + (4667,'Princes Town','PRT',1217,1), + (4668,'Rio Claro-Mayaro','RCM',1217,1), + (4669,'Sangre Grande','SGE',1217,1), + (4670,'San Juan-Laventille','SJL',1217,1), + (4671,'Siparia','SIP',1217,1), + (4672,'Tunapuna-Piarco','TUP',1217,1), + (4673,'Western Tobago','WTO',1217,1), + (4674,'Arima','ARI',1217,1), + (4675,'Chaguanas','CHA',1217,1), + (4676,'Point Fortin','PTF',1217,1), + (4677,'Port of Spain','POS',1217,1), + (4678,'San Fernando','SFO',1217,1), + (4679,'Aileu','AL',1063,1), + (4680,'Ainaro','AN',1063,1), + (4681,'Bacucau','BA',1063,1), + (4682,'Bobonaro','BO',1063,1), + (4683,'Cova Lima','CO',1063,1), + (4684,'Dili','DI',1063,1), + (4685,'Ermera','ER',1063,1), + (4686,'Laulem','LA',1063,1), + (4687,'Liquica','LI',1063,1), + (4688,'Manatuto','MT',1063,1), + (4689,'Manafahi','MF',1063,1), + (4690,'Oecussi','OE',1063,1), + (4691,'Viqueque','VI',1063,1), + (4692,'Changhua County','CHA',1208,1), + (4693,'Chiayi County','CYQ',1208,1), + (4694,'Hsinchu County','HSQ',1208,1), + (4695,'Hualien County','HUA',1208,1), + (4696,'Ilan County','ILA',1208,1), + (4697,'Kaohsiung County','KHQ',1208,1), + (4698,'Miaoli County','MIA',1208,1), + (4699,'Nantou County','NAN',1208,1), + (4700,'Penghu County','PEN',1208,1), + (4701,'Pingtung County','PIF',1208,1), + (4702,'Taichung County','TXQ',1208,1), + (4703,'Tainan County','TNQ',1208,1), + (4704,'Taipei County','TPQ',1208,1), + (4705,'Taitung County','TTT',1208,1), + (4706,'Taoyuan County','TAO',1208,1), + (4707,'Yunlin County','YUN',1208,1), + (4708,'Keelung City','KEE',1208,1), + (4709,'Taichung City','TXG',1208,1), + (4710,'Kaohsiung City','KHH',1208,1), + (4711,'Taipei City','TPE',1208,1), + (4712,'Chiayi City','CYI',1208,1), + (4713,'Hsinchu City','HSZ',1208,1), + (4714,'Tainan City','TNN',1208,1), + (4715,'Arusha','01',1210,1), + (4716,'Dar-es-Salaam','02',1210,1), + (4717,'Dodoma','03',1210,1), + (4718,'Iringa','04',1210,1), + (4719,'Kagera','05',1210,1), + (4720,'Kaskazini Pemba','06',1210,1), + (4721,'Kaskazini Unguja','07',1210,1), + (4722,'Xigoma','08',1210,1), + (4723,'Kilimanjaro','09',1210,1), + (4724,'Rusini Pemba','10',1210,1), + (4725,'Kusini Unguja','11',1210,1), + (4726,'Lindi','12',1210,1), + (4727,'Manyara','26',1210,1), + (4728,'Mara','13',1210,1), + (4729,'Mbeya','14',1210,1), + (4730,'Mjini Magharibi','15',1210,1), + (4731,'Morogoro','16',1210,1), + (4732,'Mtwara','17',1210,1), + (4733,'Pwani','19',1210,1), + (4734,'Rukwa','20',1210,1), + (4735,'Ruvuma','21',1210,1), + (4736,'Shinyanga','22',1210,1), + (4737,'Singida','23',1210,1), + (4738,'Tabora','24',1210,1), + (4739,'Tanga','25',1210,1), + (4740,'Cherkas\'ka Oblast\'','71',1224,1), + (4741,'Chernihivs\'ka Oblast\'','74',1224,1), + (4742,'Chernivets\'ka Oblast\'','77',1224,1), + (4743,'Dnipropetrovs\'ka Oblast\'','12',1224,1), + (4744,'Donets\'ka Oblast\'','14',1224,1), + (4745,'Ivano-Frankivs\'ka Oblast\'','26',1224,1), + (4746,'Kharkivs\'ka Oblast\'','63',1224,1), + (4747,'Khersons\'ka Oblast\'','65',1224,1), + (4748,'Khmel\'nyts\'ka Oblast\'','68',1224,1), + (4749,'Kirovohrads\'ka Oblast\'','35',1224,1), + (4750,'Kyivs\'ka Oblast\'','32',1224,1), + (4751,'Luhans\'ka Oblast\'','09',1224,1), + (4752,'L\'vivs\'ka Oblast\'','46',1224,1), + (4753,'Mykolaivs\'ka Oblast\'','48',1224,1), + (4754,'Odes \'ka Oblast\'','51',1224,1), + (4755,'Poltavs\'ka Oblast\'','53',1224,1), + (4756,'Rivnens\'ka Oblast\'','56',1224,1), + (4757,'Sums \'ka Oblast\'','59',1224,1), + (4758,'Ternopil\'s\'ka Oblast\'','61',1224,1), + (4759,'Vinnyts\'ka Oblast\'','05',1224,1), + (4760,'Volyos\'ka Oblast\'','07',1224,1), + (4761,'Zakarpats\'ka Oblast\'','21',1224,1), + (4762,'Zaporiz\'ka Oblast\'','23',1224,1), + (4763,'Zhytomyrs\'ka Oblast\'','18',1224,1), + (4764,'Respublika Krym','43',1224,1), + (4765,'Kyiv','30',1224,1), + (4766,'Sevastopol','40',1224,1), + (4767,'Adjumani','301',1223,1), + (4768,'Apac','302',1223,1), + (4769,'Arua','303',1223,1), + (4770,'Bugiri','201',1223,1), + (4771,'Bundibugyo','401',1223,1), + (4772,'Bushenyi','402',1223,1), + (4773,'Busia','202',1223,1), + (4774,'Gulu','304',1223,1), + (4775,'Hoima','403',1223,1), + (4776,'Iganga','203',1223,1), + (4777,'Jinja','204',1223,1), + (4778,'Kabale','404',1223,1), + (4779,'Kabarole','405',1223,1), + (4780,'Kaberamaido','213',1223,1), + (4781,'Kalangala','101',1223,1), + (4782,'Kampala','102',1223,1), + (4783,'Kamuli','205',1223,1), + (4784,'Kamwenge','413',1223,1), + (4785,'Kanungu','414',1223,1), + (4786,'Kapchorwa','206',1223,1), + (4787,'Kasese','406',1223,1), + (4788,'Katakwi','207',1223,1), + (4789,'Kayunga','112',1223,1), + (4790,'Kibaale','407',1223,1), + (4791,'Kiboga','103',1223,1), + (4792,'Kisoro','408',1223,1), + (4793,'Kitgum','305',1223,1), + (4794,'Kotido','306',1223,1), + (4795,'Kumi','208',1223,1), + (4796,'Kyenjojo','415',1223,1), + (4797,'Lira','307',1223,1), + (4798,'Luwero','104',1223,1), + (4799,'Masaka','105',1223,1), + (4800,'Masindi','409',1223,1), + (4801,'Mayuge','214',1223,1), + (4802,'Mbale','209',1223,1), + (4803,'Mbarara','410',1223,1), + (4804,'Moroto','308',1223,1), + (4805,'Moyo','309',1223,1), + (4806,'Mpigi','106',1223,1), + (4807,'Mubende','107',1223,1), + (4808,'Mukono','108',1223,1), + (4809,'Nakapiripirit','311',1223,1), + (4810,'Nakasongola','109',1223,1), + (4811,'Nebbi','310',1223,1), + (4812,'Ntungamo','411',1223,1), + (4813,'Pader','312',1223,1), + (4814,'Pallisa','210',1223,1), + (4815,'Rakai','110',1223,1), + (4816,'Rukungiri','412',1223,1), + (4817,'Sembabule','111',1223,1), + (4818,'Sironko','215',1223,1), + (4819,'Soroti','211',1223,1), + (4820,'Tororo','212',1223,1), + (4821,'Wakiso','113',1223,1), + (4822,'Yumbe','313',1223,1), + (4823,'Baker Island','81',1227,1), + (4824,'Howland Island','84',1227,1), + (4825,'Jarvis Island','86',1227,1), + (4826,'Johnston Atoll','67',1227,1), + (4827,'Kingman Reef','89',1227,1), + (4828,'Midway Islands','71',1227,1), + (4829,'Navassa Island','76',1227,1), + (4830,'Palmyra Atoll','95',1227,1), + (4831,'Wake Island','79',1227,1), + (4832,'Artigsa','AR',1229,1), + (4833,'Canelones','CA',1229,1), + (4834,'Cerro Largo','CL',1229,1), + (4835,'Colonia','CO',1229,1), + (4836,'Durazno','DU',1229,1), + (4837,'Flores','FS',1229,1), + (4838,'Lavalleja','LA',1229,1), + (4839,'Maldonado','MA',1229,1), + (4840,'Montevideo','MO',1229,1), + (4841,'Paysandu','PA',1229,1), + (4842,'Rivera','RV',1229,1), + (4843,'Rocha','RO',1229,1), + (4844,'Salto','SA',1229,1), + (4845,'Soriano','SO',1229,1), + (4846,'Tacuarembo','TA',1229,1), + (4847,'Treinta y Tres','TT',1229,1), + (4848,'Florida','FL',1229,1), + (4849,'Rio Negro','RN',1229,1), + (4850,'San Jose','SJ',1229,1), + (4851,'Toshkent (city)','TK',1230,1), + (4852,'Qoraqalpogiston Respublikasi','QR',1230,1), + (4853,'Andijon','AN',1230,1), + (4854,'Buxoro','BU',1230,1), + (4855,'Farg\'ona','FA',1230,1), + (4856,'Jizzax','JI',1230,1), + (4857,'Khorazm','KH',1230,1), + (4858,'Namangan','NG',1230,1), + (4859,'Navoiy','NW',1230,1), + (4860,'Qashqadaryo','QA',1230,1), + (4861,'Samarqand','SA',1230,1), + (4862,'Sirdaryo','SI',1230,1), + (4863,'Surxondaryo','SU',1230,1), + (4864,'Toshkent','TO',1230,1), + (4865,'Xorazm','XO',1230,1), + (4866,'Distrito Federal','A',1232,1), + (4867,'Anzoategui','B',1232,1), + (4868,'Apure','C',1232,1), + (4869,'Aragua','D',1232,1), + (4870,'Barinas','E',1232,1), + (4871,'Carabobo','G',1232,1), + (4872,'Cojedes','H',1232,1), + (4873,'Falcon','I',1232,1), + (4874,'Guarico','J',1232,1), + (4875,'Lara','K',1232,1), + (4876,'Merida','L',1232,1), + (4877,'Miranda','M',1232,1), + (4878,'Monagas','N',1232,1), + (4879,'Nueva Esparta','O',1232,1), + (4880,'Portuguesa','P',1232,1), + (4881,'Tachira','S',1232,1), + (4882,'Trujillo','T',1232,1), + (4883,'Vargas','X',1232,1), + (4884,'Yaracuy','U',1232,1), + (4885,'Zulia','V',1232,1), + (4886,'Delta Amacuro','Y',1232,1), + (4887,'Dependencias Federales','W',1232,1), + (4888,'An Giang','44',1233,1), + (4889,'Ba Ria - Vung Tau','43',1233,1), + (4890,'Bac Can','53',1233,1), + (4891,'Bac Giang','54',1233,1), + (4892,'Bac Lieu','55',1233,1), + (4893,'Bac Ninh','56',1233,1), + (4894,'Ben Tre','50',1233,1), + (4895,'Binh Dinh','31',1233,1), + (4896,'Binh Duong','57',1233,1), + (4897,'Binh Phuoc','58',1233,1), + (4898,'Binh Thuan','40',1233,1), + (4899,'Ca Mau','59',1233,1), + (4900,'Can Tho','48',1233,1), + (4901,'Cao Bang','04',1233,1), + (4902,'Da Nang, thanh pho','60',1233,1), + (4903,'Dong Nai','39',1233,1), + (4904,'Dong Thap','45',1233,1), + (4905,'Gia Lai','30',1233,1), + (4906,'Ha Giang','03',1233,1), + (4907,'Ha Nam','63',1233,1), + (4908,'Ha Noi, thu do','64',1233,1), + (4909,'Ha Tay','15',1233,1), + (4910,'Ha Tinh','23',1233,1), + (4911,'Hai Duong','61',1233,1), + (4912,'Hai Phong, thanh pho','62',1233,1), + (4913,'Hoa Binh','14',1233,1), + (4914,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233,1), + (4915,'Hung Yen','66',1233,1), + (4916,'Khanh Hoa','34',1233,1), + (4917,'Kien Giang','47',1233,1), + (4918,'Kon Tum','28',1233,1), + (4919,'Lai Chau','01',1233,1), + (4920,'Lam Dong','35',1233,1), + (4921,'Lang Son','09',1233,1), + (4922,'Lao Cai','02',1233,1), + (4923,'Long An','41',1233,1), + (4924,'Nam Dinh','67',1233,1), + (4925,'Nghe An','22',1233,1), + (4926,'Ninh Binh','18',1233,1), + (4927,'Ninh Thuan','36',1233,1), + (4928,'Phu Tho','68',1233,1), + (4929,'Phu Yen','32',1233,1), + (4930,'Quang Binh','24',1233,1), + (4931,'Quang Nam','27',1233,1), + (4932,'Quang Ngai','29',1233,1), + (4933,'Quang Ninh','13',1233,1), + (4934,'Quang Tri','25',1233,1), + (4935,'Soc Trang','52',1233,1), + (4936,'Son La','05',1233,1), + (4937,'Tay Ninh','37',1233,1), + (4938,'Thai Binh','20',1233,1), + (4939,'Thai Nguyen','69',1233,1), + (4940,'Thanh Hoa','21',1233,1), + (4941,'Thua Thien-Hue','26',1233,1), + (4942,'Tien Giang','46',1233,1), + (4943,'Tra Vinh','51',1233,1), + (4944,'Tuyen Quang','07',1233,1), + (4945,'Vinh Long','49',1233,1), + (4946,'Vinh Phuc','70',1233,1), + (4947,'Yen Bai','06',1233,1), + (4948,'Malampa','MAP',1231,1), + (4949,'Penama','PAM',1231,1), + (4950,'Sanma','SAM',1231,1), + (4951,'Shefa','SEE',1231,1), + (4952,'Tafea','TAE',1231,1), + (4953,'Torba','TOB',1231,1), + (4954,'A\'ana','AA',1185,1), + (4955,'Aiga-i-le-Tai','AL',1185,1), + (4956,'Atua','AT',1185,1), + (4957,'Fa\'aaaleleaga','FA',1185,1), + (4958,'Gaga\'emauga','GE',1185,1), + (4959,'Gagaifomauga','GI',1185,1), + (4960,'Palauli','PA',1185,1), + (4961,'Satupa\'itea','SA',1185,1), + (4962,'Tuamasaga','TU',1185,1), + (4963,'Va\'a-o-Fonoti','VF',1185,1), + (4964,'Vaisigano','VS',1185,1), + (4965,'Crna Gora','CG',1243,1), + (4966,'Srbija','SR',1242,1), + (4967,'Kosovo-Metohija','KM',1242,1), + (4968,'Vojvodina','VO',1242,1), + (4969,'Abyan','AB',1237,1), + (4970,'Adan','AD',1237,1), + (4971,'Ad Dali','DA',1237,1), + (4972,'Al Bayda\'','BA',1237,1), + (4973,'Al Hudaydah','MU',1237,1), + (4974,'Al Mahrah','MR',1237,1), + (4975,'Al Mahwit','MW',1237,1), + (4976,'Amran','AM',1237,1), + (4977,'Dhamar','DH',1237,1), + (4978,'Hadramawt','HD',1237,1), + (4979,'Hajjah','HJ',1237,1), + (4980,'Ibb','IB',1237,1), + (4981,'Lahij','LA',1237,1), + (4982,'Ma\'rib','MA',1237,1), + (4983,'Sa\'dah','SD',1237,1), + (4984,'San\'a\'','SN',1237,1), + (4985,'Shabwah','SH',1237,1), + (4986,'Ta\'izz','TA',1237,1), + (4987,'Eastern Cape','EC',1196,1), + (4988,'Free State','FS',1196,1), + (4989,'Gauteng','GT',1196,1), + (4990,'Kwazulu-Natal','NL',1196,1), + (4991,'Mpumalanga','MP',1196,1), + (4992,'Northern Cape','NC',1196,1), + (4993,'Limpopo','NP',1196,1), + (4994,'Western Cape','WC',1196,1), + (4995,'North West','NW',1196,1), + (4996,'Copperbelt','08',1239,1), + (4997,'Luapula','04',1239,1), + (4998,'Lusaka','09',1239,1), + (4999,'North-Western','06',1239,1), + (5000,'Central','C',1239,1), + (5001,'Eastern','E',1239,1), + (5002,'Muchinga','M',1239,1), + (5003,'Northern','N',1239,1), + (5004,'Southern','S',1239,1), + (5005,'Western','W',1239,1), + (5006,'Bulawayo','BU',1240,1), + (5007,'Harare','HA',1240,1), + (5008,'Manicaland','MA',1240,1), + (5009,'Mashonaland Central','MC',1240,1), + (5010,'Mashonaland East','ME',1240,1), + (5011,'Mashonaland West','MW',1240,1), + (5012,'Masvingo','MV',1240,1), + (5013,'Matabeleland North','MN',1240,1), + (5014,'Matabeleland South','MS',1240,1), + (5015,'Midlands','MI',1240,1), + (5016,'South Karelia','SK',1075,1), + (5017,'South Ostrobothnia','SO',1075,1), + (5018,'Etelä-Savo','ES',1075,1), + (5019,'Häme','HH',1075,1), + (5020,'Itä-Uusimaa','IU',1075,1), + (5021,'Kainuu','KA',1075,1), + (5022,'Central Ostrobothnia','CO',1075,1), + (5023,'Central Finland','CF',1075,1), + (5024,'Kymenlaakso','KY',1075,1), + (5025,'Lapland','LA',1075,1), + (5026,'Tampere Region','TR',1075,1), + (5027,'Ostrobothnia','OB',1075,1), + (5028,'North Karelia','NK',1075,1), + (5029,'Northern Ostrobothnia','NO',1075,1), + (5030,'Northern Savo','NS',1075,1), + (5031,'Päijät-Häme','PH',1075,1), + (5032,'Satakunta','SK',1075,1), + (5033,'Uusimaa','UM',1075,1), + (5034,'South-West Finland','SW',1075,1), + (5035,'Åland','AL',1075,1), + (5036,'Limburg','LI',1152,1), + (5037,'Central and Western','CW',1098,1), + (5038,'Eastern','EA',1098,1), + (5039,'Southern','SO',1098,1), + (5040,'Wan Chai','WC',1098,1), + (5041,'Kowloon City','KC',1098,1), + (5042,'Kwun Tong','KU',1098,1), + (5043,'Sham Shui Po','SS',1098,1), + (5044,'Wong Tai Sin','WT',1098,1), + (5045,'Yau Tsim Mong','YT',1098,1), + (5046,'Islands','IS',1098,1), + (5047,'Kwai Tsing','KI',1098,1), + (5048,'North','NO',1098,1), + (5049,'Sai Kung','SK',1098,1), + (5050,'Sha Tin','ST',1098,1), + (5051,'Tai Po','TP',1098,1), + (5052,'Tsuen Wan','TW',1098,1), + (5053,'Tuen Mun','TM',1098,1), + (5054,'Yuen Long','YL',1098,1), + (5055,'Manchester','MR',1108,1), + (5056,'Al Manāmah (Al ‘Āşimah)','13',1016,1), + (5057,'Al Janūbīyah','14',1016,1), + (5058,'Al Wusţá','16',1016,1), + (5059,'Ash Shamālīyah','17',1016,1), + (5060,'Anenii Noi','AN',1142,1), + (5061,'Basarabeasca','BS',1142,1), + (5062,'Briceni','BR',1142,1), + (5063,'Cantemir','CT',1142,1), + (5064,'Călărași','CL',1142,1), + (5065,'Căușeni','CS',1142,1), + (5066,'Cimislia','CM',1142,1), + (5067,'Criuleni','CR',1142,1), + (5068,'Dondușeni','DO',1142,1), + (5069,'Drochia','DR',1142,1), + (5070,'Dubăsari','DU',1142,1), + (5071,'Fălești','FA',1142,1), + (5072,'Florești','FL',1142,1), + (5073,'Glodeni','GL',1142,1), + (5074,'Hîncești','HI',1142,1), + (5075,'Ialoveni','IA',1142,1), + (5076,'Leova','LE',1142,1), + (5077,'Nisporeni','NI',1142,1), + (5078,'Ocnița','OC',1142,1), + (5079,'Rezina','RE',1142,1), + (5080,'Rîșcani','RI',1142,1), + (5081,'Sîngerei','SI',1142,1), + (5082,'Strășeni','ST',1142,1), + (5083,'Șoldănești','SD',1142,1), + (5084,'Ștefan Vodă','SV',1142,1), + (5085,'Telenești','TE',1142,1); /*!40000 ALTER TABLE `civicrm_state_province` ENABLE KEYS */; UNLOCK TABLES; @@ -12152,90 +12146,90 @@ UNLOCK TABLES; LOCK TABLES `civicrm_subscription_history` WRITE; /*!40000 ALTER TABLE `civicrm_subscription_history` DISABLE KEYS */; INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES - (1,147,2,'2024-12-05 19:27:56','Admin','Added',NULL), -(2,198,2,'2024-03-30 21:48:57','Email','Added',NULL), -(3,182,2,'2025-02-01 14:21:49','Admin','Added',NULL), -(4,123,2,'2024-08-29 20:53:45','Email','Added',NULL), -(5,192,2,'2024-06-07 02:06:57','Admin','Added',NULL), -(6,72,2,'2024-07-20 14:58:34','Email','Added',NULL), -(7,96,2,'2024-05-01 07:20:56','Email','Added',NULL), -(8,18,2,'2025-01-21 18:21:39','Email','Added',NULL), -(9,97,2,'2025-01-15 21:59:48','Email','Added',NULL), -(10,159,2,'2024-06-03 19:56:16','Email','Added',NULL), -(11,13,2,'2024-03-22 23:40:00','Email','Added',NULL), -(12,84,2,'2024-10-02 08:17:34','Email','Added',NULL), -(13,24,2,'2024-06-26 23:31:30','Admin','Added',NULL), -(14,66,2,'2024-03-01 01:13:35','Email','Added',NULL), -(15,4,2,'2025-01-07 22:59:36','Email','Added',NULL), -(16,154,2,'2024-08-06 05:36:02','Email','Added',NULL), -(17,23,2,'2025-02-04 14:08:22','Email','Added',NULL), -(18,17,2,'2024-07-18 10:33:27','Email','Added',NULL), -(19,64,2,'2024-04-07 20:47:06','Email','Added',NULL), -(20,133,2,'2024-03-17 03:13:21','Admin','Added',NULL), -(21,172,2,'2024-10-27 07:23:43','Admin','Added',NULL), -(22,61,2,'2024-07-22 23:54:33','Email','Added',NULL), -(23,59,2,'2024-08-23 16:12:35','Admin','Added',NULL), -(24,151,2,'2024-03-28 01:43:26','Admin','Added',NULL), -(25,121,2,'2024-05-29 17:01:24','Email','Added',NULL), -(26,70,2,'2024-06-20 18:40:27','Email','Added',NULL), -(27,79,2,'2025-01-02 03:33:56','Admin','Added',NULL), -(28,187,2,'2024-09-04 11:40:52','Email','Added',NULL), -(29,153,2,'2025-01-25 22:57:23','Admin','Added',NULL), -(30,7,2,'2024-06-29 05:01:55','Admin','Added',NULL), -(31,25,2,'2025-02-02 10:05:20','Email','Added',NULL), -(32,9,2,'2024-10-28 05:04:15','Email','Added',NULL), -(33,95,2,'2024-02-15 13:49:56','Email','Added',NULL), -(34,189,2,'2024-03-03 06:50:10','Email','Added',NULL), -(35,146,2,'2024-12-02 06:11:24','Email','Added',NULL), -(36,145,2,'2024-07-18 19:52:26','Admin','Added',NULL), -(37,186,2,'2024-08-13 00:08:12','Admin','Added',NULL), -(38,99,2,'2024-12-15 01:51:19','Admin','Added',NULL), -(39,185,2,'2024-11-19 21:18:20','Email','Added',NULL), -(40,125,2,'2024-11-02 22:04:47','Admin','Added',NULL), -(41,132,2,'2024-09-14 00:53:29','Email','Added',NULL), -(42,170,2,'2025-01-21 10:48:08','Email','Added',NULL), -(43,184,2,'2024-06-29 22:40:33','Admin','Added',NULL), -(44,86,2,'2024-12-17 14:31:23','Email','Added',NULL), -(45,163,2,'2024-04-19 05:50:17','Email','Added',NULL), -(46,107,2,'2024-08-05 11:24:50','Email','Added',NULL), -(47,10,2,'2024-09-11 08:24:45','Email','Added',NULL), -(48,126,2,'2024-06-17 08:19:15','Admin','Added',NULL), -(49,93,2,'2025-01-31 05:20:59','Email','Added',NULL), -(50,27,2,'2024-12-21 04:04:00','Email','Added',NULL), -(51,71,2,'2025-02-03 09:06:14','Admin','Added',NULL), -(52,69,2,'2024-11-06 18:45:49','Admin','Added',NULL), -(53,108,2,'2024-10-04 02:34:35','Admin','Added',NULL), -(54,62,2,'2025-01-09 01:47:46','Admin','Added',NULL), -(55,81,2,'2024-05-14 14:36:17','Email','Added',NULL), -(56,45,2,'2024-12-18 09:49:45','Email','Added',NULL), -(57,148,2,'2025-01-19 09:02:28','Email','Added',NULL), -(58,128,2,'2025-01-01 02:06:57','Email','Added',NULL), -(59,179,2,'2025-01-25 08:12:43','Admin','Added',NULL), -(60,37,2,'2024-04-18 04:07:35','Email','Added',NULL), -(61,85,3,'2024-10-01 06:29:50','Email','Added',NULL), -(62,5,3,'2024-10-12 00:18:30','Admin','Added',NULL), -(63,63,3,'2025-01-11 21:49:58','Email','Added',NULL), -(64,106,3,'2024-07-18 08:32:21','Email','Added',NULL), -(65,150,3,'2024-10-30 01:59:43','Admin','Added',NULL), -(66,200,3,'2024-06-28 08:59:56','Email','Added',NULL), -(67,177,3,'2024-05-06 06:13:07','Email','Added',NULL), -(68,166,3,'2024-03-29 13:24:16','Email','Added',NULL), -(69,193,3,'2024-10-11 23:05:16','Email','Added',NULL), -(70,39,3,'2024-09-08 03:49:48','Admin','Added',NULL), -(71,143,3,'2024-09-02 08:33:08','Email','Added',NULL), -(72,52,3,'2024-03-31 22:05:22','Admin','Added',NULL), -(73,77,3,'2024-10-07 00:58:06','Email','Added',NULL), -(74,139,3,'2024-11-24 11:21:53','Email','Added',NULL), -(75,32,3,'2025-01-07 00:36:31','Admin','Added',NULL), -(76,147,4,'2024-03-06 07:45:30','Email','Added',NULL), -(77,18,4,'2024-11-19 11:36:38','Email','Added',NULL), -(78,4,4,'2024-06-13 09:55:48','Admin','Added',NULL), -(79,61,4,'2024-09-05 14:43:22','Email','Added',NULL), -(80,153,4,'2024-06-06 09:43:03','Admin','Added',NULL), -(81,145,4,'2024-05-18 04:02:31','Admin','Added',NULL), -(82,184,4,'2024-08-19 21:54:04','Email','Added',NULL), -(83,27,4,'2024-11-11 17:49:33','Email','Added',NULL), -(84,202,4,'2024-03-21 07:19:28','Email','Added',NULL); + (1,33,2,'2024-07-20 12:09:44','Email','Added',NULL), + (2,44,2,'2024-12-26 08:56:21','Admin','Added',NULL), + (3,31,2,'2024-07-22 23:00:16','Email','Added',NULL), + (4,50,2,'2024-02-26 12:53:09','Email','Added',NULL), + (5,38,2,'2025-01-19 00:47:24','Admin','Added',NULL), + (6,22,2,'2024-05-16 01:31:08','Email','Added',NULL), + (7,131,2,'2024-12-09 03:36:38','Email','Added',NULL), + (8,2,2,'2024-11-16 20:14:11','Admin','Added',NULL), + (9,49,2,'2024-03-28 01:49:03','Admin','Added',NULL), + (10,95,2,'2024-10-20 04:02:36','Admin','Added',NULL), + (11,109,2,'2024-03-10 15:16:47','Email','Added',NULL), + (12,84,2,'2024-11-27 01:26:03','Admin','Added',NULL), + (13,182,2,'2024-12-30 18:36:54','Admin','Added',NULL), + (14,57,2,'2024-04-22 19:59:22','Email','Added',NULL), + (15,153,2,'2024-04-24 13:48:12','Admin','Added',NULL), + (16,74,2,'2024-07-04 22:58:43','Admin','Added',NULL), + (17,193,2,'2024-09-01 15:18:05','Admin','Added',NULL), + (18,125,2,'2024-03-09 02:40:39','Email','Added',NULL), + (19,169,2,'2024-12-05 20:02:10','Admin','Added',NULL), + (20,177,2,'2024-03-14 16:38:49','Email','Added',NULL), + (21,101,2,'2024-05-07 02:32:13','Email','Added',NULL), + (22,41,2,'2025-01-01 01:57:23','Admin','Added',NULL), + (23,164,2,'2024-08-19 11:16:34','Email','Added',NULL), + (24,53,2,'2024-09-08 19:28:44','Email','Added',NULL), + (25,55,2,'2024-04-25 00:47:30','Admin','Added',NULL), + (26,62,2,'2024-10-22 17:07:44','Admin','Added',NULL), + (27,138,2,'2024-05-06 10:46:53','Admin','Added',NULL), + (28,154,2,'2024-12-28 08:18:22','Email','Added',NULL), + (29,157,2,'2024-11-03 16:45:45','Email','Added',NULL), + (30,176,2,'2024-07-19 12:52:09','Email','Added',NULL), + (31,35,2,'2024-12-28 20:48:18','Admin','Added',NULL), + (32,114,2,'2024-03-08 07:45:22','Admin','Added',NULL), + (33,94,2,'2025-02-04 23:09:54','Email','Added',NULL), + (34,190,2,'2024-06-24 08:12:42','Email','Added',NULL), + (35,81,2,'2024-03-02 10:17:02','Admin','Added',NULL), + (36,183,2,'2024-11-21 20:29:18','Email','Added',NULL), + (37,143,2,'2024-12-14 23:18:01','Admin','Added',NULL), + (38,166,2,'2025-01-12 21:23:11','Email','Added',NULL), + (39,72,2,'2024-10-24 10:12:44','Email','Added',NULL), + (40,112,2,'2024-12-06 13:00:18','Admin','Added',NULL), + (41,91,2,'2024-03-24 19:27:49','Admin','Added',NULL), + (42,9,2,'2024-08-09 09:43:15','Email','Added',NULL), + (43,17,2,'2024-07-11 05:09:48','Email','Added',NULL), + (44,118,2,'2024-08-03 19:35:08','Email','Added',NULL), + (45,46,2,'2024-03-22 15:44:53','Email','Added',NULL), + (46,67,2,'2024-05-01 11:10:23','Admin','Added',NULL), + (47,195,2,'2024-09-10 10:18:11','Admin','Added',NULL), + (48,148,2,'2024-10-30 08:17:21','Admin','Added',NULL), + (49,160,2,'2024-06-17 19:15:20','Email','Added',NULL), + (50,156,2,'2024-06-01 10:27:48','Admin','Added',NULL), + (51,96,2,'2024-09-06 06:09:43','Admin','Added',NULL), + (52,135,2,'2024-08-06 13:44:05','Email','Added',NULL), + (53,108,2,'2024-03-02 16:19:11','Admin','Added',NULL), + (54,185,2,'2024-07-29 01:38:37','Email','Added',NULL), + (55,117,2,'2024-04-20 20:50:36','Email','Added',NULL), + (56,70,2,'2025-02-04 21:39:42','Admin','Added',NULL), + (57,115,2,'2024-10-18 09:54:35','Email','Added',NULL), + (58,137,2,'2024-07-29 07:10:43','Email','Added',NULL), + (59,59,2,'2024-12-21 05:12:44','Admin','Added',NULL), + (60,198,2,'2024-10-14 08:52:49','Email','Added',NULL), + (61,104,3,'2024-08-24 13:10:33','Admin','Added',NULL), + (62,140,3,'2024-07-16 15:17:57','Email','Added',NULL), + (63,23,3,'2024-03-20 22:40:58','Admin','Added',NULL), + (64,11,3,'2025-01-28 08:30:19','Admin','Added',NULL), + (65,6,3,'2024-10-22 12:55:33','Email','Added',NULL), + (66,10,3,'2024-04-11 00:56:02','Email','Added',NULL), + (67,119,3,'2024-06-15 14:24:23','Email','Added',NULL), + (68,18,3,'2024-08-28 08:10:18','Email','Added',NULL), + (69,133,3,'2024-06-29 15:16:43','Email','Added',NULL), + (70,163,3,'2025-02-06 16:26:51','Admin','Added',NULL), + (71,147,3,'2024-07-17 00:26:11','Email','Added',NULL), + (72,142,3,'2025-02-08 15:20:57','Admin','Added',NULL), + (73,78,3,'2024-04-17 04:33:38','Email','Added',NULL), + (74,39,3,'2024-03-29 17:20:47','Email','Added',NULL), + (75,29,3,'2024-09-19 18:48:55','Email','Added',NULL), + (76,33,4,'2024-05-01 07:12:04','Admin','Added',NULL), + (77,2,4,'2025-01-05 12:01:45','Email','Added',NULL), + (78,153,4,'2024-10-28 10:17:35','Admin','Added',NULL), + (79,41,4,'2024-04-29 08:53:26','Admin','Added',NULL), + (80,157,4,'2024-03-14 19:09:10','Email','Added',NULL), + (81,183,4,'2024-04-10 02:39:39','Email','Added',NULL), + (82,17,4,'2024-07-07 05:06:10','Email','Added',NULL), + (83,156,4,'2024-02-29 20:21:00','Admin','Added',NULL), + (84,202,4,'2024-10-29 11:02:16','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -12264,11 +12258,11 @@ UNLOCK TABLES; LOCK TABLES `civicrm_tag` WRITE; /*!40000 ALTER TABLE `civicrm_tag` DISABLE KEYS */; INSERT INTO `civicrm_tag` (`id`, `name`, `label`, `description`, `parent_id`, `is_selectable`, `is_reserved`, `is_tagset`, `used_for`, `created_id`, `color`, `created_date`) VALUES - (1,'Non_profit','Non-profit','Any not-for-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0bcb21','2025-02-11 21:13:43'), -(2,'Company','Company','For-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#2260c3','2025-02-11 21:13:43'), -(3,'Government_Entity','Government Entity','Any governmental entity.',NULL,1,0,0,'civicrm_contact',NULL,'#cd4b13','2025-02-11 21:13:43'), -(4,'Major_Donor','Major Donor','High-value supporter of our organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0cdae9','2025-02-11 21:13:43'), -(5,'Volunteer','Volunteer','Active volunteers.',NULL,1,0,0,'civicrm_contact',NULL,'#f0dc00','2025-02-11 21:13:43'); + (1,'Non_profit','Non-profit','Any not-for-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0bcb21','2025-02-11 22:13:16'), + (2,'Company','Company','For-profit organization.',NULL,1,0,0,'civicrm_contact',NULL,'#2260c3','2025-02-11 22:13:16'), + (3,'Government_Entity','Government Entity','Any governmental entity.',NULL,1,0,0,'civicrm_contact',NULL,'#cd4b13','2025-02-11 22:13:16'), + (4,'Major_Donor','Major Donor','High-value supporter of our organization.',NULL,1,0,0,'civicrm_contact',NULL,'#0cdae9','2025-02-11 22:13:16'), + (5,'Volunteer','Volunteer','Active volunteers.',NULL,1,0,0,'civicrm_contact',NULL,'#f0dc00','2025-02-11 22:13:16'); /*!40000 ALTER TABLE `civicrm_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -12307,79 +12301,79 @@ LOCK TABLES `civicrm_uf_field` WRITE; /*!40000 ALTER TABLE `civicrm_uf_field` DISABLE KEYS */; INSERT INTO `civicrm_uf_field` (`id`, `uf_group_id`, `field_name`, `is_active`, `is_view`, `is_required`, `weight`, `help_post`, `help_pre`, `visibility`, `in_selector`, `is_searchable`, `location_type_id`, `phone_type_id`, `website_type_id`, `label`, `field_type`, `is_reserved`, `is_multi_summary`) VALUES (1,1,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), -(2,1,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), -(3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',0,0), -(4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',0,0), -(5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), -(6,1,'country',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), -(7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), -(8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), -(9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), -(10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), -(11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Participant Status','Participant',1,0), -(12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), -(13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), -(14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), -(15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), -(16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), -(17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Household Name','Household',0,0), -(18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), -(19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,NULL,'Home Phone','Contact',0,0), -(20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,NULL,'Home Mobile','Contact',0,0), -(21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Address','Contact',0,0), -(22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'City','Contact',0,0), -(23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'State','Contact',0,0), -(24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Postal Code','Contact',0,0), -(25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Email','Contact',0,0), -(26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Groups','Contact',0,0), -(27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Tags','Contact',0,0), -(28,7,'gender_id',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Gender','Individual',0,0), -(29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Date of Birth','Individual',0,0), -(30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',1,0), -(31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',1,0), -(32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), -(33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), -(34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), -(35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), -(36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,NULL,'Phone (Main) ','Contact',0,0), -(37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Email (Main) ','Contact',0,0), -(38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Street Address','Contact',0,0), -(39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'City','Contact',0,0), -(40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Postal Code','Contact',0,0), -(41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Country','Contact',0,0), -(42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'State/Province','Contact',0,0), -(43,10,'financial_type',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Contribution',1,0), -(44,10,'total_amount',1,0,0,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Contribution',1,0), -(45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Status','Contribution',1,0), -(46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Contribution',1,0), -(47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Source','Contribution',0,0), -(48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Contribution',0,0), -(49,10,'contribution_check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Contribution',0,0), -(50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Contribution',0,0), -(51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Invoice ID','Contribution',0,0), -(52,10,'soft_credit',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Contribution',0,0), -(53,10,'soft_credit_type',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Contribution',0,0), -(54,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Type','Membership',1,0), -(55,11,'membership_join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Member Since','Membership',1,0), -(56,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Start Date','Membership',1,0), -(57,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'End Date','Membership',1,0), -(58,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Source','Membership',0,0), -(59,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Membership',0,0), -(60,11,'financial_type',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Membership',1,0), -(61,11,'total_amount',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Membership',1,0), -(62,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Membership',1,0), -(63,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Membership',0,0), -(64,11,'contribution_check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Membership',0,0), -(65,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Status','Membership',1,0), -(66,11,'soft_credit',1,0,0,13,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Membership',0,0), -(67,11,'soft_credit_type',1,0,0,14,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Membership',0,0), -(68,12,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), -(69,12,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), -(70,12,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), -(71,13,'prefix_id',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Individual Prefix','Individual',1,0), -(72,13,'first_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',1,0), -(73,13,'last_name',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',1,0), -(74,13,'email',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Email Address','Contact',1,0); + (2,1,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), + (3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',0,0), + (4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',0,0), + (5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), + (6,1,'country',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), + (7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), + (8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), + (9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), + (10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), + (11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Participant Status','Participant',1,0), + (12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), + (13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), + (14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), + (15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), + (16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), + (17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Household Name','Household',0,0), + (18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), + (19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,NULL,'Home Phone','Contact',0,0), + (20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,NULL,'Home Mobile','Contact',0,0), + (21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Address','Contact',0,0), + (22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'City','Contact',0,0), + (23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'State','Contact',0,0), + (24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Postal Code','Contact',0,0), + (25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Primary Email','Contact',0,0), + (26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Groups','Contact',0,0), + (27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Tags','Contact',0,0), + (28,7,'gender_id',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Gender','Individual',0,0), + (29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Date of Birth','Individual',0,0), + (30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Street Address (Home)','Contact',1,0), + (31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'City (Home)','Contact',1,0), + (32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Postal Code (Home)','Contact',0,0), + (33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Country (Home)','Contact',0,0), + (34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'State (Home)','Contact',0,0), + (35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Organization Name','Organization',0,0), + (36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,NULL,'Phone (Main) ','Contact',0,0), + (37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Email (Main) ','Contact',0,0), + (38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Street Address','Contact',0,0), + (39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'City','Contact',0,0), + (40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Postal Code','Contact',0,0), + (41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'Country','Contact',0,0), + (42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,NULL,'State/Province','Contact',0,0), + (43,10,'financial_type',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Contribution',1,0), + (44,10,'total_amount',1,0,0,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Contribution',1,0), + (45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Status','Contribution',1,0), + (46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Contribution',1,0), + (47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Source','Contribution',0,0), + (48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Contribution',0,0), + (49,10,'contribution_check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Contribution',0,0), + (50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Contribution',0,0), + (51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Invoice ID','Contribution',0,0), + (52,10,'soft_credit',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Contribution',0,0), + (53,10,'soft_credit_type',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Contribution',0,0), + (54,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Type','Membership',1,0), + (55,11,'membership_join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Member Since','Membership',1,0), + (56,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Start Date','Membership',1,0), + (57,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'End Date','Membership',1,0), + (58,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Membership Source','Membership',0,0), + (59,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Send Receipt','Membership',0,0), + (60,11,'financial_type',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Financial Type','Membership',1,0), + (61,11,'total_amount',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Amount','Membership',1,0), + (62,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Contribution Date','Membership',1,0), + (63,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Method','Membership',0,0), + (64,11,'contribution_check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Check Number','Membership',0,0), + (65,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Payment Status','Membership',1,0), + (66,11,'soft_credit',1,0,0,13,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit','Membership',0,0), + (67,11,'soft_credit_type',1,0,0,14,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Soft Credit Type','Membership',0,0), + (68,12,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',0,0), + (69,12,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',0,0), + (70,12,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Email Address','Contact',0,0), + (71,13,'prefix_id',1,0,0,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Individual Prefix','Individual',1,0), + (72,13,'first_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'First Name','Individual',1,0), + (73,13,'last_name',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,NULL,'Last Name','Individual',1,0), + (74,13,'email',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,NULL,'Email Address','Contact',1,0); /*!40000 ALTER TABLE `civicrm_uf_field` ENABLE KEYS */; UNLOCK TABLES; @@ -12391,18 +12385,18 @@ LOCK TABLES `civicrm_uf_group` WRITE; /*!40000 ALTER TABLE `civicrm_uf_group` DISABLE KEYS */; INSERT INTO `civicrm_uf_group` (`id`, `name`, `is_active`, `group_type`, `title`, `frontend_title`, `description`, `help_pre`, `help_post`, `limit_listings_group_id`, `post_url`, `add_to_group_id`, `add_captcha`, `is_map`, `is_edit_link`, `is_uf_link`, `is_update_dupe`, `cancel_url`, `is_cms_user`, `notify`, `is_reserved`, `created_id`, `created_date`, `is_proximity_search`, `cancel_button_text`, `submit_button_text`, `add_cancel_button`) VALUES (1,'name_and_address',1,'Individual,Contact','Name and Address','Name and Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), -(2,'supporter_profile',1,'Individual,Contact','Supporter Profile','Supporter Profile',NULL,NULL,'

The information you provide will NOT be shared with any third party organisations.

Thank you for getting involved in our campaign!

',NULL,NULL,NULL,0,0,0,0,0,NULL,2,NULL,0,NULL,NULL,0,NULL,NULL,1), -(3,'participant_status',1,'Participant','Participant Status','Participant Status',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(4,'new_individual',1,'Individual,Contact','New Individual','New Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(5,'new_organization',1,'Organization,Contact','New Organization','New Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(6,'new_household',1,'Household,Contact','New Household','New Household',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(7,'summary_overlay',1,'Contact','Summary Overlay','Summary Overlay',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(8,'shared_address',1,'Contact','Shared Address','Shared Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(9,'on_behalf_organization',1,'Contact,Organization','On Behalf Of Organization','On Behalf Of Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(10,'contribution_batch_entry',1,'Contribution','Contribution Bulk Entry','Contribution Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(11,'membership_batch_entry',1,'Membership','Membership Bulk Entry','Membership Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), -(12,'event_registration',1,'Individual,Contact','Your Registration Info','Your Registration Info',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), -(13,'honoree_individual',1,'Individual,Contact','Honoree Individual','Honoree Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1); + (2,'supporter_profile',1,'Individual,Contact','Supporter Profile','Supporter Profile',NULL,NULL,'

The information you provide will NOT be shared with any third party organisations.

Thank you for getting involved in our campaign!

',NULL,NULL,NULL,0,0,0,0,0,NULL,2,NULL,0,NULL,NULL,0,NULL,NULL,1), + (3,'participant_status',1,'Participant','Participant Status','Participant Status',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (4,'new_individual',1,'Individual,Contact','New Individual','New Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (5,'new_organization',1,'Organization,Contact','New Organization','New Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (6,'new_household',1,'Household,Contact','New Household','New Household',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (7,'summary_overlay',1,'Contact','Summary Overlay','Summary Overlay',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (8,'shared_address',1,'Contact','Shared Address','Shared Address',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (9,'on_behalf_organization',1,'Contact,Organization','On Behalf Of Organization','On Behalf Of Organization',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (10,'contribution_batch_entry',1,'Contribution','Contribution Bulk Entry','Contribution Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (11,'membership_batch_entry',1,'Membership','Membership Bulk Entry','Membership Bulk Entry',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1), + (12,'event_registration',1,'Individual,Contact','Your Registration Info','Your Registration Info',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,1), + (13,'honoree_individual',1,'Individual,Contact','Honoree Individual','Honoree Individual',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_uf_group` ENABLE KEYS */; UNLOCK TABLES; @@ -12414,16 +12408,16 @@ LOCK TABLES `civicrm_uf_join` WRITE; /*!40000 ALTER TABLE `civicrm_uf_join` DISABLE KEYS */; INSERT INTO `civicrm_uf_join` (`id`, `is_active`, `module`, `entity_table`, `entity_id`, `weight`, `uf_group_id`, `module_data`) VALUES (1,1,'User Registration',NULL,NULL,1,1,NULL), -(2,1,'User Account',NULL,NULL,1,1,NULL), -(3,1,'Profile',NULL,NULL,1,1,NULL), -(4,1,'Profile',NULL,NULL,2,2,NULL), -(5,1,'Profile',NULL,NULL,11,12,NULL), -(6,1,'CiviEvent','civicrm_event',6,1,12,NULL), -(7,1,'CiviEvent','civicrm_event',1,1,12,NULL), -(8,1,'CiviEvent','civicrm_event',3,1,12,NULL), -(9,1,'CiviEvent','civicrm_event',4,1,12,NULL), -(10,1,'CiviEvent','civicrm_event',5,1,12,NULL), -(11,1,'CiviEvent','civicrm_event',2,1,12,NULL); + (2,1,'User Account',NULL,NULL,1,1,NULL), + (3,1,'Profile',NULL,NULL,1,1,NULL), + (4,1,'Profile',NULL,NULL,2,2,NULL), + (5,1,'Profile',NULL,NULL,11,12,NULL), + (6,1,'CiviEvent','civicrm_event',6,1,12,NULL), + (7,1,'CiviEvent','civicrm_event',1,1,12,NULL), + (8,1,'CiviEvent','civicrm_event',3,1,12,NULL), + (9,1,'CiviEvent','civicrm_event',4,1,12,NULL), + (10,1,'CiviEvent','civicrm_event',5,1,12,NULL), + (11,1,'CiviEvent','civicrm_event',2,1,12,NULL); /*!40000 ALTER TABLE `civicrm_uf_join` ENABLE KEYS */; UNLOCK TABLES; @@ -12452,23 +12446,18 @@ UNLOCK TABLES; LOCK TABLES `civicrm_website` WRITE; /*!40000 ALTER TABLE `civicrm_website` DISABLE KEYS */; INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES - (1,34,'http://valliantcenter.org',1), -(2,156,'http://beechdevelopment.org',1), -(3,22,'http://alabamafoodnetwork.org',1), -(4,195,'http://jacksonhealth.org',1), -(5,169,'http://mlkingfamily.org',1), -(6,46,'http://globalliteracyinitiative.org',1), -(7,40,'http://rurallegal.org',1), -(8,136,'http://friendsdevelopmentnetwork.org',1), -(9,33,'http://jacksonadvocacy.org',1), -(10,131,'http://oklahomasports.org',1), -(11,181,'http://sierrasports.org',1), -(12,149,'http://kentuckyassociation.org',1), -(13,196,'http://indianaaction.org',1), -(14,155,'http://chatsworthfund.org',1), -(15,83,'http://harmantechnologysystems.org',1), -(16,158,'http://progressiveempowermentsolutions.org',1), -(17,191,'http://secondtechnologyfellowship.org',1); + (1,136,'http://memphiscollective.org',1), + (2,134,'http://risportstrust.org',1), + (3,103,'http://progressivewellness.org',1), + (4,83,'http://collegelegal.org',1), + (5,128,'http://dowlenpartnership.org',1), + (6,21,'http://severnsoftwareservices.org',1), + (7,90,'http://localhealth.org',1), + (8,100,'http://illinoisacademy.org',1), + (9,107,'http://urbanassociation.org',1), + (10,188,'http://illinoisdevelopmentpartners.org',1), + (11,3,'http://unitedhealth.org',1), + (12,77,'http://localsolutions.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -12489,23 +12478,24 @@ LOCK TABLES `civicrm_worldregion` WRITE; /*!40000 ALTER TABLE `civicrm_worldregion` DISABLE KEYS */; INSERT INTO `civicrm_worldregion` (`id`, `name`) VALUES (1,'Europe and Central Asia'), -(2,'America South, Central, North and Caribbean'), -(3,'Middle East and North Africa'), -(4,'Asia-Pacific'), -(5,'Africa West, East, Central and Southern'), -(99,'unassigned'); + (2,'America South, Central, North and Caribbean'), + (3,'Middle East and North Africa'), + (4,'Asia-Pacific'), + (5,'Africa West, East, Central and Southern'), + (99,'unassigned'); /*!40000 ALTER TABLE `civicrm_worldregion` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2025-02-11 21:14:18 +-- Dump completed on 2025-02-11 22:13:28 -- +--------------------------------------------------------------------+ -- | Copyright CiviCRM LLC. All rights reserved. | -- | | From 65ad1454b1dc8325e0d119a0f5520472bf214b43 Mon Sep 17 00:00:00 2001 From: benjamin Date: Tue, 11 Feb 2025 09:10:59 +0000 Subject: [PATCH 80/85] Riverlea rollout - enable Riverlea ext by default from 6.1 --- CRM/Upgrade/Incremental/php/SixOne.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index 2d302894495d..da53fb2ad64a 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -31,6 +31,8 @@ public function upgrade_6_1_alpha1($rev): void { $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev); $this->addTask('Replace Clear Caches & Reset Paths with Clear Caches in Nav Menu', 'updateUpdateConfigBackendNavItem'); + + $this->addExtensionTask('Enable Riverlea extension', ['riverlea']); } /** From 2c063eae5b61a3035ae192234b6f1083d3ed665c Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 10:19:20 +0000 Subject: [PATCH 81/85] Riverlea rollout - freeze upgrading sites with Automatic to Greenwich --- CRM/Upgrade/Incremental/php/SixOne.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CRM/Upgrade/Incremental/php/SixOne.php b/CRM/Upgrade/Incremental/php/SixOne.php index da53fb2ad64a..52015adfb9e6 100644 --- a/CRM/Upgrade/Incremental/php/SixOne.php +++ b/CRM/Upgrade/Incremental/php/SixOne.php @@ -33,6 +33,28 @@ public function upgrade_6_1_alpha1($rev): void { $this->addTask('Replace Clear Caches & Reset Paths with Clear Caches in Nav Menu', 'updateUpdateConfigBackendNavItem'); $this->addExtensionTask('Enable Riverlea extension', ['riverlea']); + $this->addTask('Freeze "default" theme to Greenwich', 'freezeDefaultThemeToGreenwich'); + } + + /** + * 'default' is being removed as a valid theme choice. + * + * It has always meant Greenwich, so sites previously on + * "default" change this to an explicit value Greenwich. + * + * @return bool + */ + public static function freezeDefaultThemeToGreenwich() { + $themeSettings = ['theme_backend', 'theme_frontend']; + + foreach ($themeSettings as $key) { + $value = \Civi::settings()->get($key); + if ($value === 'default') { + \Civi::settings()->set($key, 'greenwich'); + } + } + + return TRUE; } /** From a1de54f98e4d923b06b969efa253de8ccc889c87 Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 11:14:27 +0000 Subject: [PATCH 82/85] Riverlea rollout - remove Themes::DEFAULT_THEME --- Civi/Core/Themes.php | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/Civi/Core/Themes.php b/Civi/Core/Themes.php index 05469ba93710..914eee8ba325 100644 --- a/Civi/Core/Themes.php +++ b/Civi/Core/Themes.php @@ -22,10 +22,10 @@ class Themes extends \Civi\Core\Service\AutoService { /** - * The "default" theme adapts based on the latest recommendation from civicrm.org - * by switching to DEFAULT_THEME at runtime. + * No theme only uses core CSS. It is what you get if your theme is set to an + * unavailable theme. */ - const DEFAULT_THEME = 'greenwich'; + const NO_THEME = 'none'; /** * Fallback is a pseudotheme which can be included in "search_order". @@ -68,13 +68,18 @@ public function __construct($cache = NULL) { */ public function getActiveThemeKey() { if ($this->activeThemeKey === NULL) { - // Ambivalent: is it better to use $config->userFrameworkFrontend or $template->get('urlIsPublic')? - $config = \CRM_Core_Config::singleton(); - $settingKey = $config->userSystem->isFrontEndPage() ? 'theme_frontend' : 'theme_backend'; + $settingKey = \CRM_Utils_System::isFrontEndPage() ? 'theme_frontend' : 'theme_backend'; $themeKey = Civi::settings()->get($settingKey); + + // catch for if 'default' value has stuck around. for as long as anyone + // can remember default meant Greenwich + // TODO: remove this catch around 6.12? if ($themeKey === 'default') { - $themeKey = self::DEFAULT_THEME; + \Civi::log()->debug("Warning: found deprecated value 'default' for '{$settingKey}'. This will be interpreted as Greenwich but this handling may be removed in a future release."); + // fix it for you? + // Civi::settings()->set($settingKey, 'greenwich'); + $themeKey = 'greenwich'; } \CRM_Utils_Hook::activeTheme($themeKey, [ @@ -83,7 +88,7 @@ public function getActiveThemeKey() { ]); $themes = $this->getAll(); - $this->activeThemeKey = isset($themes[$themeKey]) ? $themeKey : self::DEFAULT_THEME; + $this->activeThemeKey = isset($themes[$themeKey]) ? $themeKey : self::NO_THEME; } return $this->activeThemeKey; } @@ -196,18 +201,7 @@ public function resolveUrls($active, $cssExt, $cssFile) { */ protected function buildAll() { $themes = [ - 'default' => [ - 'ext' => 'civicrm', - 'title' => ts('Automatic'), - 'help' => ts('Determine a system default automatically'), - // This is an alias. url_callback, search_order don't matter. - ], - 'greenwich' => [ - 'ext' => 'civicrm', - 'title' => 'Greenwich', - 'help' => ts('CiviCRM 4.x look-and-feel'), - ], - 'none' => [ + self::NO_THEME => [ 'ext' => 'civicrm', 'title' => ts('None (Unstyled)'), 'help' => ts('Disable CiviCRM\'s built-in CSS files.'), From e7921432e204279851792a061aa392892d28f679 Mon Sep 17 00:00:00 2001 From: benjamin Date: Fri, 7 Feb 2025 10:20:43 +0000 Subject: [PATCH 83/85] Riverlea rollout - add NO_THEME, make default for theme settings --- Civi/Core/Themes.php | 21 +++++++++++++++------ settings/Core.setting.php | 4 ++-- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Civi/Core/Themes.php b/Civi/Core/Themes.php index 914eee8ba325..ea681c887e54 100644 --- a/Civi/Core/Themes.php +++ b/Civi/Core/Themes.php @@ -22,10 +22,14 @@ class Themes extends \Civi\Core\Service\AutoService { /** - * No theme only uses core CSS. It is what you get if your theme is set to an - * unavailable theme. + * Disable core CSS. */ - const NO_THEME = 'none'; + const NO_STYLES = 'none'; + + /** + * Core CSS only. + */ + const NO_THEME = 'no_theme'; /** * Fallback is a pseudotheme which can be included in "search_order". @@ -201,16 +205,21 @@ public function resolveUrls($active, $cssExt, $cssFile) { */ protected function buildAll() { $themes = [ - self::NO_THEME => [ + self::NO_STYLES => [ 'ext' => 'civicrm', - 'title' => ts('None (Unstyled)'), + 'title' => ts('No Styles'), 'help' => ts('Disable CiviCRM\'s built-in CSS files.'), - 'search_order' => ['none', self::FALLBACK_THEME], + 'search_order' => [self::NO_STYLES, self::FALLBACK_THEME], 'excludes' => [ "css/civicrm.css", "css/bootstrap.css", ], ], + self::NO_THEME => [ + 'ext' => 'civicrm', + 'title' => ts('No Theme'), + 'search_order' => [self::NO_THEME, self::FALLBACK_THEME], + ], self::FALLBACK_THEME => [ 'ext' => 'civicrm', 'title' => 'Fallback (Abstract Base Theme)', diff --git a/settings/Core.setting.php b/settings/Core.setting.php index d604f723877d..cdcc96eee877 100644 --- a/settings/Core.setting.php +++ b/settings/Core.setting.php @@ -1184,7 +1184,7 @@ 'pseudoconstant' => array( 'callback' => 'call://themes/getAvailable', ), - 'default' => 'default', + 'default' => 'no_theme', 'add' => '5.16', 'title' => ts('Frontend Theme'), 'is_domain' => 1, @@ -1209,7 +1209,7 @@ 'pseudoconstant' => array( 'callback' => 'call://themes/getAvailable', ), - 'default' => 'default', + 'default' => 'no_theme', 'add' => '5.16', 'title' => ts('Backend Theme'), 'is_domain' => 1, From 9dac61328519131e61e61995ceff0b637ea08fe2 Mon Sep 17 00:00:00 2001 From: benjamin Date: Thu, 6 Feb 2025 16:36:35 +0000 Subject: [PATCH 84/85] Riverlea rollout - unhide Greenwich (can be disabled now) --- ext/greenwich/info.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/greenwich/info.xml b/ext/greenwich/info.xml index 09b82eff3095..9bbea1b9b746 100644 --- a/ext/greenwich/info.xml +++ b/ext/greenwich/info.xml @@ -16,9 +16,6 @@ [civicrm.releaseDate] [civicrm.version] - - mgmt:hidden - stable [civicrm.majorVersion] From bd281912e83d696cdcff3e8a178a5205ff4d98a3 Mon Sep 17 00:00:00 2001 From: benjamin Date: Tue, 11 Feb 2025 20:14:41 +0000 Subject: [PATCH 85/85] fix theme test falling back to NO_THEME if set theme isn't recognised --- tests/phpunit/Civi/Core/ThemesTest.php | 29 +++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/tests/phpunit/Civi/Core/ThemesTest.php b/tests/phpunit/Civi/Core/ThemesTest.php index 3bbf8d31d2e6..aeda75526445 100644 --- a/tests/phpunit/Civi/Core/ThemesTest.php +++ b/tests/phpunit/Civi/Core/ThemesTest.php @@ -54,10 +54,23 @@ public function getThemeExamples() { // --- Library of tests --- - // Use the default theme, Greenwich. + // Use Minetta from Riverlea + // TODO: why is Greenwich enabled here, but Riverlea is not? + // $cases[] = [ + // [], + // 'minetta', + // 'Minetta (RiverLea ~Greenwich)', + // [ + // 'civicrm-css/civicrm.css' => ["$civicrmBaseUrl/ext/riverlea/core/css/civicrm.css"], + // 'civicrm-css/joomla.css' => ["$civicrmBaseUrl/ext/riverlea/core/css/joomla.css"], + // 'test.extension.uitest-files/foo.css' => ["$civicrmBaseUrl/tests/extensions/test.extension.uitest/files/foo.css"], + // ], + // ]; + + // Use Greenwich $cases[] = [ [], - 'default', + 'greenwich', 'Greenwich', [ 'civicrm-css/civicrm.css' => ["$civicrmBaseUrl/css/civicrm.css"], @@ -82,11 +95,11 @@ public function getThemeExamples() { ], ]; - // Misconfiguration: liza was previously used but then disappeared. Fallback to default, Greenwich. + // Misconfiguration: liza was previously used but then disappeared. Fallback to default, NO_THEME. $cases[] = [ $hookJudy, 'liza', - 'Greenwich', + 'No Theme', [ 'civicrm-css/civicrm.css' => ["$civicrmBaseUrl/css/civicrm.css"], 'civicrm-css/joomla.css' => ["$civicrmBaseUrl/css/joomla.css"], @@ -98,7 +111,7 @@ public function getThemeExamples() { $cases[] = [ $hookJudy, 'none', - 'None (Unstyled)', + 'No Styles', [ 'civicrm-css/civicrm.css' => [], 'civicrm-css/joomla.css' => ["$civicrmBaseUrl/css/joomla.css"], @@ -195,15 +208,20 @@ public static function fakeCallback($themes, $themeKey, $cssExt, $cssFile) { return $map[$themeKey][$cssExt][$cssFile] ?? Themes::PASSTHRU; } + /** + * TODO with all these: why do we have greenwich not minetta here? + */ public function testGetAll(): void { $all = \Civi::service('themes')->getAll(); $this->assertTrue(isset($all['greenwich'])); + // $this->assertTrue(isset($all['minetta'])); $this->assertTrue(isset($all['_fallback_'])); } public function testGetAvailable(): void { $all = \Civi::service('themes')->getAvailable(); $this->assertTrue(isset($all['greenwich'])); + // $this->assertTrue(isset($all['minetta'])); $this->assertFalse(isset($all['_fallback_'])); } @@ -212,6 +230,7 @@ public function testApiOptions(): void { 'field' => 'theme_backend', ]); $this->assertTrue(isset($result['values']['greenwich'])); + // $this->assertTrue(isset($result['values']['minetta'])); $this->assertFalse(isset($result['values']['_fallback_'])); }