diff --git a/civicrm.php b/civicrm.php
index 69c0e7fd5bca3224364767efb2e94c637810ff57..dfe6fa38e3297ea8397b9b8565ed69a4dd3ddc23 100644
--- a/civicrm.php
+++ b/civicrm.php
@@ -2,7 +2,7 @@
 /**
  * Plugin Name: CiviCRM
  * Description: CiviCRM - Growing and Sustaining Relationships
- * Version: 5.54.1
+ * Version: 5.55.0
  * Requires at least: 4.9
  * Requires PHP:      7.2
  * Author: CiviCRM LLC
@@ -36,7 +36,7 @@ if (!defined('ABSPATH')) {
 }
 
 // Set version here: changing it forces Javascript and CSS to reload.
-define('CIVICRM_PLUGIN_VERSION', '5.54.1');
+define('CIVICRM_PLUGIN_VERSION', '5.55.0');
 
 // Store reference to this file.
 if (!defined('CIVICRM_PLUGIN_FILE')) {
diff --git a/civicrm/CRM/ACL/Form/EntityRole.php b/civicrm/CRM/ACL/Form/EntityRole.php
index 7eb6b667b053c22ba64a86b3f9bbebf442218835..eb137544bad16ae7c6c19444db935e72e80a0b53 100644
--- a/civicrm/CRM/ACL/Form/EntityRole.php
+++ b/civicrm/CRM/ACL/Form/EntityRole.php
@@ -47,7 +47,7 @@ class CRM_ACL_Form_EntityRole extends CRM_Admin_Form {
   /**
    * Process the form submission.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     CRM_ACL_BAO_Cache::resetCache();
diff --git a/civicrm/CRM/Activity/BAO/Activity.php b/civicrm/CRM/Activity/BAO/Activity.php
index 215ac3072f9cc63a8f8cb99343453ddb8eb49717..279cfc2959bf4c048da70cecedf096649173490f 100644
--- a/civicrm/CRM/Activity/BAO/Activity.php
+++ b/civicrm/CRM/Activity/BAO/Activity.php
@@ -574,7 +574,7 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
    *
    * @return array
    *   Relevant data object values of open activities
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getActivities($params) {
     $activities = [];
@@ -1001,7 +1001,6 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
    *
    * @deprecated
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function sendEmail(
@@ -1906,7 +1905,7 @@ AND cl.modified_id  = c.id
    * @param int $type
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getStatusesByType($type) {
     if (!isset(Civi::$statics[__CLASS__][__FUNCTION__])) {
@@ -1932,7 +1931,7 @@ AND cl.modified_id  = c.id
    * @param array $activity
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function isOverdue($activity) {
     return array_key_exists($activity['status_id'], self::getStatusesByType(self::INCOMPLETE)) && CRM_Utils_Date::overdue($activity['activity_date_time']);
diff --git a/civicrm/CRM/Activity/BAO/Query.php b/civicrm/CRM/Activity/BAO/Query.php
index d147c9fc6f3612381874c3aa17076aefde4b7895..a7eee549e7a8a3e3f6995bd5a06b983169faf2ec 100644
--- a/civicrm/CRM/Activity/BAO/Query.php
+++ b/civicrm/CRM/Activity/BAO/Query.php
@@ -407,7 +407,7 @@ class CRM_Activity_BAO_Query {
   /**
    * Get the metadata for fields to be included on the activity search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @todo ideally this would be a trait included on the activity search & advanced search
    * rather than a static function.
    */
@@ -431,7 +431,6 @@ class CRM_Activity_BAO_Query {
    *
    * @param CRM_Core_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function buildSearchForm(&$form) {
@@ -500,7 +499,7 @@ class CRM_Activity_BAO_Query {
     // Add engagement level CRM-7775.
     $buildEngagementLevel = FALSE;
     $buildSurveyResult = FALSE;
-    if (CRM_Campaign_BAO_Campaign::isCampaignEnable() &&
+    if (CRM_Campaign_BAO_Campaign::isComponentEnabled() &&
       CRM_Campaign_BAO_Campaign::accessCampaign()
     ) {
       $buildEngagementLevel = TRUE;
diff --git a/civicrm/CRM/Activity/Form/Activity.php b/civicrm/CRM/Activity/Form/Activity.php
index ab071e004a693f9c25bfbba8067d194d25905dd6..ce069e8be431050ad2ce26f50521c9e7ee9b3a9f 100644
--- a/civicrm/CRM/Activity/Form/Activity.php
+++ b/civicrm/CRM/Activity/Form/Activity.php
@@ -610,7 +610,6 @@ class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
    * Build Quick form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     if ($this->_action & (CRM_Core_Action::DELETE | CRM_Core_Action::RENEW)) {
@@ -683,7 +682,7 @@ class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
 
     // Add engagement level CRM-7775
     $buildEngagementLevel = FALSE;
-    if (CRM_Campaign_BAO_Campaign::isCampaignEnable() &&
+    if (CRM_Campaign_BAO_Campaign::isComponentEnabled() &&
       CRM_Campaign_BAO_Campaign::accessCampaign()
     ) {
       $buildEngagementLevel = TRUE;
@@ -698,7 +697,7 @@ class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
     // check for survey activity
     $this->_isSurveyActivity = FALSE;
 
-    if ($this->_activityId && CRM_Campaign_BAO_Campaign::isCampaignEnable() &&
+    if ($this->_activityId && CRM_Campaign_BAO_Campaign::isComponentEnabled() &&
       CRM_Campaign_BAO_Campaign::accessCampaign()
     ) {
 
@@ -886,7 +885,7 @@ class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
    * @param array $params
    *
    * @return array|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess($params = NULL) {
     if ($this->_action & CRM_Core_Action::DELETE) {
diff --git a/civicrm/CRM/Activity/Form/ActivityLinks.php b/civicrm/CRM/Activity/Form/ActivityLinks.php
index ae43fc4dae9c92c38ed45b10c42aca6bc69a9156..6f2f61aa3a7419962dbc3666eb14468633e96234 100644
--- a/civicrm/CRM/Activity/Form/ActivityLinks.php
+++ b/civicrm/CRM/Activity/Form/ActivityLinks.php
@@ -74,7 +74,7 @@ class CRM_Activity_Form_ActivityLinks extends CRM_Core_Form {
             ],
           ]);
         }
-        catch (CiviCRM_API3_Exception $e) {
+        catch (CRM_Core_Exception $e) {
           continue;
         }
         if (!$phone['api.Contact.getsingle']['do_not_sms'] && $phone['phone']) {
diff --git a/civicrm/CRM/Activity/Form/Search.php b/civicrm/CRM/Activity/Form/Search.php
index 6b3e467266e7bd7aca8d6e83ec4f6417718ad488..a8d8e09893e5069670276f38f09fff43b8d832b5 100644
--- a/civicrm/CRM/Activity/Form/Search.php
+++ b/civicrm/CRM/Activity/Form/Search.php
@@ -70,7 +70,6 @@ class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
    * Processing needed for buildForm and later.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess(): void {
     $this->set('searchFormName', 'Search');
@@ -121,7 +120,6 @@ class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm(): void {
     parent::buildQuickForm();
@@ -153,7 +151,7 @@ class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
    * The processing consists of using a Selector / Controller framework for getting the
    * search results.
    *
-   * @throws \CRM_Core_Exception|\CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     if ($this->_done) {
@@ -316,7 +314,7 @@ class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getEntityMetadata() {
     return CRM_Activity_BAO_Query::getSearchFieldMetadata();
diff --git a/civicrm/CRM/Activity/Import/Parser/Activity.php b/civicrm/CRM/Activity/Import/Parser/Activity.php
index 50fe0d93a23b5c10d9e9c4625853dbda77d083c7..13f18fca5ab4c72d1bdf44ca9ea4726685425e04 100644
--- a/civicrm/CRM/Activity/Import/Parser/Activity.php
+++ b/civicrm/CRM/Activity/Import/Parser/Activity.php
@@ -156,7 +156,7 @@ class CRM_Activity_Import_Parser_Activity extends CRM_Import_Parser {
    * @param array $values
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedRow(array $values): array {
     $params = [];
diff --git a/civicrm/CRM/Admin/Form/Generic.php b/civicrm/CRM/Admin/Form/Generic.php
index a44e5a55a7a372ef20effedb2544d763a9dac5d2..10e6765c6f0d1e7d263622b1b1e992adfa7325e1 100644
--- a/civicrm/CRM/Admin/Form/Generic.php
+++ b/civicrm/CRM/Admin/Form/Generic.php
@@ -79,7 +79,7 @@ class CRM_Admin_Form_Generic extends CRM_Core_Form {
     try {
       $this->saveMetadataDefinedSettings($params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       CRM_Core_Session::setStatus($e->getMessage(), ts('Save Failed'), 'error');
     }
   }
diff --git a/civicrm/CRM/Admin/Form/Job.php b/civicrm/CRM/Admin/Form/Job.php
index b1fede1a230d63f46de4adbc747effc09b85c1f6..3f11c76ac37769e9c37148ff089515f0129eddc4 100644
--- a/civicrm/CRM/Admin/Form/Job.php
+++ b/civicrm/CRM/Admin/Form/Job.php
@@ -119,7 +119,7 @@ class CRM_Admin_Form_Job extends CRM_Admin_Form {
    * @param array $fields
    *
    * @return array|bool
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public static function formRule($fields) {
 
diff --git a/civicrm/CRM/Admin/Form/MessageTemplates.php b/civicrm/CRM/Admin/Form/MessageTemplates.php
index efabfc033a40188d326838fa50d4b864faeb34ac..d4be6aaa9bbb9d52faa9387c7e3b553aa4d95d98 100644
--- a/civicrm/CRM/Admin/Form/MessageTemplates.php
+++ b/civicrm/CRM/Admin/Form/MessageTemplates.php
@@ -44,7 +44,6 @@ class CRM_Admin_Form_MessageTemplates extends CRM_Core_Form {
   /**
    * PreProcess form - load existing values.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
@@ -268,7 +267,6 @@ class CRM_Admin_Form_MessageTemplates extends CRM_Core_Form {
   /**
    * Process the form submission.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
diff --git a/civicrm/CRM/Admin/Form/PaymentProcessor.php b/civicrm/CRM/Admin/Form/PaymentProcessor.php
index 83ddd79bc9f4c12201d8154cf3e99a49a36ccaeb..bf420ff7163c1a0ac6afcc8bbe7dcd584b4f41d6 100644
--- a/civicrm/CRM/Admin/Form/PaymentProcessor.php
+++ b/civicrm/CRM/Admin/Form/PaymentProcessor.php
@@ -403,7 +403,6 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form {
   /**
    * Process the form submission.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function postProcess() {
@@ -451,7 +450,7 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form {
    * @param int $domainID
    * @param bool $test
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function updatePaymentProcessor(&$values, $domainID, $test) {
     if ($test) {
diff --git a/civicrm/CRM/Admin/Form/Preferences.php b/civicrm/CRM/Admin/Form/Preferences.php
index 33a23e5e47e9ee290b623efc75ca9ca63c14ba5f..81af6d0903a06e0ebccad5d89e004b38ce891f4b 100644
--- a/civicrm/CRM/Admin/Form/Preferences.php
+++ b/civicrm/CRM/Admin/Form/Preferences.php
@@ -122,7 +122,7 @@ class CRM_Admin_Form_Preferences extends CRM_Core_Form {
       $this->saveMetadataDefinedSettings($this->_params);
       $this->filterParamsSetByMetadata($this->_params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       CRM_Core_Session::setStatus($e->getMessage(), ts('Save Failed'), 'error');
     }
 
diff --git a/civicrm/CRM/Admin/Form/Preferences/Contribute.php b/civicrm/CRM/Admin/Form/Preferences/Contribute.php
index 0072d060bed89091e22e442d6d9cde232badacd5..7729a1f170ed00baede99e3252863bcd03390eb7 100644
--- a/civicrm/CRM/Admin/Form/Preferences/Contribute.php
+++ b/civicrm/CRM/Admin/Form/Preferences/Contribute.php
@@ -38,7 +38,6 @@ class CRM_Admin_Form_Preferences_Contribute extends CRM_Admin_Form_Preferences {
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function buildQuickForm() {
diff --git a/civicrm/CRM/Admin/Form/ScheduleReminders.php b/civicrm/CRM/Admin/Form/ScheduleReminders.php
index 4f4420b5a2f62414ff6675166daab83f7eae0d9a..25a8b57baba6b1179214fe0af421559d248124bd 100644
--- a/civicrm/CRM/Admin/Form/ScheduleReminders.php
+++ b/civicrm/CRM/Admin/Form/ScheduleReminders.php
@@ -48,7 +48,6 @@ class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm(): void {
     parent::buildQuickForm();
@@ -302,7 +301,6 @@ class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
    * @return array|bool
    *   True if no errors, else array of errors
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function formRule(array $fields, $files, $self) {
@@ -335,6 +333,9 @@ class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
       $errors['entity'] = ts('Please select entity value');
     }
 
+    if (!CRM_Utils_System::isNull($fields['absolute_date']) && !CRM_Utils_System::isNull($fields['start_action_offset'])) {
+      $errors['absolute_date'] = ts('Only an absolute date or a relative date or time can be entered, not both.');
+    }
     if (!CRM_Utils_System::isNull($fields['absolute_date'])) {
       if ($fields['absolute_date'] < date('Y-m-d')) {
         $errors['absolute_date'] = ts('Absolute date cannot be earlier than the current time.');
@@ -483,7 +484,7 @@ class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
    *   The submitted form values.
    *
    * @return CRM_Core_DAO_ActionSchedule
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function parseActionSchedule($values) {
diff --git a/civicrm/CRM/Admin/Form/Setting.php b/civicrm/CRM/Admin/Form/Setting.php
index 0011769f4de6d79c36dda9213402304b8e3243c9..745bd5881ce33aa28cbfe4c217e2e9531f52727c 100644
--- a/civicrm/CRM/Admin/Form/Setting.php
+++ b/civicrm/CRM/Admin/Form/Setting.php
@@ -95,7 +95,7 @@ class CRM_Admin_Form_Setting extends CRM_Core_Form {
     try {
       $this->saveMetadataDefinedSettings($params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       CRM_Core_Session::setStatus($e->getMessage(), ts('Save Failed'), 'error');
     }
 
diff --git a/civicrm/CRM/Admin/Form/SettingTrait.php b/civicrm/CRM/Admin/Form/SettingTrait.php
index 3a3abc0dbb48c3ceb905d4812a2cfed3fb5f864c..705e0ab600af95a6262e25bec224c920c513899e 100644
--- a/civicrm/CRM/Admin/Form/SettingTrait.php
+++ b/civicrm/CRM/Admin/Form/SettingTrait.php
@@ -173,7 +173,6 @@ trait CRM_Admin_Form_SettingTrait {
    * Add fields in the metadata to the template.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function addFieldsDefinedInSettingsMetadata() {
     $this->addSettingsToFormFromMetadata();
@@ -323,7 +322,6 @@ trait CRM_Admin_Form_SettingTrait {
    *
    * All others are pending conversion.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   protected function setDefaultsForMetadataDefinedFields() {
@@ -351,7 +349,7 @@ trait CRM_Admin_Form_SettingTrait {
    * @param array $params
    *   Form input.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function saveMetadataDefinedSettings($params) {
     $settings = $this->getSettingsToSetByMetadata($params);
@@ -402,7 +400,7 @@ trait CRM_Admin_Form_SettingTrait {
   /**
    * Add settings to form if the metadata designates they should be on the page.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function addSettingsToFormFromMetadata() {
     $filter = $this->getSettingPageFilter();
diff --git a/civicrm/CRM/Admin/Page/JobLog.php b/civicrm/CRM/Admin/Page/JobLog.php
index e31a52558d6fd66fbf18688adf44c0d25554f813..5fbf7c59598c4cb702de48afedcf84b65c379c62 100644
--- a/civicrm/CRM/Admin/Page/JobLog.php
+++ b/civicrm/CRM/Admin/Page/JobLog.php
@@ -15,6 +15,8 @@
  * @copyright CiviCRM LLC https://civicrm.org/licensing
  */
 
+use Civi\Api4\JobLog;
+
 /**
  * Page for displaying list of jobs.
  */
@@ -25,7 +27,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    *
    * @var array
    */
-  public static $_links = NULL;
+  public static $_links;
 
   /**
    * Get BAO Name.
@@ -33,7 +35,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * @return string
    *   Classname of BAO.
    */
-  public function getBAOName() {
+  public function getBAOName(): string {
     return 'CRM_Core_BAO_Job';
   }
 
@@ -43,7 +45,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * @return array
    *   (reference) of action links
    */
-  public function &links() {
+  public function &links(): array {
     return self::$_links;
   }
 
@@ -54,55 +56,48 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * type of action and executes that action.
    * Finally it calls the parent's run method.
    */
-  public function run() {
-    // set title and breadcrumb
+  public function run(): void {
     CRM_Utils_System::setTitle(ts('Settings - Scheduled Jobs Log'));
-    $breadCrumb = array(
-      array(
+    CRM_Utils_System::appendBreadCrumb([
+      [
         'title' => ts('Administration'),
         'url' => CRM_Utils_System::url('civicrm/admin',
           'reset=1'
         ),
-      ),
-    );
-    CRM_Utils_System::appendBreadCrumb($breadCrumb);
-    return parent::run();
+      ],
+    ]);
+    parent::run();
   }
 
   /**
    * Browse all jobs.
+   *
+   * @throws \CRM_Core_Exception
    */
-  public function browse() {
+  public function browse(): void {
     $jid = CRM_Utils_Request::retrieve('jid', 'Positive');
 
-    $sj = new CRM_Core_JobManager();
-
     if ($jid) {
       $jobName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Job', $jid);
       $this->assign('jobName', $jobName);
       $jobRunUrl = CRM_Utils_System::url('civicrm/admin/job', 'action=view&reset=1&context=joblog&id=' . $jid);
       $this->assign('jobRunUrl', $jobRunUrl);
     }
+    else {
+      $this->assign('jobName', FALSE);
+      $this->assign('jobRunUrl', FALSE);
+    }
 
-    $dao = new CRM_Core_DAO_JobLog();
-    $dao->orderBy('id desc');
-
-    // limit to last 1000 records
-    $dao->limit(1000);
+    $jobLogsQuery = JobLog::get()
+      ->addOrderBy('id', 'DESC')
+      ->setLimit(1000);
 
     if ($jid) {
-      $dao->job_id = $jid;
+      $jobLogsQuery->addWhere('job_id', '=', $jid);
     }
-    $dao->find();
 
-    $rows = [];
-    while ($dao->fetch()) {
-      unset($row);
-      CRM_Core_DAO::storeValues($dao, $row);
-      $rows[$dao->id] = $row;
-    }
+    $rows = $jobLogsQuery->execute()->getArrayCopy();
     $this->assign('rows', $rows);
-
     $this->assign('jobId', $jid);
   }
 
@@ -112,7 +107,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * @return string
    *   Classname of edit form.
    */
-  public function editForm() {
+  public function editForm(): string {
     return 'CRM_Admin_Form_Job';
   }
 
@@ -122,7 +117,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * @return string
    *   name of this page.
    */
-  public function editName() {
+  public function editName(): string {
     return 'Scheduled Jobs';
   }
 
@@ -134,7 +129,7 @@ class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
    * @return string
    *   user context.
    */
-  public function userContext($mode = NULL) {
+  public function userContext($mode = NULL): string {
     return 'civicrm/admin/job';
   }
 
diff --git a/civicrm/CRM/Admin/Page/PaymentProcessor.php b/civicrm/CRM/Admin/Page/PaymentProcessor.php
index c0758c53375ea7af788367cdfe44dbf5c6818d3b..f30ee323cee487269d067554fd8ad30f48f88bc1 100644
--- a/civicrm/CRM/Admin/Page/PaymentProcessor.php
+++ b/civicrm/CRM/Admin/Page/PaymentProcessor.php
@@ -108,7 +108,7 @@ class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic {
    *
    * @param null $action
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function browse($action = NULL): void {
     $paymentProcessors = PaymentProcessor::get(FALSE)
@@ -138,7 +138,7 @@ class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic {
       try {
         $paymentProcessors[$paymentProcessorID]['test_id'] = CRM_Financial_BAO_PaymentProcessor::getTestProcessorId($paymentProcessorID);
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         CRM_Core_Session::setStatus(ts('No test processor entry exists for %1. Not having a test entry for each processor could cause problems', [$paymentProcessor['name']]));
       }
     }
diff --git a/civicrm/CRM/Api4/Services.php b/civicrm/CRM/Api4/Services.php
deleted file mode 100644
index 859f7ef9e677dd8e5976880df42394628ecace2d..0000000000000000000000000000000000000000
--- a/civicrm/CRM/Api4/Services.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-
-/*
- +--------------------------------------------------------------------+
- | 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       |
- +--------------------------------------------------------------------+
- */
-
-/**
- *
- * @package CRM
- * @copyright CiviCRM LLC https://civicrm.org/licensing
- */
-
-use Symfony\Component\DependencyInjection\Reference;
-use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
-use Symfony\Component\Config\FileLocator;
-
-class CRM_Api4_Services {
-
-  /**
-   * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
-   */
-  public static function hook_container($container) {
-    $loader = new XmlFileLoader($container, new FileLocator(dirname(dirname(__DIR__))));
-    $loader->load('Civi/Api4/services.xml');
-
-    self::loadServices('Civi\Api4\Service\Spec\Provider', 'spec_provider', $container);
-    self::loadServices('Civi\Api4\Event\Subscriber', 'event_subscriber', $container);
-
-    $container->getDefinition('civi_api_kernel')->addMethodCall(
-      'registerApiProvider',
-      [new Reference('action_object_provider')]
-    );
-  }
-
-  /**
-   * Load all services in a given directory
-   *
-   * @param string $namespace
-   * @param string $tag
-   * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
-   */
-  public static function loadServices($namespace, $tag, $container) {
-    $namespace = \CRM_Utils_File::addTrailingSlash($namespace, '\\');
-    $locations = array_merge([\Civi::paths()->getPath('[civicrm.root]/Civi.php')],
-      array_column(\CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles(), 'filePath')
-    );
-    foreach ($locations as $location) {
-      $path = \CRM_Utils_File::addTrailingSlash(dirname($location)) . str_replace('\\', DIRECTORY_SEPARATOR, $namespace);
-      if (!file_exists($path) || !is_dir($path)) {
-        $resource = new \Symfony\Component\Config\Resource\FileExistenceResource($path);
-        $container->addResource($resource);
-      }
-      else {
-        $resource = new \Symfony\Component\Config\Resource\DirectoryResource($path, ';\.php$;');
-        foreach (glob("$path*.php") as $file) {
-          $matches = [];
-          preg_match('/(\w*)\.php$/', $file, $matches);
-          $serviceName = $namespace . array_pop($matches);
-          $serviceClass = new \ReflectionClass($serviceName);
-          if ($serviceClass->isInstantiable()) {
-            $definition = $container->register(str_replace('\\', '_', $serviceName), $serviceName);
-            $definition->addTag($tag);
-            $definition->setPublic(TRUE);
-          }
-        }
-        $container->addResource($resource);
-      }
-    }
-  }
-
-}
diff --git a/civicrm/CRM/Batch/Form/Batch.php b/civicrm/CRM/Batch/Form/Batch.php
index 2c8ad45e7b459010a74861567a017e964642997f..3f4b34af52491a669555909741ea23a0c3c2805b 100644
--- a/civicrm/CRM/Batch/Form/Batch.php
+++ b/civicrm/CRM/Batch/Form/Batch.php
@@ -76,7 +76,7 @@ class CRM_Batch_Form_Batch extends CRM_Admin_Form {
   /**
    * Process the form submission.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     if ($this->_action & CRM_Core_Action::DELETE) {
diff --git a/civicrm/CRM/Batch/Form/Entry.php b/civicrm/CRM/Batch/Form/Entry.php
index 4a74dcf2da5baa6a86131528698bd596fb47c63f..6058c004649b998b680e1e07301096ac4302641d 100644
--- a/civicrm/CRM/Batch/Form/Entry.php
+++ b/civicrm/CRM/Batch/Form/Entry.php
@@ -521,7 +521,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    * Process the form after the input has been submitted and validated.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
@@ -561,7 +560,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    * @return bool
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   private function processContribution(&$params) {
 
@@ -766,8 +764,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    *   batch total monetary amount.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   private function processMembership(array $params) {
     $batchTotal = 0;
@@ -925,7 +921,7 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    *
    * @return bool
    *   true if mail was sent successfully
-   * @throws \CRM_Core_Exception|\API_Exception
+   * @throws \CRM_Core_Exception
    *
    */
   protected function emailReceipt($form, &$formValues): bool {
@@ -1027,7 +1023,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    * @return bool
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function testProcessContribution($params) {
     return $this->processContribution($params);
@@ -1040,7 +1035,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    * @return CRM_Member_BAO_Membership
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function legacyProcessMembership($customFieldsFormatted, $formDates = []): CRM_Member_DAO_Membership {
     $updateStatusId = FALSE;
@@ -1179,7 +1173,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    * @return bool
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   private function currentRowIsRenew(): bool {
     return $this->currentRowIsRenewOption === 2 && $this->getCurrentMembership();
@@ -1190,7 +1183,6 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form {
    *
    * @return array|bool
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getCurrentMembership() {
diff --git a/civicrm/CRM/Campaign/BAO/Campaign.php b/civicrm/CRM/Campaign/BAO/Campaign.php
index 0174f2c5e3197567484084676689e8afa244f8f3..2314942c10c7cd6dbe050120ab07c91c1c45626f 100644
--- a/civicrm/CRM/Campaign/BAO/Campaign.php
+++ b/civicrm/CRM/Campaign/BAO/Campaign.php
@@ -255,7 +255,7 @@ Order By  camp.title";
 
       //do check for component.
       if ($doCheckForComponent) {
-        $campaigns['isCampaignEnabled'] = $isValid = self::isCampaignEnable();
+        $campaigns['isCampaignEnabled'] = $isValid = self::isComponentEnabled();
       }
 
       //do check for permissions.
@@ -283,11 +283,12 @@ Order By  camp.title";
 
   /**
    * Is CiviCampaign enabled.
-   *
+   * @deprecated
    * @return bool
    */
   public static function isCampaignEnable(): bool {
-    return CRM_Core_Component::isEnabled('CiviCampaign');
+    CRM_Core_Error::deprecatedFunctionWarning('isComponentEnabled');
+    return self::isComponentEnabled();
   }
 
   /**
diff --git a/civicrm/CRM/Case/BAO/Case.php b/civicrm/CRM/Case/BAO/Case.php
index c45b8dffd30615c1e271ef3fa64f6e019162653f..ae7ba35fb0019af0ec9e60105b5cc33f433eacae 100644
--- a/civicrm/CRM/Case/BAO/Case.php
+++ b/civicrm/CRM/Case/BAO/Case.php
@@ -30,11 +30,12 @@ class CRM_Case_BAO_Case extends CRM_Case_DAO_Case implements \Civi\Core\HookInte
 
   /**
    * Is CiviCase enabled?
-   *
+   * @deprecated
    * @return bool
    */
   public static function enabled() {
-    return CRM_Core_Component::isEnabled('CiviCase');
+    CRM_Core_Error::deprecatedFunctionWarning('isComponentEnabled');
+    return self::isComponentEnabled();
   }
 
   /**
@@ -63,7 +64,7 @@ class CRM_Case_BAO_Case extends CRM_Case_DAO_Case implements \Civi\Core\HookInte
    */
   public static function on_hook_civicrm_post(\Civi\Core\Event\PostEvent $e): void {
     // FIXME: The EventScanner ought to skip over disabled components when registering HookInterface
-    if (!CRM_Core_Component::isEnabled('CiviCase')) {
+    if (!self::isComponentEnabled()) {
       return;
     }
     if ($e->entity === 'Activity' && in_array($e->action, ['create', 'edit'])) {
@@ -1876,7 +1877,7 @@ HERESQL;
     try {
       return civicrm_api3('Case', 'getcount', $params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // Lack of permissions will throw an exception
       return 0;
     }
@@ -2467,7 +2468,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
     }
 
     //do check for civicase component enabled.
-    if ($checkComponent && !self::enabled()) {
+    if ($checkComponent && !self::isComponentEnabled()) {
       return $allow;
     }
 
@@ -2490,7 +2491,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
             'end_date' => ['IS NULL' => 1],
           ]);
         }
-        catch (CiviCRM_API3_Exception $e) {
+        catch (CRM_Core_Exception $e) {
           // Lack of permissions will throw an exception
           $caseCount = 0;
         }
@@ -2709,7 +2710,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
    * or 'access all cases and activities'
    */
   public static function accessCiviCase() {
-    if (!self::enabled()) {
+    if (!self::isComponentEnabled()) {
       return FALSE;
     }
 
@@ -2732,7 +2733,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
    * @return bool
    */
   public static function accessCase($caseId, $denyClosed = TRUE) {
-    if (!$caseId || !self::enabled()) {
+    if (!$caseId || !self::isComponentEnabled()) {
       return FALSE;
     }
 
@@ -2743,7 +2744,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
     try {
       return (bool) civicrm_api3('Case', 'getcount', $params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // Lack of permissions will throw an exception
       return FALSE;
     }
@@ -2954,7 +2955,6 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
    * @param int $relTypeId
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function endCaseRole($caseId, $direction, $cid, $relTypeId) {
     // Validate inputs
@@ -2987,7 +2987,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
    *   Whatever is known about this dao object.
    *
    * @return array|bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    *
    * @see CRM_Core_DAO::buildOptionsContext
    * @see CRM_Core_DAO::buildOptions
@@ -3058,7 +3058,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
    *
    * @return mixed $emailFromContactId
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @see https://issues.civicrm.org/jira/browse/CRM-20308
    */
   public static function getReceiptFrom($activityID) {
@@ -3117,7 +3117,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
     try {
       $case = civicrm_api3('Case', 'getsingle', ['id' => $caseId]);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // Lack of permissions will throw an exception
       return 0;
     }
@@ -3125,7 +3125,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
       try {
         $caseType = civicrm_api3('CaseType', 'getsingle', ['id' => $case['case_type_id'], 'return' => ['definition']]);
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         // Lack of permissions will throw an exception
         return 'no case type found';
       }
@@ -3136,7 +3136,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
           try {
             $relType = civicrm_api3('RelationshipType', 'getsingle', ['label_a_b' => $roleDetails['name']]);
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
           }
           if (!empty($relType['id'])) {
             $roleDetails['id'] = $relType['id'];
@@ -3146,7 +3146,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
           try {
             $relTypeBa = civicrm_api3('RelationshipType', 'getsingle', ['label_b_a' => $roleDetails['name']]);
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
           }
           if (!empty($relTypeBa['id'])) {
             if (!empty($roleDetails['direction'])) {
diff --git a/civicrm/CRM/Case/Form/Activity/OpenCase.php b/civicrm/CRM/Case/Form/Activity/OpenCase.php
index 65eb900f74c13a08d02e757b3dd1d722fd611bdd..c159b6b2be8e03b272787855089a32a7a883df5f 100644
--- a/civicrm/CRM/Case/Form/Activity/OpenCase.php
+++ b/civicrm/CRM/Case/Form/Activity/OpenCase.php
@@ -30,7 +30,6 @@ class CRM_Case_Form_Activity_OpenCase {
    * @param CRM_Case_Form_Case $form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function preProcess(&$form) {
     //get multi client case configuration
@@ -75,7 +74,7 @@ class CRM_Case_Form_Activity_OpenCase {
    * @param CRM_Case_Form_Case $form
    *
    * @return array $defaults
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function setDefaultValues(&$form) {
     $defaults = [];
@@ -133,7 +132,7 @@ class CRM_Case_Form_Activity_OpenCase {
   /**
    * @param CRM_Case_Form_Case $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   public static function buildQuickForm(&$form) {
diff --git a/civicrm/CRM/Case/Form/ActivityToCase.php b/civicrm/CRM/Case/Form/ActivityToCase.php
index 95b2d6b7f77a0e389d51ccb4a0776a2803384d16..34eb4fed41489defa63f80d492132a4e7700cd78 100644
--- a/civicrm/CRM/Case/Form/ActivityToCase.php
+++ b/civicrm/CRM/Case/Form/ActivityToCase.php
@@ -53,7 +53,6 @@ class CRM_Case_Form_ActivityToCase extends CRM_Core_Form {
    * @return array
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function setDefaultValues() {
     $defaults = [];
diff --git a/civicrm/CRM/Case/Form/CustomData.php b/civicrm/CRM/Case/Form/CustomData.php
index 9e4bb5e2a0f436da399868f516b9e72ab4f77781..62ec0fe8daacb585662f0e08bf8b410591d7f37d 100644
--- a/civicrm/CRM/Case/Form/CustomData.php
+++ b/civicrm/CRM/Case/Form/CustomData.php
@@ -144,7 +144,7 @@ class CRM_Case_Form_CustomData extends CRM_Core_Form {
    * @param array $params New custom field values from form
    *
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function formatCustomDataChangesForDetail($params) {
     $formattedDetails = [];
diff --git a/civicrm/CRM/Case/Form/Search.php b/civicrm/CRM/Case/Form/Search.php
index d3ba7a07c4d7d029eecb2fb5edbc7818e10dd494..3445bddd3daf83ea68b0b14cb223a60c293c73cf 100644
--- a/civicrm/CRM/Case/Form/Search.php
+++ b/civicrm/CRM/Case/Form/Search.php
@@ -334,7 +334,7 @@ class CRM_Case_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Case' => CRM_Case_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Case/Page/AJAX.php b/civicrm/CRM/Case/Page/AJAX.php
index 21e78f82a781d32baa65bb84043518214578e146..d219fa93654d32f3f96701739710bf1389620860 100644
--- a/civicrm/CRM/Case/Page/AJAX.php
+++ b/civicrm/CRM/Case/Page/AJAX.php
@@ -74,7 +74,7 @@ class CRM_Case_Page_AJAX {
   }
 
   /**
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function caseDetails() {
     $caseId = CRM_Utils_Type::escape($_GET['caseId'], 'Positive');
diff --git a/civicrm/CRM/Contact/BAO/Contact.php b/civicrm/CRM/Contact/BAO/Contact.php
index 087e4d9e519d084119ed9e916054db1d0b777975..1e8aa46a2332143d4695c98c374429eb5f1df639 100644
--- a/civicrm/CRM/Contact/BAO/Contact.php
+++ b/civicrm/CRM/Contact/BAO/Contact.php
@@ -246,7 +246,6 @@ class CRM_Contact_BAO_Contact extends CRM_Contact_DAO_Contact implements Civi\Co
    *   favour of exceptions
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function &create(&$params, $fixAddress = TRUE, $invokeHooks = TRUE, $skipDelete = FALSE) {
@@ -504,7 +503,7 @@ class CRM_Contact_BAO_Contact extends CRM_Contact_DAO_Contact implements Civi\Co
    *
    * @param array $params
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function ensureGreetingParamsAreSet(&$params) {
     $allGreetingParams = ['addressee' => 'addressee_id', 'postal_greeting' => 'postal_greeting_id', 'email_greeting' => 'email_greeting_id'];
@@ -868,7 +867,6 @@ WHERE     civicrm_contact.id = " . CRM_Utils_Type::escape($id, 'Integer');
    *   Was contact deleted?
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function deleteContact($id, $restore = FALSE, $skipUndelete = FALSE, $checkPermissions = TRUE) {
 
@@ -1891,7 +1889,6 @@ ORDER BY civicrm_email.is_primary DESC";
    *   contact id created/edited
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function createProfileContact(
diff --git a/civicrm/CRM/Contact/BAO/Contact/Utils.php b/civicrm/CRM/Contact/BAO/Contact/Utils.php
index da904c31b8c559c5c17fa1e85fedf2a65a3ce58b..7916e81b07d5df73807a4133ee49039ab3585a6c 100644
--- a/civicrm/CRM/Contact/BAO/Contact/Utils.php
+++ b/civicrm/CRM/Contact/BAO/Contact/Utils.php
@@ -246,9 +246,7 @@ WHERE  id IN ( $idString )
    * @param int|null $previousEmployerID
    * @param bool $newContact
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function createCurrentEmployerRelationship($contactID, $employerID, $previousEmployerID = NULL, $newContact = FALSE): void {
     if (!$employerID) {
@@ -357,7 +355,6 @@ WHERE  id IN ( $idString )
    *
    * @param int $previousEmployerID
    *
-   * @throws CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   private static function currentEmployerRelatedMembership($contactID, $employerID, $relationshipParams, $duplicate = FALSE, $previousEmployerID = NULL) {
@@ -402,7 +399,6 @@ WHERE contact_a.employer_id=contact_b.id AND contact_b.id={$organizationId}; ";
    *   Contact id ( mostly organization contact id).
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function clearCurrentEmployer($contactId, $employerId = NULL) {
     $query = "UPDATE civicrm_contact
@@ -450,7 +446,7 @@ WHERE id={$contactId}; ";
    * @param string $title
    *   fieldset title.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildOnBehalfForm(&$form, $contactType, $countryID, $stateID, $title) {
     $form->assign('contact_type', $contactType);
diff --git a/civicrm/CRM/Contact/BAO/ContactType.php b/civicrm/CRM/Contact/BAO/ContactType.php
index dcf4150abde944428764b5968503f3d54c6cc106..cf55ff487cac77d105abfd3e4226b07091526ac5 100644
--- a/civicrm/CRM/Contact/BAO/ContactType.php
+++ b/civicrm/CRM/Contact/BAO/ContactType.php
@@ -40,7 +40,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    *
    * @return bool
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function isActive($contactType) {
     $contact = self::contactTypeInfo();
@@ -55,7 +55,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    * @return array
    *   Array of basic contact types information.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function basicTypeInfo($includeInactive = FALSE) {
@@ -72,7 +72,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    * @return array
    *   Array of basic contact types
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function basicTypes($all = FALSE) {
@@ -84,7 +84,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    * @param string $key
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function basicTypePairs($all = FALSE, $key = 'name') {
@@ -107,7 +107,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    * @return array
    *   Array of sub type information, subset of getAllContactTypes.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function subTypeInfo($contactType = NULL, $all = FALSE) {
     $contactTypes = self::getAllContactTypes();
@@ -134,7 +134,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    * @return array
    *   all subtypes OR list of subtypes associated to
    *   a given basic contact type
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function subTypes($contactType = NULL, $all = FALSE, $columnName = 'name', $ignoreCache = FALSE) {
     if ($columnName === 'name') {
@@ -212,7 +212,7 @@ class CRM_Contact_BAO_ContactType extends CRM_Contact_DAO_ContactType implements
    *
    * @return array|string
    *   Array of basictypes with name as 'built-in name' and 'label' as value
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function contactTypePairs($all = FALSE, $typeName = NULL, $delimiter = NULL) {
     $types = self::contactTypeInfo($all);
@@ -613,7 +613,7 @@ WHERE contact_sub_type LIKE '%{$subType}%'";
    * @param string $typeName
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getLabel($typeName) {
     $types = self::contactTypeInfo(TRUE);
@@ -860,7 +860,7 @@ WHERE ($subtypeClause)";
    * SQL query instead of calling APIv4 to avoid an infinite loop.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getAllContactTypes() {
     $cache = Civi::cache('contactTypes');
diff --git a/civicrm/CRM/Contact/BAO/GroupContact.php b/civicrm/CRM/Contact/BAO/GroupContact.php
index fb0c083a386f7eacb948e33ae63b4bbb0ab22620..7d96f04029dcb176f304f04571d07d1fbe8bb2c9 100644
--- a/civicrm/CRM/Contact/BAO/GroupContact.php
+++ b/civicrm/CRM/Contact/BAO/GroupContact.php
@@ -63,7 +63,7 @@ class CRM_Contact_BAO_GroupContact extends CRM_Contact_DAO_GroupContact implemen
           ],
         ])->execute();
       }
-      catch (API_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         // A failure to create the history might be a deadlock or similar
         // This record is not important enough to trigger a larger fail.
         Civi::log()->warning('Failed to add civicrm_subscription_history record with error :error', ['error' => $e->getMessage()]);
diff --git a/civicrm/CRM/Contact/BAO/GroupContactCache.php b/civicrm/CRM/Contact/BAO/GroupContactCache.php
index 306cfcb553f3c231e6635e22ae7445043d1b4a31..6c451f8bc6c1f5d7ba5420eeb20c6ec74a4856d8 100644
--- a/civicrm/CRM/Contact/BAO/GroupContactCache.php
+++ b/civicrm/CRM/Contact/BAO/GroupContactCache.php
@@ -341,9 +341,7 @@ WHERE  id IN ( $groupIDs )
    * @param bool $force
    *   deprecated parameter = Should we force a search through.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function load($group, $force = FALSE) {
     $groupID = (int) $group->id;
@@ -500,7 +498,7 @@ ORDER BY   gc.contact_id, g.children
    * @param int $groupID
    *
    * @return string
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    * @throws CRM_Core_Exception
    */
@@ -542,7 +540,6 @@ ORDER BY   gc.contact_id, g.children
    *
    * @return string
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function getCustomSearchSQL(array $savedSearch, int $groupID) {
     $savedSearchID = $savedSearch['id'];
@@ -575,7 +572,6 @@ ORDER BY   gc.contact_id, g.children
    *
    * @return string
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function getQueryObjectSQL(array $savedSearch, int $groupID): string {
     $savedSearchID = $savedSearch['id'];
@@ -641,9 +637,7 @@ ORDER BY   gc.contact_id, g.children
    *   to make it easy to switch to multiple.
    * @param CRM_Utils_SQL_TempTable $tempTableObject
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function buildGroupContactTempTable(array $groupIDs, $tempTableObject): void {
     $groups = Group::get(FALSE)->addWhere('id', 'IN', $groupIDs)
@@ -663,9 +657,7 @@ ORDER BY   gc.contact_id, g.children
    * @param int[] $groupIDs
    * @param string $temporaryTable
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function populateTemporaryTableWithContactsInGroups(array $groupIDs, string $temporaryTable): void {
     $childAndParentGroupIDs = array_merge($groupIDs, CRM_Contact_BAO_GroupNesting::getDescendentGroupIds($groupIDs));
@@ -792,9 +784,7 @@ ORDER BY   gc.contact_id, g.children
    * @param string|null $children
    *
    * @return void
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function insertGroupContactsIntoTempTable(string $tempTableName, int $groupID, ?int $savedSearchID, ?string $children): void {
     if ($savedSearchID) {
diff --git a/civicrm/CRM/Contact/BAO/Relationship.php b/civicrm/CRM/Contact/BAO/Relationship.php
index 92bdbddf198707adbeaa8efef31e65b5532c13e5..40315dd33464593545d8e2b2ce5c61eee18293e3 100644
--- a/civicrm/CRM/Contact/BAO/Relationship.php
+++ b/civicrm/CRM/Contact/BAO/Relationship.php
@@ -116,7 +116,7 @@ class CRM_Contact_BAO_Relationship extends CRM_Contact_DAO_Relationship {
         $relationshipIDs[] = $relationship['id'];
         $valid++;
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         switch ($e->getMessage()) {
           case 'Duplicate Relationship':
             $duplicate++;
@@ -230,7 +230,7 @@ class CRM_Contact_BAO_Relationship extends CRM_Contact_DAO_Relationship {
    *
    * @return CRM_Contact_BAO_Relationship
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function add($params, $ids = []) {
     $params['id'] = CRM_Utils_Array::value('relationship', $ids, CRM_Utils_Array::value('id', $params));
@@ -623,7 +623,6 @@ class CRM_Contact_BAO_Relationship extends CRM_Contact_DAO_Relationship {
    * @return CRM_Contact_DAO_Relationship
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function del($id) {
     // delete from relationship table
@@ -669,7 +668,6 @@ class CRM_Contact_BAO_Relationship extends CRM_Contact_DAO_Relationship {
    * @param bool $active
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function disableEnableRelationship($id, $action, $params = [], $ids = [], $active = FALSE) {
     $relationship = self::clearCurrentEmployer($id, $action);
@@ -951,7 +949,7 @@ WHERE  relationship_type_id = " . CRM_Utils_Type::escape($type, 'Integer');
    *
    * @return bool
    *
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function setIsActive($id, $is_active) {
     // as both the create & add functions have a bunch of logic in them that
@@ -967,7 +965,7 @@ WHERE  relationship_type_id = " . CRM_Utils_Type::escape($type, 'Integer');
     ]);
 
     if (is_array($result) && !empty($result['is_error']) && $result['error_message'] != 'Duplicate Relationship') {
-      throw new CiviCRM_API3_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
+      throw new CRM_Core_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
     }
 
     return TRUE;
@@ -1029,7 +1027,6 @@ WHERE  relationship_type_id = " . CRM_Utils_Type::escape($type, 'Integer');
    *   [select, from, where]
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function makeURLClause($contactId, $status, $numRelationship, $count, $relationshipId, $direction, $params = []) {
     $select = $from = $where = '';
@@ -1188,7 +1185,6 @@ LEFT JOIN  civicrm_country ON (civicrm_address.country_id = civicrm_country.id)
    *   relationship records
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getRelationship(
     $contactId = NULL,
@@ -1445,7 +1441,6 @@ LEFT JOIN  civicrm_country ON (civicrm_address.country_id = civicrm_country.id)
    * @param bool $active
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function relatedMemberships($contactId, $params, $ids, $action = CRM_Core_Action::ADD, $active = TRUE) {
     // Check the end date and set the status of the relationship
@@ -1839,7 +1834,7 @@ AND cc.sort_name LIKE '%$name%'";
    *
    * @return bool
    *   True on success, false if error is encountered.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function disableExpiredRelationships() {
     $query = "SELECT id FROM civicrm_relationship WHERE is_active = 1 AND end_date < CURDATE()";
@@ -1867,7 +1862,7 @@ AND cc.sort_name LIKE '%$name%'";
    * @param string $direction
    *
    * @return array|void
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function membershipTypeToRelationshipTypes(&$params, $direction = NULL) {
     $membershipType = civicrm_api3('membership_type', 'getsingle', [
@@ -2138,7 +2133,7 @@ AND cc.sort_name LIKE '%$name%'";
    *
    * @return bool
    *   TRUE if current employer needs to be cleared.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function isCurrentEmployerNeedingToBeCleared($params, $relationshipId, $updatedRelTypeID = NULL) {
     $existingTypeID = (int) CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Relationship', $relationshipId, 'relationship_type_id');
@@ -2194,7 +2189,7 @@ AND cc.sort_name LIKE '%$name%'";
    * @param int $cid
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function isInheritedMembershipInvalidated($membershipValues, array $values, $cid): array {
     // @todo most of this can go - it's just the weird historical returning of $relTypeId that it does.
@@ -2219,7 +2214,7 @@ AND cc.sort_name LIKE '%$name%'";
    *
    * @return bool
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function isContactHasValidRelationshipToInheritMembershipType(int $contactID, int $membershipTypeID, int $parentMembershipID): bool {
     $membershipType = CRM_Member_BAO_MembershipType::getMembershipType($membershipTypeID);
diff --git a/civicrm/CRM/Contact/BAO/RelationshipType.php b/civicrm/CRM/Contact/BAO/RelationshipType.php
index b2cc785173b2213c748212816e625271a38e5a76..0a24566a96bd6e58342fc23550adce33db5baf75 100644
--- a/civicrm/CRM/Contact/BAO/RelationshipType.php
+++ b/civicrm/CRM/Contact/BAO/RelationshipType.php
@@ -112,7 +112,7 @@ class CRM_Contact_BAO_RelationshipType extends CRM_Contact_DAO_RelationshipType
    *
    * @param \Civi\Core\Event\PreEvent $event
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function self_hook_civicrm_pre(PreEvent $event): void {
@@ -141,12 +141,12 @@ class CRM_Contact_BAO_RelationshipType extends CRM_Contact_DAO_RelationshipType
           ->addWhere('contact_type_a', '=', 'Individual')
           ->addSelect('id')->execute()->first();
         if (empty($relationship)) {
-          throw new API_Exception('no valid relationship');
+          throw new CRM_Core_Exception('no valid relationship');
         }
         Civi::cache('metadata')->set(__CLASS__ . __FUNCTION__, $relationship['id']);
       }
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       throw new CRM_Core_Exception(ts("You seem to have deleted the relationship type 'Employee of'"));
     }
     return Civi::cache('metadata')->get(__CLASS__ . __FUNCTION__);
diff --git a/civicrm/CRM/Contact/BAO/SavedSearch.php b/civicrm/CRM/Contact/BAO/SavedSearch.php
index b3a10d44e7b1a38081930628ca3d8db932d4f654..f12f4f576bc3f9afda4fd281edbcbd16d6ec75f3 100644
--- a/civicrm/CRM/Contact/BAO/SavedSearch.php
+++ b/civicrm/CRM/Contact/BAO/SavedSearch.php
@@ -47,7 +47,6 @@ class CRM_Contact_BAO_SavedSearch extends CRM_Contact_DAO_SavedSearch {
    *   the values of the posted saved search used as default values in various Search Form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getFormValues($id) {
     $specialDateFields = [
@@ -176,7 +175,6 @@ class CRM_Contact_BAO_SavedSearch extends CRM_Contact_DAO_SavedSearch {
    * @return array
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getSearchParams($id) {
     $savedSearch = \Civi\Api4\SavedSearch::get(FALSE)
@@ -339,7 +337,7 @@ WHERE  $where";
    * @param string $op
    * @param array|string|int $value
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function decodeRelativeFields(&$formValues, $fieldName, $op, $value) {
     // check if its a custom date field, if yes then 'searchDate' format the value
diff --git a/civicrm/CRM/Contact/BAO/SubscriptionHistory.php b/civicrm/CRM/Contact/BAO/SubscriptionHistory.php
index 4e51bb852eca47799fa9a0b7de5379d44e31e8ea..5deb2c729f440e2b6c1adbdba5630a41d800b395 100644
--- a/civicrm/CRM/Contact/BAO/SubscriptionHistory.php
+++ b/civicrm/CRM/Contact/BAO/SubscriptionHistory.php
@@ -31,7 +31,7 @@ class CRM_Contact_BAO_SubscriptionHistory extends CRM_Contact_DAO_SubscriptionHi
    */
   public static function create($params) {
     $history = new CRM_Contact_BAO_SubscriptionHistory();
-    $history->date = date('Ymd');
+    $history->date = date('YmdHis');
     $history->copyValues($params);
     $history->save();
     return $history;
diff --git a/civicrm/CRM/Contact/Form/Domain.php b/civicrm/CRM/Contact/Form/Domain.php
index fd938776f060ea1f6b1aff0f71f556d1c80c8afd..2ccf0843e771027c39cc3b3b3504cf4b19af2808 100644
--- a/civicrm/CRM/Contact/Form/Domain.php
+++ b/civicrm/CRM/Contact/Form/Domain.php
@@ -114,7 +114,7 @@ class CRM_Contact_Form_Domain extends CRM_Core_Form {
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildQuickForm(): void {
     $this->addField('name', ['label' => ts('Organization Name')], TRUE);
diff --git a/civicrm/CRM/Contact/Form/Edit/Address.php b/civicrm/CRM/Contact/Form/Edit/Address.php
index d51ae147e0ef53a258ca96d1e05a70d2a7f2db2c..8b88bb49c28605778e774640ff712f4f13b047f5 100644
--- a/civicrm/CRM/Contact/Form/Edit/Address.php
+++ b/civicrm/CRM/Contact/Form/Edit/Address.php
@@ -31,7 +31,7 @@ class CRM_Contact_Form_Edit_Address {
    * @param bool $inlineEdit
    *   True when edit used in inline edit.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildQuickForm(&$form, $addressBlockCount = NULL, $sharing = TRUE, $inlineEdit = FALSE) {
     // passing this via the session is AWFUL. we need to fix this
@@ -385,7 +385,6 @@ class CRM_Contact_Form_Edit_Address {
    * @param int $blockId
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function addCustomDataToForm(&$form, $entityId, $blockId) {
     $groupTree = CRM_Core_BAO_CustomGroup::getTree('Address', NULL, $entityId);
diff --git a/civicrm/CRM/Contact/Form/Relationship.php b/civicrm/CRM/Contact/Form/Relationship.php
index 6203c629e6283aec4750eba112c033e814e5e609..4119d117252ca3ec482555ccbc80c612dce49ab9 100644
--- a/civicrm/CRM/Contact/Form/Relationship.php
+++ b/civicrm/CRM/Contact/Form/Relationship.php
@@ -527,7 +527,7 @@ class CRM_Contact_Form_Relationship extends CRM_Core_Form {
     try {
       civicrm_api3('relationship', 'create', $params);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       throw new CRM_Core_Exception('Relationship create error ' . $e->getMessage());
     }
 
@@ -590,7 +590,7 @@ class CRM_Contact_Form_Relationship extends CRM_Core_Form {
    * @param array $relationshipIds
    * @param string $note
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function saveRelationshipNotes($relationshipIds, $note) {
     foreach ($relationshipIds as $id) {
diff --git a/civicrm/CRM/Contact/Form/Search.php b/civicrm/CRM/Contact/Form/Search.php
index d39ad016afe1b9fa93f3a868a7d7a5ec2962ca29..7a139d3b4a2227c933f951559b62494063a44dd6 100644
--- a/civicrm/CRM/Contact/Form/Search.php
+++ b/civicrm/CRM/Contact/Form/Search.php
@@ -905,7 +905,7 @@ class CRM_Contact_Form_Search extends CRM_Core_Form_Search {
   /**
    * Load metadata for fields on the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function loadMetadata() {
     // can't by pass acls by passing search criteria in the url.
diff --git a/civicrm/CRM/Contact/Form/Search/Criteria.php b/civicrm/CRM/Contact/Form/Search/Criteria.php
index 1dda83c0cd0efa4ade317f26bf5e84dc88b9f270..effcd31cc3330b5daf2b14bff907f955ccf174c6 100644
--- a/civicrm/CRM/Contact/Form/Search/Criteria.php
+++ b/civicrm/CRM/Contact/Form/Search/Criteria.php
@@ -20,7 +20,6 @@ class CRM_Contact_Form_Search_Criteria {
    * @param CRM_Contact_Form_Search_Advanced $form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function basic(&$form) {
     $form->addSearchFieldMetadata(['Contact' => self::getFilteredSearchFieldMetadata('basic')]);
@@ -244,7 +243,7 @@ class CRM_Contact_Form_Search_Criteria {
   /**
    * Get the metadata for fields to be included on the contact search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
@@ -291,7 +290,7 @@ class CRM_Contact_Form_Search_Criteria {
    * @param string $filter
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getFilteredSearchFieldMetadata($filter) {
     $fields = self::getSearchFieldMetadata();
@@ -308,7 +307,7 @@ class CRM_Contact_Form_Search_Criteria {
    *
    * @param CRM_Core_Form $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function setBasicSearchFields($form) {
     $searchFields = [];
@@ -327,7 +326,6 @@ class CRM_Contact_Form_Search_Criteria {
    *
    */
   public static function getBasicSearchFields() {
-    $userFramework = CRM_Core_Config::singleton()->userFramework;
     return [
       // For now an empty array is still left in place for ordering.
       'sort_name' => [],
@@ -386,7 +384,6 @@ class CRM_Contact_Form_Search_Criteria {
       ],
       'uf_user' => [
         'name' => 'uf_user',
-        'description' => ts('Does the contact have a %1 Account?', [$userFramework]),
       ],
     ];
   }
@@ -506,7 +503,7 @@ class CRM_Contact_Form_Search_Criteria {
   /**
    * @param CRM_Core_Form $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function changeLog(&$form) {
     $form->add('hidden', 'hidden_changeLog', 1);
@@ -526,7 +523,7 @@ class CRM_Contact_Form_Search_Criteria {
   /**
    * @param CRM_Core_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function relationship(&$form) {
     $form->add('hidden', 'hidden_relationship', 1);
@@ -559,7 +556,7 @@ class CRM_Contact_Form_Search_Criteria {
   /**
    * @param CRM_Core_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function demographics(&$form) {
     $form->add('hidden', 'hidden_demographics', 1);
@@ -603,7 +600,7 @@ class CRM_Contact_Form_Search_Criteria {
    *
    * @param CRM_Contact_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function custom(&$form) {
     $form->add('hidden', 'hidden_custom', 1);
diff --git a/civicrm/CRM/Contact/Form/Task/AddToParentClass.php b/civicrm/CRM/Contact/Form/Task/AddToParentClass.php
index 194c22bd473b02a55bb44ca63a87d515cf4445d7..55f228e2edd6f31cf93b55ccb10fa56eeb78ba71 100644
--- a/civicrm/CRM/Contact/Form/Task/AddToParentClass.php
+++ b/civicrm/CRM/Contact/Form/Task/AddToParentClass.php
@@ -44,6 +44,7 @@ class CRM_Contact_Form_Task_AddToParentClass extends CRM_Contact_Form_Task {
 
     $searchRows = $this->get('searchRows');
     $searchCount = $this->get('searchCount');
+    $this->assign('searchRows', FALSE);
     if ($searchRows) {
       $checkBoxes = [];
       $chekFlag = 0;
@@ -209,7 +210,6 @@ class CRM_Contact_Form_Task_AddToParentClass extends CRM_Contact_Form_Task {
     }
 
     // get the count of contact
-    $contactBAO = new CRM_Contact_BAO_Contact();
     $query = new CRM_Contact_BAO_Query($searchValues);
     $searchCount = $query->searchQuery(0, 0, NULL, TRUE);
     $form->set('searchCount', $searchCount);
diff --git a/civicrm/CRM/Contact/Form/Task/Delete.php b/civicrm/CRM/Contact/Form/Task/Delete.php
index c2c9b7b8e34055b1e6e72d848d8eed827363fbd7..44cd6be1f8f879b42a0a58c19f0def373d16c8cc 100644
--- a/civicrm/CRM/Contact/Form/Task/Delete.php
+++ b/civicrm/CRM/Contact/Form/Task/Delete.php
@@ -287,7 +287,7 @@ class CRM_Contact_Form_Task_Delete extends CRM_Contact_Form_Task {
   /**
    * Restore the selected contact/s from the trash.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function doRestore() {
diff --git a/civicrm/CRM/Contact/Form/Task/Email.php b/civicrm/CRM/Contact/Form/Task/Email.php
index 072ff37d7895635253b22e321280d51586bc73a8..41b8515ec8ab8717377bb0b87f5c19c7cbda78e3 100644
--- a/civicrm/CRM/Contact/Form/Task/Email.php
+++ b/civicrm/CRM/Contact/Form/Task/Email.php
@@ -25,7 +25,6 @@ class CRM_Contact_Form_Task_Email extends CRM_Contact_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function preProcess() {
diff --git a/civicrm/CRM/Contact/Form/Task/EmailCommon.php b/civicrm/CRM/Contact/Form/Task/EmailCommon.php
index 22f1b995c60d5267536ce850f6b22d655f34ab08..11dd937fa21c94dd1a3c9663e29fd047dca65834 100644
--- a/civicrm/CRM/Contact/Form/Task/EmailCommon.php
+++ b/civicrm/CRM/Contact/Form/Task/EmailCommon.php
@@ -28,7 +28,7 @@ class CRM_Contact_Form_Task_EmailCommon {
    * @param CRM_Core_Form $form
    * @param bool $bounce determine if we want to throw a status bounce.
    *
-   * @throws \API_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function preProcessFromAddress(&$form, $bounce = TRUE) {
     $form->_emails = [];
diff --git a/civicrm/CRM/Contact/Form/Task/EmailTrait.php b/civicrm/CRM/Contact/Form/Task/EmailTrait.php
index c8085c40a2e6d1d983c3f3141f28aa6837dbb1b9..575b07cb2677fcd080f078431dcf5c501155fd0f 100644
--- a/civicrm/CRM/Contact/Form/Task/EmailTrait.php
+++ b/civicrm/CRM/Contact/Form/Task/EmailTrait.php
@@ -101,7 +101,6 @@ trait CRM_Contact_Form_Task_EmailTrait {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function preProcess() {
@@ -116,7 +115,6 @@ trait CRM_Contact_Form_Task_EmailTrait {
    * later.
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   protected function traitPreProcess(): void {
     $this->addExpectedSmartyVariable('rows');
@@ -303,7 +301,6 @@ trait CRM_Contact_Form_Task_EmailTrait {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function setDefaultValues(): array {
@@ -322,10 +319,8 @@ trait CRM_Contact_Form_Task_EmailTrait {
   /**
    * Process the form after the input has been submitted and validated.
    *
-   * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess() {
     $this->bounceIfSimpleMailLimitExceeded(count($this->_contactIds));
@@ -355,10 +350,8 @@ trait CRM_Contact_Form_Task_EmailTrait {
    *
    * @param array $formValues
    *
-   * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function submit($formValues): void {
     $this->saveMessageTemplate($formValues);
@@ -415,7 +408,7 @@ trait CRM_Contact_Form_Task_EmailTrait {
    *
    * @param array $formValues
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function saveMessageTemplate($formValues) {
@@ -444,7 +437,7 @@ trait CRM_Contact_Form_Task_EmailTrait {
    * Get the emails from the added element.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getEmails(): array {
     $allEmails = explode(',', $this->getSubmittedValue('to'));
@@ -484,7 +477,7 @@ trait CRM_Contact_Form_Task_EmailTrait {
    * @return string
    *   e.g. "Smith, Bob<bob.smith@example.com>".
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function getEmailString(array $emailIDs): string {
@@ -735,7 +728,6 @@ trait CRM_Contact_Form_Task_EmailTrait {
    *   bool $sent FIXME: this only indicates the status of the last email sent.
    *   array $activityIds The activity ids created, one per "To" recipient.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \PEAR_Exception
    * @internal
@@ -976,7 +968,6 @@ trait CRM_Contact_Form_Task_EmailTrait {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getRowsForEmails(): array {
@@ -1035,7 +1026,7 @@ trait CRM_Contact_Form_Task_EmailTrait {
 
   /**
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function getBcc(): string {
@@ -1044,7 +1035,7 @@ trait CRM_Contact_Form_Task_EmailTrait {
 
   /**
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function getCc(): string {
diff --git a/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php b/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php
index bae7d601a7825b0bf53a4f375063cbea0d62d7e4..6c18f1dc901ff9bcd20bac4f59e8b82524eb53cf 100644
--- a/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php
+++ b/civicrm/CRM/Contact/Form/Task/PDFLetterCommon.php
@@ -115,8 +115,6 @@ class CRM_Contact_Form_Task_PDFLetterCommon extends CRM_Core_Form_Task_PDFLetter
    * @param CRM_Core_Form $form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    *
    * @deprecated
    */
diff --git a/civicrm/CRM/Contact/Form/Task/PDFTrait.php b/civicrm/CRM/Contact/Form/Task/PDFTrait.php
index 61e4faad36d9b6e1f21c648314e5ec8929caad82..08899023913611c743d7d298dd3ba2865aa4ee3c 100644
--- a/civicrm/CRM/Contact/Form/Task/PDFTrait.php
+++ b/civicrm/CRM/Contact/Form/Task/PDFTrait.php
@@ -220,8 +220,6 @@ trait CRM_Contact_Form_Task_PDFTrait {
    * Process the form after the input has been submitted and validated.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public function postProcess(): void {
     $formValues = $this->controller->exportValues($this->getName());
@@ -332,7 +330,6 @@ trait CRM_Contact_Form_Task_PDFTrait {
    *   and use-case.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function createActivities($html_message, $contactIds, $subject, $campaign_id, $perContactHtml = []): array {
     $activityParams = [
@@ -401,7 +398,6 @@ trait CRM_Contact_Form_Task_PDFTrait {
    * @return string $html_message
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function processTemplate(&$formValues) {
diff --git a/civicrm/CRM/Contact/Import/Form/DataSource.php b/civicrm/CRM/Contact/Import/Form/DataSource.php
index 068450aba52f02b9ea91a7bc3349512f12351dcc..ab86a34777805722d550ec18b4888e124d0eb747 100644
--- a/civicrm/CRM/Contact/Import/Form/DataSource.php
+++ b/civicrm/CRM/Contact/Import/Form/DataSource.php
@@ -178,7 +178,6 @@ class CRM_Contact_Import_Form_DataSource extends CRM_Import_Form_DataSource {
    * Call the DataSource's postProcess method.
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public function postProcess() {
     $this->controller->resetPage('MapField');
diff --git a/civicrm/CRM/Contact/Import/Form/MapField.php b/civicrm/CRM/Contact/Import/Form/MapField.php
index 8f3198da79d8b9aa21a85806afa73f99999900ca..5a8b5d0cdc4979f36e388a1122d786c51770f84a 100644
--- a/civicrm/CRM/Contact/Import/Form/MapField.php
+++ b/civicrm/CRM/Contact/Import/Form/MapField.php
@@ -67,7 +67,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
   /**
    * Set variables up before form is built.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
@@ -108,7 +107,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function buildQuickForm() {
@@ -275,7 +273,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
     $processor->setMappingID((int) $this->getSubmittedValue('savedMapping'));
     $processor->setFormName($formName);
     $processor->setMetadata($this->getContactImportMetadata());
-    $processor->setContactTypeByConstant($this->getSubmittedValue('contactType'));
+    $processor->setContactType($this->getSubmittedValue('contactType'));
     $processor->setContactSubType($this->getSubmittedValue('contactSubType'));
     $mapper = $this->getSubmittedValue('mapper');
 
@@ -394,7 +392,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
    * @param $params
    * @param $mapperKeys
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function submit($params) {
diff --git a/civicrm/CRM/Contact/Import/Form/Preview.php b/civicrm/CRM/Contact/Import/Form/Preview.php
index e651cf78bf3c3912cd3c35b5b7974b76188e1f1a..c133b99c1cc2f4195fd896a33a341b38931f00a7 100644
--- a/civicrm/CRM/Contact/Import/Form/Preview.php
+++ b/civicrm/CRM/Contact/Import/Form/Preview.php
@@ -118,7 +118,7 @@ class CRM_Contact_Import_Form_Preview extends CRM_Import_Form_Preview {
   /**
    * Process the mapped fields and map it into the uploaded file.
    *
-   * @throws \API_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     $groupsToAddTo = (array) $this->getSubmittedValue('groups');
diff --git a/civicrm/CRM/Contact/Import/Form/Summary.php b/civicrm/CRM/Contact/Import/Form/Summary.php
index bae571b67338074b28acba7ecc643d74397c7beb..45c8dcfd3cdf356334a4caa4d0521e8429cab771 100644
--- a/civicrm/CRM/Contact/Import/Form/Summary.php
+++ b/civicrm/CRM/Contact/Import/Form/Summary.php
@@ -25,7 +25,6 @@ class CRM_Contact_Import_Form_Summary extends CRM_Import_Forms {
   /**
    * Set variables up before form is built.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function preProcess(): void {
@@ -57,7 +56,6 @@ class CRM_Contact_Import_Form_Summary extends CRM_Import_Forms {
   /**
    * Assign the relevant smarty variables.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
diff --git a/civicrm/CRM/Contact/Import/Parser/Contact.php b/civicrm/CRM/Contact/Import/Parser/Contact.php
index 8dd315ccc9cef3439f58d8544bd2f2a5ce7d4142..5c96f7c0e4c236c90e2e61426ed9ef8a429a3789 100644
--- a/civicrm/CRM/Contact/Import/Parser/Contact.php
+++ b/civicrm/CRM/Contact/Import/Parser/Contact.php
@@ -489,7 +489,6 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
   /**
    * @param array $params
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
@@ -546,7 +545,6 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param $primaryContactId
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function createRelationship($key, $relContactId, $primaryContactId): void {
     //if more than one duplicate contact
@@ -814,9 +812,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
           $data[$blockName][$loc]['is_primary'] = 1;
         }
 
-        if (0) {
-        }
-        else {
+        if (1) {
           if ($fieldName === 'state_province') {
             // CRM-3393
             if (is_numeric($value) && ((int ) $value) >= 1000) {
@@ -846,72 +842,27 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
           }
         }
       }
-      else {
-        if (($customFieldId = CRM_Core_BAO_CustomField::getKeyID($key))) {
-          // for autocomplete transfer hidden value instead of label
-          if ($params[$key] && isset($params[$key . '_id'])) {
-            $value = $params[$key . '_id'];
-          }
-
-          // we need to append time with date
-          if ($params[$key] && isset($params[$key . '_time'])) {
-            $value .= ' ' . $params[$key . '_time'];
-          }
-
-          // if auth source is not checksum / login && $value is blank, do not proceed - CRM-10128
-          if (($session->get('authSrc') & (CRM_Core_Permission::AUTH_SRC_CHECKSUM + CRM_Core_Permission::AUTH_SRC_LOGIN)) == 0 &&
-            ($value == '' || !isset($value))
-          ) {
-            continue;
-          }
-
-          $valueId = NULL;
-
-          //CRM-13596 - check for contact_sub_type_hidden first
-          if (array_key_exists('contact_sub_type_hidden', $params)) {
-            $type = $params['contact_sub_type_hidden'];
-          }
-          else {
-            $type = $data['contact_type'];
-            if (!empty($data['contact_sub_type'])) {
-              $type = CRM_Utils_Array::explodePadded($data['contact_sub_type']);
+      if (TRUE) {
+        // @todo - meaningless IF - left to keep whitespace clean in PR.
+        if ($key === 'location') {
+          foreach ($value as $locationTypeId => $field) {
+            foreach ($field as $block => $val) {
+              if ($block === 'address' && array_key_exists('address_name', $val)) {
+                $value[$locationTypeId][$block]['name'] = $value[$locationTypeId][$block]['address_name'];
+              }
             }
           }
-
-          CRM_Core_BAO_CustomField::formatCustomField($customFieldId,
-            $data['custom'],
-            $value,
-            $type,
-            $valueId,
-            $contactID,
-            FALSE,
-            FALSE
-          );
         }
-        elseif ($key === 'edit') {
+        if (in_array($key, ['nick_name', 'job_title', 'middle_name', 'birth_date', 'gender_id', 'current_employer', 'prefix_id', 'suffix_id'])
+          && ($value == '' || !isset($value)) &&
+          ($session->get('authSrc') & (CRM_Core_Permission::AUTH_SRC_CHECKSUM + CRM_Core_Permission::AUTH_SRC_LOGIN)) == 0 ||
+          ($key === 'current_employer' && empty($params['current_employer']))) {
+          // CRM-10128: if auth source is not checksum / login && $value is blank, do not fill $data with empty value
+          // to avoid update with empty values
           continue;
         }
         else {
-          if ($key === 'location') {
-            foreach ($value as $locationTypeId => $field) {
-              foreach ($field as $block => $val) {
-                if ($block === 'address' && array_key_exists('address_name', $val)) {
-                  $value[$locationTypeId][$block]['name'] = $value[$locationTypeId][$block]['address_name'];
-                }
-              }
-            }
-          }
-          if (in_array($key, ['nick_name', 'job_title', 'middle_name', 'birth_date', 'gender_id', 'current_employer', 'prefix_id', 'suffix_id'])
-            && ($value == '' || !isset($value)) &&
-            ($session->get('authSrc') & (CRM_Core_Permission::AUTH_SRC_CHECKSUM + CRM_Core_Permission::AUTH_SRC_LOGIN)) == 0 ||
-            ($key === 'current_employer' && empty($params['current_employer']))) {
-            // CRM-10128: if auth source is not checksum / login && $value is blank, do not fill $data with empty value
-            // to avoid update with empty values
-            continue;
-          }
-          else {
-            $data[$key] = $value;
-          }
+          $data[$key] = $value;
         }
       }
     }
@@ -1057,7 +1008,6 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *   IDs of a possible.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function getPossibleContactMatch(array $params, ?int $extIDMatch, $dedupeRuleID): ?int {
     $possibleMatches = $this->getPossibleMatchesByDedupeRule($params, $dedupeRuleID, FALSE);
@@ -1157,7 +1107,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param array $values
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function formatLocationBlock(&$values) {
     // @todo - remove this function.
@@ -1234,7 +1184,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *  - address, email, phone
    * @param int|null $contactID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function fillPrimary(&$params, $values, $entity, $contactID) {
     if ($values['location_type_id'] === 'Primary') {
@@ -1271,7 +1221,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param int $columnNumber
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappingFieldFromMapperInput(array $fieldMapping, int $mappingID, int $columnNumber): array {
     $isRelationshipField = preg_match('/\d*_a_b|b_a$/', $fieldMapping[0]);
@@ -1303,7 +1253,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *   or as returned from getMappingFieldFromMapperInput
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedFieldLabel(array $mappedField): string {
     $this->setFieldMetadata();
@@ -1334,7 +1284,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param string $direction
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelationshipLabel(int $id, string $direction): string {
     if (empty($this->relationshipLabels[$id . $direction])) {
@@ -1365,7 +1315,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *     '5_a_b' => ['contact_type' => 'Organization', 'url' => ['url' => 'https://example.org', 'website_type_id' => 1]]
    *     'im' => ['im' => 'my-handle', 'location_type_id' => 1, 'provider_id' => 1],
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedRow(array $values): array {
     $params = ['relationship' => []];
@@ -1415,7 +1365,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param string $prefixString
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
   protected function getInvalidValuesForContact($value, string $prefixString): array {
@@ -1439,7 +1389,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * Also 'im_provider_id' is mapped to the 'real' field name 'provider_id'
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFieldMappings(): array {
     $mappedFields = [];
@@ -1467,7 +1417,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *
    * @return null|string
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelatedContactType($relationshipTypeID, $relationshipDirection): ?string {
     if (!$relationshipTypeID) {
@@ -1485,7 +1435,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *
    * @return null|string
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelatedContactSubType(int $relationshipTypeID, $relationshipDirection): ?string {
     if (!$relationshipTypeID) {
@@ -1503,7 +1453,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *
    * @return null|string
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelatedContactLabel($relationshipTypeID, $relationshipDirection): ?string {
     $relationshipField = 'label_' . $relationshipDirection;
@@ -1516,7 +1466,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param int $relationshipTypeID
    *
    * @return string[]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelationshipType(int $relationshipTypeID): array {
     $cacheKey = 'relationship_type' . $relationshipTypeID;
@@ -1537,7 +1487,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param mixed $importedValue
    *
    * @return void
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function addFieldToParams(array &$contactArray, array $locationValues, string $fieldName, $importedValue): void {
     if (!empty($locationValues)) {
@@ -1586,7 +1536,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *
    * @return array
    *   e.g ['5_a_b' => ['contact_type' => 'Organization', 'organization_name' => 'The Firm']]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRelatedContactsParams(array $params): array {
     $relatedContacts = [];
@@ -1613,9 +1563,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    *
    * @return int|null
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function lookupContactID(array $params, bool $isMainContact): ?int {
@@ -1661,9 +1609,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param bool $isMainContact
    *
    * @return array[]
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function processContact(array $params, array $formatted, bool $isMainContact): array {
     $params['id'] = $formatted['id'] = $this->lookupContactID($params, $isMainContact);
@@ -1690,7 +1636,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param int|null|string $countryID
    *
    * @return int|string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   private function tryToResolveStateProvince(string $stateProvince, $countryID) {
@@ -1728,7 +1674,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param array $params
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function fillStateProvince(array &$params): array {
     foreach ($params as $key => $value) {
@@ -1761,7 +1707,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser {
    * @param array $possibleStates
    *
    * @return int|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function checkStatesForCountry(int $countryID, array $possibleStates) {
     foreach ($possibleStates as $index => $state) {
diff --git a/civicrm/CRM/Contact/Page/AJAX.php b/civicrm/CRM/Contact/Page/AJAX.php
index dfe05659bcd4c156999a1cef5584dffbbdba748c..b3905925ea7410d68af5f42003479dda910ff1be 100644
--- a/civicrm/CRM/Contact/Page/AJAX.php
+++ b/civicrm/CRM/Contact/Page/AJAX.php
@@ -249,7 +249,7 @@ class CRM_Contact_Page_AJAX {
         ]);
         $result = civicrm_api3('relationship', 'create', $params);
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         $ret['is_error'] = 1;
         $ret['error_message'] = $e->getMessage();
       }
@@ -811,7 +811,7 @@ LIMIT {$offset}, {$rowCount}
         civicrm_api3('Exception', 'create', ['contact_id1' => $cid, 'contact_id2' => $oid]);
         return TRUE;
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         return FALSE;
       }
     }
diff --git a/civicrm/CRM/Contact/Page/DedupeMerge.php b/civicrm/CRM/Contact/Page/DedupeMerge.php
index 25d38f803a8ffc04193ec6ac980ab073e73d3d9c..559ab66764ae161c87bf026b4833e4418d7022b6 100644
--- a/civicrm/CRM/Contact/Page/DedupeMerge.php
+++ b/civicrm/CRM/Contact/Page/DedupeMerge.php
@@ -121,8 +121,6 @@ class CRM_Contact_Page_DedupeMerge extends CRM_Core_Page {
    * @return int
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public static function callBatchMerge(CRM_Queue_TaskContext $ctx, $rgid, $gid, $mode, $batchLimit, $isSelected, $criteria, $searchLimit) {
     CRM_Dedupe_Merger::batchMerge($rgid, $gid, $mode, $batchLimit, $isSelected, $criteria, TRUE, FALSE, $searchLimit);
diff --git a/civicrm/CRM/Contact/Page/View.php b/civicrm/CRM/Contact/Page/View.php
index e93d8925b8a2d62c80ddc6b0051bf6e671ddec35..36cd8e0c981e91ad77fd05e4bfcd2a080473929f 100644
--- a/civicrm/CRM/Contact/Page/View.php
+++ b/civicrm/CRM/Contact/Page/View.php
@@ -303,7 +303,7 @@ class CRM_Contact_Page_View extends CRM_Core_Page {
       try {
         $mergedTo = civicrm_api3('Contact', 'getmergedto', ['contact_id' => $contactId, 'api.Contact.get' => ['return' => 'display_name']]);
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         CRM_Core_Session::singleton()->setStatus(ts('This contact was deleted during a merge operation. The contact it was merged into cannot be found and may have been deleted.'));
         $mergedTo = ['count' => 0];
       }
diff --git a/civicrm/CRM/Contact/Page/View/Note.php b/civicrm/CRM/Contact/Page/View/Note.php
index 64e8101128948eda129703e042c2cdb63b0b75bc..0caffd6f3171cc99e4b03f2b1cd110ebe571e69e 100644
--- a/civicrm/CRM/Contact/Page/View/Note.php
+++ b/civicrm/CRM/Contact/Page/View/Note.php
@@ -30,19 +30,16 @@ class CRM_Contact_Page_View_Note extends CRM_Core_Page {
    * View details of a note.
    */
   public function view() {
-    $note = new CRM_Core_DAO_Note();
-    $note->id = $this->_id;
-    if ($note->find(TRUE)) {
-
-      CRM_Core_DAO::storeValues($note, $this->values);
-      $this->values['privacy'] = CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_Note', 'privacy', $this->values['privacy']);
-      $this->assign('note', $this->values);
-    }
-
-    $comments = CRM_Core_BAO_Note::getNoteTree($this->values['id'], 1);
-    if (!empty($comments)) {
-      $this->assign('comments', $comments);
-    }
+    $note = \Civi\Api4\Note::get()
+      ->addSelect('*', 'privacy:label')
+      ->addWhere('id', '=', $this->_id)
+      ->execute()
+      ->single();
+    $note['privacy'] = $note['privacy:label'];
+    $this->assign('note', $note);
+
+    $comments = CRM_Core_BAO_Note::getNoteTree($this->_id, 1);
+    $this->assign('comments', $comments);
 
     // add attachments part
     $currentAttachmentInfo = CRM_Core_BAO_File::getEntityFile('civicrm_note', $this->_id);
diff --git a/civicrm/CRM/Contact/Page/View/Relationship.php b/civicrm/CRM/Contact/Page/View/Relationship.php
index 709eb5641b59dc32477c873a3f7e709331aff557..faa48927c74415d135c8901a2500710aedc6715d 100644
--- a/civicrm/CRM/Contact/Page/View/Relationship.php
+++ b/civicrm/CRM/Contact/Page/View/Relationship.php
@@ -61,7 +61,6 @@ class CRM_Contact_Page_View_Relationship extends CRM_Core_Page {
    * View details of a relationship.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function view() {
     $viewRelationship = CRM_Contact_BAO_Relationship::getRelationship($this->getContactId(), NULL, NULL, NULL, $this->getEntityId());
diff --git a/civicrm/CRM/Contact/Page/View/Summary.php b/civicrm/CRM/Contact/Page/View/Summary.php
index 85b388a1b88a66703a54fcf2bfb0a2a4d5830240..07bded7595ce02d385a442964af2a69b79a74e9f 100644
--- a/civicrm/CRM/Contact/Page/View/Summary.php
+++ b/civicrm/CRM/Contact/Page/View/Summary.php
@@ -104,9 +104,7 @@ class CRM_Contact_Page_View_Summary extends CRM_Contact_Page_View {
   /**
    * View summary details of a contact.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function view() {
     // Add js for tabs, in-place editing, and jstree for tags
@@ -453,7 +451,7 @@ class CRM_Contact_Page_View_Summary extends CRM_Contact_Page_View {
    * @param string $entity
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getLocationValues(int $contact_id, string $entity): array {
     $fieldMap = [
diff --git a/civicrm/CRM/Contribute/BAO/Contribution.php b/civicrm/CRM/Contribute/BAO/Contribution.php
index e534cac54f7203ca7abe19512e06073821bc4a57..714c8811ad72ff52226b2d316a9627e15de1973e 100644
--- a/civicrm/CRM/Contribute/BAO/Contribution.php
+++ b/civicrm/CRM/Contribute/BAO/Contribution.php
@@ -87,7 +87,6 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    *
    * @return \CRM_Contribute_BAO_Contribution
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function add(&$params) {
     if (empty($params)) {
@@ -353,7 +352,7 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    * @param int|null $contributionID
    *   Contribution ID if we are dealing with an update.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function calculateMissingAmountParams(&$params, $contributionID) {
     if (!$contributionID && (!isset($params['fee_amount']) || $params['fee_amount'] === '')) {
@@ -471,9 +470,7 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    *
    * @return CRM_Contribute_BAO_Contribution
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function create(&$params) {
 
@@ -882,7 +879,6 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    * @param string $trxnDate
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function recordPaymentActivity($contributionId, $participantId, $totalAmount, $currency, $trxnDate) {
     $activityType = ($totalAmount < 0) ? 'Refund' : 'Payment';
@@ -933,7 +929,7 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    * @param int $contributionID
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function getRelatedMemberships(int $contributionID): array {
     $membershipIDs = array_keys((array) LineItem::get(FALSE)
@@ -1073,7 +1069,7 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution im
    * @param int $recurringContributionID
    *
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function isEmailReceipt(array $input, int $contributionID, $recurringContributionID): bool {
     if (isset($input['is_email_receipt'])) {
@@ -1179,7 +1175,6 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = c.contact_id )
    *
    * @return mixed|null
    *   $results no of deleted Contribution on success, false otherwise
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function deleteContribution($id) {
@@ -1233,7 +1228,6 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = c.contact_id )
    * @param array[] $records
    *
    * @return static[]
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function deleteRecords(array $records): array {
@@ -1258,7 +1252,7 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = c.contact_id )
    * @param int $contactID
    * @param string $message
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function failPayment($contributionID, $contactID, $message) {
     civicrm_api3('activity', 'create', [
@@ -1778,8 +1772,7 @@ LEFT JOIN  civicrm_contribution contribution ON ( componentPayment.contribution_
    *
    * @param array $params
    *
-   * @throws CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @deprecated
    *
    * Use api contribute.completetransaction
@@ -2161,8 +2154,7 @@ LEFT JOIN  civicrm_contribution contribution ON ( componentPayment.contribution_
    * @param array $contributionParams
    *
    * @return bool|array
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    * @todo
    *  1) many processors still call repeattransaction with contribution_status_id = Completed
@@ -3057,10 +3049,9 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
     $isUpdate = !empty($params['prevContribution']);
 
     $additionalParticipantId = [];
-    $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
-    $contributionStatus = empty($params['contribution_status_id']) ? NULL : $contributionStatuses[$params['contribution_status_id']];
+    $contributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $params['contribution_status_id'] ?? NULL);
 
-    if (CRM_Utils_Array::value('contribution_mode', $params) == 'participant') {
+    if (CRM_Utils_Array::value('contribution_mode', $params) === 'participant') {
       $entityId = $params['participant_id'];
       $entityTable = 'civicrm_participant';
       $additionalParticipantId = CRM_Event_BAO_Participant::getAdditionalParticipantIds($entityId);
@@ -3091,8 +3082,8 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
 
     $statusId = $params['contribution']->contribution_status_id;
 
-    if ($contributionStatus != 'Failed' &&
-      !($contributionStatus == 'Pending' && !$params['contribution']->is_pay_later)
+    if ($contributionStatus !== 'Failed' &&
+      !($contributionStatus === 'Pending' && !$params['contribution']->is_pay_later)
     ) {
       $skipRecords = TRUE;
       $pendingStatus = [
@@ -3156,7 +3147,7 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
         'pan_truncation' => $params['pan_truncation'] ?? NULL,
         'card_type_id' => $params['card_type_id'] ?? NULL,
       ];
-      if ($contributionStatus == 'Refunded' || $contributionStatus == 'Chargeback' || $contributionStatus == 'Cancelled') {
+      if ($contributionStatus === 'Refunded' || $contributionStatus === 'Chargeback' || $contributionStatus === 'Cancelled') {
         $trxnParams['trxn_date'] = !empty($params['contribution']->cancel_date) ? $params['contribution']->cancel_date : date('YmdHis');
         if (isset($params['refund_trxn_id'])) {
           // CRM-17751 allow a separate trxn_id for the refund to be passed in via api & form.
@@ -3190,10 +3181,9 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
           $params['trxnParams']['trxn_id'] = $params['prevContribution']->trxn_id;
         }
         $params['trxnParams']['status_id'] = $params['prevContribution']->contribution_status_id;
-
-        if (!(($params['prevContribution']->contribution_status_id == array_search('Pending', $contributionStatuses)
-            || $params['prevContribution']->contribution_status_id == array_search('In Progress', $contributionStatuses))
-          && $params['contribution']->contribution_status_id == array_search('Completed', $contributionStatuses))
+        $previousContributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $params['prevContribution']->contribution_status_id);
+        if (!(($previousContributionStatus === 'Pending' || $previousContributionStatus === 'In Progress')
+          && $contributionStatus === 'Completed')
         ) {
           $params['trxnParams']['payment_instrument_id'] = $params['prevContribution']->payment_instrument_id;
           $params['trxnParams']['check_number'] = $params['prevContribution']->check_number;
@@ -3349,7 +3339,7 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
       CRM_Core_BAO_FinancialTrxn::recordFees($params);
     }
 
-    if (!empty($params['prevContribution']) && $entityTable == 'civicrm_participant'
+    if (!empty($params['prevContribution']) && $entityTable === 'civicrm_participant'
       && $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
     ) {
       $eventID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $entityId, 'event_id');
@@ -3513,7 +3503,6 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    * @param string $trxn_date
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function addActivityForPayment($targetCid, $activityType, $title, $contributionId, $totalAmount, $currency, $trxn_date) {
     $paymentAmount = CRM_Utils_Money::format($totalAmount, $currency);
@@ -3553,7 +3542,6 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    * @return mixed
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getPaymentInfo($id, $component = 'contribution', $getTrxnInfo = FALSE) {
     // @todo deprecate passing in component - always call with contribution.
@@ -3749,7 +3737,7 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    *   Contribution ID.
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function isSingleLineItem($id) {
     $lineItemCount = civicrm_api3('LineItem', 'getcount', ['contribution_id' => $id]);
@@ -3774,9 +3762,7 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    *   transitioning related elements).
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function completeOrder($input, $recurringContributionID, $contributionID, $isPostPaymentCreate = FALSE) {
     $transaction = new CRM_Core_Transaction();
@@ -3890,7 +3876,6 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Exception
    */
   public static function sendMail($input, $ids, $contributionID, $returnMessageText = FALSE) {
@@ -4009,7 +3994,7 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    *
    * @param float $contributionTotalAmount
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function assignProportionalLineItems($trxnParams, $trxnId, $contributionTotalAmount) {
     $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($trxnParams['contribution_id']);
@@ -4152,7 +4137,6 @@ INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_ac
    * @param string $changeDate
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function updateMembershipBasedOnCompletionOfContribution($contributionID, $changeDate) {
     $memberships = self::getRelatedMemberships((int) $contributionID);
@@ -4483,7 +4467,7 @@ LIMIT 1;";
    *
    * @param array $eftParams
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function createProportionalEntry($entityParams, $eftParams) {
     $paid = 0;
@@ -4541,7 +4525,7 @@ LIMIT 1;";
    *
    * @param array $taxItems
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems) {
     $eftParams = [
@@ -4611,7 +4595,7 @@ LIMIT 1;";
    * @deprecated
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function replaceContributionTokens(
     $contributionIds,
diff --git a/civicrm/CRM/Contribute/BAO/ContributionPage.php b/civicrm/CRM/Contribute/BAO/ContributionPage.php
index 2303e6e94614d578f9f4fd167fc80d6061464e20..43c88cfbbcb90f7692a0e5b64af7e7c756cb2d42 100644
--- a/civicrm/CRM/Contribute/BAO/ContributionPage.php
+++ b/civicrm/CRM/Contribute/BAO/ContributionPage.php
@@ -511,7 +511,7 @@ class CRM_Contribute_BAO_ContributionPage extends CRM_Contribute_DAO_Contributio
    *   Contribution page id.
    * @param object $recur
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function recurringNotify($contributionID, $type, $recur): void {
     $contribution = Contribution::get(FALSE)
diff --git a/civicrm/CRM/Contribute/BAO/ContributionRecur.php b/civicrm/CRM/Contribute/BAO/ContributionRecur.php
index 06829110fc014c8891a9f8be6a0dca3c24714032..36f1c5b368292393af7cb91cc7be6cc730459c0f 100644
--- a/civicrm/CRM/Contribute/BAO/ContributionRecur.php
+++ b/civicrm/CRM/Contribute/BAO/ContributionRecur.php
@@ -448,8 +448,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    *
    * @param int $id
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    * @return int|NULL the ID of the newly created template contribution.
    */
@@ -529,7 +528,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getTemplateContribution(int $id, array $inputOverrides = []): array {
     $recurringContribution = ContributionRecur::get(FALSE)
@@ -745,7 +744,6 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function addRecurLineItems($recurId, $contribution) {
     $foundLineItems = FALSE;
@@ -764,7 +762,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
                 'is_transactional' => FALSE,
               ]);
             }
-            catch (CiviCRM_API3_Exception $e) {
+            catch (CRM_Core_Exception $e) {
               // we are catching & ignoring errors as an extra precaution since lost IPNs may be more serious that lost membership_payment data
               // this fn is unit-tested so risk of changes elsewhere breaking it are otherwise mitigated
             }
@@ -797,7 +795,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    * @param int $contributionStatusID
    * @param float $contributionAmount
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function updateRecurLinkedPledge($contributionID, $contributionRecurID, $contributionStatusID, $contributionAmount) {
     $returnProperties = ['id', 'pledge_id'];
@@ -894,7 +892,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
   /**
    * Get the metadata for fields to be included on the search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getContributionRecurSearchFieldMetadata() {
     $fields = [
@@ -940,7 +938,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    *   - Failed
    * @param string $effectiveDate
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function updateOnNewPayment($recurringContributionID, $paymentStatus, string $effectiveDate = 'now') {
 
@@ -995,7 +993,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    *
    * @param \CRM_Contribute_DAO_Contribution $contribution
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function updateOnTemplateUpdated(CRM_Contribute_DAO_Contribution $contribution) {
@@ -1053,7 +1051,7 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    * @param int $financial_type_id
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function calculateRecurLineItems($recurId, $total_amount, $financial_type_id) {
     $originalContribution = civicrm_api3('Contribution', 'getsingle', [
@@ -1119,7 +1117,6 @@ INNER JOIN civicrm_contribution       con ON ( con.id = mp.contribution_id )
    * @internal
    *
    * @return string
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function getRecurFromAddress(int $id): string {
diff --git a/civicrm/CRM/Contribute/BAO/ContributionSoft.php b/civicrm/CRM/Contribute/BAO/ContributionSoft.php
index 14c833c002743866d47de4b315420d1d53dcdd4d..a38c72020474ca1172960d608301a56c5e435e41 100644
--- a/civicrm/CRM/Contribute/BAO/ContributionSoft.php
+++ b/civicrm/CRM/Contribute/BAO/ContributionSoft.php
@@ -52,7 +52,6 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
    * @param CRM_Contribute_BAO_Contribution $contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function processSoftContribution($params, $contribution) {
     if (array_key_exists('pcp', $params)) {
@@ -351,7 +350,6 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
    * @return array
    *   Associated array of soft contributions
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function getSoftContributionSelector($params): array {
@@ -387,7 +385,7 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSoftContributionList($contact_id, ?int $membershipID = NULL, $isTest = 0, &$dTParams = NULL): array {
     // This is necessary for dataTables sorting.
@@ -552,8 +550,6 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
    * @param \CRM_Contribute_BAO_Contribution $contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   protected static function processPCP($pcp, $contribution) {
     $pcpId = self::getSoftCreditIds($contribution->id, TRUE);
@@ -593,7 +589,6 @@ class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_Contributio
    * @param array $contributionSoft
    *   Contribution object.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function pcpNotifyOwner(int $contributionID, array $contributionSoft): void {
diff --git a/civicrm/CRM/Contribute/BAO/Query.php b/civicrm/CRM/Contribute/BAO/Query.php
index 5654fabb0215603546748bde798e029437d2af75..ac6ea213b47266d6c5df222db622da5b37bea939 100644
--- a/civicrm/CRM/Contribute/BAO/Query.php
+++ b/civicrm/CRM/Contribute/BAO/Query.php
@@ -98,7 +98,6 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
    * @param CRM_Contact_BAO_Query $query
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function where(&$query) {
     self::initializeAnySoftCreditClause($query);
@@ -122,7 +121,6 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
    * @param array $values
    * @param CRM_Contact_BAO_Query $query
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function whereClauseSingle(&$values, &$query) {
@@ -883,7 +881,7 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
   /**
    * Get the metadata for fields to be included on the search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
@@ -906,7 +904,6 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
    * @param \CRM_Contribute_Form_Search $form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function buildSearchForm(&$form) {
 
diff --git a/civicrm/CRM/Contribute/Exception/CheckLineItemsException.php b/civicrm/CRM/Contribute/Exception/CheckLineItemsException.php
index cdf90dd5c2e38e29da825dcf1c219c0a122ec8bf..94303d89fc012f1a6638a2d78c138b6b26c1dc7c 100644
--- a/civicrm/CRM/Contribute/Exception/CheckLineItemsException.php
+++ b/civicrm/CRM/Contribute/Exception/CheckLineItemsException.php
@@ -3,7 +3,7 @@
 /**
  * Class CRM_Contribute_Exception_CheckLineItemsException
  */
-class CRM_Contribute_Exception_CheckLineItemsException extends API_Exception {
+class CRM_Contribute_Exception_CheckLineItemsException extends CRM_Core_Exception {
   const LINE_ITEM_DIFFERRING_TOTAL_EXCEPTON_MSG = "Line item total doesn't match total amount.";
 
   public function __construct($message = self::LINE_ITEM_DIFFERRING_TOTAL_EXCEPTON_MSG, $error_code = 0, array $extraParams = [], $previous = NULL) {
diff --git a/civicrm/CRM/Contribute/Form/AbstractEditPayment.php b/civicrm/CRM/Contribute/Form/AbstractEditPayment.php
index b16638ac6f942af3a9ead00ce7119c879725cf19..1aa0ee72f4eaec4480833ca70dee8436f3c07920 100644
--- a/civicrm/CRM/Contribute/Form/AbstractEditPayment.php
+++ b/civicrm/CRM/Contribute/Form/AbstractEditPayment.php
@@ -272,7 +272,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Contact_Form_Task {
    * Pre process function with common actions.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
diff --git a/civicrm/CRM/Contribute/Form/AdditionalInfo.php b/civicrm/CRM/Contribute/Form/AdditionalInfo.php
index ca6ab6cfc2755131de51d126421cca907213292a..e3ff273dfc100acd43cc6912543f055facaa1867 100644
--- a/civicrm/CRM/Contribute/Form/AdditionalInfo.php
+++ b/civicrm/CRM/Contribute/Form/AdditionalInfo.php
@@ -405,6 +405,11 @@ class CRM_Contribute_Form_AdditionalInfo {
         if ($groupID == 'info') {
           continue;
         }
+
+        $is_public = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $groupID, 'is_public');
+        if (!$is_public) {
+          continue;
+        }
         foreach ($group['fields'] as $k => $field) {
           $field['title'] = $field['label'];
           $customFields["custom_{$k}"] = $field;
diff --git a/civicrm/CRM/Contribute/Form/AdditionalPayment.php b/civicrm/CRM/Contribute/Form/AdditionalPayment.php
index 35cd1fb601d3821ecd5a7e80b64d6458a22e1935..d3929969298b853227ae5b2ee1d48b32b530f01c 100644
--- a/civicrm/CRM/Contribute/Form/AdditionalPayment.php
+++ b/civicrm/CRM/Contribute/Form/AdditionalPayment.php
@@ -61,7 +61,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
    * Pre process form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
 
@@ -169,7 +168,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     if ($this->_view === 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
@@ -280,7 +278,7 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
   /**
    * Process the form submission.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess() {
     $submittedValues = $this->controller->exportValues($this->_name);
@@ -300,7 +298,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
    *
    * @param array $submittedValues
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function submit($submittedValues) {
@@ -447,7 +444,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
    * @param string|null $creditCardMode
    * @param string $entityType
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function testSubmit($params, $creditCardMode = NULL, $entityType = 'contribute') {
diff --git a/civicrm/CRM/Contribute/Form/CancelSubscription.php b/civicrm/CRM/Contribute/Form/CancelSubscription.php
index 281b372683adbd559081f16f2794dc0af44797b6..940b8256b0fb4719210756122bea10dc1baf782c 100644
--- a/civicrm/CRM/Contribute/Form/CancelSubscription.php
+++ b/civicrm/CRM/Contribute/Form/CancelSubscription.php
@@ -195,7 +195,6 @@ class CRM_Contribute_Form_CancelSubscription extends CRM_Contribute_Form_Contrib
    * Process the form submission.
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public function postProcess() {
     $message = NULL;
@@ -276,7 +275,7 @@ class CRM_Contribute_Form_CancelSubscription extends CRM_Contribute_Form_Contrib
         list($sent) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
       }
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $msgType = 'error';
       $msgTitle = ts('Error');
       if ($params['send_cancel_request'] == 1) {
diff --git a/civicrm/CRM/Contribute/Form/Contribution.php b/civicrm/CRM/Contribute/Form/Contribution.php
index 2c2aaa30681178b7fab1a58c00ff87808eb9b4c5..7be876efb9f255eb142b900483e0c71854dfaeef 100644
--- a/civicrm/CRM/Contribute/Form/Contribution.php
+++ b/civicrm/CRM/Contribute/Form/Contribution.php
@@ -219,7 +219,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    * Set variables up before form is built.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     // Check permission for action.
@@ -466,6 +465,14 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
       $defaults['campaign_id'] = $this->_pledgeValues['campaign_id'];
     }
 
+    $billing_address = '';
+    if (!empty($defaults['address_id'])) {
+      $addressDetails = CRM_Core_BAO_Address::getValues(['id' => $defaults['address_id']], FALSE, 'id');
+      $addressDetails = array_values($addressDetails);
+      $billing_address = $addressDetails[0]['display'];
+    }
+    $this->assign('billing_address', $billing_address);
+
     $this->_defaults = $defaults;
     return $defaults;
   }
@@ -473,9 +480,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public function buildQuickForm() {
     if ($this->_id) {
@@ -1009,7 +1014,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    *
    * @throws \CRM_Core_Exception
    * @throws \Civi\Payment\Exception\PaymentProcessorException
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processCreditCard($submittedValues, $lineItem, $contactID) {
     $isTest = ($this->_mode == 'test') ? 1 : 0;
@@ -1177,9 +1182,9 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
             // This has now been set to 1 in the DB - declare it here also
             $contribution->contribution_status_id = 1;
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
             if ($e->getErrorCode() != 'contribution_completed') {
-              \Civi::log()->error('CRM_Contribute_Form_Contribution::processCreditCard CiviCRM_API3_Exception: ' . $e->getMessage());
+              \Civi::log()->error('CRM_Contribute_Form_Contribution::processCreditCard CRM_Core_Exception: ' . $e->getMessage());
               throw new CRM_Core_Exception('Failed to update contribution in database');
             }
           }
@@ -1241,7 +1246,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    * @return \CRM_Contribute_DAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   private function processFormContribution(
     $params,
@@ -1455,7 +1459,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    * @return CRM_Contribute_BAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\Payment\Exception\PaymentProcessorException
    */
   public function testSubmit($params, $action, $creditCardMode = NULL) {
@@ -1519,7 +1522,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    * @return \CRM_Contribute_BAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\Payment\Exception\PaymentProcessorException
    */
   protected function submit($submittedValues, $action, $pledgePaymentID) {
@@ -2035,7 +2037,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    *
    * @return string|null
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getPreviousContributionStatus(): ?string {
     if (!$this->getContributionID()) {
@@ -2060,7 +2062,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    * is that it might exclude the current status of the contribution.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getAvailableContributionStatuses(): array {
     if (!$this->getPreviousContributionStatus()) {
diff --git a/civicrm/CRM/Contribute/Form/Contribution/Confirm.php b/civicrm/CRM/Contribute/Form/Contribution/Confirm.php
index e0c6f0522f57334da01fb3b2e346aefe634e34ec..6b394111318ac4d52fe8e94c77b0b4b17d4fd91b 100644
--- a/civicrm/CRM/Contribute/Form/Contribution/Confirm.php
+++ b/civicrm/CRM/Contribute/Form/Contribution/Confirm.php
@@ -669,7 +669,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @return bool
    *   Is this a separate membership payment
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   private function buildMembershipBlock($cid, $selectedMembershipTypeID = NULL, $isTest = NULL) {
@@ -1042,7 +1041,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @return \CRM_Contribute_DAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @todo - this code was previously shared with the backoffice form - some parts of this
    * function may relate to that form, not this one.
    *
@@ -1493,7 +1491,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    *   Line items for payment options chosen on the form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\Payment\Exception\PaymentProcessorException
    */
   protected function postProcessMembership(
@@ -1735,9 +1732,9 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
                 'pan_truncation' => $result['result']['pan_truncation'] ?? NULL,
               ]);
             }
-            catch (CiviCRM_API3_Exception $e) {
+            catch (CRM_Core_Exception $e) {
               if ($e->getErrorCode() != 'contribution_completed') {
-                \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CiviCRM_API3_Exception: ' . $e->getMessage());
+                \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CRM_Core_Exception: ' . $e->getMessage());
                 throw new CRM_Core_Exception('Failed to update contribution in database');
               }
             }
@@ -1773,9 +1770,9 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
             'is_transactional' => FALSE,
           ]);
         }
-        catch (CiviCRM_API3_Exception $e) {
+        catch (CRM_Core_Exception $e) {
           if ($e->getErrorCode() != 'contribution_completed') {
-            \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CiviCRM_API3_Exception: ' . $e->getMessage());
+            \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CRM_Core_Exception: ' . $e->getMessage());
             throw new CRM_Core_Exception('Failed to update contribution in database');
           }
         }
@@ -1820,7 +1817,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @return array []
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\Payment\Exception\PaymentProcessorException
    */
   private function processSecondaryFinancialTransaction($contactID, $tempParams, $isTest, $lineItems, $minimumFee,
@@ -2001,7 +1997,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @param array $params
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function submit($params) {
@@ -2098,7 +2093,7 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @param array $params
    *
    * @return array
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function getFormParams($id, array $params) {
     if (!isset($params['is_pay_later'])) {
@@ -2128,7 +2123,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @return array
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function processFormSubmission($contactID) {
@@ -2419,9 +2413,9 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
               'pan_truncation' => $result['pan_truncation'] ?? NULL,
             ]);
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
             if ($e->getErrorCode() != 'contribution_completed') {
-              \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CiviCRM_API3_Exception: ' . $e->getMessage());
+              \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CRM_Core_Exception: ' . $e->getMessage());
               throw new CRM_Core_Exception('Failed to update contribution in database');
             }
           }
@@ -2601,7 +2595,7 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    * @param array $result
    * @param int $contributionID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   protected function completeTransaction($result, $contributionID) {
@@ -2619,9 +2613,9 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
           'pan_truncation' => $result['pan_truncation'] ?? NULL,
         ]);
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         if ($e->getErrorCode() != 'contribution_completed') {
-          \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CiviCRM_API3_Exception: ' . $e->getMessage());
+          \Civi::log()->error('CRM_Contribute_Form_Contribution_Confirm::completeTransaction CRM_Core_Exception: ' . $e->getMessage());
           throw new CRM_Core_Exception('Failed to update contribution in database');
         }
       }
@@ -2873,7 +2867,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function unitTestAccessTolegacyProcessMembership($contactID, $membershipTypeID, $membershipID = NULL) {
     return self::legacyProcessMembership(
@@ -2913,7 +2906,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected static function legacyProcessMembership($contactID, $membershipTypeID, $is_test, $changeToday, $modifiedID, $customFieldsFormatted, $numRenewTerms, $membershipID, $pending, $contributionRecurID, $membershipSource, $isPayLater, $memParams = [], $contribution = NULL, $lineItems = []) {
     $renewalMode = $updateStatusId = FALSE;
diff --git a/civicrm/CRM/Contribute/Form/Contribution/Main.php b/civicrm/CRM/Contribute/Form/Contribution/Main.php
index 4c1f7cab6032a31d3c131c8fc6fd5181cf6a8bac..afa1884413c305737f07c766a5120170bad41161 100644
--- a/civicrm/CRM/Contribute/Form/Contribution/Main.php
+++ b/civicrm/CRM/Contribute/Form/Contribution/Main.php
@@ -532,7 +532,6 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
    * @return bool
    *   Is this a separate membership payment
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   private function buildMembershipBlock($cid, $selectedMembershipTypeID = NULL, $isTest = NULL) {
@@ -1230,7 +1229,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
    * @param array $params
    *   Submitted values.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function submit($params) {
     //carry campaign from profile.
@@ -1525,7 +1524,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
    *
    * @param array $params
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testSubmit($params) {
     $_SERVER['REQUEST_METHOD'] = 'GET';
@@ -1539,7 +1538,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
    * @param array $params
    *
    * @return mixed
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function hasSeparateMembershipPaymentAmount($params) {
     return $this->_separateMembershipPayment && (int) CRM_Member_BAO_MembershipType::getMembershipType($params['selectMembership'])['minimum_fee'];
diff --git a/civicrm/CRM/Contribute/Form/Contribution/ThankYou.php b/civicrm/CRM/Contribute/Form/Contribution/ThankYou.php
index 91a8bcbcc0b82a196e63f2c3044cd2caee1484b9..8887d38f7f56affe1e323785715d529c527ae2ab 100644
--- a/civicrm/CRM/Contribute/Form/Contribution/ThankYou.php
+++ b/civicrm/CRM/Contribute/Form/Contribution/ThankYou.php
@@ -304,7 +304,6 @@ class CRM_Contribute_Form_Contribution_ThankYou extends CRM_Contribute_Form_Cont
    * @return bool
    *   Is this a separate membership payment
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   private function buildMembershipBlock($cid, $selectedMembershipTypeID = NULL, $isTest = NULL) {
@@ -474,7 +473,7 @@ class CRM_Contribute_Form_Contribution_ThankYou extends CRM_Contribute_Form_Cont
       ]);
       return TRUE;
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       return FALSE;
     }
   }
diff --git a/civicrm/CRM/Contribute/Form/ContributionBase.php b/civicrm/CRM/Contribute/Form/ContributionBase.php
index 964340fb3b402592d9cc5c6b74040353c6262c6b..d75498099a8a204215dbd52c7a9323992f8f70e7 100644
--- a/civicrm/CRM/Contribute/Form/ContributionBase.php
+++ b/civicrm/CRM/Contribute/Form/ContributionBase.php
@@ -577,6 +577,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
     }
     $this->assignPaymentFields();
     $this->assignEmailField();
+    $this->assign('emailExists', $this->_emailExists);
 
     // also assign the receipt_text
     if (isset($this->_values['receipt_text'])) {
@@ -752,7 +753,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
    * Assign payment field information to the template.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function assignPaymentFields() {
     //fix for CRM-3767
@@ -812,9 +812,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
    * @param int $id
    * @param CRM_Core_Form $form
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildComponentForm($id, $form): void {
     if (empty($id)) {
@@ -1193,7 +1191,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
    *
    * @return float
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getMainContributionAmount($params) {
     if (!empty($params['selectMembership'])) {
diff --git a/civicrm/CRM/Contribute/Form/ContributionView.php b/civicrm/CRM/Contribute/Form/ContributionView.php
index 16d7c65cadd24ed8feefee96cfcc31e97fad483b..f7693be0760655e05826ef0c63c8540a5a1243f8 100644
--- a/civicrm/CRM/Contribute/Form/ContributionView.php
+++ b/civicrm/CRM/Contribute/Form/ContributionView.php
@@ -26,7 +26,6 @@ class CRM_Contribute_Form_ContributionView extends CRM_Core_Form {
    * Set variables up before form is built.
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public function preProcess() {
     $id = $this->getID();
@@ -121,7 +120,7 @@ class CRM_Contribute_Form_ContributionView extends CRM_Core_Form {
         ->addWhere('contribution_id', '=', $id)
         ->execute();
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // likely don't have permission for events/participants
       $participantLineItems = [];
     }
@@ -380,7 +379,7 @@ class CRM_Contribute_Form_ContributionView extends CRM_Core_Form {
         ->addValue('id', $this->getID())
         ->execute()->first()['access'];
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       return FALSE;
     }
   }
diff --git a/civicrm/CRM/Contribute/Form/ManagePremiums.php b/civicrm/CRM/Contribute/Form/ManagePremiums.php
index 0514965c6d7c3f83cdf52dc8b3c9ebff8ddca975..ab930809a85b3def1f096f032f4c926c1b145127 100644
--- a/civicrm/CRM/Contribute/Form/ManagePremiums.php
+++ b/civicrm/CRM/Contribute/Form/ManagePremiums.php
@@ -63,7 +63,7 @@ class CRM_Contribute_Form_ManagePremiums extends CRM_Contribute_Form {
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
diff --git a/civicrm/CRM/Contribute/Form/Search.php b/civicrm/CRM/Contribute/Form/Search.php
index eac81521722bfbfe897c3c45aa8976b6d28e6d32..90f7c9787aa53653cee8bd0f1e1230172b661738 100644
--- a/civicrm/CRM/Contribute/Form/Search.php
+++ b/civicrm/CRM/Contribute/Form/Search.php
@@ -62,7 +62,6 @@ class CRM_Contribute_Form_Search extends CRM_Core_Form_Search {
   /**
    * Processing needed for buildForm and later.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function preProcess() {
@@ -147,7 +146,6 @@ class CRM_Contribute_Form_Search extends CRM_Core_Form_Search {
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     if ($this->isFormInViewOrEditMode()) {
@@ -450,7 +448,7 @@ class CRM_Contribute_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Contribution' => CRM_Contribute_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Contribute/Form/Task/Email.php b/civicrm/CRM/Contribute/Form/Task/Email.php
index da4b638b3620fdd5b3ab39f2cd3792618351abad..53beab9e150165ce1eebca047b302217937847d0 100644
--- a/civicrm/CRM/Contribute/Form/Task/Email.php
+++ b/civicrm/CRM/Contribute/Form/Task/Email.php
@@ -39,7 +39,6 @@ class CRM_Contribute_Form_Task_Email extends CRM_Contribute_Form_Task {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getRows(): array {
diff --git a/civicrm/CRM/Contribute/Form/Task/Invoice.php b/civicrm/CRM/Contribute/Form/Task/Invoice.php
index 94c6433252cbe50e308e3dd758c2c2c53e5fde7a..c2beedce0fd3944f91c11d4b8d8751c6f420ce2b 100644
--- a/civicrm/CRM/Contribute/Form/Task/Invoice.php
+++ b/civicrm/CRM/Contribute/Form/Task/Invoice.php
@@ -209,7 +209,7 @@ class CRM_Contribute_Form_Task_Invoice extends CRM_Contribute_Form_Task {
    * @param array $contactIds
    *   Contact Id.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function printPDF($contribIDs, &$params, $contactIds) {
     // get all the details needed to generate a invoice
diff --git a/civicrm/CRM/Contribute/Form/Task/PDF.php b/civicrm/CRM/Contribute/Form/Task/PDF.php
index fe8cf341368a7a45bee3fd9b9f8918d381998538..f2a812cee72cafcd038c7171fa1f1ba2d29317cd 100644
--- a/civicrm/CRM/Contribute/Form/Task/PDF.php
+++ b/civicrm/CRM/Contribute/Form/Task/PDF.php
@@ -238,7 +238,7 @@ AND    {$this->_componentClause}";
    * @return array
    *   array of common elements
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getElements(array $contribIds, array $params, $contactIds, bool $isCreatePDF): array {
     $pdfElements = [];
diff --git a/civicrm/CRM/Contribute/Form/Task/PDFLetter.php b/civicrm/CRM/Contribute/Form/Task/PDFLetter.php
index a01c6fc8d18d1dc6db928e7d76f0612880364a20..63afe986a4d33cb98896093b09408966ae510d7f 100644
--- a/civicrm/CRM/Contribute/Form/Task/PDFLetter.php
+++ b/civicrm/CRM/Contribute/Form/Task/PDFLetter.php
@@ -131,7 +131,6 @@ class CRM_Contribute_Form_Task_PDFLetter extends CRM_Contribute_Form_Task {
    * Process the form after the input has been submitted and validated.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     $formValues = $this->controller->exportValues($this->getName());
@@ -316,7 +315,7 @@ class CRM_Contribute_Form_Task_PDFLetter extends CRM_Contribute_Form_Task {
    * @param bool $isIncludeSoftCredits
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildContributionArray($groupBy, $contributionIDs, $returnProperties, $skipOnHold, $skipDeceased, $messageToken, $task, $separator, $isIncludeSoftCredits) {
     $contributions = $contacts = [];
diff --git a/civicrm/CRM/Contribute/Form/UpdateSubscription.php b/civicrm/CRM/Contribute/Form/UpdateSubscription.php
index 42f956c33d0a6d1af0c441fe3f89785bf644d731..5ef8c01903f0a5a9dfe264a2e77f5b0d84d13d7f 100644
--- a/civicrm/CRM/Contribute/Form/UpdateSubscription.php
+++ b/civicrm/CRM/Contribute/Form/UpdateSubscription.php
@@ -207,7 +207,6 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Contribute_Form_Contrib
   /**
    * Called after the user submits the form.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function postProcess() {
diff --git a/civicrm/CRM/Contribute/Import/Form/MapField.php b/civicrm/CRM/Contribute/Import/Form/MapField.php
index 9d1e069fa8eb348163d39047360bf126ccbd3d75..abc42a05b2be35df6f626ac4bfc384fd7e05dc5d 100644
--- a/civicrm/CRM/Contribute/Import/Form/MapField.php
+++ b/civicrm/CRM/Contribute/Import/Form/MapField.php
@@ -70,7 +70,7 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
   /**
    * Build the form object.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildQuickForm(): void {
     $this->addSavedMappingFields();
@@ -221,7 +221,8 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
             if (!empty($entityData)) {
               $softCreditTypeID = (int) $entityData['soft_credit']['soft_credit_type_id'];
             }
-            $defaults["mapper[$i]"] = [$fieldMapping['name'], $softCreditTypeID];
+            $fieldName = $this->isQuickFormMode ? str_replace('.', '__', $fieldMapping['name']) : $fieldMapping['name'];
+            $defaults["mapper[$i]"] = [$fieldName, $softCreditTypeID];
           }
         }
       }
@@ -247,13 +248,17 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
     $ruleFields = $rule['fields'];
     $weightSum = 0;
     foreach ($mapper as $mapping) {
-      if ($mapping[0] === 'external_identifier' || $mapping[0] === 'contribution_contact_id' || $mapping[0] === 'contact__id') {
+      // Because api v4 style fields have a . and QuickForm multiselect js does
+      // not cope with a . the quick form layer will use a double underscore
+      // as a stand in (the angular layer will not)
+      $fieldName = str_replace('__', '.', $mapping[0]);
+      if ($fieldName === 'external_identifier' || $fieldName === 'contribution_contact_id' || $fieldName === 'contact__id') {
         // It is enough to have external identifier mapped.
         $weightSum = $threshold;
         break;
       }
-      if (array_key_exists($mapping[0], $ruleFields)) {
-        $weightSum += $ruleFields[$mapping[0]];
+      if (array_key_exists($fieldName, $ruleFields)) {
+        $weightSum += $ruleFields[$fieldName];
       }
     }
     if ($weightSum < $threshold) {
diff --git a/civicrm/CRM/Contribute/Import/Parser/Contribution.php b/civicrm/CRM/Contribute/Import/Parser/Contribution.php
index a4b8476844bbbc19ba09fa9247b217133f08fa15..744742bceda93a26db6a29e01ed48f4f52c8d4fd 100644
--- a/civicrm/CRM/Contribute/Import/Parser/Contribution.php
+++ b/civicrm/CRM/Contribute/Import/Parser/Contribution.php
@@ -203,7 +203,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
    *     'external_identifier' => 'abcd',
    *     'soft_credit' => [3 => ['external_identifier' => '123', 'soft_credit_type_id' => 1]]
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedRow(array $values): array {
     $params = [];
@@ -340,7 +340,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
    * Get a list of entities this import supports.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getImportEntities() : array {
     $softCreditTypes = ContributionSoft::getFields()
@@ -440,7 +440,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
       $softCreditParams = [];
       foreach ($params['SoftCreditContact'] ?? [] as $index => $softCreditContact) {
         $softCreditParams[$index]['soft_credit_type_id'] = $softCreditContact['soft_credit_type_id'];
-        $softCreditParams[$index]['contact_id'] = $this->getContactID($softCreditContact['Contact'], $softCreditContact['id'] ?? NULL, 'SoftCreditContact', $this->getDedupeRulesForEntity('SoftCreditContact'));
+        $softCreditParams[$index]['contact_id'] = $this->getContactID($softCreditContact['Contact'], $softCreditContact['Contact']['id'] ?? NULL, 'SoftCreditContact', $this->getDedupeRulesForEntity('SoftCreditContact'));
         if (empty($softCreditParams[$index]['contact_id']) && in_array($this->getActionForEntity('SoftCreditContact'), ['update', 'select'])) {
           throw new CRM_Core_Exception(ts('Soft Credit Contact not found'));
         }
@@ -674,7 +674,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
   /**
    * @param int $contributionID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function deleteExistingSoftCredit(int $contributionID): void {
     //Delete all existing soft Contribution from contribution_soft table for pcp_id is_null
@@ -727,7 +727,6 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
    * @return int
    *   Contact ID
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   private function lookupMatchingContact(array $params): int {
@@ -808,7 +807,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser {
    * @param int $contactID
    * @param array $noteParams
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processNote(int $contributionID, int $contactID, array $noteParams): void {
     $noteParams = array_merge([
diff --git a/civicrm/CRM/Contribute/Page/Tab.php b/civicrm/CRM/Contribute/Page/Tab.php
index 3cb0cb85bdc54ab61d0d0181bd5d70ff59e4c155..b898677d78e60b4e9e4d0e4fbf955b0571ef1d8b 100644
--- a/civicrm/CRM/Contribute/Page/Tab.php
+++ b/civicrm/CRM/Contribute/Page/Tab.php
@@ -118,7 +118,6 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page {
    *
    * @return array|array[]
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function selfServiceRecurLinks(int $recurID): array {
     $links = [];
@@ -184,7 +183,6 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page {
    *
    * @return array|array[]
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function dashboardRecurLinks(int $recurID, int $contactID): array {
     $links = [];
@@ -413,7 +411,6 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page {
 
   /**
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     $context = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this);
@@ -450,7 +447,6 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page {
    * loads, it decides the which action has to be taken for the page.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function run() {
     $this->preProcess();
diff --git a/civicrm/CRM/Contribute/Page/Widget.php b/civicrm/CRM/Contribute/Page/Widget.php
index cf0b71033c626e4df53dd9e4bade8187f9c00b68..ae51a76d44a7a56cb457193fc66a355ce8473771 100644
--- a/civicrm/CRM/Contribute/Page/Widget.php
+++ b/civicrm/CRM/Contribute/Page/Widget.php
@@ -21,7 +21,6 @@ class CRM_Contribute_Page_Widget extends CRM_Core_Page {
    * loads, it decides the which action has to be taken for the page.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function run() {
     $config = CRM_Core_Config::singleton();
diff --git a/civicrm/CRM/Contribute/PseudoConstant.php b/civicrm/CRM/Contribute/PseudoConstant.php
index 430bdafba16365a3a533b0d876aad8cabd73f85f..af713803f738d7a141466ab5c1cb439a418c2b63 100644
--- a/civicrm/CRM/Contribute/PseudoConstant.php
+++ b/civicrm/CRM/Contribute/PseudoConstant.php
@@ -66,13 +66,6 @@ class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant {
    */
   private static $pcPage;
 
-  /**
-   * Status of personal campaign page
-   * @var array
-   * @deprecated
-   */
-  private static $pcpStatus;
-
   /**
    * Contribution / financial batches
    * @var array
@@ -344,31 +337,6 @@ class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant {
     return $result;
   }
 
-  /**
-   * Get all PCP Statuses.
-   *
-   * The static array pcpStatus is returned
-   *
-   * @deprecated
-   * @param string $column
-   * @return array
-   *   array reference of all PCP activity statuses
-   */
-  public static function &pcpStatus($column = 'label') {
-    CRM_Core_Error::deprecatedFunctionWarning('Function pcpStatus will be removed');
-    if (NULL === self::$pcpStatus) {
-      self::$pcpStatus = [];
-    }
-    if (!array_key_exists($column, self::$pcpStatus)) {
-      self::$pcpStatus[$column] = [];
-
-      self::$pcpStatus[$column] = CRM_Core_OptionGroup::values('pcp_status', FALSE,
-        FALSE, FALSE, NULL, $column
-      );
-    }
-    return self::$pcpStatus[$column];
-  }
-
   /**
    * Get financial account for a Financial type.
    *
diff --git a/civicrm/CRM/Contribute/WorkflowMessage/Contribution/BasicContribution.php b/civicrm/CRM/Contribute/WorkflowMessage/Contribution/BasicContribution.php
index 0c8e637e626176cb3aae78c24c6cc1d93c2644a2..98f1f3e43c3d5c7951952b3b0adbcd1e74b37470 100644
--- a/civicrm/CRM/Contribute/WorkflowMessage/Contribution/BasicContribution.php
+++ b/civicrm/CRM/Contribute/WorkflowMessage/Contribution/BasicContribution.php
@@ -60,7 +60,7 @@ class CRM_Contribute_WorkflowMessage_Contribution_BasicContribution extends Work
    *
    * @param array $example
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function build(array &$example): void {
     $workFlow = WorkflowMessage::get(TRUE)->addWhere('name', '=', $example['workflow'])->execute()->first();
@@ -107,9 +107,7 @@ class CRM_Contribute_WorkflowMessage_Contribution_BasicContribution extends Work
    * @param \CRM_Contribute_WorkflowMessage_ContributionOfflineReceipt|\CRM_Contribute_WorkflowMessage_ContributionOnlineReceipt|\CRM_Contribute_WorkflowMessage_ContributionInvoiceReceipt $messageTemplate
    * @param array $example
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   private function addExampleData(GenericWorkflowMessage $messageTemplate, $example): void {
@@ -156,7 +154,7 @@ class CRM_Contribute_WorkflowMessage_Contribution_BasicContribution extends Work
    * Get a non-quick-config price set.
    *
    * @return array|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getNonQuickConfigPriceSet(): ?array {
     // Permission check defaults to true - likely implicitly OK but may need to be false.
@@ -172,7 +170,7 @@ class CRM_Contribute_WorkflowMessage_Contribution_BasicContribution extends Work
    * @param array|null $priceFieldValue
    * @param $index
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function setLineItem(CRM_Financial_BAO_Order $mockOrder, $priceField, ?array $priceFieldValue, $index): void {
     $mockOrder->setLineItem([
diff --git a/civicrm/CRM/Core/BAO/ActionSchedule.php b/civicrm/CRM/Core/BAO/ActionSchedule.php
index 0785fc39073d8ae81e99ab91ec8a65981a4cd703..04c08c59a08bee02549332103bf2967cba50a47c 100644
--- a/civicrm/CRM/Core/BAO/ActionSchedule.php
+++ b/civicrm/CRM/Core/BAO/ActionSchedule.php
@@ -319,7 +319,6 @@ FROM civicrm_action_schedule cas
    * @param string $now
    * @param array $params
    *
-   * @throws API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function buildRecipientContacts(string $mappingID, $now, $params = []) {
@@ -348,7 +347,6 @@ FROM civicrm_action_schedule cas
    * @param string $now
    * @param array $params
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function processQueue($now = NULL, $params = []): void {
diff --git a/civicrm/CRM/Core/BAO/Address.php b/civicrm/CRM/Core/BAO/Address.php
index 3159075396bf9ad74a0d9330ce73e988f9c2d4f0..7d81b4a1a4c26094e5ed39475c97f1706a650822 100644
--- a/civicrm/CRM/Core/BAO/Address.php
+++ b/civicrm/CRM/Core/BAO/Address.php
@@ -1133,7 +1133,7 @@ SELECT is_primary,
       // create relationship
       civicrm_api3('relationship', 'create', $relParam);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // We catch and ignore here because this has historically been a best-effort relationship create call.
       // presumably it could refuse due to duplication or similar and we would ignore that.
     }
diff --git a/civicrm/CRM/Core/BAO/Block.php b/civicrm/CRM/Core/BAO/Block.php
index 39519b96f9369b4a330ed98acb42f2b30cf75756..d5082513067756ee8b6b4577711dac376e807900 100644
--- a/civicrm/CRM/Core/BAO/Block.php
+++ b/civicrm/CRM/Core/BAO/Block.php
@@ -327,7 +327,7 @@ class CRM_Core_BAO_Block {
    * @param array $params
    * @param $class
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public static function handlePrimary(&$params, $class) {
     if (isset($params['id']) && CRM_Utils_System::isNull($params['is_primary'] ?? NULL)) {
@@ -336,7 +336,7 @@ class CRM_Core_BAO_Block {
     }
     $table = CRM_Core_DAO_AllCoreTables::getTableForClass($class);
     if (!$table) {
-      throw new API_Exception("Failed to locate table for class [$class]");
+      throw new CRM_Core_Exception("Failed to locate table for class [$class]");
     }
 
     // contact_id in params might be empty or the string 'null' so cast to integer
@@ -409,7 +409,7 @@ class CRM_Core_BAO_Block {
    * @param array $params
    * @param $class
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public static function handleBilling(&$params, $class) {
     if (isset($params['id']) && CRM_Utils_System::isNull($params['is_billing'] ?? NULL)) {
@@ -418,7 +418,7 @@ class CRM_Core_BAO_Block {
     }
     $table = CRM_Core_DAO_AllCoreTables::getTableForClass($class);
     if (!$table) {
-      throw new API_Exception("Failed to locate table for class [$class]");
+      throw new CRM_Core_Exception("Failed to locate table for class [$class]");
     }
 
     // contact_id in params might be empty or the string 'null' so cast to integer
diff --git a/civicrm/CRM/Core/BAO/CustomField.php b/civicrm/CRM/Core/BAO/CustomField.php
index 27f0b8c5a5213773400e64bd1ed452dd529082ef..b53aae85b8c10c3d9b2267294585a5822165e162 100644
--- a/civicrm/CRM/Core/BAO/CustomField.php
+++ b/civicrm/CRM/Core/BAO/CustomField.php
@@ -163,7 +163,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
    * @param array $defaults
    *  Default parameters to be be merged into each of the params.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function bulkSave($bulkParams, $defaults = []) {
     CRM_Core_Error::deprecatedFunctionWarning(__CLASS__ . '::writeRecords');
@@ -723,7 +723,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
     if (empty($fieldValues)) {
       $field->id = $fieldID;
       if (!$field->find(TRUE)) {
-        throw new CRM_Core_Exception('Cannot find Custom Field');
+        throw new CRM_Core_Exception('Cannot find Custom Field ' . $fieldID);
       }
 
       $fieldValues = [];
@@ -753,7 +753,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
    * @param string $label
    *   Label for custom field.
    * @return \HTML_QuickForm_Element|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function addQuickFormElement(
     $qf, $elementName, $fieldId, $useRequired = TRUE, $search = FALSE, $label = NULL
@@ -1246,7 +1246,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
               try {
                 $file_description = civicrm_api3('File', 'getvalue', ['return' => "description", 'id' => $value]);
               }
-              catch (CiviCRM_API3_Exception $dontcare) {
+              catch (CRM_Core_Exception $dontcare) {
                 // don't care
               }
 
@@ -2196,7 +2196,7 @@ WHERE  id IN ( %1, %2 )
    * @param int[] $fieldIDs
    *   Optional list field ids to move.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   public function move($oldContactID, $newContactID, $fieldIDs) {
@@ -2473,7 +2473,7 @@ AND      default_value IS NOT NULL";
    * @param bool $fullString Whether to return "custom_123" or "123"
    *
    * @return string|int|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getCustomFieldID($fieldName, $groupName = NULL, $fullString = FALSE) {
     $cacheKey = $groupName . '.' . $fieldName;
diff --git a/civicrm/CRM/Core/BAO/CustomGroup.php b/civicrm/CRM/Core/BAO/CustomGroup.php
index 491da279d079928c686b67c6f169fd8c9917b975..378c58502c8b239b51dc6ebf1ff8960878d039e8 100644
--- a/civicrm/CRM/Core/BAO/CustomGroup.php
+++ b/civicrm/CRM/Core/BAO/CustomGroup.php
@@ -1556,7 +1556,7 @@ ORDER BY civicrm_custom_group.weight,
    * @param string $prefix
    *   Prefix for custom grouptree assigned to template.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildQuickForm(&$form, &$groupTree, $inactiveNeeded = FALSE, $prefix = '') {
     $form->assign_by_ref("{$prefix}groupTree", $groupTree);
@@ -1591,7 +1591,6 @@ ORDER BY civicrm_custom_group.weight,
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function extractGetParams(&$form, $type) {
     if (empty($_GET)) {
diff --git a/civicrm/CRM/Core/BAO/Dashboard.php b/civicrm/CRM/Core/BAO/Dashboard.php
index 4e19a8554668b0aedaf336626817aaee9475fa48..82f1b728a41c42c071c873f091b8d312de3f0e14 100644
--- a/civicrm/CRM/Core/BAO/Dashboard.php
+++ b/civicrm/CRM/Core/BAO/Dashboard.php
@@ -42,7 +42,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard {
    *
    * @return array
    *   array of dashlets
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getContactDashlets(): array {
     $cid = CRM_Core_Session::getLoggedInContactID();
diff --git a/civicrm/CRM/Core/BAO/Domain.php b/civicrm/CRM/Core/BAO/Domain.php
index 73d850c1f373b1478a9cf01288416437649efaeb..a7bb9a9ace2dac6b99fe690f19865ff63f651764 100644
--- a/civicrm/CRM/Core/BAO/Domain.php
+++ b/civicrm/CRM/Core/BAO/Domain.php
@@ -341,7 +341,7 @@ class CRM_Core_BAO_Domain extends CRM_Core_DAO_Domain {
    * Return domain information / user information for the usage in receipts
    * Try default from address then fall back to using logged in user details
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getDefaultReceiptFrom() {
     $domain = civicrm_api3('domain', 'getsingle', ['id' => CRM_Core_Config::domainID()]);
diff --git a/civicrm/CRM/Core/BAO/Email.php b/civicrm/CRM/Core/BAO/Email.php
index 755f09bd1e73ded620c38d8e83f66984113da60b..0f5ce646710c1d2285b6592601b26f91fc18e7de 100644
--- a/civicrm/CRM/Core/BAO/Email.php
+++ b/civicrm/CRM/Core/BAO/Email.php
@@ -400,7 +400,7 @@ AND    reset_date IS NULL
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function getEmailSignatureDefaults(int $emailID): array {
diff --git a/civicrm/CRM/Core/BAO/IM.php b/civicrm/CRM/Core/BAO/IM.php
index a26e6c4ea34e5fd0e454d6f552662ef5e2fdbc63..a410e912746a381dca16ab5320beb5949772abe1 100644
--- a/civicrm/CRM/Core/BAO/IM.php
+++ b/civicrm/CRM/Core/BAO/IM.php
@@ -28,7 +28,6 @@ class CRM_Core_BAO_IM extends CRM_Core_DAO_IM {
    *
    * @return \CRM_Core_DAO|\CRM_Core_DAO_IM
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public static function create($params) {
     CRM_Core_BAO_Block::handlePrimary($params, __CLASS__);
@@ -44,7 +43,6 @@ class CRM_Core_BAO_IM extends CRM_Core_DAO_IM {
    *
    * @return \CRM_Core_DAO|\CRM_Core_DAO_IM
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public static function add($params) {
     CRM_Core_Error::deprecatedFunctionWarning('use the v4 api');
diff --git a/civicrm/CRM/Core/BAO/Mapping.php b/civicrm/CRM/Core/BAO/Mapping.php
index 0fbe33d61ba6c3fe8f89cfc7455b12edc6dc2c7a..a64a2176ab8d4e066cfdb42a54f52196a0b123e9 100644
--- a/civicrm/CRM/Core/BAO/Mapping.php
+++ b/civicrm/CRM/Core/BAO/Mapping.php
@@ -112,13 +112,13 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping implements \Civi\Core\Ho
    * @return array
    *   Array of mapping names, keyed by id.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getCreateMappingValues($mappingType) {
     try {
       return CRM_Core_BAO_Mapping::getMappings($mappingType);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // Having a valid mapping_type_id is now enforced. However, rather than error let's
       // add it. This is required for Multi value which could be done by upgrade script, but
       // it feels like there could be other instances so this is safer.
@@ -227,7 +227,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping implements \Civi\Core\Ho
    * @param string $fieldName
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getMappingFieldValues($mappingID, $fieldName) {
     return array_merge(CRM_Utils_Array::collect($fieldName, civicrm_api3('MappingField', 'get', ['mapping_id' => $mappingID, 'return' => $fieldName])['values']));
diff --git a/civicrm/CRM/Core/BAO/MessageTemplate.php b/civicrm/CRM/Core/BAO/MessageTemplate.php
index cd260a29c9dd089772d50879376e2d80e6e46e28..977b91b25097123a2e548c95f1177c21e6804c30 100644
--- a/civicrm/CRM/Core/BAO/MessageTemplate.php
+++ b/civicrm/CRM/Core/BAO/MessageTemplate.php
@@ -65,7 +65,7 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate implemen
    *
    *
    * @return object
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function add(&$params) {
@@ -263,7 +263,6 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate implemen
    * @return array
    *   Rendered message, consistent of 'subject', 'text', 'html'
    *   Ex: ['subject' => 'Hello Bob', 'text' => 'It\'s been so long since we sent you an automated notification!']
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @see sendTemplate()
    */
@@ -279,7 +278,6 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate implemen
    *   Mixed render parameters. See sendTemplate() for more details.
    * @return array
    *   Tuple of [$mailContent, $updatedParams].
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @see sendTemplate()
    */
@@ -388,7 +386,6 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate implemen
    * @return array
    *   Array of four parameters: a boolean whether the email was sent, and the subject, text and HTML templates
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public static function sendTemplate(array $params): array {
     // Handle isEmailPdf here as the unit test on that function deems it 'non-conforming'.
@@ -463,7 +460,6 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate implemen
    * @param string|null $language
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected static function loadTemplate(string $workflowName, bool $isTest, int $messageTemplateID = NULL, $groupName = NULL, ?array $messageTemplateOverride = NULL, ?string $subjectOverride = NULL, ?string $language = NULL): array {
diff --git a/civicrm/CRM/Core/BAO/Note.php b/civicrm/CRM/Core/BAO/Note.php
index 1bd336410a6d5f9ed101a99ea50f8aac33188a22..b8abef965f65c9b9a2751801f71d190a39955652 100644
--- a/civicrm/CRM/Core/BAO/Note.php
+++ b/civicrm/CRM/Core/BAO/Note.php
@@ -27,24 +27,6 @@ class CRM_Core_BAO_Note extends CRM_Core_DAO_Note implements \Civi\Core\HookInte
    */
   const MAX_NOTES = 3;
 
-  /**
-   * Given a note id, retrieve the note text.
-   *
-   * @param int $id
-   *   Id of the note to retrieve.
-   *
-   * @return string
-   *   the note text or NULL if note not found
-   *
-   * @throws \CRM_Core_Exception
-   *
-   * @deprecated
-   */
-  public static function getNoteText($id) {
-    CRM_Core_Error::deprecatedFunctionWarning('unused function');
-    return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Note', $id, 'note');
-  }
-
   /**
    * Given a note id, retrieve the note subject
    *
diff --git a/civicrm/CRM/Core/BAO/OpenID.php b/civicrm/CRM/Core/BAO/OpenID.php
index 2b16d2c702f68013df3c767e767177441fc37f14..2e1e1576a192da0b53a587097a10167be19b8535 100644
--- a/civicrm/CRM/Core/BAO/OpenID.php
+++ b/civicrm/CRM/Core/BAO/OpenID.php
@@ -28,7 +28,6 @@ class CRM_Core_BAO_OpenID extends CRM_Core_DAO_OpenID {
    *
    * @return CRM_Core_DAO_OpenID
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function create($params) {
@@ -45,7 +44,6 @@ class CRM_Core_BAO_OpenID extends CRM_Core_DAO_OpenID {
    *
    * @return \CRM_Core_DAO|\CRM_Core_DAO_IM
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   public static function add($params) {
     CRM_Core_Error::deprecatedFunctionWarning('use the v4 api');
diff --git a/civicrm/CRM/Core/BAO/OptionValue.php b/civicrm/CRM/Core/BAO/OptionValue.php
index 2f70600ba3d960cca553a3d8702a11b116ec7ae0..f7abe94b3a5f9967425b437002de1bb5df654b09 100644
--- a/civicrm/CRM/Core/BAO/OptionValue.php
+++ b/civicrm/CRM/Core/BAO/OptionValue.php
@@ -132,7 +132,6 @@ class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue {
    * @return \CRM_Core_DAO_OptionValue
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function add(&$params, $ids = []) {
     if (!empty($ids['optionValue']) && empty($params['id'])) {
diff --git a/civicrm/CRM/Core/BAO/Phone.php b/civicrm/CRM/Core/BAO/Phone.php
index c51b492bba5d3aa995aca84247368084bef6f78e..3ed91d733b3c4d1c2544cc3e442b8a010094ebc9 100644
--- a/civicrm/CRM/Core/BAO/Phone.php
+++ b/civicrm/CRM/Core/BAO/Phone.php
@@ -29,7 +29,6 @@ class CRM_Core_BAO_Phone extends CRM_Core_DAO_Phone {
    *
    * @return \CRM_Core_DAO_Phone
    *
-   * @throws API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function create($params) {
@@ -48,7 +47,6 @@ class CRM_Core_BAO_Phone extends CRM_Core_DAO_Phone {
    * @return object
    *   CRM_Core_BAO_Phone object on success, null otherwise
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function add($params) {
diff --git a/civicrm/CRM/Core/BAO/PrevNextCache.php b/civicrm/CRM/Core/BAO/PrevNextCache.php
index e848df2edd2addbeaa057d08372d5e5d85961fec..9a88d6ec303fce007ce9f8c8ad279d20bc40dca1 100644
--- a/civicrm/CRM/Core/BAO/PrevNextCache.php
+++ b/civicrm/CRM/Core/BAO/PrevNextCache.php
@@ -388,7 +388,6 @@ WHERE (pn.cachekey $op %1 OR pn.cachekey $op %2)
    *  the number of searched contacts, not the matches found.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function refillCache($rgid, $gid, $criteria, $checkPermissions, $searchLimit = 0) {
     $cacheKeyString = CRM_Dedupe_Merger::getMergeCacheKeyString($rgid, $gid, $criteria, $checkPermissions, $searchLimit);
diff --git a/civicrm/CRM/Core/BAO/Setting.php b/civicrm/CRM/Core/BAO/Setting.php
index 077a1cb0b187fcdc4a4d8249374e4ccf55cb80a9..9921e536b718000f8426abe6898a1e02b1c7b9fa 100644
--- a/civicrm/CRM/Core/BAO/Setting.php
+++ b/civicrm/CRM/Core/BAO/Setting.php
@@ -171,7 +171,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
    *   (required) An api formatted array of keys and values.
    * @param array|null $domains
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    * @domains array an array of domains to get settings for. Default is the current domain
    * @return array
    */
@@ -211,7 +211,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
    *   Empty array to be populated with fields metadata.
    * @param bool $createMode
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    * @return array
    *   name => value array of the fields to be set (with extraneous removed)
    */
@@ -253,7 +253,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
     $fields = civicrm_api3('setting', 'getfields', $getFieldsParams);
     $invalidParams = (array_diff_key($settingParams, $fields['values']));
     if (!empty($invalidParams)) {
-      throw new API_Exception(implode(',', array_keys($invalidParams)) . " not valid settings");
+      throw new CRM_Core_Exception(implode(',', array_keys($invalidParams)) . " not valid settings");
     }
     if (!empty($settingParams)) {
       $filteredFields = array_intersect_key($settingParams, $fields['values']);
@@ -276,7 +276,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
    *   Deprecated mode
    *
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function validateSetting(&$value, array $fieldSpec, $convertToSerializedString = TRUE) {
     // Deprecated guesswork - should use $fieldSpec['serialize']
@@ -289,7 +289,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
     else {
       $cb = Civi\Core\Resolver::singleton()->get($fieldSpec['validate_callback']);
       if (!call_user_func_array($cb, array(&$value, $fieldSpec))) {
-        throw new API_Exception("validation failed for {$fieldSpec['name']} = $value  based on callback {$fieldSpec['validate_callback']}");
+        throw new CRM_Core_Exception("validation failed for {$fieldSpec['name']} = $value  based on callback {$fieldSpec['validate_callback']}");
       }
     }
   }
@@ -301,11 +301,11 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
    * @param array $fieldSpec Metadata for given field (drawn from the xml)
    *
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function validateBoolSetting(&$value, $fieldSpec) {
     if (!CRM_Utils_Rule::boolean($value)) {
-      throw new API_Exception("Boolean value required for {$fieldSpec['name']}");
+      throw new CRM_Core_Exception("Boolean value required for {$fieldSpec['name']}");
     }
     if (!$value) {
       $value = 0;
diff --git a/civicrm/CRM/Core/BAO/Tag.php b/civicrm/CRM/Core/BAO/Tag.php
index 494bd8510bc07d566eb9ad55c1d24c1e09eda70a..d02fb85db4dc3b882b751fa3ce70036c117c02ad 100644
--- a/civicrm/CRM/Core/BAO/Tag.php
+++ b/civicrm/CRM/Core/BAO/Tag.php
@@ -89,6 +89,7 @@ class CRM_Core_BAO_Tag extends CRM_Core_DAO_Tag {
       $thisref['name'] = $dao->name;
       $thisref['description'] = $dao->description;
       $thisref['is_selectable'] = $dao->is_selectable;
+      $thisref['children'] = [];
 
       if (!$dao->parent_id) {
         $this->tree[$dao->id] = &$thisref;
@@ -301,7 +302,7 @@ class CRM_Core_BAO_Tag extends CRM_Core_DAO_Tag {
    * @param bool $allowSelectingNonSelectable
    * @param null $exclude
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getColorTags($usedFor = NULL, $allowSelectingNonSelectable = FALSE, $exclude = NULL) {
     $params = [
diff --git a/civicrm/CRM/Core/BAO/Translation.php b/civicrm/CRM/Core/BAO/Translation.php
index f1876031188ba5f5df09cd5cf9641d5f477b004e..4cc2d96c28acaa60d7f7fe5c235d6748467c71cd 100644
--- a/civicrm/CRM/Core/BAO/Translation.php
+++ b/civicrm/CRM/Core/BAO/Translation.php
@@ -218,12 +218,12 @@ class CRM_Core_BAO_Translation extends CRM_Core_DAO_Translation implements HookI
       ->addWhere('entity_table', '=', CRM_Core_DAO_AllCoreTables::getTableForEntityName($apiRequest['entity']))
       ->setCheckPermissions(FALSE)
       ->setSelect(['entity_field', 'entity_id', 'string', 'language']);
-    if ((substr($userLocale->nominal, '-3', '3') !== '_NO')) {
+    if ((substr($userLocale->nominal ?? '', '-3', '3') !== '_NO')) {
       // Generally we want to check for any translations of the base language
       // and prefer, for example, French French over US English for French Canadians.
       // Sites that genuinely want to cater to both will add translations for both
       // and we work through preferences below.
-      $translations->addWhere('language', 'LIKE', substr($userLocale->nominal, 0, 2) . '%');
+      $translations->addWhere('language', 'LIKE', substr($userLocale->nominal ?? '', 0, 2) . '%');
     }
     else {
       // And here we have ... the Norwegians. They have three main variants which
diff --git a/civicrm/CRM/Core/BAO/UFField.php b/civicrm/CRM/Core/BAO/UFField.php
index 3abb2774dbb2fa503bad11303991100ed0b9a48b..e43bc4a25e34f044e075785a662da7b305b6fa59 100644
--- a/civicrm/CRM/Core/BAO/UFField.php
+++ b/civicrm/CRM/Core/BAO/UFField.php
@@ -34,7 +34,7 @@ class CRM_Core_BAO_UFField extends CRM_Core_DAO_UFField {
    *   Array per getfields metadata.
    *
    * @return \CRM_Core_BAO_UFField
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function create($params) {
     $id = $params['id'] ?? NULL;
@@ -52,13 +52,13 @@ class CRM_Core_BAO_UFField extends CRM_Core_DAO_UFField {
         $params += $defaults;
       }
       else {
-        throw new API_Exception("UFFIeld id {$params['id']} not found.");
+        throw new CRM_Core_Exception("UFFIeld id {$params['id']} not found.");
       }
     }
 
     // Validate field_name
     if (strpos($params['field_name'], 'formatting') !== 0 && !CRM_Core_BAO_UFField::isValidFieldName($params['field_name'])) {
-      throw new API_Exception('The field_name is not valid');
+      throw new CRM_Core_Exception('The field_name is not valid');
     }
 
     // Supply default label if not set
@@ -80,7 +80,7 @@ class CRM_Core_BAO_UFField extends CRM_Core_DAO_UFField {
     }
 
     if (self::duplicateField($params)) {
-      throw new API_Exception("The field was not added. It already exists in this profile.");
+      throw new CRM_Core_Exception("The field was not added. It already exists in this profile.");
     }
 
     //@todo why is this even optional? Surely weight should just be 'managed' ??
diff --git a/civicrm/CRM/Core/BAO/UFGroup.php b/civicrm/CRM/Core/BAO/UFGroup.php
index 063fe93f16be8c7e0f6c6dc5ec21708512e4870f..bd55d33c1a455dd20e61fcd4e9318e6f107565b3 100644
--- a/civicrm/CRM/Core/BAO/UFGroup.php
+++ b/civicrm/CRM/Core/BAO/UFGroup.php
@@ -2164,7 +2164,7 @@ AND    ( entity_id IS NULL OR entity_id <= 0 )
       $form->add('textarea', $name, $title, CRM_Core_DAO::getAttribute('CRM_Core_DAO_Email', $fieldName));
     }
     elseif (substr($fieldName, -11) == 'campaign_id') {
-      if (CRM_Campaign_BAO_Campaign::isCampaignEnable()) {
+      if (CRM_Campaign_BAO_Campaign::isComponentEnabled()) {
         $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns(CRM_Utils_Array::value($contactId,
           $form->_componentCampaigns
         ));
@@ -3556,7 +3556,7 @@ SELECT  group_id
    *
    * @return string
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getFrontEndTitle(int $profileID) {
     $profile = civicrm_api3('UFGroup', 'getsingle', ['id' => $profileID, 'return' => ['title', 'frontend_title']]);
diff --git a/civicrm/CRM/Core/CodeGen/GenerateData.php b/civicrm/CRM/Core/CodeGen/GenerateData.php
index 4117c357592f34767300ab769a740e47d164941e..d0ba51a8c31e878798cf7864976b391c4c8386bc 100644
--- a/civicrm/CRM/Core/CodeGen/GenerateData.php
+++ b/civicrm/CRM/Core/CodeGen/GenerateData.php
@@ -1135,7 +1135,7 @@ class CRM_Core_CodeGen_GenerateData {
   /**
    * This method populates the civicrm_group_contact table
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function addGroup() {
     // add the 3 groups first
@@ -1244,7 +1244,7 @@ class CRM_Core_CodeGen_GenerateData {
    *
    * It allows the members of the advisory group to edit the Summer volunteers group.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function addACL(): void {
     $optionValueID = OptionValue::create(FALSE)->setValues([
@@ -1322,7 +1322,7 @@ class CRM_Core_CodeGen_GenerateData {
     $nonAssignTypes = ['Pledge Acknowledgment', 'Print PDF Letter'];
     foreach ($activityTypes as $activityType) {
       $activityTypeOptions[$activityType['activity_type_id']] = ['label' => $activityType['label'], 'name' => $activityType['label']];
-      $activityTypeOptions[$activityType['activity_type_id']]['is_add_targets'] = !in_array($nonAssignTypes, $activityType['name'], TRUE);
+      $activityTypeOptions[$activityType['activity_type_id']]['is_add_targets'] = !in_array($activityType['name'], $nonAssignTypes, TRUE);
     }
     $count = 0;
     $activityContacts = array_flip(CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate'));
diff --git a/civicrm/CRM/Core/Config.php b/civicrm/CRM/Core/Config.php
index 04000519a9d1d4b4fb847d615a2c925611f257ed..7bee954f04d499e1a3a9705f1140056f3545843d 100644
--- a/civicrm/CRM/Core/Config.php
+++ b/civicrm/CRM/Core/Config.php
@@ -379,8 +379,11 @@ class CRM_Core_Config extends CRM_Core_Config_MagicMerge {
     }
     if (!empty($tables)) {
       $table = implode(',', $tables);
-      // If a User Job references the table do not drop it. This is a bit quick & dirty but we don't want to
-      // get into calling more sophisticated functions in a cache clear and the table names are pretty unique.
+      // If a User Job references the table do not drop it. This is a bit quick & dirty, but we don't want to
+      // get into calling more sophisticated functions in a cache clear, and the table names are pretty unique
+      // (ex: "civicrm_tmp_d_dflt_1234abcd5678efgh"), and the "metadata" may continue to evolve for the next
+      // couple months.
+      // TODO: Circa v5.60+, consider a more precise cleanup. Discussion: https://github.com/civicrm/civicrm-core/pull/24538
       // A separate process will reap the UserJobs but here the goal is just not to delete them during cache clearing
       // if they are still referenced.
       if (!CRM_Core_DAO::executeQuery("SELECT count(*) FROM civicrm_user_job WHERE metadata LIKE '%" . $tableDAO->tableName . "%'")) {
diff --git a/civicrm/CRM/Core/Controller/Task.php b/civicrm/CRM/Core/Controller/Task.php
index 02674c6a40682842c6d875232d811101c71cb5f1..e4c2e3fe2f733297546a44ba12674310ac2ccc15 100644
--- a/civicrm/CRM/Core/Controller/Task.php
+++ b/civicrm/CRM/Core/Controller/Task.php
@@ -22,7 +22,6 @@ abstract class CRM_Core_Controller_Task extends CRM_Core_Controller {
    * @param bool $modal
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
 
diff --git a/civicrm/CRM/Core/DAO.php b/civicrm/CRM/Core/DAO.php
index a64287c81ce76d345db201a00b5e336b821869e1..c3f275de793953e4b92ad83a53232d742c86419a 100644
--- a/civicrm/CRM/Core/DAO.php
+++ b/civicrm/CRM/Core/DAO.php
@@ -2659,7 +2659,7 @@ SELECT contact_id
    * Refer to CRM-17454 for information on the danger of querying the information
    * schema to derive this.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getReferencesToContactTable() {
     if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['contact_references'])) {
@@ -2730,7 +2730,7 @@ SELECT contact_id
    *
    * @param array $cidRefs
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function appendCustomContactReferenceFields(&$cidRefs) {
     $fields = civicrm_api3('CustomField', 'get', [
@@ -3389,4 +3389,14 @@ SELECT contact_id
     $this->name = $name . $suffix;
   }
 
+  /**
+   * Check if component is enabled for this DAO class
+   *
+   * @return bool
+   */
+  public static function isComponentEnabled(): bool {
+    $daoName = static::class;
+    return !defined("$daoName::COMPONENT") || CRM_Core_Component::isEnabled($daoName::COMPONENT);
+  }
+
 }
diff --git a/civicrm/CRM/Core/DAO/Country.php b/civicrm/CRM/Core/DAO/Country.php
index b26109737b2b9e0c90a17d5bf2fda09d05068847..f769d9ed0260338a5f6cb578773609dec0962803 100644
--- a/civicrm/CRM/Core/DAO/Country.php
+++ b/civicrm/CRM/Core/DAO/Country.php
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/Core/Country.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:cc102c2026bc18d7b24295fe3538a160)
+ * (GenCodeChecksum:94e7967af16d9be6823ac8ec64c9bb11)
  */
 
 /**
@@ -23,6 +23,13 @@ class CRM_Core_DAO_Country extends CRM_Core_DAO {
    */
   public static $_tableName = 'civicrm_country';
 
+  /**
+   * Icon associated with this entity.
+   *
+   * @var string
+   */
+  public static $_icon = 'fa-globe';
+
   /**
    * Field to show when displaying a record.
    *
@@ -145,6 +152,15 @@ class CRM_Core_DAO_Country extends CRM_Core_DAO {
     return $plural ? ts('Countries') : ts('Country');
   }
 
+  /**
+   * Returns user-friendly description of this entity.
+   *
+   * @return string
+   */
+  public static function getEntityDescription() {
+    return ts('Countries of the world');
+  }
+
   /**
    * Returns foreign keys and entity references.
    *
diff --git a/civicrm/CRM/Core/DynamicFKAccessTrait.php b/civicrm/CRM/Core/DynamicFKAccessTrait.php
index d88401b57651acbccc1d38ed3e8e827a2facab52..ce8b67e755fc7f5d43f6ad412ab77ccb54397242 100644
--- a/civicrm/CRM/Core/DynamicFKAccessTrait.php
+++ b/civicrm/CRM/Core/DynamicFKAccessTrait.php
@@ -40,7 +40,7 @@ trait CRM_Core_DynamicFKAccessTrait {
     if ($eid && $table) {
       $targetEntity = CRM_Core_DAO_AllCoreTables::getEntityNameForTable($table);
       if ($targetEntity === NULL) {
-        throw new \API_Exception(sprintf('Cannot resolve permissions for dynamic foreign key in "%s". Invalid table reference "%s".',
+        throw new \CRM_Core_Exception(sprintf('Cannot resolve permissions for dynamic foreign key in "%s". Invalid table reference "%s".',
           static::getTableName(), $table));
       }
       return \Civi\Api4\Utils\CoreUtil::checkAccessDelegated($targetEntity, 'update', ['id' => $eid], $userID);
diff --git a/civicrm/CRM/Core/EntityTokens.php b/civicrm/CRM/Core/EntityTokens.php
index 8f7866971b5a5230c43acc062d5b08bea1896aa5..b33ae4ebe3ba79723c33406e01964464f1142423 100644
--- a/civicrm/CRM/Core/EntityTokens.php
+++ b/civicrm/CRM/Core/EntityTokens.php
@@ -261,7 +261,7 @@ class CRM_Core_EntityTokens extends AbstractTokenSubscriber {
         // Tests fail without checkPermissions = FALSE
         $this->fieldMetadata = (array) civicrm_api4($this->getApiEntityName(), 'getfields', ['checkPermissions' => FALSE], 'name');
       }
-      catch (API_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         $this->fieldMetadata = [];
       }
     }
@@ -368,7 +368,7 @@ class CRM_Core_EntityTokens extends AbstractTokenSubscriber {
    * @todo remove this function & use the metadata that is loaded.
    *
    * @return string[]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getBasicTokens(): array {
     $return = [];
@@ -409,7 +409,7 @@ class CRM_Core_EntityTokens extends AbstractTokenSubscriber {
     // 'not a real field' offered up by case - seems like an oddity
     // we should skip at the top level for now.
     $fields = ['tags'];
-    if (!CRM_Campaign_BAO_Campaign::isCampaignEnable()) {
+    if (!CRM_Campaign_BAO_Campaign::isComponentEnabled()) {
       $fields[] = 'campaign_id';
     }
     return $fields;
@@ -465,7 +465,7 @@ class CRM_Core_EntityTokens extends AbstractTokenSubscriber {
    * @param \Civi\Token\Event\TokenValueEvent $e
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPrefetchFields(TokenValueEvent $e): array {
     $allTokens = array_keys($this->getTokenMetadata());
diff --git a/civicrm/CRM/Core/Form.php b/civicrm/CRM/Core/Form.php
index 6d59fd537f61a5baeb38737d22faecabf078c84e..2d5d6c745ad9975fca02a156812e78018d42a5d4 100644
--- a/civicrm/CRM/Core/Form.php
+++ b/civicrm/CRM/Core/Form.php
@@ -1710,7 +1710,7 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
    *   a controlled way. To convert the field the jcalendar code needs to be removed from the
    *   tpl as well. That file is intended to be EOL.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    * @return mixed
    *   HTML_QuickForm_Element
diff --git a/civicrm/CRM/Core/Form/RecurringEntity.php b/civicrm/CRM/Core/Form/RecurringEntity.php
index e9124dfd40aa863b1217ee59beab1cd13efacb58..05435a6aa857a1639384775d32019832f13c4094 100644
--- a/civicrm/CRM/Core/Form/RecurringEntity.php
+++ b/civicrm/CRM/Core/Form/RecurringEntity.php
@@ -319,7 +319,7 @@ class CRM_Core_Form_RecurringEntity {
    * @param string $type
    * @param array $linkedEntities
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function postProcess($params, $type, $linkedEntities = []) {
     // Check entity_id not present in params take it from class variable
diff --git a/civicrm/CRM/Core/Form/Search.php b/civicrm/CRM/Core/Form/Search.php
index 2af67614c9dc752d9a06c96f6711014d9c2a19b3..001bd72dcdd18cf10e55453873d473a897cd7736 100644
--- a/civicrm/CRM/Core/Form/Search.php
+++ b/civicrm/CRM/Core/Form/Search.php
@@ -112,7 +112,6 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
    * Prepare for search by loading options from the url, handling force searches, retrieving form values.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     $this->loadStandardSearchOptionsFromUrl();
@@ -183,7 +182,7 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
    * The goal is to describe all fields in metadata and handle from metadata rather
    * than existing ad hoc handling.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function addFormFieldsFromMetadata() {
     $this->addFormRule(['CRM_Core_Form_Search', 'formRule'], $this);
@@ -381,7 +380,7 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
    * Note that for translation purposes the full string works better than using 'prefix' hence we use override-able functions
    * to define the string.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function addSortNameField() {
     $title = civicrm_api3('setting', 'getvalue', ['name' => 'includeEmailInName', 'group' => 'Search Preferences']) ? $this->getSortNameLabelWithEmail() : $this->getSortNameLabelWithOutEmail();
@@ -426,7 +425,7 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
   /**
    * Add generic fields that specify the contact.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function addContactSearchFields() {
     if (!$this->isFormInViewOrEditMode()) {
@@ -564,7 +563,7 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {}
 
@@ -574,7 +573,7 @@ class CRM_Core_Form_Search extends CRM_Core_Form {
    * Search field metadata is normally added in buildForm but we are bypassing that in this flow
    * (I've always found the flow kinda confusing & perhaps that is the problem but this mitigates)
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function handleForcedSearch() {
     $this->setSearchMetadata();
diff --git a/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php b/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php
index 0f6e6673ed8e6cdcde624c60250d82e5711375e3..e9d32eab6cbe87173a6b11b9de88f250f48f6e70 100644
--- a/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php
+++ b/civicrm/CRM/Core/Form/Task/PDFLetterCommon.php
@@ -260,7 +260,6 @@ class CRM_Core_Form_Task_PDFLetterCommon {
    * @deprecated
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function processTemplate(&$formValues) {
diff --git a/civicrm/CRM/Core/JobManager.php b/civicrm/CRM/Core/JobManager.php
index ad170f08cbb3564823c264e8f82caaf6f074235e..de0e94cd9c1e75ec1f358a1f8e9f1acd10ec4e54 100644
--- a/civicrm/CRM/Core/JobManager.php
+++ b/civicrm/CRM/Core/JobManager.php
@@ -259,7 +259,7 @@ class CRM_Core_JobManager {
    * @return string
    */
   private function _apiResultToMessage($apiResult) {
-    $status = $apiResult['is_error'] ? ts('Failure') : ts('Success');
+    $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!');
     if (is_array($msg)) {
@@ -268,7 +268,7 @@ class CRM_Core_JobManager {
     if (is_array($vals)) {
       $vals = serialize($vals);
     }
-    $message = $apiResult['is_error'] ? ', Error message: ' . $msg : " (" . $vals . ")";
+    $message = ($apiResult['is_error'] ?? FALSE) ? ', Error message: ' . $msg : " (" . $vals . ")";
     return $status . $message;
   }
 
diff --git a/civicrm/CRM/Core/ManagedEntities.php b/civicrm/CRM/Core/ManagedEntities.php
index dde799e9434044d6e3cc992f244a2db09d29561f..9373d96ff4714b92837a3a656d352dfb10ab9215 100644
--- a/civicrm/CRM/Core/ManagedEntities.php
+++ b/civicrm/CRM/Core/ManagedEntities.php
@@ -274,7 +274,7 @@ class CRM_Core_ManagedEntities {
    *
    * @param array $item
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function disableEntity(array $item): void {
     $entity_type = $item['entity_type'];
@@ -489,7 +489,7 @@ class CRM_Core_ManagedEntities {
    * @param string $entity_type
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function isActivationSupported(string $entity_type): bool {
     if (!isset(Civi::$statics[__CLASS__][__FUNCTION__][$entity_type])) {
diff --git a/civicrm/CRM/Core/Page.php b/civicrm/CRM/Core/Page.php
index a252b994247321b4faa21117dd0b44de835f5b8c..806393ceadd45a7507bf8e661a9f17d2118fe242 100644
--- a/civicrm/CRM/Core/Page.php
+++ b/civicrm/CRM/Core/Page.php
@@ -452,7 +452,7 @@ class CRM_Core_Page {
    * @param string $entity
    *   The entity being queried.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function assignFieldMetadataToTemplate($entity) {
     $fields = civicrm_api3($entity, 'getfields', ['action' => 'get']);
diff --git a/civicrm/CRM/Core/Payment.php b/civicrm/CRM/Core/Payment.php
index 34d6363005ad1457f393bd67416146fb96241bca..2280a1699f268d8f519b72482520a1f8d88f2c7a 100644
--- a/civicrm/CRM/Core/Payment.php
+++ b/civicrm/CRM/Core/Payment.php
@@ -677,7 +677,7 @@ abstract class CRM_Core_Payment {
    * @return array
    *   Array of payment fields appropriate to the payment processor.
    *
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public function getPaymentFormFields() {
     if ($this->_paymentProcessor['billing_mode'] == 4) {
@@ -752,7 +752,7 @@ abstract class CRM_Core_Payment {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getAllFields() {
     $paymentFields = array_intersect_key($this->getPaymentFormFieldsMetadata(), array_flip($this->getPaymentFormFields()));
diff --git a/civicrm/CRM/Core/Payment/AuthorizeNet.php b/civicrm/CRM/Core/Payment/AuthorizeNet.php
index ed28adc948c362b751b652d0e6efd59e02f4eeb3..2b280339053ab803694fd21113e6f444fd4e40ba 100644
--- a/civicrm/CRM/Core/Payment/AuthorizeNet.php
+++ b/civicrm/CRM/Core/Payment/AuthorizeNet.php
@@ -162,7 +162,7 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment {
 
     foreach ($authorizeNetFields as $field => $value) {
       // CRM-7419, since double quote is used as enclosure while doing csv parsing
-      $value = ($field == 'x_description') ? str_replace('"', "'", $value) : $value;
+      $value = ($field === 'x_description') ? str_replace('"', "'", $value) : $value;
       $postFields[] = $field . '=' . urlencode($value);
     }
 
@@ -181,9 +181,6 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment {
 
     $response_fields = $this->explode_csv($response);
 
-    // fetch available contribution statuses
-    $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
-
     $result = [];
     // check for application errors
     // TODO:
@@ -363,7 +360,7 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment {
     $fields['x_currency_code'] = $this->_getParam('currencyID');
     $fields['x_description'] = $this->_getParam('description');
     $fields['x_cust_id'] = $this->_getParam('contactID');
-    if ($this->_getParam('paymentType') == 'AIM') {
+    if ($this->_getParam('paymentType') === 'AIM') {
       $fields['x_relay_response'] = 'FALSE';
       // request response in CSV format
       $fields['x_delim_data'] = 'TRUE';
@@ -377,7 +374,7 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment {
       $fields['x_exp_date'] = "$exp_month/$exp_year";
     }
 
-    if ($this->_mode != 'live') {
+    if ($this->_mode !== 'live') {
       $fields['x_test_request'] = 'TRUE';
     }
 
@@ -535,7 +532,7 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment {
    * @return string
    */
   public function accountLoginURL() {
-    return ($this->_mode == 'test') ? 'https://test.authorize.net' : 'https://authorize.net';
+    return ($this->_mode === 'test') ? 'https://test.authorize.net' : 'https://authorize.net';
   }
 
   /**
diff --git a/civicrm/CRM/Core/Payment/AuthorizeNetIPN.php b/civicrm/CRM/Core/Payment/AuthorizeNetIPN.php
index 79b0585618da4a9ecd48c2b0885b43816b155fab..f3f050e9f45c4b1fa8f2bb210376be46488b4438 100644
--- a/civicrm/CRM/Core/Payment/AuthorizeNetIPN.php
+++ b/civicrm/CRM/Core/Payment/AuthorizeNetIPN.php
@@ -36,8 +36,7 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
    *
    * @return bool|void
    *
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function main() {
     try {
@@ -109,7 +108,6 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
    *
    * @return bool
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function recur($input, $recur, $contribution, $first) {
 
@@ -300,9 +298,7 @@ INNER JOIN civicrm_contribution co ON co.contribution_recur_id = cr.id
    *
    * @return int
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function getPaymentProcessorID(): int {
     // Attempt to get payment processor ID from URL
diff --git a/civicrm/CRM/Core/Payment/BaseIPN.php b/civicrm/CRM/Core/Payment/BaseIPN.php
index b21f4fa5190f99af1caf7c594a13ef24bb1d9256..09cf8562376f8d2e796a9c21b1fa6cd8d5afd77a 100644
--- a/civicrm/CRM/Core/Payment/BaseIPN.php
+++ b/civicrm/CRM/Core/Payment/BaseIPN.php
@@ -72,7 +72,7 @@ class CRM_Core_Payment_BaseIPN {
    * @deprecated use the api.
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    */
   public function failed($objects) {
     CRM_Core_Error::deprecatedFunctionWarning('use the api');
@@ -141,7 +141,7 @@ class CRM_Core_Payment_BaseIPN {
    * @param array $objects
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    */
   public function cancelled($objects) {
     CRM_Core_Error::deprecatedFunctionWarning('Use Contribution create api to cancel the contribution');
@@ -221,7 +221,7 @@ class CRM_Core_Payment_BaseIPN {
    *
    * @param $participantID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function cancelParticipant($participantID) {
     // @fixme https://lab.civicrm.org/dev/core/issues/927 Cancelling membership etc is not desirable for all use-cases and we should be able to disable it
@@ -303,7 +303,7 @@ class CRM_Core_Payment_BaseIPN {
    *        // @todo check if it is a repeat transaction & call repeattransaction instead.
    *        civicrm_api3('contribution', 'completetransaction', array('id' => $this->transaction_id));
    *      }
-   *     catch (CiviCRM_API3_Exception $e) {
+   *     catch (CRM_Core_Exception $e) {
    *     if (!stristr($e->getMessage(), 'Contribution already completed')) {
    *       $this->handleError('error', $this->transaction_id  . $e->getMessage(), 'ipn_completion', 9000, 'An error may
    *         have occurred. Please check your receipt is correct');
@@ -319,7 +319,6 @@ class CRM_Core_Payment_BaseIPN {
    * @param array $objects
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function completeTransaction($input, $ids, $objects) {
     CRM_Core_Error::deprecatedFunctionWarning('Use Payment.create api');
@@ -359,7 +358,7 @@ class CRM_Core_Payment_BaseIPN {
    *   Related object IDs.
    * @param array $objects
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function sendMail($input, $ids, $objects) {
     CRM_Core_Error::deprecatedFunctionWarning('this should be done via completetransaction api');
diff --git a/civicrm/CRM/Core/Payment/PayPalIPN.php b/civicrm/CRM/Core/Payment/PayPalIPN.php
index fc0b5f7bc1af9f13261ac42a8b9a06dbdf5a9410..6dd2acae1b084dc18045b6972195f9e2349022dd 100644
--- a/civicrm/CRM/Core/Payment/PayPalIPN.php
+++ b/civicrm/CRM/Core/Payment/PayPalIPN.php
@@ -67,7 +67,6 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
    * @return void
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function recur($input, $recur, $contribution, $first) {
 
@@ -169,7 +168,6 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
    *
    * @return void
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function single($input, $contribution, $recur = FALSE) {
 
@@ -205,8 +203,7 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
   /**
    * Main function.
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function main() {
@@ -332,7 +329,6 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
    *
    * @return int
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function getPayPalPaymentProcessorID(array $input, ?int $contributionRecurID): int {
     // First we try and retrieve from POST params
diff --git a/civicrm/CRM/Core/Payment/PayPalImpl.php b/civicrm/CRM/Core/Payment/PayPalImpl.php
index 1420b32600feb5b91af97cc76a28d3c949af4c60..acc2fe3aeb7512e1892cb7e9c8a8d22524e73001 100644
--- a/civicrm/CRM/Core/Payment/PayPalImpl.php
+++ b/civicrm/CRM/Core/Payment/PayPalImpl.php
@@ -773,7 +773,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
    * Process incoming notification.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function handlePaymentNotification() {
     $params = array_merge($_GET, $_REQUEST);
@@ -1018,10 +1017,11 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
         throw new CRM_Core_Exception(ts('Recurring contribution, but no database id'));
       }
 
+      // See https://developer.paypal.com/api/nvp-soap/paypal-payments-standard/integration-guide/Appx-websitestandard-htmlvariables/#link-recurringpaymentvariables
       $paypalParams += [
         'cmd' => '_xclick-subscriptions',
         'a3' => $this->getAmount($params),
-        'p3' => $params['frequency_interval'],
+        'p3' => $params['frequency_interval'] ?? 1,
         't3' => ucfirst(substr($params['frequency_unit'], 0, 1)),
         'src' => 1,
         'sra' => 1,
diff --git a/civicrm/CRM/Core/Payment/PayPalProIPN.php b/civicrm/CRM/Core/Payment/PayPalProIPN.php
index e78b4bdbad7bdb44e3a7cb682da38e96f6cb7faf..4dc98b5c31585e46259c502cdfd7397bba850247 100644
--- a/civicrm/CRM/Core/Payment/PayPalProIPN.php
+++ b/civicrm/CRM/Core/Payment/PayPalProIPN.php
@@ -222,9 +222,7 @@ class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
    *
    * @param array $input
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function recur(array $input): void {
@@ -339,9 +337,7 @@ class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
    * @param array $input
    *
    * @return void
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function single(array $input): void {
 
@@ -510,9 +506,7 @@ class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
    * but let's assume knowledge on invoice id & schedule is enough for now esp
    * for donations only contribute is handled
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function handlePaymentExpress(): void {
     $input = ['invoice' => $this->getValue('i', FALSE)];
diff --git a/civicrm/CRM/Core/Permission.php b/civicrm/CRM/Core/Permission.php
index 3e5aef485c29792c1817c0ffc15a7bde9c36db22..d3d6c96052719c5bc8d93dfe602dbf0485109eef 100644
--- a/civicrm/CRM/Core/Permission.php
+++ b/civicrm/CRM/Core/Permission.php
@@ -1235,6 +1235,7 @@ class CRM_Core_Permission {
     $permissions['job'] = [
       'process_batch_merge' => ['merge duplicate contacts'],
     ];
+    $permissions['job_log'] = ['default' => 'administer CiviCRM system'];
     $permissions['rule_group']['get'] = [['merge duplicate contacts', 'administer CiviCRM']];
     // Loc block is only used for events
     $permissions['loc_block'] = $permissions['event'];
diff --git a/civicrm/CRM/Core/Resources.php b/civicrm/CRM/Core/Resources.php
index 88a8d64a0ecc9f5fbe3a9bd0e6d716117337f63f..27c13416ca2f1b1112920a8925595b71426ba29f 100644
--- a/civicrm/CRM/Core/Resources.php
+++ b/civicrm/CRM/Core/Resources.php
@@ -504,7 +504,7 @@ class CRM_Core_Resources implements CRM_Core_Resources_CollectionAdderInterface
 
     foreach (CRM_Core_DAO_AllCoreTables::daoToClass() as $entity => $daoName) {
       // Skip DAOs of disabled components
-      if (defined("$daoName::COMPONENT") && !CRM_Core_Component::isEnabled($daoName::COMPONENT)) {
+      if (!$daoName::isComponentEnabled()) {
         continue;
       }
       $baoName = str_replace('_DAO_', '_BAO_', $daoName);
diff --git a/civicrm/CRM/Core/SelectValues.php b/civicrm/CRM/Core/SelectValues.php
index e5a837f9340075bc13d84a998ebddf5ce9800ea3..5490d0562a69c7eda3a0b628713e95c86b37a56b 100644
--- a/civicrm/CRM/Core/SelectValues.php
+++ b/civicrm/CRM/Core/SelectValues.php
@@ -1094,7 +1094,7 @@ class CRM_Core_SelectValues {
    * Dropdown options for quicksearch in the menu
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function quicksearchOptions() {
     $includeEmail = civicrm_api3('setting', 'getvalue', ['name' => 'includeEmailInName', 'group' => 'Search Preferences']);
diff --git a/civicrm/CRM/Core/Session.php b/civicrm/CRM/Core/Session.php
index 57939665f424113bdca304c9484f20885b2c403b..f1edba894758545daf0f0f4441c1ab8b1e2e7b87 100644
--- a/civicrm/CRM/Core/Session.php
+++ b/civicrm/CRM/Core/Session.php
@@ -563,7 +563,7 @@ class CRM_Core_Session {
    *
    * @return string
    *
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public function getLoggedInContactDisplayName() {
     $userContactID = CRM_Core_Session::getLoggedInContactID();
diff --git a/civicrm/CRM/Custom/Import/Parser/Api.php b/civicrm/CRM/Custom/Import/Parser/Api.php
index 1c1ec51efb66c4786a246a1207bd336c139198eb..721113fc2eec06595314907f43b5ed0fc0ba02ff 100644
--- a/civicrm/CRM/Custom/Import/Parser/Api.php
+++ b/civicrm/CRM/Custom/Import/Parser/Api.php
@@ -67,7 +67,7 @@ class CRM_Custom_Import_Parser_Api extends CRM_Import_Parser {
       civicrm_api3('custom_value', 'create', $params);
       $this->setImportStatus($rowNumber, 'IMPORTED', '', $formatted['id']);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $this->setImportStatus($rowNumber, 'ERROR', '', $e->getMessage());
     }
   }
diff --git a/civicrm/CRM/Dedupe/BAO/DedupeRule.php b/civicrm/CRM/Dedupe/BAO/DedupeRule.php
index ab12b8ffd2293020692ad9ef757e0aa909caaacb..368a35b50773bb9898e81d43b6016a83f1e8770c 100644
--- a/civicrm/CRM/Dedupe/BAO/DedupeRule.php
+++ b/civicrm/CRM/Dedupe/BAO/DedupeRule.php
@@ -42,7 +42,6 @@ class CRM_Dedupe_BAO_DedupeRule extends CRM_Dedupe_DAO_DedupeRule {
    *   or NULL if params is present and doesn't have and for a field.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function sql() {
     if ($this->params &&
@@ -228,7 +227,7 @@ class CRM_Dedupe_BAO_DedupeRule extends CRM_Dedupe_DAO_DedupeRule {
    * @param string $fieldName
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldType($fieldName) {
     $entity = CRM_Core_DAO_AllCoreTables::getEntityNameForTable($this->rule_table);
diff --git a/civicrm/CRM/Dedupe/MergeHandler.php b/civicrm/CRM/Dedupe/MergeHandler.php
index b6a58b886a70e0fb1ec5883e832819fb0ede7e5a..79c296fdccb6050ee011d02177b6f0c9425828cb 100644
--- a/civicrm/CRM/Dedupe/MergeHandler.php
+++ b/civicrm/CRM/Dedupe/MergeHandler.php
@@ -377,7 +377,6 @@ class CRM_Dedupe_MergeHandler {
    * The use of the new hook is tested, including the fact it is called before contributions are merged, as this
    * is likely to be significant data in merge hooks.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function mergeLocations(): void {
diff --git a/civicrm/CRM/Dedupe/Merger.php b/civicrm/CRM/Dedupe/Merger.php
index 028e13cde8b8407b3527b9d1cc5d449ae818bbd1..9dfec97e9fad11cb06f5f8652f41c8b38a99e315 100644
--- a/civicrm/CRM/Dedupe/Merger.php
+++ b/civicrm/CRM/Dedupe/Merger.php
@@ -24,7 +24,7 @@ class CRM_Dedupe_Merger {
    * be loaded dynamically on the merge form instead
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function relTables() {
 
@@ -178,7 +178,7 @@ class CRM_Dedupe_Merger {
    * @param int $cid
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getActiveRelTables($cid) {
     $cid = (int) $cid;
@@ -283,7 +283,7 @@ class CRM_Dedupe_Merger {
    *   'relTables' or 'cidRefs'.
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @see CRM-13836
    */
   public static function getMultiValueCustomSets($request) {
@@ -459,7 +459,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param int $otherID
    * @param array $tables
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function removeContactBelongings($otherID, $tables) {
     // CRM-20421: Removing Inherited memberships when memberships of parent are not migrated to new contact.
@@ -490,8 +490,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param array $tables
    * @param array $tableOperations
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function moveContactBelongings($mergeHandler, $tables, $tableOperations) {
@@ -625,7 +624,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *
    * @param array $cidRefs
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected static function filterRowBasedCustomDataFromCustomTables(array &$cidRefs) {
@@ -680,7 +679,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param array $params
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected static function updateContact(int $contactID, $params): void {
@@ -1105,8 +1103,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @return array|bool
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public static function batchMerge($rgid, $gid = NULL, $mode = 'safe', $batchLimit = 1, $isSelected = 2, $criteria = [], $checkPermissions = TRUE, $reloadCacheIfEmpty = NULL, $searchLimit = 0) {
     $redirectForPerformance = $batchLimit > 1;
@@ -1169,7 +1165,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param string $cacheKeyString
    * @param array $result
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function updateMergeStats($cacheKeyString, $result = []) {
     // gather latest stats
@@ -1221,7 +1217,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @return array
    *   Array of how many were merged and how many were skipped.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getMergeStats($cacheKeyString) {
     $stats = civicrm_api3('Dedupe', 'get', ['cachekey' => "{$cacheKeyString}_stats", 'sequential' => 1])['values'];
@@ -1276,9 +1272,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *
    * @return array|bool
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function merge($dupePairs = [], $cacheParams = [], $mode = 'safe',
                                $redirectForPerformance = FALSE, $checkPermissions = TRUE
@@ -1354,8 +1348,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @return bool
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public static function skipMerge($mainId, $otherId, &$migrationInfo, $mode = 'safe', &$conflicts = []) {
 
@@ -1513,7 +1505,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *     though the form had been submitted with those options.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getRowsElementsAndInfo($mainId, $otherId, $checkPermissions = TRUE) {
     $qfZeroBug = 'e8cddb72-a257-11dc-b9cc-0016d3330ee9';
@@ -1699,9 +1690,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *
    * @return bool
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function moveAllBelongings($mainId, $otherId, $migrationInfo, $checkPermissions = TRUE) {
@@ -1915,7 +1904,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param int $contactID
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function addMembershipToRelatedContacts($contactID) {
     $dao = new CRM_Member_DAO_Membership();
@@ -1949,7 +1937,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param int $mainId
    * @param int $otherId
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function createMergeActivities($mainId, $otherId) {
     $params = [
@@ -2007,7 +1995,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *   Array of matches meeting the criteria.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getDuplicatePairs($rule_group_id, $group_id, $reloadCacheIfEmpty, $batchLimit, $isSelected, $includeConflicts = TRUE, $criteria = [], $checkPermissions = TRUE, $searchLimit = 0, $isForceNewSearch = 0) {
     $dupePairs = $isForceNewSearch ? [] : self::getCachedDuplicateMatches($rule_group_id, $group_id, $batchLimit, $isSelected, $includeConflicts, $criteria, $checkPermissions, $searchLimit);
@@ -2120,10 +2107,9 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param string $cacheKeyString
    *
    * @return bool|array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \CRM_Core_Exception_ResourceConflictException
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected static function dedupePair(int $mainId, int $otherId, $mode = 'safe', $checkPermissions = TRUE, $cacheKeyString = NULL) {
@@ -2349,7 +2335,6 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @return array
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function getConflicts(array &$migrationInfo, int $mainId, int $otherId, string $mode): array {
     $conflicts = [];
@@ -2631,7 +2616,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function buildLocationBlockForContact($cid, $blockInfo, $blockName): array {
     $searchParams = [
@@ -2733,7 +2718,7 @@ INNER JOIN  civicrm_membership membership2 ON membership1.membership_type_id = m
    * @param array $migrationInfo
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   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
diff --git a/civicrm/CRM/Event/BAO/Event.php b/civicrm/CRM/Event/BAO/Event.php
index 0a9e17051414e141ff2ddf3797890f529dadaa56..dfed7ff4b863212906453a3a0769bff271ed496d 100644
--- a/civicrm/CRM/Event/BAO/Event.php
+++ b/civicrm/CRM/Event/BAO/Event.php
@@ -327,7 +327,7 @@ WHERE  ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0 )";
    * @return array
    *   Array of event summary values
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getEventSummary() {
     $eventSummary = $eventIds = [];
@@ -1064,7 +1064,7 @@ WHERE civicrm_event.is_active = 1
    * @param bool $returnMessageText
    *
    * @return array|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function sendMail($contactID, $values, $participantId, $isTest = FALSE, $returnMessageText = FALSE) {
 
@@ -1470,8 +1470,6 @@ WHERE civicrm_event.is_active = 1
    * @param array $profileFields
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function displayProfile(&$params, $gid, &$groupTitle, &$values, &$profileFields = []) {
     if ($gid) {
@@ -2051,7 +2049,7 @@ WHERE  ce.loc_block_id = $locBlockId";
    *
    * @return bool|array
    *   Whether the user has permission for this event (or if eventId=NULL an array of permissions)
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function checkPermission(int $eventId, $permissionType = CRM_Core_Permission::VIEW) {
     switch ($permissionType) {
@@ -2121,7 +2119,7 @@ WHERE  ce.loc_block_id = $locBlockId";
    * @param int $eventId
    *
    * @return array $allEvents, $createdEvents
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function checkPermissionGetInfo($eventId = NULL) {
     $params = [
@@ -2154,7 +2152,7 @@ WHERE  ce.loc_block_id = $locBlockId";
    *
    * @return array
    *   Array of events with permissions (array_keys=permissions)
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getAllPermissions() {
     if (!isset(Civi::$statics[__CLASS__]['permissions'])) {
diff --git a/civicrm/CRM/Event/BAO/Participant.php b/civicrm/CRM/Event/BAO/Participant.php
index 96daf54a23b48779932409c8614ca979c9138221..e67401c82abbb5d81e1d4de5c9f10844eda2599f 100644
--- a/civicrm/CRM/Event/BAO/Participant.php
+++ b/civicrm/CRM/Event/BAO/Participant.php
@@ -959,7 +959,7 @@ WHERE  civicrm_participant.id = {$participantId}
    * Get the ID of the default (first) participant role
    *
    * @return int
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getDefaultRoleID() {
     return (int) civicrm_api3('OptionValue', 'getvalue', [
@@ -1110,7 +1110,7 @@ WHERE cpf.price_set_id = %1 AND cpfv.label LIKE %2";
         }
         return TRUE;
       }
-      catch (CiviCRM_API3_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         throw new CRM_Core_Exception('Failed to update additional participant status in database');
       }
     }
diff --git a/civicrm/CRM/Event/BAO/Query.php b/civicrm/CRM/Event/BAO/Query.php
index 4e53555e3a5016a66366afa90b917a64740cdbbe..4b5e7c18f1645b489a324abf54d6ca73bb871e5c 100644
--- a/civicrm/CRM/Event/BAO/Query.php
+++ b/civicrm/CRM/Event/BAO/Query.php
@@ -568,7 +568,7 @@ class CRM_Event_BAO_Query extends CRM_Core_BAO_Query {
   /**
    * Get the metadata for fields to be included on the grant search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
@@ -587,7 +587,6 @@ class CRM_Event_BAO_Query extends CRM_Core_BAO_Query {
    *
    * @param \CRM_Event_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function buildSearchForm(&$form) {
diff --git a/civicrm/CRM/Event/DAO/Participant.php b/civicrm/CRM/Event/DAO/Participant.php
index aad57f4f226e4401b3e99f09e6f0510c4de62f07..d211c9dac34fa574364f7f584eee049cf6e7b0d5 100644
--- a/civicrm/CRM/Event/DAO/Participant.php
+++ b/civicrm/CRM/Event/DAO/Participant.php
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/Event/Participant.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:ebc70049a0ce4ebc8b7abce72db42fbb)
+ * (GenCodeChecksum:960cee02820bf56c6680756220449e6a)
  */
 
 /**
@@ -309,6 +309,7 @@ class CRM_Event_DAO_Participant extends CRM_Core_DAO {
           'localizable' => 0,
           'FKClassName' => 'CRM_Contact_DAO_Contact',
           'html' => [
+            'type' => 'EntityRef',
             'label' => ts("Contact"),
           ],
           'add' => '1.7',
@@ -329,6 +330,7 @@ class CRM_Event_DAO_Participant extends CRM_Core_DAO {
           'localizable' => 0,
           'FKClassName' => 'CRM_Event_DAO_Event',
           'html' => [
+            'type' => 'EntityRef',
             'label' => ts("Event"),
           ],
           'add' => '1.7',
diff --git a/civicrm/CRM/Event/Form/ManageEvent/Delete.php b/civicrm/CRM/Event/Form/ManageEvent/Delete.php
index f6a5e7207b60319fd0b36b4399c7ba930641559a..6260b2639ab41896f94a4bdc513081d51db3ab4f 100644
--- a/civicrm/CRM/Event/Form/ManageEvent/Delete.php
+++ b/civicrm/CRM/Event/Form/ManageEvent/Delete.php
@@ -30,7 +30,6 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent {
   /**
    * Set variables up before form is built.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function preProcess() {
diff --git a/civicrm/CRM/Event/Form/Participant.php b/civicrm/CRM/Event/Form/Participant.php
index a81f025368e24e3a0c3c90546987d5c774ba838a..7fe919029e2aa2af17b6bb3c41c240750e39ba62 100644
--- a/civicrm/CRM/Event/Form/Participant.php
+++ b/civicrm/CRM/Event/Form/Participant.php
@@ -265,7 +265,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    * Set variables up before form is built.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     parent::preProcess();
@@ -580,7 +579,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    *
    * @return void
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
 
@@ -972,7 +970,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    *
    * @return string
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function submit($params) {
     if ($this->_mode && !$this->_isPaidEvent) {
@@ -1782,7 +1779,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function preparePaidEventProcessing($params): array {
     $participantStatus = CRM_Event_PseudoConstant::participantStatus();
@@ -1938,7 +1935,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    * @return \CRM_Contribute_BAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function processContribution(
     &$form, $params, $result, $contactID,
@@ -2040,7 +2036,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    *
    * @return \CRM_Event_BAO_Participant
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function addParticipant(&$form, $params, $contactID) {
     $transaction = new CRM_Core_Transaction();
@@ -2124,7 +2119,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    * @param string $fieldName
    *
    * @return mixed
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getEventValue(string $fieldName) {
     if (!isset($this->_event)) {
@@ -2139,7 +2134,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    * @param string $fieldName
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getParticipantValue($fieldName) {
     if (!$this->participantRecord) {
@@ -2162,7 +2157,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
    *
    * @return string
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRevenueRecognitionDate() {
     if (Civi::settings()->get('deferred_revenue_enabled')) {
diff --git a/civicrm/CRM/Event/Form/ParticipantFeeSelection.php b/civicrm/CRM/Event/Form/ParticipantFeeSelection.php
index 51dc2e32d54a3308a3bd4663e0ab4e5824d10958..6160faf18d75c3440af22a4c8b0ef0510a774eb5 100644
--- a/civicrm/CRM/Event/Form/ParticipantFeeSelection.php
+++ b/civicrm/CRM/Event/Form/ParticipantFeeSelection.php
@@ -225,7 +225,6 @@ class CRM_Event_Form_ParticipantFeeSelection extends CRM_Core_Form {
    * Post process form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
diff --git a/civicrm/CRM/Event/Form/Registration.php b/civicrm/CRM/Event/Form/Registration.php
index f2f5e25831dcf451dd347b26d6b0c2e4a2059a2d..9c751106b44399bb2017a3674501f200b506d281 100644
--- a/civicrm/CRM/Event/Form/Registration.php
+++ b/civicrm/CRM/Event/Form/Registration.php
@@ -640,7 +640,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form {
    * @param int $contactID
    * @param \CRM_Contribute_BAO_Contribution $contribution
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function confirmPostProcess($contactID = NULL, $contribution = NULL) {
     // add/update contact information
@@ -733,7 +733,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form {
    * @param int $contactID
    *
    * @return \CRM_Event_BAO_Participant
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function addParticipant(&$form, $contactID) {
     if (empty($form->_params)) {
@@ -1444,7 +1444,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form {
    *   Form values.
    * @param int $contactID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function processRegistration($params, $contactID = NULL) {
     $session = CRM_Core_Session::singleton();
@@ -1565,7 +1565,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form {
    * @param $registerByID
    * @param array $participantCount
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function sendMails($params, $registerByID, array $participantCount) {
     $isTest = FALSE;
diff --git a/civicrm/CRM/Event/Form/Registration/Confirm.php b/civicrm/CRM/Event/Form/Registration/Confirm.php
index c91e89a443d53abeee2625a9957b9552cc93484b..371a2b9242fe9f337fc40b96474cee54d349d5f2 100644
--- a/civicrm/CRM/Event/Form/Registration/Confirm.php
+++ b/civicrm/CRM/Event/Form/Registration/Confirm.php
@@ -365,7 +365,6 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration {
   /**
    * Process the form submission.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public function postProcess() {
@@ -889,7 +888,6 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration {
    * @return \CRM_Contribute_BAO_Contribution
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   private function processContribution(
     $params, $result, $contactID,
diff --git a/civicrm/CRM/Event/Form/Registration/Register.php b/civicrm/CRM/Event/Form/Registration/Register.php
index dac1326ab884ca85590cca8efbe34fdb43bbaf52..8b0b0263498aaca1267f4ae0248e8fd5ae16f7e3 100644
--- a/civicrm/CRM/Event/Form/Registration/Register.php
+++ b/civicrm/CRM/Event/Form/Registration/Register.php
@@ -206,7 +206,6 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration {
    * @return array
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function setDefaultValues() {
     $this->_defaults = [];
diff --git a/civicrm/CRM/Event/Form/Search.php b/civicrm/CRM/Event/Form/Search.php
index 0c2ce4dbf53b0adaeb49ea72987d4f34d26a8dea..7a2c720416284d6cb6878433ef2226161504edb7 100644
--- a/civicrm/CRM/Event/Form/Search.php
+++ b/civicrm/CRM/Event/Form/Search.php
@@ -76,7 +76,6 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search {
    * @return void
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     // SearchFormName is deprecated & to be removed - the replacement is for the task to
@@ -129,7 +128,6 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search {
    * @return void
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -426,7 +424,7 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Participant' => CRM_Event_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Event/Form/SelfSvcTransfer.php b/civicrm/CRM/Event/Form/SelfSvcTransfer.php
index 75ab966ebcbd425c0ac310d2e5d6b7c199100d70..4f22bfe0eaa9164db77318b38b137194e28bfefd 100644
--- a/civicrm/CRM/Event/Form/SelfSvcTransfer.php
+++ b/civicrm/CRM/Event/Form/SelfSvcTransfer.php
@@ -298,7 +298,7 @@ class CRM_Event_Form_SelfSvcTransfer extends CRM_Core_Form {
    * Process transfer - first add the new participant to the event, then cancel
    * source participant - send confirmation email to transferee
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess() {
     //For transfer, process form to allow selection of transferree
@@ -344,9 +344,7 @@ class CRM_Event_Form_SelfSvcTransfer extends CRM_Core_Form {
    *
    * @param CRM_Event_BAO_Participant $participant
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function participantTransfer($participant): void {
     $contactDetails = civicrm_api3('Contact', 'getsingle', ['id' => $participant->contact_id, 'return' => ['display_name', 'email']]);
@@ -465,7 +463,6 @@ class CRM_Event_Form_SelfSvcTransfer extends CRM_Core_Form {
    * @param int $fromParticipantID
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function transferParticipantRegistration($toContactID, $fromParticipantID) {
     $toParticipantValues = \Civi\Api4\Participant::get()
diff --git a/civicrm/CRM/Event/Form/Task.php b/civicrm/CRM/Event/Form/Task.php
index a23da4c6b5312a6c5d9f49dd66792b17464764bd..45c7f882bd3e2fd80ec62e0925eb8c9b3212d47a 100644
--- a/civicrm/CRM/Event/Form/Task.php
+++ b/civicrm/CRM/Event/Form/Task.php
@@ -156,7 +156,7 @@ class CRM_Event_Form_Task extends CRM_Core_Form_Task {
   /**
    * Get the rows form the search, keyed to make the token processor happy.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRows(): array {
     if (empty($this->rows)) {
diff --git a/civicrm/CRM/Event/Form/Task/Batch.php b/civicrm/CRM/Event/Form/Task/Batch.php
index 8e45031d14194034b7ded5d0ccb3cf81312dbb83..1ad9609ef01a0060884195c53c6c9f45d4348328 100644
--- a/civicrm/CRM/Event/Form/Task/Batch.php
+++ b/civicrm/CRM/Event/Form/Task/Batch.php
@@ -261,7 +261,6 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task {
    * @param int $statusId
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function updatePendingOnlineContribution($participantId, $statusId) {
 
@@ -303,7 +302,6 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task {
    * @param array $params
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Exception
    *
    * @deprecated
@@ -381,7 +379,6 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task {
    * @param array $params
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function submit($params) {
     $statusClasses = CRM_Event_PseudoConstant::participantStatusClass();
diff --git a/civicrm/CRM/Event/Import/Parser/Participant.php b/civicrm/CRM/Event/Import/Parser/Participant.php
index 60736612502ac072bf5f495217891f1755728eba..4f4ab4c277297fdb8143d5e1e17fc9796ad93bba 100644
--- a/civicrm/CRM/Event/Import/Parser/Participant.php
+++ b/civicrm/CRM/Event/Import/Parser/Participant.php
@@ -401,7 +401,7 @@ class CRM_Event_Import_Parser_Participant extends CRM_Import_Parser {
    *
    * @return array|bool
    *   <type>
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @deprecated - this is part of the import parser not the API & needs to be
    *   moved on out
    *
diff --git a/civicrm/CRM/Event/Page/ManageEvent.php b/civicrm/CRM/Event/Page/ManageEvent.php
index a39eb17a6a32e0308a1fc11ed1bfe4254360d23f..57a620ec1b90bb297fc99c401045b81cb317ade4 100644
--- a/civicrm/CRM/Event/Page/ManageEvent.php
+++ b/civicrm/CRM/Event/Page/ManageEvent.php
@@ -123,7 +123,7 @@ class CRM_Event_Page_ManageEvent extends CRM_Core_Page {
    *
    * @return array
    *   (reference) of tab links
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function &tabs() {
     // @todo Move to eventcart extension
diff --git a/civicrm/CRM/Event/ParticipantTokens.php b/civicrm/CRM/Event/ParticipantTokens.php
index b29050fcf143fd24f98f5fdfba01af4557788751..8fb62af630ef7e9ac80b82893720200e952e6885 100644
--- a/civicrm/CRM/Event/ParticipantTokens.php
+++ b/civicrm/CRM/Event/ParticipantTokens.php
@@ -61,7 +61,7 @@ class CRM_Event_ParticipantTokens extends CRM_Core_EntityTokens {
 
   /**
    * @inheritDoc
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function evaluateToken(TokenRow $row, $entity, $field, $prefetch = NULL) {
     $this->prefetch = (array) $prefetch;
diff --git a/civicrm/CRM/Event/Tokens.php b/civicrm/CRM/Event/Tokens.php
index 194ae13dbd388510d599b27ce5a9d124c5b65e96..3ac471ad17da9ac61e3fd6b2dae94368e0165e80 100644
--- a/civicrm/CRM/Event/Tokens.php
+++ b/civicrm/CRM/Event/Tokens.php
@@ -88,7 +88,7 @@ class CRM_Event_Tokens extends CRM_Core_EntityTokens {
 
   /**
    * @inheritDoc
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function evaluateToken(TokenRow $row, $entity, $field, $prefetch = NULL) {
     $eventID = $this->getFieldValue($row, 'id');
@@ -108,7 +108,7 @@ class CRM_Event_Tokens extends CRM_Core_EntityTokens {
    *
    * @return array
    *
-   * @throws \API_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    *
    * @internal
    */
diff --git a/civicrm/CRM/Event/WorkflowMessage/EventExamples.php b/civicrm/CRM/Event/WorkflowMessage/EventExamples.php
index 68de53d91deabb0c106e4601f851c2efe0eb13cd..8524413ab0f9231b2cd0bf09dd79e9ed4c80f70a 100644
--- a/civicrm/CRM/Event/WorkflowMessage/EventExamples.php
+++ b/civicrm/CRM/Event/WorkflowMessage/EventExamples.php
@@ -15,7 +15,7 @@ class CRM_Event_WorkflowMessage_EventExamples extends WorkflowMessageExample {
   /**
    * Get the examples this class is able to deliver.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getExamples(): iterable {
     $workflows = ['event_online_receipt', 'event_offline_receipt'];
@@ -39,7 +39,7 @@ class CRM_Event_WorkflowMessage_EventExamples extends WorkflowMessageExample {
    *
    * @param array $example
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function build(array &$example): void {
     $workFlow = WorkflowMessage::get(TRUE)->addWhere('name', '=', $example['workflow'])->execute()->first();
@@ -55,9 +55,7 @@ class CRM_Event_WorkflowMessage_EventExamples extends WorkflowMessageExample {
    * @param \CRM_Event_WorkflowMessage_EventOnlineReceipt|\CRM_Event_WorkflowMessage_EventOfflineReceipt $messageTemplate
    * @param array $example
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   private function addExampleData(GenericWorkflowMessage $messageTemplate, $example): void {
@@ -70,7 +68,7 @@ class CRM_Event_WorkflowMessage_EventExamples extends WorkflowMessageExample {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getPriceSets(): ?array {
     // Permission check defaults to true - likely implicitly OK but may need to be false.
@@ -86,7 +84,7 @@ class CRM_Event_WorkflowMessage_EventExamples extends WorkflowMessageExample {
    * @param bool $isQuickConfig
    *
    * @return array|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getPriceSet(bool $isQuickConfig): ?array {
     $priceSetEntity = PriceSetEntity::get(FALSE)
diff --git a/civicrm/CRM/Export/BAO/ExportProcessor.php b/civicrm/CRM/Export/BAO/ExportProcessor.php
index 263931c27b6ef9665e0013d2df911a754bbcb590..97bdcc708c9a18944c157b3977bdc2b55b7af534 100644
--- a/civicrm/CRM/Export/BAO/ExportProcessor.php
+++ b/civicrm/CRM/Export/BAO/ExportProcessor.php
@@ -1088,7 +1088,6 @@ class CRM_Export_BAO_ExportProcessor {
    *
    * @return string
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function getTransformedFieldValue($field, $iterationDAO, $fieldValue, $paymentDetails) {
 
@@ -1875,7 +1874,6 @@ class CRM_Export_BAO_ExportProcessor {
    * @param int $contactID
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function replaceMergeTokens(int $contactID): array {
diff --git a/civicrm/CRM/Export/Utils.php b/civicrm/CRM/Export/Utils.php
index adfed821b3cc712a0158496e906d6929b6076353..be4258dcba17e2370a3036cc6bf3f9f1d5b79727 100644
--- a/civicrm/CRM/Export/Utils.php
+++ b/civicrm/CRM/Export/Utils.php
@@ -16,7 +16,7 @@ class CRM_Export_Utils {
    *
    * @param $exportMode
    * @return array
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function getExportFields($exportMode) {
     $fieldGroups = CRM_Core_BAO_Mapping::getBasicFields('Export');
diff --git a/civicrm/CRM/Extension/ClassLoader.php b/civicrm/CRM/Extension/ClassLoader.php
index bdd9ce6c68e6e9445a5e8cfc875f432ebae9ec12..9ca81638bff8dd7567cb4213da68e7be7913c77b 100644
--- a/civicrm/CRM/Extension/ClassLoader.php
+++ b/civicrm/CRM/Extension/ClassLoader.php
@@ -164,6 +164,11 @@ class CRM_Extension_ClassLoader {
 
           case 'psr4':
             $loader->addPsr4($mapping['prefix'], $path . '/' . $mapping['path']);
+            if (defined('CIVICRM_TEST')) {
+              if (is_dir($path . '/tests/phpunit/' . $mapping['path'])) {
+                $loader->addPsr4($mapping['prefix'], $path . '/tests/phpunit/' . $mapping['path']);
+              }
+            }
             break;
         }
       }
diff --git a/civicrm/CRM/Financial/BAO/FinancialItem.php b/civicrm/CRM/Financial/BAO/FinancialItem.php
index 13077157750329c48a5b217b85301e50c2a4dd94..506214447cbfc91ad04a73b2f28a68bf5e29d117 100644
--- a/civicrm/CRM/Financial/BAO/FinancialItem.php
+++ b/civicrm/CRM/Financial/BAO/FinancialItem.php
@@ -46,20 +46,19 @@ class CRM_Financial_BAO_FinancialItem extends CRM_Financial_DAO_FinancialItem {
    * @return CRM_Financial_DAO_FinancialItem
    */
   public static function add($lineItem, $contribution, $taxTrxnID = FALSE, $trxnId = NULL) {
-    $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
     $financialItemStatus = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_FinancialItem', 'status_id');
+    $contributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $contribution->contribution_status_id);
     $itemStatus = NULL;
-    if ($contribution->contribution_status_id == array_search('Completed', $contributionStatuses)
-      || $contribution->contribution_status_id == array_search('Pending refund', $contributionStatuses)
-    ) {
+    if ($contributionStatus === 'Completed' || $contributionStatus === 'Pending refund') {
       $itemStatus = array_search('Paid', $financialItemStatus);
     }
-    elseif ($contribution->contribution_status_id == array_search('Pending', $contributionStatuses)
-      || $contribution->contribution_status_id == array_search('In Progress', $contributionStatuses)
+    elseif ($contributionStatus === 'Pending'
+      // In progress is no longer present on new installs unless extensions add it.
+      || $contributionStatus === 'In Progress'
     ) {
       $itemStatus = array_search('Unpaid', $financialItemStatus);
     }
-    elseif ($contribution->contribution_status_id == array_search('Partially paid', $contributionStatuses)) {
+    elseif ($contributionStatus === 'Partially paid') {
       $itemStatus = array_search('Partially paid', $financialItemStatus);
     }
     $params = [
@@ -96,8 +95,7 @@ class CRM_Financial_BAO_FinancialItem extends CRM_Financial_DAO_FinancialItem {
         $trxnId['id'] = $trxn['financialTrxnId'];
       }
     }
-    $financialItem = self::create($params, NULL, $trxnId);
-    return $financialItem;
+    return self::create($params, NULL, $trxnId);
   }
 
   /**
diff --git a/civicrm/CRM/Financial/BAO/FinancialType.php b/civicrm/CRM/Financial/BAO/FinancialType.php
index fa9c0e9ee294dab97535d039d2c2723e58d951c1..03568999892bacf039012a6726251e9e5d4454e9 100644
--- a/civicrm/CRM/Financial/BAO/FinancialType.php
+++ b/civicrm/CRM/Financial/BAO/FinancialType.php
@@ -172,7 +172,7 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType im
    * @return array
    *   all financial type with income account is relationship
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getIncomeFinancialType($checkPermissions = TRUE): array {
     // Realistically tests are the only place where logged in contact can
diff --git a/civicrm/CRM/Financial/BAO/FinancialTypeAccount.php b/civicrm/CRM/Financial/BAO/FinancialTypeAccount.php
index dd3be4a4ef8e695cb188c50edb72e4a256f7242b..a3b8bbfecbf666e6765f3274b4dbd2cbf47f7796 100644
--- a/civicrm/CRM/Financial/BAO/FinancialTypeAccount.php
+++ b/civicrm/CRM/Financial/BAO/FinancialTypeAccount.php
@@ -137,7 +137,7 @@ class CRM_Financial_BAO_FinancialTypeAccount extends CRM_Financial_DAO_EntityFin
    *   Payment instrument value.
    *
    * @return null|int
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getInstrumentFinancialAccount($paymentInstrumentValue) {
     if (!isset(\Civi::$statics[__CLASS__]['instrument_financial_accounts'][$paymentInstrumentValue])) {
diff --git a/civicrm/CRM/Financial/BAO/Order.php b/civicrm/CRM/Financial/BAO/Order.php
index 941f65e9e4dcbde3a23d471803b84ff7ab6f934a..a2ae54e8c38f1bacc672b05a5fbf8e6fd2866957 100644
--- a/civicrm/CRM/Financial/BAO/Order.php
+++ b/civicrm/CRM/Financial/BAO/Order.php
@@ -451,7 +451,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return int
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPriceSetID(): int {
     if (!$this->priceSetID) {
@@ -478,7 +478,7 @@ class CRM_Financial_BAO_Order {
    *
    * @param string $component [membership|contribution]
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @internal use in tested core code only.
    */
   public function setPriceSetToDefault(string $component): void {
@@ -504,7 +504,7 @@ class CRM_Financial_BAO_Order {
    *
    * @param int $eventID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function setPriceSetIDByEventPageID(int $eventID): void {
     $this->setPriceSetIDByEntity('event', $eventID);
@@ -681,7 +681,7 @@ class CRM_Financial_BAO_Order {
    *
    * @param array $input
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function setPriceSelectionFromUnfilteredInput(array $input): void {
     foreach ($input as $fieldName => $value) {
@@ -702,7 +702,7 @@ class CRM_Financial_BAO_Order {
   /**
    * Get the id of the price field to use when just an amount is provided.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    *
    * @return int
    */
@@ -719,7 +719,7 @@ class CRM_Financial_BAO_Order {
   /**
    * Get the id of the price field to use when just an amount is provided.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    *
    * @return int
    */
@@ -738,7 +738,7 @@ class CRM_Financial_BAO_Order {
    *
    * return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getLineItems():array {
     if (empty($this->lineItems)) {
@@ -753,7 +753,7 @@ class CRM_Financial_BAO_Order {
    * This ensures the line items are indexed by
    * price field id - as required by the contribution BAO.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPriceFieldIndexedLineItems(): array {
     $lines = [];
@@ -768,7 +768,7 @@ class CRM_Financial_BAO_Order {
    *
    * return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMembershipLineItems():array {
     $lines = $this->getLineItems();
@@ -789,7 +789,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMembershipTypes(): array {
     $types = [];
@@ -804,7 +804,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getRenewableMembershipTypes(): array {
     $types = [];
@@ -819,7 +819,7 @@ class CRM_Financial_BAO_Order {
   /**
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function calculateLineItems(): array {
     $lineItems = [];
@@ -885,7 +885,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return float
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getTotalTaxAmount() :float {
     $amount = 0.0;
@@ -900,7 +900,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return float
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getTotalAmount() :float {
     $amount = 0.0;
@@ -915,7 +915,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return float
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMembershipTotalAmount() :float {
     $amount = 0.0;
@@ -943,7 +943,7 @@ class CRM_Financial_BAO_Order {
   /**
    * @param $fieldID
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setPriceSetIDFromSelectedField($fieldID): void {
     if (!isset($this->priceSetID)) {
@@ -966,7 +966,7 @@ class CRM_Financial_BAO_Order {
    * @param array $lineItem
    * @param int|string $index
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @internal tested core code usage only.
    * @internal use in tested core code only.
    *
@@ -1124,7 +1124,7 @@ class CRM_Financial_BAO_Order {
    *
    * @return \Civi\Api4\Generic\Result
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getLinesFromTemplateContribution(): array {
     $lines = $this->getLinesForContribution();
@@ -1143,7 +1143,7 @@ class CRM_Financial_BAO_Order {
    *
    * @internal core tested code only.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getLineItemForV3OrderApi(): array {
     $lineItems = [];
@@ -1158,7 +1158,7 @@ class CRM_Financial_BAO_Order {
 
   /**
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function getLinesForContribution(): array {
@@ -1191,7 +1191,7 @@ class CRM_Financial_BAO_Order {
    * @param string $component
    *
    * @return int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getDefaultPriceSetForComponent(string $component): int {
     if (!isset($this->defaultPriceSets[$component])) {
@@ -1208,7 +1208,7 @@ class CRM_Financial_BAO_Order {
    *
    * @param array $lineItem
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function fillDefaultContributionLine(array &$lineItem): void {
     $defaults = [
diff --git a/civicrm/CRM/Financial/BAO/Payment.php b/civicrm/CRM/Financial/BAO/Payment.php
index 17b03cec0fc13ee4c37f409c44e345735f3cb8eb..f3fdfdadc0840474984213dbf813dffb9c09bdd8 100644
--- a/civicrm/CRM/Financial/BAO/Payment.php
+++ b/civicrm/CRM/Financial/BAO/Payment.php
@@ -38,8 +38,6 @@ class CRM_Financial_BAO_Payment {
    * @return \CRM_Financial_DAO_FinancialTrxn
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public static function create(array $params): CRM_Financial_DAO_FinancialTrxn {
     $contribution = civicrm_api3('Contribution', 'getsingle', ['id' => $params['contribution_id']]);
@@ -227,7 +225,7 @@ class CRM_Financial_BAO_Payment {
    * @param array $params
    * @param int $contributionID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function updateRelatedContribution(array $params, int $contributionID): void {
     $contributionDAO = new CRM_Contribute_DAO_Contribution();
@@ -273,7 +271,7 @@ class CRM_Financial_BAO_Payment {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function sendConfirmation($params) {
 
@@ -331,7 +329,7 @@ class CRM_Financial_BAO_Payment {
    *   - event = [.... full event details......]
    *   - contribution = ['id' => x],
    *   - payment = [payment info + payment summary info]
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function loadRelatedEntities($id) {
     $entities = [];
@@ -374,8 +372,7 @@ class CRM_Financial_BAO_Payment {
    * @param int $contributionID
    *
    * @return int
-   * @throws \CiviCRM_API3_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getPaymentContactID($contributionID) {
     $contribution = civicrm_api3('Contribution', 'getsingle', [
@@ -497,7 +494,7 @@ class CRM_Financial_BAO_Payment {
    * @param int $contributionID
    * @param string $status
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function updateContributionStatus(int $contributionID, string $status) {
     civicrm_api3('Contribution', 'create',
@@ -523,7 +520,7 @@ class CRM_Financial_BAO_Payment {
    * @param $params
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function getPayableLineItems($params): array {
     $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($params['contribution_id']);
@@ -573,7 +570,7 @@ class CRM_Financial_BAO_Payment {
    *
    * @return float
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function getAmountOfLineItemPaid($lineItemID) {
     $paid = 0;
@@ -604,7 +601,7 @@ class CRM_Financial_BAO_Payment {
    * @param array $params
    * @param int $trxnID
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function reverseAllocationsFromPreviousPayment($params, $trxnID) {
     // Do a direct reversal of any entity_financial_trxn records being cancelled.
@@ -647,7 +644,7 @@ class CRM_Financial_BAO_Payment {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function getNewFinancialItemID($lineItem, $trxn_date, $contactID, $currency): int {
     $financialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
diff --git a/civicrm/CRM/Financial/BAO/PaymentProcessor.php b/civicrm/CRM/Financial/BAO/PaymentProcessor.php
index 53fad0395968d197a7b9c1364d9a6912f83bdbf8..332002ce24ed35b78a9112183e7e12c259de6894 100644
--- a/civicrm/CRM/Financial/BAO/PaymentProcessor.php
+++ b/civicrm/CRM/Financial/BAO/PaymentProcessor.php
@@ -34,7 +34,6 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces
    * @return CRM_Financial_DAO_PaymentProcessor
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function create(array $params): CRM_Financial_DAO_PaymentProcessor {
     // If we are creating a new PaymentProcessor and have not specified the payment instrument to use, get the default from the Payment Processor Type.
@@ -272,7 +271,7 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces
    * @param bool|null $isActive
    *   Do we only want active processors, only inactive (FALSE) or all processors (NULL)
    *
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    * @return array
    */
   public static function getAllPaymentProcessors($mode = 'all', $reset = FALSE, $isCurrentDomainOnly = TRUE, $isActive = TRUE) {
@@ -374,7 +373,7 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces
    * @return array
    *   available processors
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getPaymentProcessors($capabilities = [], $ids = FALSE) {
     if (is_array($ids)) {
@@ -545,7 +544,7 @@ INNER JOIN civicrm_contribution       con ON ( mp.contribution_id = con.id )
       try {
         $paymentProcessor = civicrm_api3('PaymentProcessor', 'getsingle', ['id' => $ppID]);
       }
-      catch (API_Exception $e) {
+      catch (CRM_Core_Exception $e) {
         // Unable to load the processor because this function uses an unreliable method to derive it.
         // The function looks to load the payment processor ID from the contribution page, which
         // can support multiple processors.
diff --git a/civicrm/CRM/Financial/Form/FinancialType.php b/civicrm/CRM/Financial/Form/FinancialType.php
index 5dc3100dd93c7de908c5ce860e682c80dfa16a1f..9d1c0fdfb664f8a4ee1b4d9409fb691575b25f90 100644
--- a/civicrm/CRM/Financial/Form/FinancialType.php
+++ b/civicrm/CRM/Financial/Form/FinancialType.php
@@ -113,7 +113,7 @@ class CRM_Financial_Form_FinancialType extends CRM_Core_Form {
   /**
    * Process the form submission.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess() {
     if ($this->_action & CRM_Core_Action::DELETE) {
diff --git a/civicrm/CRM/Financial/Form/PaymentEdit.php b/civicrm/CRM/Financial/Form/PaymentEdit.php
index afa6bd745c4b574f795b9387cecc0fefb227039a..9f0cae24370956779a62d304073161d3b920f233 100644
--- a/civicrm/CRM/Financial/Form/PaymentEdit.php
+++ b/civicrm/CRM/Financial/Form/PaymentEdit.php
@@ -161,7 +161,7 @@ class CRM_Financial_Form_PaymentEdit extends CRM_Core_Form {
   /**
    * Process the form submission.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     $params = [
@@ -195,7 +195,7 @@ class CRM_Financial_Form_PaymentEdit extends CRM_Core_Form {
    *
    * @param array $submittedValues
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function submit($submittedValues) {
     // if payment instrument is changed then
@@ -229,7 +229,7 @@ class CRM_Financial_Form_PaymentEdit extends CRM_Core_Form {
    *
    * @param array $params
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testSubmit(array $params): void {
     $this->_id = $params['id'];
diff --git a/civicrm/CRM/Financial/Page/AJAX.php b/civicrm/CRM/Financial/Page/AJAX.php
index 66d65ee1dce36085be508dc21be3badc3d277f35..08d7e33dffc57f617d83087f9989737afa314fef 100644
--- a/civicrm/CRM/Financial/Page/AJAX.php
+++ b/civicrm/CRM/Financial/Page/AJAX.php
@@ -503,7 +503,6 @@ class CRM_Financial_Page_AJAX {
   }
 
   /**
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function getBatchSummary(): void {
@@ -516,7 +515,6 @@ class CRM_Financial_Page_AJAX {
    * @param $batchID
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function makeBatchSummary(int $batchID): array {
diff --git a/civicrm/CRM/Group/Form/Edit.php b/civicrm/CRM/Group/Form/Edit.php
index 9e5f740a93ef370f1f04eec369f694fc22ee474a..735a19d3c64cf9bb7f4574b07b96bb62dc80822d 100644
--- a/civicrm/CRM/Group/Form/Edit.php
+++ b/civicrm/CRM/Group/Form/Edit.php
@@ -90,10 +90,15 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
 
   /**
    * Set up variables to build the form.
+   *
+   * @throws \CRM_Core_Exception
    */
   public function preProcess() {
     $this->addOptionalQuickFormElement('parents');
-    $this->addExpectedSmartyVariable('parent_groups');
+    $this->addExpectedSmartyVariables([
+      'parent_groups',
+      'editSmartGroupURL',
+    ]);
     $this->_id = $this->get('id');
     if ($this->_id) {
       $breadCrumb = array(
@@ -127,12 +132,12 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
         $this->setTitle(ts('Confirm Group Delete'));
       }
       if ($this->_groupValues['is_reserved'] == 1 && !CRM_Core_Permission::check('administer reserved groups')) {
-        CRM_Core_Error::statusBounce(ts("You do not have sufficient permission to delete this reserved group."));
+        CRM_Core_Error::statusBounce(ts('You do not have sufficient permission to delete this reserved group.'));
       }
     }
     else {
       if ($this->_id && $this->_groupValues['is_reserved'] == 1 && !CRM_Core_Permission::check('administer reserved groups')) {
-        CRM_Core_Error::statusBounce(ts("You do not have sufficient permission to change settings for this reserved group."));
+        CRM_Core_Error::statusBounce(ts('You do not have sufficient permission to change settings for this reserved group.'));
       }
       if (isset($this->_id)) {
         $groupValues = array(
@@ -140,18 +145,11 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
           'title' => $this->_title,
           'saved_search_id' => $this->_groupValues['saved_search_id'] ?? '',
         );
-        if (isset($this->_groupValues['saved_search_id'])) {
-          $this->assign('editSmartGroupURL', CRM_Contact_BAO_SavedSearch::getEditSearchUrl($this->_groupValues['saved_search_id']));
-        }
-        if (!empty($this->_groupValues['created_id'])) {
-          $groupValues['created_by'] = CRM_Core_DAO::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues['created_id'], 'sort_name', 'id');
-        }
-
-        if (!empty($this->_groupValues['modified_id'])) {
-          $groupValues['modified_by'] = CRM_Core_DAO::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues['modified_id'], 'sort_name', 'id');
-        }
+        $this->assign('editSmartGroupURL', isset($this->_groupValues['saved_search_id']) ? CRM_Contact_BAO_SavedSearch::getEditSearchUrl($this->_groupValues['saved_search_id']) : NULL);
+        $groupValues['created_by'] = empty($this->_groupValues['created_id']) ? NULL : CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_groupValues['created_id'], 'sort_name', 'id');
+        $groupValues['modified_by'] = empty($this->_groupValues['modified_id']) ? NULL : CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_groupValues['modified_id'], 'sort_name', 'id');
 
-        $this->assign_by_ref('group', $groupValues);
+        $this->assign('group', $groupValues);
 
         $this->setTitle(ts('Group Settings: %1', array(1 => $this->_title)));
       }
@@ -190,12 +188,7 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
       $defaults['is_active'] = 1;
     }
 
-    if (!((CRM_Core_Permission::check('access CiviMail')) ||
-      (CRM_Mailing_Info::workflowEnabled() &&
-        CRM_Core_Permission::check('create mailings')
-      )
-    )
-    ) {
+    if (!$this->isPermitMailingGroupAccess()) {
       $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
       if ($defaults['group_type'][$groupTypes['Mailing List']] == 1) {
         $this->assign('freezeMailingList', $groupTypes['Mailing List']);
@@ -471,4 +464,13 @@ WHERE  title = %1
     }
   }
 
+  /**
+   * Does the user have permissions allowing them to create groups with option_type set to mailing?
+   *
+   * @return bool
+   */
+  protected function isPermitMailingGroupAccess(): bool {
+    return CRM_Core_Permission::check('access CiviMail') || (CRM_Mailing_Info::workflowEnabled() && CRM_Core_Permission::check('create mailings'));
+  }
+
 }
diff --git a/civicrm/CRM/Import/DataSource.php b/civicrm/CRM/Import/DataSource.php
index 236e65afc02a21d88f2a501fb111802daf6842ba..cf0d1dd0b61a4485c505407fac9f05cf62f0de0d 100644
--- a/civicrm/CRM/Import/DataSource.php
+++ b/civicrm/CRM/Import/DataSource.php
@@ -200,7 +200,7 @@ abstract class CRM_Import_DataSource {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getUserJob(): array {
     if (!$this->userJob) {
@@ -219,7 +219,7 @@ abstract class CRM_Import_DataSource {
    *
    * @return mixed
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getSubmittedValue(string $valueName) {
     return $this->getUserJob()['metadata']['submitted_values'][$valueName];
@@ -235,7 +235,6 @@ abstract class CRM_Import_DataSource {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function getRows(bool $nonAssociative = TRUE): array {
@@ -252,7 +251,6 @@ abstract class CRM_Import_DataSource {
    * Get the next row.
    *
    * @return array|null
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function getRow(): ?array {
@@ -298,7 +296,7 @@ abstract class CRM_Import_DataSource {
    * that can see what fields they are mapping.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getColumnHeaders(): array {
     return $this->getUserJob()['metadata']['DataSource']['column_headers'];
@@ -308,7 +306,6 @@ abstract class CRM_Import_DataSource {
    * Get the field names of the fields holding data in the import tracking table.
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function getDataFieldNames(): array {
@@ -332,7 +329,7 @@ abstract class CRM_Import_DataSource {
    * that can see what fields they are mapping.
    *
    * @return int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getNumberOfColumns(): int {
     return $this->getUserJob()['metadata']['DataSource']['number_of_columns'];
@@ -359,7 +356,7 @@ abstract class CRM_Import_DataSource {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getDataSourceMetadata(): array {
     if (!$this->dataSourceMetadata && $this->getUserJobID()) {
@@ -374,7 +371,6 @@ abstract class CRM_Import_DataSource {
    *
    * @return string|null
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getTableName(): ?string {
@@ -421,7 +417,6 @@ abstract class CRM_Import_DataSource {
   /**
    * Initialize the datasource, based on the submitted values stored in the user job.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function initialize(): void {
@@ -442,7 +437,7 @@ abstract class CRM_Import_DataSource {
    * @param string $key
    * @param array $data
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function updateUserJobMetadata(string $key, array $data): void {
@@ -478,7 +473,6 @@ abstract class CRM_Import_DataSource {
    *   then it might decided not to drop the table and would want to retain
    *   some metadata.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    *
    * @noinspection PhpUnusedParameterInspection
@@ -508,7 +502,7 @@ abstract class CRM_Import_DataSource {
    *   administrative fields, relying on this convention.
    * 3) we have the capitalisation on _statusMsg - @param string $tableName
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @todo change to _status_message
    */
   protected function addTrackingFieldsToTable(string $tableName): void {
@@ -528,7 +522,7 @@ abstract class CRM_Import_DataSource {
   /**
    * Get any additional import specific tracking fields.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getAdditionalTrackingFields(): string {
     $sql = '';
@@ -544,7 +538,7 @@ abstract class CRM_Import_DataSource {
    *
    * @return CRM_Import_Parser
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getParser() {
     $parserClass = '';
@@ -566,7 +560,6 @@ abstract class CRM_Import_DataSource {
    * @return bool
    *   True if no rows remain to be imported.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function isCompleted(): bool {
@@ -584,7 +577,6 @@ abstract class CRM_Import_DataSource {
    * @param array $additionalFields
    *   Optional array e.g ['related_contact' => 4]
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function updateStatus(int $id, string $status, string $message, ? int $entityID = NULL, array $additionalFields = []): void {
@@ -605,7 +597,6 @@ abstract class CRM_Import_DataSource {
 
   /**
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   private function instantiateQueryObject(): void {
diff --git a/civicrm/CRM/Import/DataSource/CSV.php b/civicrm/CRM/Import/DataSource/CSV.php
index 2c8a19b3c42df683e75740f813e2753d28781cdc..17a57912dd29985317ca1008bef68f2f1b335c10 100644
--- a/civicrm/CRM/Import/DataSource/CSV.php
+++ b/civicrm/CRM/Import/DataSource/CSV.php
@@ -70,7 +70,6 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
   /**
    * Initialize the datasource, based on the submitted values stored in the user job.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function initialize(): void {
diff --git a/civicrm/CRM/Import/DataSource/SQL.php b/civicrm/CRM/Import/DataSource/SQL.php
index d552d45103d9dc7a66d049729ad0ee2a8550a441..ad6ac14ea095b091336fb28a0cc025f84e4a5632 100644
--- a/civicrm/CRM/Import/DataSource/SQL.php
+++ b/civicrm/CRM/Import/DataSource/SQL.php
@@ -76,7 +76,6 @@ class CRM_Import_DataSource_SQL extends CRM_Import_DataSource {
   /**
    * Initialize the datasource, based on the submitted values stored in the user job.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function initialize(): void {
diff --git a/civicrm/CRM/Import/Form/DataSource.php b/civicrm/CRM/Import/Form/DataSource.php
index 7376d96340e0596666ff8a61de55d52cfcadd971..7e04646bdcbcd803d4f8688d25839ecd4e5182b8 100644
--- a/civicrm/CRM/Import/Form/DataSource.php
+++ b/civicrm/CRM/Import/Form/DataSource.php
@@ -173,7 +173,6 @@ abstract class CRM_Import_Form_DataSource extends CRM_Import_Forms {
   /**
    * Process the datasource submission - setting up the job and data source.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function processDatasource(): void {
@@ -192,7 +191,6 @@ abstract class CRM_Import_Form_DataSource extends CRM_Import_Forms {
    *
    * This gives the datasource a chance to do any table creation etc.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   private function instantiateDataSource(): void {
diff --git a/civicrm/CRM/Import/Form/DataSourceConfig.php b/civicrm/CRM/Import/Form/DataSourceConfig.php
index e5ddfc870bb85ce1db7069b3648bc0539c36f585..697de6c997245279b0c849687c7c60c57a0b76cf 100644
--- a/civicrm/CRM/Import/Form/DataSourceConfig.php
+++ b/civicrm/CRM/Import/Form/DataSourceConfig.php
@@ -48,7 +48,6 @@ class CRM_Import_Form_DataSourceConfig extends CRM_Import_Forms {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function setDefaultValues() {
@@ -70,7 +69,7 @@ class CRM_Import_Form_DataSourceConfig extends CRM_Import_Forms {
    * @param string $fieldName
    *
    * @return mixed|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getSubmittedValue(string $fieldName) {
     $userJob = $this->getUserJob();
diff --git a/civicrm/CRM/Import/Form/MapField.php b/civicrm/CRM/Import/Form/MapField.php
index 5f57169ee74a3412701b9c71388f2ff056ef1dea..476d632ed9ad7b88b58995f7e24fee7319d9e640 100644
--- a/civicrm/CRM/Import/Form/MapField.php
+++ b/civicrm/CRM/Import/Form/MapField.php
@@ -187,7 +187,7 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms {
    * @param int|null $savedMappingID
    *
    * @deprecated - working to remove this in favour of `addSavedMappingFields`
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function buildSavedMappingFields($savedMappingID) {
     //to save the current mappings
@@ -266,7 +266,6 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms {
    * @param int $columnNumber
    * @param bool $isUpdate
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function saveMappingField(int $mappingID, int $columnNumber, bool $isUpdate = FALSE): void {
@@ -293,7 +292,6 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms {
   /**
    * Save the Field Mapping.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function saveMapping(): void {
@@ -321,7 +319,6 @@ abstract class CRM_Import_Form_MapField extends CRM_Import_Forms {
   }
 
   /**
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
diff --git a/civicrm/CRM/Import/Form/Preview.php b/civicrm/CRM/Import/Form/Preview.php
index 223299444073059177ef6f919c5850bd1e010b93..d0994b0fe99791570e4754dd008a12c8350e4568 100644
--- a/civicrm/CRM/Import/Form/Preview.php
+++ b/civicrm/CRM/Import/Form/Preview.php
@@ -62,7 +62,6 @@ abstract class CRM_Import_Form_Preview extends CRM_Import_Forms {
   /**
    * Assign smarty variables for the preview screen.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function assignPreviewVariables(): void {
diff --git a/civicrm/CRM/Import/Forms.php b/civicrm/CRM/Import/Forms.php
index 5f5cec0fde51d2f761e2b9282680b8669aefe097..0e59a70507c734f45b990d3ed210ad94fc41c789 100644
--- a/civicrm/CRM/Import/Forms.php
+++ b/civicrm/CRM/Import/Forms.php
@@ -68,6 +68,16 @@ class CRM_Import_Forms extends CRM_Core_Form {
    */
   protected $parser;
 
+  /**
+   * Is the code being accessed in QuickForm mode.
+   *
+   * If false, ie functions being called to support the angular form, then we
+   * 'quick-form-ify' the fields with dots over to double underscores.
+   *
+   * @var bool
+   */
+  protected $isQuickFormMode = TRUE;
+
   /**
    * Get User Job.
    *
@@ -75,7 +85,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getUserJob(): array {
     if (!$this->userJob) {
@@ -91,7 +101,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * Get submitted values stored in the user job.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getUserJobSubmittedValues(): array {
     return $this->getUserJob()['metadata']['submitted_values'];
@@ -264,7 +274,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * - however, the sql class, for example, might realise the fields it cares
    * about are unchanged and not flush the table.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function flushDataSource(): void {
@@ -361,7 +370,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *
    * @return int
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function createUserJob(): int {
     $id = UserJob::create(FALSE)
@@ -385,7 +394,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * @param string $key
    * @param array $data
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function updateUserJobMetadata(string $key, array $data): void {
@@ -409,7 +418,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *
    * @return array
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getColumnHeaders(): array {
@@ -421,7 +429,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *
    * @return int
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getNumberOfColumns(): int {
@@ -443,7 +450,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *   or [CRM_Import_Parser::ERROR, CRM_Import_Parser::VALID]
    *
    * @throws \CRM_Core_Exception
-   * @throws \API_Exception
    */
   protected function getDataRows($statuses = [], int $limit = 0): array {
     $statuses = (array) $statuses;
@@ -457,7 +463,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * @param int $limit
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getOutputRows($statuses = [], int $limit = 0) {
@@ -486,7 +491,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
    *
    * @return int
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function getRowCount($statuses = []) {
@@ -500,7 +504,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * This gets the rows from the temp table that match the relevant status
    * and output them as a csv.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \League\Csv\CannotInsertRecord
    * @throws \CRM_Core_Exception
    */
@@ -570,7 +574,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * @return array
    *   e.g ['first_name' => 'First Name', 'last_name' => 'Last Name'....
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getAvailableFields(): array {
     $return = [];
@@ -650,7 +654,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
    * ['First Name', 'Employee Of - First Name', 'Home - Street Address']
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getMappedFieldLabels(): array {
     $mapper = [];
@@ -670,7 +674,6 @@ class CRM_Import_Forms extends CRM_Core_Form {
   /**
    * Assign variables required for the MapField form.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function assignMapFieldVariables(): void {
@@ -778,6 +781,7 @@ class CRM_Import_Forms extends CRM_Core_Form {
       $contactTypes[] = ['id' => $contactType['name'], 'text' => $contactType['label']];
     }
     $parser = $this->getParser();
+    $this->isQuickFormMode = FALSE;
     Civi::resources()->addVars('crmImportUi', [
       'defaults' => $this->getDefaults(),
       'rows' => $this->getDataRows([], 2),
diff --git a/civicrm/CRM/Import/ImportProcessor.php b/civicrm/CRM/Import/ImportProcessor.php
index 77c0b3937150601c37d84d8c204010b68d21d948..e125e82aad538d4225f41c7dee20eedcc8cb122f 100644
--- a/civicrm/CRM/Import/ImportProcessor.php
+++ b/civicrm/CRM/Import/ImportProcessor.php
@@ -162,7 +162,7 @@ class CRM_Import_ImportProcessor {
    *
    * @param array $metadata
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function setMetadata(array $metadata) {
     $fieldDetails = civicrm_api3('CustomField', 'get', [
@@ -212,9 +212,12 @@ class CRM_Import_ImportProcessor {
   /**
    * Set the contact type  according to the constant.
    *
+   * @deprecated
+   *
    * @param int $contactTypeKey
    */
   public function setContactTypeByConstant($contactTypeKey) {
+    CRM_Core_Error::deprecatedFunctionWarning('no replacement');
     $constantTypeMap = [
       'Individual' => 'Individual',
       'Household' => 'Household',
@@ -228,7 +231,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappingFields(): array {
     if (empty($this->mappingFields) && !empty($this->getMappingID())) {
@@ -265,7 +268,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Get the names of the mapped fields.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldNames() {
     return CRM_Utils_Array::collect('name', $this->getMappingFields());
@@ -277,7 +280,7 @@ class CRM_Import_ImportProcessor {
    * @param int $columnNumber
    *
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldName($columnNumber) {
     return $this->getFieldNames()[$columnNumber];
@@ -289,7 +292,7 @@ class CRM_Import_ImportProcessor {
    * @param int $columnNumber
    *
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getRelationshipKey($columnNumber) {
     $field = $this->getMappingFields()[$columnNumber];
@@ -303,7 +306,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return string|null
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getValidRelationshipKey($columnNumber) {
     $key = $this->getRelationshipKey($columnNumber);
@@ -317,7 +320,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getIMProviderID($columnNumber) {
     return $this->getMappingFields()[$columnNumber]['im_provider_id'] ?? NULL;
@@ -330,7 +333,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPhoneTypeID($columnNumber) {
     return $this->getMappingFields()[$columnNumber]['phone_type_id'] ?? NULL;
@@ -343,7 +346,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getWebsiteTypeID($columnNumber) {
     return $this->getMappingFields()[$columnNumber]['website_type_id'] ?? NULL;
@@ -358,7 +361,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getLocationTypeID($columnNumber) {
     return $this->getMappingFields()[$columnNumber]['location_type_id'] ?? 0;
@@ -373,7 +376,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return int
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPhoneOrIMTypeID($columnNumber) {
     return $this->getIMProviderID($columnNumber) ?? $this->getPhoneTypeID($columnNumber);
@@ -382,7 +385,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Get the location types of the mapped fields.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldLocationTypes() {
     return CRM_Utils_Array::collect('location_type_id', $this->getMappingFields());
@@ -391,7 +394,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Get the phone types of the mapped fields.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldPhoneTypes() {
     return CRM_Utils_Array::collect('phone_type_id', $this->getMappingFields());
@@ -400,7 +403,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Get the names of the im_provider fields.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldIMProviderTypes() {
     return CRM_Utils_Array::collect('im_provider_id', $this->getMappingFields());
@@ -409,7 +412,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Get the names of the website fields.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getFieldWebsiteTypes() {
     return CRM_Utils_Array::collect('im_provider_id', $this->getMappingFields());
@@ -420,7 +423,7 @@ class CRM_Import_ImportProcessor {
    *
    * @return CRM_Contact_Import_Parser_Contact
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getImporterObject() {
     $importer = new CRM_Contact_Import_Parser_Contact($this->getFieldNames());
@@ -432,7 +435,7 @@ class CRM_Import_ImportProcessor {
   /**
    * Load the mapping from the datbase into the format that would be received from the UI.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function loadSavedMapping() {
     $fields = civicrm_api3('MappingField', 'get', [
@@ -489,7 +492,7 @@ class CRM_Import_ImportProcessor {
    * This is preserved as a copy the upgrade script can use - since the
    * upgrade allows the other to be 'fixed'.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function legacyLoadSavedMapping() {
     $fields = civicrm_api3('MappingField', 'get', [
@@ -575,7 +578,7 @@ class CRM_Import_ImportProcessor {
    * @param int $column
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getSavedQuickformDefaultsForColumn($column) {
     $fieldMapping = [];
@@ -610,7 +613,7 @@ class CRM_Import_ImportProcessor {
   /**
    * This exists for use in the FiveFifty Upgrade
    *
-   * @throws \API_Exception|\CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function convertSavedFields(): void {
     $mappings = Mapping::get(FALSE)
diff --git a/civicrm/CRM/Import/Parser.php b/civicrm/CRM/Import/Parser.php
index 9963fbe78d82d7c4c8cc2d5b34a0b1268be43c94..8c1f63295355fae69f266a10bbcec4a2a3a5de5e 100644
--- a/civicrm/CRM/Import/Parser.php
+++ b/civicrm/CRM/Import/Parser.php
@@ -147,7 +147,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getUserJob(): array {
     if (empty($this->userJob)) {
@@ -191,7 +191,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *
    * @return bool
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function isComplete() :bool {
@@ -334,7 +333,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @return array
    *   eg. ['first_name' => 'First Name'.....]
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    *
    * @todo - we are constructing the metadata before we
    * have set the contact type so we re-do it here.
@@ -363,7 +362,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *
    * @return bool
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function isSkipDuplicates(): bool {
     return ((int) $this->getSubmittedValue('onDuplicate')) === CRM_Import_Parser::DUPLICATE_SKIP;
@@ -1426,7 +1425,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @param string $entity
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getActionForEntity(string $entity): string {
     return $this->getUserJob()['metadata']['entity_configuration'][$entity]['action'] ?? ($this->getImportEntities()[$entity]['default_action'] ?? 'select');
@@ -1571,7 +1570,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *   Value as it came in from the datasource.
    *
    * @return string|array|bool|int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getTransformedFieldValue(string $fieldName, $importedValue) {
     if (empty($importedValue)) {
@@ -1633,7 +1632,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
       }
       if ($fieldMetadata['name'] === 'campaign_id') {
         if (!isset(Civi::$statics[__CLASS__][$fieldName][$importedValue])) {
-          $campaign = Campaign::get()->addClause('OR', ['title', '=', $importedValue], ['name', '=', $importedValue])->addSelect('id')->execute()->first();
+          $campaign = Campaign::get()->addClause('OR', ['title', '=', $importedValue], ['name', '=', $importedValue], ['id', '=', $importedValue])->addSelect('id')->execute()->first();
           Civi::$statics[__CLASS__][$fieldName][$importedValue] = $campaign['id'] ?? FALSE;
         }
         return Civi::$statics[__CLASS__][$fieldName][$importedValue] ?? 'invalid_import_value';
@@ -1651,7 +1650,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *
    * @return false|array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFieldOptions(string $fieldName) {
     return $this->getFieldMetadata($fieldName, TRUE)['options'];
@@ -1795,7 +1794,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @param string $fieldName
    *
    * @return mixed|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFieldEntity(string $fieldName) {
     if ($fieldName === 'do_not_import' || $fieldName === '') {
@@ -1819,7 +1818,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
   /**
    * Validate the import file, updating the import table with results.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function validate(): void {
@@ -1836,7 +1834,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *
    * @param array $values
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function validateValues(array $values): void {
@@ -2021,7 +2018,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    *   or as returned from getMappingFieldFromMapperInput
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedFieldLabel(array $mappedField): string {
     // doNotImport is on it's way out - skip fields will be '' once all is done.
@@ -2039,7 +2036,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @param array $values
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getMappedRow(array $values): array {
     $params = [];
@@ -2062,7 +2059,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * Also 'im_provider_id' is mapped to the 'real' field name 'provider_id'
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFieldMappings(): array {
     $mappedFields = [];
@@ -2088,7 +2085,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @param int $offset
    *
    * @return bool
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function runJob(\CRM_Queue_TaskContext $taskContext, int $userJobID, int $limit, int $offset): bool {
@@ -2192,7 +2188,6 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @return int|null
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function lookupExternalIdentifier(?string $externalIdentifier, ?string $contactType, ?int $contactID): ?int {
     if (!$externalIdentifier) {
@@ -2465,7 +2460,7 @@ abstract class CRM_Import_Parser implements UserJobInterface {
    * @param $name
    *
    * @return mixed
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function loadRules(array $where = []) {
diff --git a/civicrm/CRM/Invoicing/Utils.php b/civicrm/CRM/Invoicing/Utils.php
index 4a6e48ee54095451d4e59e701f975d6a138d2df7..70de2c7d4d6535bd1b30e1a66ebd0fdb3cf33390 100644
--- a/civicrm/CRM/Invoicing/Utils.php
+++ b/civicrm/CRM/Invoicing/Utils.php
@@ -25,7 +25,7 @@ class CRM_Invoicing_Utils {
    * @param bool $newValue
    * @param array $metadata
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function onToggle($oldValue, $newValue, $metadata) {
     if ($oldValue == $newValue) {
diff --git a/civicrm/CRM/Logging/Differ.php b/civicrm/CRM/Logging/Differ.php
index bca2d054628651bf2591f9332e231a90d797f5b7..8dd8e8d8eaba5c6c60c19fc941677d2469cabfcd 100644
--- a/civicrm/CRM/Logging/Differ.php
+++ b/civicrm/CRM/Logging/Differ.php
@@ -481,7 +481,7 @@ ORDER BY log_date
    * @param string $change_date
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function checkLogCanBeUsedWithNoLogDate($change_date) {
 
diff --git a/civicrm/CRM/Logging/Schema.php b/civicrm/CRM/Logging/Schema.php
index 495119f8cca4a5e12a545509c882589d3d982afa..bbe7801f215a19228cd93a154a8fed57b6f9c24e 100644
--- a/civicrm/CRM/Logging/Schema.php
+++ b/civicrm/CRM/Logging/Schema.php
@@ -75,15 +75,15 @@ class CRM_Logging_Schema {
    * @param array $fieldSpec
    *
    * @return bool
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public static function checkLoggingSupport(&$value, $fieldSpec) {
     if (!(CRM_Core_DAO::checkTriggerViewPermission(FALSE)) && $value) {
-      throw new API_Exception(ts("In order to use this functionality, the installation's database user must have privileges to create triggers and views (if binary logging is enabled – this means the SUPER privilege). This install does not have the required privilege(s) enabled."));
+      throw new CRM_Core_Exception(ts("In order to use this functionality, the installation's database user must have privileges to create triggers and views (if binary logging is enabled – this means the SUPER privilege). This install does not have the required privilege(s) enabled."));
     }
     // dev/core#1812 Disable logging in a multilingual environment.
     if (CRM_Core_I18n::isMultilingual() && $value) {
-      throw new API_Exception(ts("Logging is not supported in a multilingual environment!"));
+      throw new CRM_Core_Exception(ts("Logging is not supported in a multilingual environment!"));
     }
     return TRUE;
   }
@@ -319,7 +319,7 @@ AND    (TABLE_NAME LIKE 'log_civicrm_%' $nonStandardTableNameString )
    *     'forceEngineMigration' - force engine upgrade from ARCHIVE to InnoDB?
    *
    * @return int $updateTablesCount
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function updateLogTableSchema($params) {
     $updateLogConn = FALSE;
diff --git a/civicrm/CRM/Mailing/BAO/Mailing.php b/civicrm/CRM/Mailing/BAO/Mailing.php
index 1d2ceafc81deab32b55c63b268ca4597b56cb16e..3d064f7e46a32c4ca5b4298135227ced7c9b0079 100644
--- a/civicrm/CRM/Mailing/BAO/Mailing.php
+++ b/civicrm/CRM/Mailing/BAO/Mailing.php
@@ -1498,7 +1498,6 @@ ORDER BY   civicrm_email.is_bulkmail DESC
    *   $mailing      The new mailing object
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function create(array $params) {
 
@@ -1694,7 +1693,7 @@ ORDER BY   civicrm_email.is_bulkmail DESC
    * @param string $entity
    *   'groups' or 'mailings'.
    * @param array $entityIds
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function replaceGroups($mailingId, $type, $entity, $entityIds) {
     $values = [];
diff --git a/civicrm/CRM/Mailing/BAO/Query.php b/civicrm/CRM/Mailing/BAO/Query.php
index ced2040d768981410c5e0855759b105e3681673c..e5440a829599e6d92c7628947f810bd73c5018c2 100644
--- a/civicrm/CRM/Mailing/BAO/Query.php
+++ b/civicrm/CRM/Mailing/BAO/Query.php
@@ -116,7 +116,7 @@ class CRM_Mailing_BAO_Query {
   /**
    * Get the metadata for fields to be included on the mailing search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    *
    * @todo ideally this would be a trait included on the mailing search & advanced search
    * rather than a static function.
@@ -391,7 +391,7 @@ class CRM_Mailing_BAO_Query {
    *
    * @param \CRM_Mailing_Form_Search $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildSearchForm(&$form) {
     $form->addSearchFieldMetadata(['Mailing' => self::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Mailing/Event/BAO/Unsubscribe.php b/civicrm/CRM/Mailing/Event/BAO/Unsubscribe.php
index f2c92079e923afc9c8a5bbe65c07e05f6c240dc9..f0fffc481413a879c880b841ec1b74df598056b9 100644
--- a/civicrm/CRM/Mailing/Event/BAO/Unsubscribe.php
+++ b/civicrm/CRM/Mailing/Event/BAO/Unsubscribe.php
@@ -106,7 +106,6 @@ WHERE  email = %2
    *   $groups    Array of all groups from which the contact was removed, or null if the queue event could not be found.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function unsub_from_mailing($job_id, $queue_id, $hash, $return = FALSE): ?array {
     // First make sure there's a matching queue event.
diff --git a/civicrm/CRM/Mailing/Form/Search.php b/civicrm/CRM/Mailing/Form/Search.php
index 04f321d995b289edbc67a2088a12bc67f20476a7..cf717ff3982e5f44314d7023d60bca0239bd9082 100644
--- a/civicrm/CRM/Mailing/Form/Search.php
+++ b/civicrm/CRM/Mailing/Form/Search.php
@@ -30,7 +30,7 @@ class CRM_Mailing_Form_Search extends CRM_Core_Form_Search {
   }
 
   /**
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildQuickForm() {
     $parent = $this->controller->getParent();
@@ -157,7 +157,7 @@ class CRM_Mailing_Form_Search extends CRM_Core_Form_Search {
    * Search field metadata is normally added in buildForm but we are bypassing that in this flow
    * (I've always found the flow kinda confusing & perhaps that is the problem but this mitigates)
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function handleForcedSearch() {
     $this->setSearchMetadata();
@@ -167,7 +167,7 @@ class CRM_Mailing_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Mailing' => CRM_Mailing_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Mailing/Page/Browse.php b/civicrm/CRM/Mailing/Page/Browse.php
index 76d97ad3b1130c161b87df2f520b6789c14e002e..46ad7481e51c9eb8929cc1b531c806341b14bce7 100644
--- a/civicrm/CRM/Mailing/Page/Browse.php
+++ b/civicrm/CRM/Mailing/Page/Browse.php
@@ -243,6 +243,9 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
     $controller->setEmbedded(TRUE);
     $controller->run();
 
+    $this->assign('unscheduled', FALSE);
+    $this->assign('archived', FALSE);
+
     $urlParams = 'reset=1';
     $urlString = 'civicrm/mailing/browse';
     if ($this->get('sms')) {
diff --git a/civicrm/CRM/Mailing/Selector/Browse.php b/civicrm/CRM/Mailing/Selector/Browse.php
index 8151febab94ef6cbb9f01f8391ec716faa7a5721..df1442be6ff750763d81f3bc60d2aa25346c0a9d 100644
--- a/civicrm/CRM/Mailing/Selector/Browse.php
+++ b/civicrm/CRM/Mailing/Selector/Browse.php
@@ -162,7 +162,7 @@ class CRM_Mailing_Selector_Browse extends CRM_Core_Selector_Base implements CRM_
         ]
       );
 
-      if (CRM_Campaign_BAO_Campaign::isCampaignEnable()) {
+      if (CRM_Campaign_BAO_Campaign::isComponentEnabled()) {
         self::$_columnHeaders[] = [
           'name' => ts('Campaign'),
           'sort' => 'campaign_id',
diff --git a/civicrm/CRM/Member/BAO/Membership.php b/civicrm/CRM/Member/BAO/Membership.php
index 40e6d0a5f071c8d44f121085a1f7c7a289dc2a53..fba0fbe182b5532204cb328a9f625ffeaa934f88 100644
--- a/civicrm/CRM/Member/BAO/Membership.php
+++ b/civicrm/CRM/Member/BAO/Membership.php
@@ -10,6 +10,7 @@
  */
 
 use Civi\API\Exception\UnauthorizedException;
+use Civi\Api4\Membership;
 use Civi\Api4\MembershipType;
 
 /**
@@ -41,7 +42,7 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    *   (reference ) an assoc array of name/value pairs.
    *
    * @return CRM_Member_BAO_Membership
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function add(&$params) {
     $oldStatus = $oldType = NULL;
@@ -232,7 +233,7 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    *   Deprecated parameter The array that holds all the db ids.
    *
    * @return CRM_Member_BAO_Membership|CRM_Core_Error
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    *
    * @throws CRM_Core_Exception
    */
@@ -469,7 +470,6 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    *   array of contact_id of all related contacts.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function checkMembershipRelationship($membershipTypeID, $contactId, $action = CRM_Core_Action::ADD) {
     $contacts = [];
@@ -789,7 +789,7 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
    *   True if only Memberships with same parent org as the $memType wanted, false otherwise.
    *
    * @return array|bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getContactMembership($contactID, $memType, $isTest, $membershipId = NULL, $onlySameParentOrg = FALSE) {
     //check for owner membership id, if it exists update that membership instead: CRM-15992
@@ -1338,7 +1338,6 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
    *   Membership object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function createRelatedMemberships($params, $dao) {
     unset($params['membership_id']);
@@ -1556,7 +1555,7 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildMembershipTypeValues($form, $membershipTypeID = [], $activeOnly = FALSE) {
     $membershipTypeIDS = (array) $membershipTypeID;
@@ -1582,7 +1581,7 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
    * @param bool $activeOnly
    *
    * @return int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getContactMembershipCount(int $contactID, $activeOnly = FALSE): int {
     try {
@@ -1633,7 +1632,7 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
       $isCancelled = FALSE;
 
       if ($isNotCancelled) {
-        $isCancelled = self::isSubscriptionCancelled($mid);
+        $isCancelled = self::isSubscriptionCancelled((int) $mid);
       }
 
       $paymentObject = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($mid, 'membership', 'obj');
@@ -1647,25 +1646,21 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
   /**
    * Check whether subscription is already cancelled.
    *
-   * @param int $mid
+   * @param int $membershipID
    *   Membership id.
    *
-   * @return string
+   * @return bool
    *   contribution status
+   *
+   * @throws \CRM_Core_Exception
    */
-  public static function isSubscriptionCancelled($mid) {
-    $sql = "
-   SELECT cr.contribution_status_id
-     FROM civicrm_contribution_recur cr
-LEFT JOIN civicrm_membership mem ON ( cr.id = mem.contribution_recur_id )
-    WHERE mem.id = %1 LIMIT 1";
-    $params = [1 => [$mid, 'Integer']];
-    $statusId = CRM_Core_DAO::singleValueQuery($sql, $params);
-    $status = CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name');
-    if ($status == 'Cancelled') {
-      return TRUE;
-    }
-    return FALSE;
+  public static function isSubscriptionCancelled(int $membershipID): bool {
+    // Check permissions set to false 'in case' - ideally would check permissions are
+    // correct & remove.
+    return (bool) Membership::get(FALSE)
+      ->addWhere('id', '=', $membershipID)
+      ->addWhere('contribution_recur_id.contribution_status_id:name', '=', 'Cancelled')
+      ->selectRowCount()->execute()->count();
   }
 
   /**
@@ -1794,7 +1789,6 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    *
    * @return array
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function processMembership($contactID, $membershipTypeID, $is_test, $changeToday, $modifiedID, $customFieldsFormatted, $numRenewTerms, $membershipID, $pending, $contributionRecurID, $membershipSource, $isPayLater, $memParams = [], $contribution = NULL, $lineItems = []) {
     CRM_Core_Error::deprecatedFunctionWarning('use the order api, BAO functions should only be called from unit tested core code.');
@@ -2049,7 +2043,6 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * @return int
    *   Count of updated contacts.
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   protected static function updateDeceasedMembersStatuses() {
@@ -2133,7 +2126,7 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * @param array $params
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function hasExistingInheritedMembership($params) {
     foreach (civicrm_api3('Membership', 'get', ['contact_id' => $params['contact_id']])['values'] as $membership) {
@@ -2157,7 +2150,7 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * @param int $membershipId
    * @param array $lineItem
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function processPriceSet($membershipId, $lineItem) {
     //FIXME : need to move this too
@@ -2222,7 +2215,6 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function updateAllMembershipStatus($params = []) {
@@ -2338,7 +2330,7 @@ WHERE {$whereClause}";
    * @param CRM_Core_DAO $membership
    *   The membership to be processed
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function processOverriddenUntilDateMembership($membership) {
     $isOverriddenUntilDate = !empty($membership->is_override) && !empty($membership->status_override_end_date);
@@ -2379,7 +2371,7 @@ WHERE {$whereClause}";
       return $contactMembershipType;
     }
 
-    $membershipQuery = \Civi\Api4\Membership::get(FALSE)
+    $membershipQuery = Membership::get(FALSE)
       ->addWhere('contact_id', '=', $contactID)
       ->addWhere('status_id:name', '<>', 'Pending')
       ->addWhere('is_test', '=', $isTest)
@@ -2407,7 +2399,6 @@ WHERE {$whereClause}";
    *
    * @return CRM_Contribute_BAO_Contribution
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function recordMembershipContribution(&$params) {
     $contributionParams = [];
diff --git a/civicrm/CRM/Member/BAO/MembershipType.php b/civicrm/CRM/Member/BAO/MembershipType.php
index 7263f8f3c20c23ca16b7f4665120e6467c28e27f..6d935c9453dd265e699899276a6d543f66eecfce 100644
--- a/civicrm/CRM/Member/BAO/MembershipType.php
+++ b/civicrm/CRM/Member/BAO/MembershipType.php
@@ -65,7 +65,7 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType implem
    *   Array contains the id (deprecated).
    *
    * @return \CRM_Member_DAO_MembershipType
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function add(&$params, $ids = []) {
     // DEPRECATED Check if membershipType ID was passed in via $ids
@@ -116,7 +116,7 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType implem
   /**
    * Flush anywhere that membership types might be cached.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function flush() {
     CRM_Member_PseudoConstant::membershipType(NULL, TRUE);
@@ -822,7 +822,7 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType implem
    *
    * @return array
    *   List of membershipType details keyed by membershipTypeID
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getAllMembershipTypes(): array {
     $cacheString = __CLASS__ . __FUNCTION__ . CRM_Core_Config::domainID() . '_' . CRM_Core_I18n::getLocale();
@@ -863,7 +863,7 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType implem
    * @param int $id
    *
    * @return mixed
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getMembershipType($id) {
     return self::getAllMembershipTypes()[$id];
diff --git a/civicrm/CRM/Member/BAO/Query.php b/civicrm/CRM/Member/BAO/Query.php
index 7f91f01a4017b9b81cfdabc5a4c1ef7ac3b04f88..3f94e2e386d0063e402e41045d015b2a88f8c60b 100644
--- a/civicrm/CRM/Member/BAO/Query.php
+++ b/civicrm/CRM/Member/BAO/Query.php
@@ -489,7 +489,7 @@ class CRM_Member_BAO_Query extends CRM_Core_BAO_Query {
   /**
    * Get the metadata for fields to be included on the grant search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
@@ -515,7 +515,7 @@ class CRM_Member_BAO_Query extends CRM_Core_BAO_Query {
    *
    * @param CRM_Core_Form $form
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildSearchForm(&$form) {
     $form->addSearchFieldMetadata(['Membership' => self::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Member/Form.php b/civicrm/CRM/Member/Form.php
index c1003f6226940cfc1701aaa5d4d638ef2a871a39..e52bccbea90a704924378626744dacc7ec2fb3a8 100644
--- a/civicrm/CRM/Member/Form.php
+++ b/civicrm/CRM/Member/Form.php
@@ -399,7 +399,7 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
    * @param int $membershipTypeID
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processRecurringContribution($contributionRecurParams, $membershipTypeID) {
 
@@ -489,7 +489,7 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
    * @param array $formValues
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setPriceSetParameters(array $formValues): array {
     // process price set and get total amount and line items.
@@ -532,7 +532,7 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getOrderParams(): array {
     return [
diff --git a/civicrm/CRM/Member/Form/Membership.php b/civicrm/CRM/Member/Form/Membership.php
index 60e1d4591223648a620ce98ed4b6b0067e6f66c2..f4a4e7462a13d2523cd52f8365a8a2beb45d8a79 100644
--- a/civicrm/CRM/Member/Form/Membership.php
+++ b/civicrm/CRM/Member/Form/Membership.php
@@ -215,7 +215,6 @@ class CRM_Member_Form_Membership extends CRM_Member_Form {
    * Form preProcess function.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     // This string makes up part of the class names, differentiating them (not sure why) from the membership fields.
@@ -354,7 +353,7 @@ DESC limit 1");
 
     $subscriptionCancelled = FALSE;
     if (!empty($defaults['id'])) {
-      $subscriptionCancelled = CRM_Member_BAO_Membership::isSubscriptionCancelled($this->_id);
+      $subscriptionCancelled = CRM_Member_BAO_Membership::isSubscriptionCancelled((int) $this->_id);
     }
 
     $alreadyAutoRenew = FALSE;
@@ -659,7 +658,7 @@ DESC limit 1");
    *   mixed true or array of errors
    *
    * @throws \CRM_Core_Exception
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function formRule($params, $files, $self) {
     $errors = [];
@@ -864,7 +863,6 @@ DESC limit 1");
    * Process the form submission.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     if ($this->_action & CRM_Core_Action::DELETE) {
@@ -917,7 +915,6 @@ DESC limit 1");
    * @return bool
    *   true if mail was sent successfully
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    *
    * @deprecated
    *   This function was shared with Batch_Entry which had limited overlap
@@ -1004,8 +1001,6 @@ DESC limit 1");
    * This is also accessed by unit tests.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
-   * @throws \API_Exception
    */
   public function submit(): void {
     $this->storeContactFields($this->_params);
@@ -1390,7 +1385,6 @@ DESC limit 1");
    *      submitted form values
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function updateContributionOnMembershipTypeChange($inputParams) {
     if (Civi::settings()->get('update_contribution_on_membership_type_change') &&
@@ -1496,7 +1490,7 @@ DESC limit 1");
    * Get status message for updating membership.
    *
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getStatusMessageForUpdate(): string {
     foreach ($this->getCreatedMemberships() as $membership) {
@@ -1514,7 +1508,7 @@ DESC limit 1");
    * Get status message for create action.
    *
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getStatusMessageForCreate(): string {
     foreach ($this->getCreatedMemberships() as $membership) {
@@ -1568,7 +1562,7 @@ DESC limit 1");
     if ($this->_action & CRM_Core_Action::UPDATE
       && CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->getEntityId(),
         'contribution_recur_id')
-      && !CRM_Member_BAO_Membership::isSubscriptionCancelled($this->getEntityId())) {
+      && !CRM_Member_BAO_Membership::isSubscriptionCancelled((int) $this->getEntityId())) {
 
       $isRecur = TRUE;
     }
@@ -1582,7 +1576,6 @@ DESC limit 1");
    *
    * @return bool
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function emailMembershipReceipt($formValues) {
     $customValues = $this->getCustomValuesForReceipt($formValues);
@@ -1665,8 +1658,7 @@ DESC limit 1");
    *
    * @return int|null
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getContributionRecurID():?int {
     if (!array_key_exists('ContributionRecur', $this->ids)) {
@@ -1680,8 +1672,7 @@ DESC limit 1");
    *
    * This function was copied from another form & needs cleanup.
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function createRecurringContribution(): void {
     if (!$this->isCreateRecurringContribution()) {
@@ -1736,7 +1727,7 @@ DESC limit 1");
    * Get the membership type, if any, to be recurred.
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRecurMembershipType(): array {
     foreach ($this->order->getRenewableMembershipTypes() as $type) {
@@ -1749,7 +1740,7 @@ DESC limit 1");
    * Get the frequency interval.
    *
    * @return int|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFrequencyInterval(): ?int {
     $membershipType = $this->getRecurMembershipType();
@@ -1760,7 +1751,7 @@ DESC limit 1");
    * Get the frequency interval.
    *
    * @return string|null
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFrequencyUnit(): ?string {
     $membershipType = $this->getRecurMembershipType();
@@ -1779,8 +1770,7 @@ DESC limit 1");
    * against breakage if code is moved around).
    *
    * @return array
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getFormMembershipParams(): array {
     $submittedValues = $this->controller->exportValues($this->_name);
@@ -1825,7 +1815,7 @@ DESC limit 1");
    * Get memberships submitted through the form submission.
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getCreatedMemberships(): array {
     return civicrm_api3('Membership', 'get', ['id' => ['IN' => $this->_membershipIDs]])['values'];
@@ -1835,7 +1825,7 @@ DESC limit 1");
    * Get parameters for membership create for all memberships to be created.
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getMembershipParameters(): array {
     $membershipTypeValues = [];
@@ -1917,7 +1907,7 @@ DESC limit 1");
    * Get the membership (or last membership) created or edited on this form.
    *
    * @return array
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getMembership(): array {
     if (empty($this->membership)) {
@@ -1943,7 +1933,7 @@ DESC limit 1");
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getLineItemForOrderApi(): array {
     $lineItems = [];
@@ -1966,7 +1956,7 @@ DESC limit 1");
    * @param int $membershipTypeID
    *
    * @return mixed
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getMembershipParamsForType(int $membershipTypeID) {
     return array_merge($this->getFormMembershipParams(), $this->getMembershipParameters()[$membershipTypeID]);
diff --git a/civicrm/CRM/Member/Form/MembershipBlock.php b/civicrm/CRM/Member/Form/MembershipBlock.php
index 2148be9f6e0f0b1071778a8869258b4f5f89cfa3..a7a3abfac8947dd6acebe16e752da211df49526b 100644
--- a/civicrm/CRM/Member/Form/MembershipBlock.php
+++ b/civicrm/CRM/Member/Form/MembershipBlock.php
@@ -93,7 +93,6 @@ class CRM_Member_Form_MembershipBlock extends CRM_Contribute_Form_ContributionPa
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     $membershipTypes = CRM_Member_BAO_MembershipType::getMembershipTypes();
@@ -211,7 +210,6 @@ class CRM_Member_Form_MembershipBlock extends CRM_Contribute_Form_ContributionPa
    * @return bool|array
    *   mixed true or array of errors
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function formRule($params, $files, $contributionPageId = NULL) {
     $errors = [];
diff --git a/civicrm/CRM/Member/Form/MembershipRenewal.php b/civicrm/CRM/Member/Form/MembershipRenewal.php
index dede5c99d5b20f30db815957c05147e68751083d..433e563ab6857565bb83ea8a0a781fd44b7718ec 100644
--- a/civicrm/CRM/Member/Form/MembershipRenewal.php
+++ b/civicrm/CRM/Member/Form/MembershipRenewal.php
@@ -122,7 +122,6 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
    * Preprocess form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
 
@@ -456,7 +455,6 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
    * Process the renewal form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess(): void {
     // get the submitted form values.
@@ -481,7 +479,6 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
    * This function is also accessed by a unit test.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   protected function submit() {
     $this->storeContactFields($this->_params);
@@ -728,7 +725,6 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
    *
    * @return CRM_Member_BAO_Membership
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function processMembership($memParams, $changeToday, $numRenewTerms, $pending) {
     $allStatus = CRM_Member_PseudoConstant::membershipStatus();
diff --git a/civicrm/CRM/Member/Form/MembershipType.php b/civicrm/CRM/Member/Form/MembershipType.php
index e715fe35c09a2141b90e397748025eaa9cab3872..da1ee84059b021a45d3291b0df65c245765d3096 100644
--- a/civicrm/CRM/Member/Form/MembershipType.php
+++ b/civicrm/CRM/Member/Form/MembershipType.php
@@ -222,7 +222,6 @@ class CRM_Member_Form_MembershipType extends CRM_Member_Form_MembershipConfig {
    *
    * @return void
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     self::buildQuickEntityForm();
diff --git a/civicrm/CRM/Member/Form/MembershipView.php b/civicrm/CRM/Member/Form/MembershipView.php
index a8af679e49da0ba2d3c85ffe58144404272a2f3e..fd0e1620d038a828665b53de9c0f964894dc8b4d 100644
--- a/civicrm/CRM/Member/Form/MembershipView.php
+++ b/civicrm/CRM/Member/Form/MembershipView.php
@@ -92,7 +92,6 @@ class CRM_Member_Form_MembershipView extends CRM_Core_Form {
    *   Primary membership info (membership_id, contact_id, membership_type ...).
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function relAction($action, $owner) {
     switch ($action) {
@@ -400,7 +399,7 @@ SELECT r.id, c.id as cid, c.display_name as name, c.job_title as comment,
       $values['membership_type'] = CRM_Core_TestEntity::appendTestText($values['membership_type']);
     }
 
-    $subscriptionCancelled = CRM_Member_BAO_Membership::isSubscriptionCancelled($this->membershipID);
+    $subscriptionCancelled = CRM_Member_BAO_Membership::isSubscriptionCancelled((int) $this->membershipID);
     $values['auto_renew'] = ($autoRenew && !$subscriptionCancelled) ? 'Yes' : 'No';
 
     //do check for campaigns
diff --git a/civicrm/CRM/Member/Form/Search.php b/civicrm/CRM/Member/Form/Search.php
index a0cc3e5ea01e84d1d24a2542e0e7a98c83dbac6b..d3816b9a3f36e9b0bb3b5a4f62764cd7f0936e6e 100644
--- a/civicrm/CRM/Member/Form/Search.php
+++ b/civicrm/CRM/Member/Form/Search.php
@@ -60,7 +60,6 @@ class CRM_Member_Form_Search extends CRM_Core_Form_Search {
    * Processing needed for buildForm and later.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     // SearchFormName is deprecated & to be removed - the replacement is for the task to
@@ -109,7 +108,6 @@ class CRM_Member_Form_Search extends CRM_Core_Form_Search {
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -349,7 +347,7 @@ class CRM_Member_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Membership' => CRM_Member_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Member/Form/Task.php b/civicrm/CRM/Member/Form/Task.php
index 756355c1e949a5944a9779dd6e43a6555bd88cee..8374e85fdf0503ef6a93ad6c634e4df58b76a739 100644
--- a/civicrm/CRM/Member/Form/Task.php
+++ b/civicrm/CRM/Member/Form/Task.php
@@ -107,7 +107,7 @@ class CRM_Member_Form_Task extends CRM_Core_Form_Task {
   /**
    * Get the rows form the search, keyed to make the token processor happy.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getRows(): array {
     if (empty($this->rows)) {
diff --git a/civicrm/CRM/Member/Form/Task/Batch.php b/civicrm/CRM/Member/Form/Task/Batch.php
index a333d3a4e1525f2fe75d5136e1d956dc63d8da1c..abd3ecd4893385a66f0bc7720e36dc8a6cd06968 100644
--- a/civicrm/CRM/Member/Form/Task/Batch.php
+++ b/civicrm/CRM/Member/Form/Task/Batch.php
@@ -188,7 +188,6 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task {
    * Process the form after the input has been submitted and validated.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     $params = $this->exportValues();
@@ -206,7 +205,6 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task {
    *
    * @return mixed
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function submit(array $params) {
     $dates = [
diff --git a/civicrm/CRM/Member/Form/Task/PDFLetter.php b/civicrm/CRM/Member/Form/Task/PDFLetter.php
index f7464b1b705f114e46b330eb07ee1eaced87132f..fdc9ad6cadefedcf2c29b7560d1f59fb312cc880 100644
--- a/civicrm/CRM/Member/Form/Task/PDFLetter.php
+++ b/civicrm/CRM/Member/Form/Task/PDFLetter.php
@@ -115,7 +115,6 @@ class CRM_Member_Form_Task_PDFLetter extends CRM_Member_Form_Task {
    * @param $html_message
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @internal
    *
diff --git a/civicrm/CRM/Member/Form/Task/PDFLetterCommon.php b/civicrm/CRM/Member/Form/Task/PDFLetterCommon.php
index 7fdc8dce859e6f7d8c4298db60133459b6b2ac8c..f5aae8890b23fa9c1975f6d83920339d7361db63 100644
--- a/civicrm/CRM/Member/Form/Task/PDFLetterCommon.php
+++ b/civicrm/CRM/Member/Form/Task/PDFLetterCommon.php
@@ -67,7 +67,6 @@ class CRM_Member_Form_Task_PDFLetterCommon extends CRM_Contact_Form_Task_PDFLett
    * @param $categories
    *
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    * @deprecated
diff --git a/civicrm/CRM/Member/Import/Parser/Membership.php b/civicrm/CRM/Member/Import/Parser/Membership.php
index a2d5554cb61eb331ce9fd9b3c2806d01527b5f54..3a29c4bc573a2d8cfb70f1d2715aa0d6f11300f9 100644
--- a/civicrm/CRM/Member/Import/Parser/Membership.php
+++ b/civicrm/CRM/Member/Import/Parser/Membership.php
@@ -343,7 +343,7 @@ class CRM_Member_Import_Parser_Membership extends CRM_Import_Parser {
       $this->setImportStatus($rowNumber, 'ERROR', $e->getMessage());
       return CRM_Import_Parser::ERROR;
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $this->setImportStatus($rowNumber, 'ERROR', $e->getMessage());
       return CRM_Import_Parser::ERROR;
     }
diff --git a/civicrm/CRM/Member/Page/Tab.php b/civicrm/CRM/Member/Page/Tab.php
index 5878ff8d1d5d6239bbc0625e329721e610d5e2e9..2433005403ac6e437789db1e9bd2b2fdb455caf7 100644
--- a/civicrm/CRM/Member/Page/Tab.php
+++ b/civicrm/CRM/Member/Page/Tab.php
@@ -167,7 +167,7 @@ class CRM_Member_Page_Tab extends CRM_Core_Page {
 
       // Display Auto-renew status on page (0=disabled, 1=enabled, 2=enabled, but error
       if (!empty($membership[$dao->id]['contribution_recur_id'])) {
-        if (CRM_Member_BAO_Membership::isSubscriptionCancelled($membership[$dao->id]['membership_id'])) {
+        if (CRM_Member_BAO_Membership::isSubscriptionCancelled((int) $membership[$dao->id]['membership_id'])) {
           $membership[$dao->id]['auto_renew'] = 2;
         }
         else {
@@ -354,7 +354,7 @@ class CRM_Member_Page_Tab extends CRM_Core_Page {
    * action has to be taken for the page.
    *
    * @return null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function run() {
     $this->preProcess();
diff --git a/civicrm/CRM/Member/Selector/Search.php b/civicrm/CRM/Member/Selector/Search.php
index f31c34d0f822e0cc6b3a321bf4d541d34c156dbf..3505c836bbc9f9bffb37a876c0ba1a919678860a 100644
--- a/civicrm/CRM/Member/Selector/Search.php
+++ b/civicrm/CRM/Member/Selector/Search.php
@@ -423,7 +423,7 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
 
       // Display Auto-renew status on page (0=disabled, 1=enabled, 2=enabled, but error
       if (!empty($result->membership_recur_id)) {
-        if (CRM_Member_BAO_Membership::isSubscriptionCancelled($row['membership_id'])) {
+        if (CRM_Member_BAO_Membership::isSubscriptionCancelled((int) $row['membership_id'])) {
           $row['auto_renew'] = 2;
         }
         else {
diff --git a/civicrm/CRM/Member/Tokens.php b/civicrm/CRM/Member/Tokens.php
index 35ba54a3557d5fa6db017dbe8a8bfa5923c70cad..0b6916f383392349e0c6d8ec2d30e1c01fe14ed6 100644
--- a/civicrm/CRM/Member/Tokens.php
+++ b/civicrm/CRM/Member/Tokens.php
@@ -57,7 +57,7 @@ class CRM_Member_Tokens extends CRM_Core_EntityTokens {
 
   /**
    * @inheritDoc
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function evaluateToken(\Civi\Token\TokenRow $row, $entity, $field, $prefetch = NULL) {
     if ($field === 'fee') {
diff --git a/civicrm/CRM/Member/Utils/RelationshipProcessor.php b/civicrm/CRM/Member/Utils/RelationshipProcessor.php
index 7021860f3117c88f12763f5bbcd8f7c24adea3e5..63f66ba2fcf9f9c7c182541d4a050c003968395b 100644
--- a/civicrm/CRM/Member/Utils/RelationshipProcessor.php
+++ b/civicrm/CRM/Member/Utils/RelationshipProcessor.php
@@ -41,7 +41,7 @@ class CRM_Member_Utils_RelationshipProcessor {
    * @param int[] $contactIDs
    * @param bool $active
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function __construct($contactIDs, $active) {
     $this->contactIDs = $contactIDs;
@@ -72,7 +72,7 @@ class CRM_Member_Utils_RelationshipProcessor {
    * We are looking at relationships that are potentially inheritable
    * so we can filter out membership types with NULL relationship_type_id
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setMemberships() {
     $return = array_keys(civicrm_api3('Membership', 'getfields', [])['values']);
diff --git a/civicrm/CRM/PCP/BAO/PCP.php b/civicrm/CRM/PCP/BAO/PCP.php
index dcd24511a9512cd82abeb27f14f5f0cbff6cf52f..bcabd19e667b9f2f4095b321beb9818db09bfa46 100644
--- a/civicrm/CRM/PCP/BAO/PCP.php
+++ b/civicrm/CRM/PCP/BAO/PCP.php
@@ -455,7 +455,7 @@ WHERE pcp.id = %1 AND cc.contribution_status_id = %2 AND cc.is_test = 0";
    * @param CRM_Core_Form $page
    * @param array $elements
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function buildPcp($pcpId, &$page, &$elements = NULL) {
     $prms = ['id' => $pcpId];
diff --git a/civicrm/CRM/Pledge/BAO/Pledge.php b/civicrm/CRM/Pledge/BAO/Pledge.php
index 8186bd45b42bdcf518bf4704ddea5b790514c142..20cc0154300d0807565eaea39d1978ead9c9cb8e 100644
--- a/civicrm/CRM/Pledge/BAO/Pledge.php
+++ b/civicrm/CRM/Pledge/BAO/Pledge.php
@@ -981,7 +981,7 @@ SELECT  pledge.contact_id              as contact_id,
               try {
                 civicrm_api3('activity', 'create', $activityParams);
               }
-              catch (CiviCRM_API3_Exception $e) {
+              catch (CRM_Core_Exception $e) {
                 throw new CRM_Core_Exception('Failed creating Activity for Pledge Reminder: ' . $e->getMessage());
               }
               $returnMessages[] = "Payment reminder sent to: {$pledgerName} - {$toEmail}";
diff --git a/civicrm/CRM/Pledge/BAO/PledgePayment.php b/civicrm/CRM/Pledge/BAO/PledgePayment.php
index 73fd3a35462ebdaba07249c2cd69dbb7d7d0d74a..4c9e98bbf709e35b3c3c14a3054a0750895a2662 100644
--- a/civicrm/CRM/Pledge/BAO/PledgePayment.php
+++ b/civicrm/CRM/Pledge/BAO/PledgePayment.php
@@ -558,7 +558,7 @@ WHERE  civicrm_pledge.id = %2
    *
    * @return int
    *   $statusId calculated status id of pledge
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function calculatePledgeStatus(int $pledgeId): int {
     if (count(Pledge::get(FALSE)
@@ -853,7 +853,7 @@ WHERE civicrm_pledge_payment.contribution_id = {$paymentContributionId}
    *
    * @param \Civi\Core\Event\GenericHookEvent $event
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function on_hook_civicrm_post(GenericHookEvent $event): void {
     if (!CRM_Core_Component::isEnabled('CiviPledge')) {
diff --git a/civicrm/CRM/Pledge/BAO/Query.php b/civicrm/CRM/Pledge/BAO/Query.php
index 45f9b1c37cc807b2eccc448036f47278527a56c1..6e2881b1c83b0e3705e8ce9b84a7b1a6e3ed0ce1 100644
--- a/civicrm/CRM/Pledge/BAO/Query.php
+++ b/civicrm/CRM/Pledge/BAO/Query.php
@@ -497,7 +497,7 @@ class CRM_Pledge_BAO_Query extends CRM_Core_BAO_Query {
   /**
    * Get the metadata for fields to be included on the grant search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
@@ -513,7 +513,7 @@ class CRM_Pledge_BAO_Query extends CRM_Core_BAO_Query {
   /**
    * Get the metadata for fields to be included on the grant search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getPledgePaymentSearchFieldMetadata() {
     $fields = [
@@ -529,7 +529,6 @@ class CRM_Pledge_BAO_Query extends CRM_Core_BAO_Query {
    * @param CRM_Pledge_Form_Search|\CRM_Contact_Form_Search_Advanced $form
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function buildSearchForm(&$form) {
     // pledge related dates
diff --git a/civicrm/CRM/Pledge/Form/Pledge.php b/civicrm/CRM/Pledge/Form/Pledge.php
index 16aa81a3b624c01db4ea3153c3edc254c4b555e2..6ccbfce6f14bacdc0e045eaf1205cc1688a81776 100644
--- a/civicrm/CRM/Pledge/Form/Pledge.php
+++ b/civicrm/CRM/Pledge/Form/Pledge.php
@@ -417,7 +417,7 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
   /**
    * Process the form submission.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function postProcess(): void {
     if ($this->_action & CRM_Core_Action::DELETE) {
diff --git a/civicrm/CRM/Pledge/Form/Search.php b/civicrm/CRM/Pledge/Form/Search.php
index 7f7e75c529882ed5496beb1e81ed7418382cfb31..88c7776ea369c313674b20fc6d7473d4b705d2bf 100644
--- a/civicrm/CRM/Pledge/Form/Search.php
+++ b/civicrm/CRM/Pledge/Form/Search.php
@@ -352,7 +352,7 @@ class CRM_Pledge_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Pledge' => CRM_Pledge_BAO_Query::getSearchFieldMetadata()]);
diff --git a/civicrm/CRM/Price/BAO/LineItem.php b/civicrm/CRM/Price/BAO/LineItem.php
index 8251e12760172998e5263db60b86e8e41913c380..6399dade3d31585a4b2eaf9e0eb6728f9a12d5b6 100644
--- a/civicrm/CRM/Price/BAO/LineItem.php
+++ b/civicrm/CRM/Price/BAO/LineItem.php
@@ -28,7 +28,7 @@ class CRM_Price_BAO_LineItem extends CRM_Price_DAO_LineItem {
    *
    * @return CRM_Price_BAO_LineItem
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   public static function create(&$params) {
@@ -372,7 +372,6 @@ WHERE li.contribution_id = %1";
    * @param bool $update
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function processPriceSet($entityId, $lineItems, $contributionDetails = NULL, $entityTable = 'civicrm_contribution', $update = FALSE) {
     if (!$entityId || !is_array($lineItems)
@@ -614,7 +613,7 @@ WHERE li.contribution_id = %1";
    * @param $feeBlock
    * @param array $lineItems
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function changeFeeSelections(
     $params,
@@ -1120,7 +1119,7 @@ WHERE li.contribution_id = %1";
         ],
       ]);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       return [];
     }
 
diff --git a/civicrm/CRM/Price/BAO/PriceField.php b/civicrm/CRM/Price/BAO/PriceField.php
index 9a3d87b76263db4a630b37b53e45a46e160f9139..05821e18f9788d9854a5d24f3aad81de7c9f8be8 100644
--- a/civicrm/CRM/Price/BAO/PriceField.php
+++ b/civicrm/CRM/Price/BAO/PriceField.php
@@ -47,7 +47,6 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
    * @return CRM_Price_DAO_PriceField
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public static function create(&$params) {
     if (empty($params['id']) && empty($params['name'])) {
@@ -382,24 +381,27 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
         }
 
         foreach ($customOption as $opId => $opt) {
+          $preHelpText = $postHelpText = '';
+          $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>';
+          if (!empty($opt['help_pre'])) {
+            $preHelpText = '<span class="crm-price-amount-help-pre description">' . $opt['help_pre'] . '</span><span class="crm-price-amount-help-pre-separator">:&nbsp;</span>';
+          }
+          if (!empty($opt['help_post'])) {
+            $postHelpText = '<span class="crm-price-amount-help-post-separator">:&nbsp;</span><span class="crm-price-amount-help-post description">' . $opt['help_post'] . '</span>';
+          }
+
           $taxAmount = $opt['tax_amount'] ?? NULL;
           if ($field->is_display_amounts) {
             $opt['label'] = !empty($opt['label']) ? $opt['label'] . '<span class="crm-price-amount-label-separator">&nbsp;-&nbsp;</span>' : '';
-            $preHelpText = $postHelpText = '';
-            if (!empty($opt['help_pre'])) {
-              $preHelpText = '<span class="crm-price-amount-help-pre description">' . $opt['help_pre'] . '</span><span class="crm-price-amount-help-pre-separator">:&nbsp;</span>';
-            }
-            if (!empty($opt['help_post'])) {
-              $postHelpText = '<span class="crm-price-amount-help-post-separator">:&nbsp;</span><span class="crm-price-amount-help-post description">' . $opt['help_post'] . '</span>';
-            }
             if (isset($taxAmount) && $invoicing) {
-              $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . self::getTaxLabel($opt, $valueFieldName);
+              $opt['label'] = $opt['label'] . self::getTaxLabel($opt, $valueFieldName);
             }
             else {
-              $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName]) . '</span>';
+              $opt['label'] = $opt['label'] . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName]) . '</span>';
             }
-            $opt['label'] = $preHelpText . $opt['label'] . $postHelpText;
           }
+
+          $opt['label'] = $preHelpText . $opt['label'] . $postHelpText;
           $count = CRM_Utils_Array::value('count', $opt, '');
           $max_value = CRM_Utils_Array::value('max_value', $opt, '');
           $priceVal = implode($separator, [$opt[$valueFieldName] + $taxAmount, $count, $max_value]);
@@ -488,8 +490,17 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
           $count = CRM_Utils_Array::value('count', $opt, '');
           $max_value = CRM_Utils_Array::value('max_value', $opt, '');
 
+          $preHelpText = $postHelpText = '';
+          if (!empty($opt['help_pre'])) {
+            $preHelpText = $opt['help_pre'] . ':&nbsp;';
+          }
+          if (!empty($opt['help_post'])) {
+            $postHelpText = ':&nbsp;' . $opt['help_post'];
+          }
+
+          $taxAmount = $opt['tax_amount'] ?? NULL;
           if ($field->is_display_amounts) {
-            $opt['label'] .= '&nbsp;-&nbsp;';
+            $opt['label'] = !empty($opt['label']) ? $opt['label'] . '&nbsp;-&nbsp;' : '';
             if (isset($taxAmount) && $invoicing) {
               $opt['label'] = $opt['label'] . self::getTaxLabel($opt, $valueFieldName);
             }
@@ -498,6 +509,8 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
             }
           }
 
+          $opt['label'] = $preHelpText . $opt['label'] . $postHelpText;
+
           $priceVal[$opt['id']] = implode($separator, [$opt[$valueFieldName] + $taxAmount, $count, $max_value]);
 
           if (!in_array($opt['id'], $freezeOptions)) {
@@ -521,10 +534,20 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
         else {
           $visibility_id = self::getVisibilityOptionID('public');
         }
+
+        $class = '';
+        $maxlen = max(array_map('strlen', $selectOption));
+        if ($maxlen > 25) {
+          $class = ' huge';
+        }
+        if ($maxlen > 40) {
+          $class = ' huge40';
+        }
+
         $element = &$qf->add('select', $elementName, $label, $selectOption, $useRequired && $field->is_required, [
           'placeholder' => ts('- select %1 -', [1 => $label]),
           'price' => json_encode($priceVal),
-          'class' => 'crm-select2',
+          'class' => 'crm-select2' . $class,
           'data-price-field-values' => json_encode($customOption),
         ]);
 
@@ -543,23 +566,28 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
           $count = CRM_Utils_Array::value('count', $opt, '');
           $max_value = CRM_Utils_Array::value('max_value', $opt, '');
 
+          $preHelpText = $postHelpText = '';
+          $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>';
+          if (!empty($opt['help_pre'])) {
+            $preHelpText = '<span class="crm-price-amount-help-pre description">' . $opt['help_pre'] . '</span><span class="crm-price-amount-help-pre-separator">:&nbsp;</span>';
+          }
+          if (!empty($opt['help_post'])) {
+            $postHelpText = '<span class="crm-price-amount-help-post-separator">:&nbsp;</span><span class="crm-price-amount-help-post description">' . $opt['help_post'] . '</span>';
+          }
+
+          $taxAmount = $opt['tax_amount'] ?? NULL;
           if ($field->is_display_amounts) {
-            $preHelpText = $postHelpText = '';
-            if (isset($opt['help_pre'])) {
-              $preHelpText = '<span class="crm-price-amount-help-pre description">' . $opt['help_pre'] . '</span>: ';
-            }
-            if (isset($opt['help_post'])) {
-              $postHelpText = ': <span class="crm-price-amount-help-post description">' . $opt['help_post'] . '</span>';
-            }
-            $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>&nbsp;-&nbsp;';
+            $opt['label'] = !empty($opt['label']) ? $opt['label'] . '<span class="crm-price-amount-label-separator">&nbsp;-&nbsp;</span>' : '';
             if (isset($taxAmount) && $invoicing) {
-              $opt['label'] .= self::getTaxLabel($opt, $valueFieldName);
+              $opt['label'] = $opt['label'] . self::getTaxLabel($opt, $valueFieldName);
             }
             else {
-              $opt['label'] .= CRM_Utils_Money::format($opt[$valueFieldName]);
+              $opt['label'] = $opt['label'] . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName]) . '</span>';
             }
-            $opt['label'] = $preHelpText . $opt['label'] . $postHelpText;
           }
+
+          $opt['label'] = $preHelpText . $opt['label'] . $postHelpText;
+
           $priceVal = implode($separator, [$opt[$valueFieldName] + $taxAmount, $count, $max_value]);
           $check[$opId] = &$qf->createElement('checkbox', $opt['id'], NULL, $opt['label'],
             [
diff --git a/civicrm/CRM/Price/Form/Field.php b/civicrm/CRM/Price/Form/Field.php
index cdfea438f8cf5de88481837132af3e08ccbb321c..ec5896ad9142ec9bda49b7c14392ed84705d1ef3 100644
--- a/civicrm/CRM/Price/Form/Field.php
+++ b/civicrm/CRM/Price/Form/Field.php
@@ -638,7 +638,6 @@ class CRM_Price_Form_Field extends CRM_Core_Form {
    * Process the form.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     // store the submitted values in an array
diff --git a/civicrm/CRM/Profile/Form/Edit.php b/civicrm/CRM/Profile/Form/Edit.php
index 02b623bb27b34b3fbc9bb2047fde5e5f5f9e92fc..367848abf2b2363084f9845d0b153a5e94b8f670 100644
--- a/civicrm/CRM/Profile/Form/Edit.php
+++ b/civicrm/CRM/Profile/Form/Edit.php
@@ -243,9 +243,7 @@ SELECT module,is_reserved
   /**
    * Process the user submitted custom data values.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function postProcess() {
     parent::postProcess();
diff --git a/civicrm/CRM/Profile/Page/Dynamic.php b/civicrm/CRM/Profile/Page/Dynamic.php
index fe01add14987f79be1a8231aa58f1a75e6bfdf03..402e25eee57c1aad2241b214dcbe46729ac7bcdc 100644
--- a/civicrm/CRM/Profile/Page/Dynamic.php
+++ b/civicrm/CRM/Profile/Page/Dynamic.php
@@ -442,7 +442,7 @@ class CRM_Profile_Page_Dynamic extends CRM_Core_Page {
    * @param string $email
    *
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function getLinkedEmail($email): string {
diff --git a/civicrm/CRM/Queue/BAO/Queue.php b/civicrm/CRM/Queue/BAO/Queue.php
index db62b41289155c866fc8cb58fb592ca804c315f9..665c9908eb69a6e796e9a2de0d270e261248010a 100644
--- a/civicrm/CRM/Queue/BAO/Queue.php
+++ b/civicrm/CRM/Queue/BAO/Queue.php
@@ -41,7 +41,7 @@ class CRM_Queue_BAO_Queue extends CRM_Queue_DAO_Queue implements \Civi\Core\Hook
     return [
       'active' => ts('Active'),
       // ^^ The queue is active. It will execute tasks at the nearest convenience.
-      'complete' => ts('Complete'),
+      'completed' => ts('Complete'),
       // ^^ The queue will no longer execute tasks - because no new tasks are expected. Everything is complete.
       'draft' => ts('Draft'),
       // ^^ The queue is not ready to execute tasks - because we are still curating a list of tasks.
@@ -97,7 +97,7 @@ class CRM_Queue_BAO_Queue extends CRM_Queue_DAO_Queue implements \Civi\Core\Hook
    * @param \CRM_Queue_Queue $queue
    * @param array $items
    * @param array $outcomes
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see CRM_Utils_Hook::queueRun()
    */
   public static function hook_civicrm_queueRun_task(CRM_Queue_Queue $queue, array $items, array &$outcomes) {
diff --git a/civicrm/CRM/Queue/TaskRunner.php b/civicrm/CRM/Queue/TaskRunner.php
index 002e93b2ae3562449c892b015589c135f2c775ca..8c42ab84250129a02033e1c9e87d939af1aafe1d 100644
--- a/civicrm/CRM/Queue/TaskRunner.php
+++ b/civicrm/CRM/Queue/TaskRunner.php
@@ -29,7 +29,7 @@ class CRM_Queue_TaskRunner {
    *    - 'retry': Task encountered an error. Will try again later.
    *    - 'delete': Task encountered an error. Will not try again later. Removed from queue.
    *    - 'abort': Task encountered an error. Will not try again later. Stopped the queue.
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function run(CRM_Queue_Queue $queue, $item): string {
     $this->assertType($item->data, ['CRM_Queue_Task'], 'Cannot run. Invalid task given.');
@@ -42,14 +42,14 @@ class CRM_Queue_TaskRunner {
     if (is_numeric($queue->getSpec('retry_limit')) && $item->run_count > 1 + $queue->getSpec('retry_limit')) {
       \Civi::log()->debug("Skipping exhausted task: " . $task->title);
       $outcome = $queue->getSpec('error');
-      $exception = new \API_Exception(sprintf('Skipping exhausted task after %d tries: %s', $item->run_count, print_r($task, 1)), 'queue_retry_exhausted');
+      $exception = new \CRM_Core_Exception(sprintf('Skipping exhausted task after %d tries: %s', $item->run_count, print_r($task, 1)), 'queue_retry_exhausted');
     }
     else {
       \Civi::log()->debug("Running task: " . $task->title);
       try {
         $runResult = $task->run($this->createContext($queue));
         $outcome = $runResult ? 'ok' : $queue->getSpec('error');
-        $exception = ($outcome === 'ok') ? NULL : new \API_Exception('Queue task returned false', 'queue_false');
+        $exception = ($outcome === 'ok') ? NULL : new \CRM_Core_Exception('Queue task returned false', 'queue_false');
       }
       catch (\Exception $e) {
         $outcome = $queue->getSpec('error');
diff --git a/civicrm/CRM/Report/Form.php b/civicrm/CRM/Report/Form.php
index 1626a0383fe277c6309f717a638452ff12c7e995..087dfbefb454245a01efbeb1608cd19f0dd183f6 100644
--- a/civicrm/CRM/Report/Form.php
+++ b/civicrm/CRM/Report/Form.php
@@ -21,7 +21,7 @@ class CRM_Report_Form extends CRM_Core_Form {
    *
    * @var string[]
    */
-  public $expectedSmartyVariables = ['pager', 'skip', 'sections', 'grandStat', 'chartEnabled', 'uniqueId', 'rows'];
+  public $expectedSmartyVariables = ['pager', 'skip', 'sections', 'grandStat', 'chartEnabled', 'uniqueId', 'rows', 'group_bys_freq'];
 
   /**
    * Deprecated constant, Reports should be updated to use the getRowCount function.
@@ -628,7 +628,7 @@ class CRM_Report_Form extends CRM_Core_Form {
     // Ensure smarty variables are assigned here since this function is called from
     // the report api and the main buildForm is not.
     self::$_template->ensureVariablesAreAssigned($this->expectedSmartyVariables);
-    $this->_dashBoardRowCount = CRM_Utils_Request::retrieve('rowCount', 'Integer');
+    $this->_dashBoardRowCount = CRM_Utils_Request::retrieve('rowCount', 'Integer') ?? CRM_Utils_Request::retrieve('crmRowCount', 'Integer');
 
     $this->_section = CRM_Utils_Request::retrieve('section', 'Integer');
 
@@ -3825,7 +3825,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND
    *
    * This function is called by both the api (tests) and the UI.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function buildGroupTempTable(): void {
     if (!empty($this->groupTempTable) || empty($this->_params['gid_value']) || $this->groupFilterNotOptimised) {
diff --git a/civicrm/CRM/Report/Form/Contact/LoggingSummary.php b/civicrm/CRM/Report/Form/Contact/LoggingSummary.php
index ad6a1903fddd0da1651dfa27b30e55e14e229ebe..e56e6549679fec4861cff37c6b21701e0110a247 100644
--- a/civicrm/CRM/Report/Form/Contact/LoggingSummary.php
+++ b/civicrm/CRM/Report/Form/Contact/LoggingSummary.php
@@ -180,7 +180,6 @@ class CRM_Report_Form_Contact_LoggingSummary extends CRM_Logging_ReportSummary {
    *   Rows generated by SQL, with an array for each row.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function alterDisplay(&$rows) {
     // cache for id → is_deleted mapping
diff --git a/civicrm/CRM/Report/Form/Event/Income.php b/civicrm/CRM/Report/Form/Event/Income.php
index 24c6cead3710de7f6b6c33727aaf9c48b8e98ac2..1d559b0a66fc3b31727e711ef9f85f153232eec8 100644
--- a/civicrm/CRM/Report/Form/Event/Income.php
+++ b/civicrm/CRM/Report/Form/Event/Income.php
@@ -73,7 +73,7 @@ class CRM_Report_Form_Event_Income extends CRM_Report_Form {
       $eventSummary[$eventDAO->event_id][ts('End Date')] = CRM_Utils_Date::customFormat($eventDAO->end_date);
       $eventSummary[$eventDAO->event_id][ts('Event Type')] = $eventDAO->event_type;
       $eventSummary[$eventDAO->event_id][ts('Event Income')] = CRM_Utils_Money::format($eventDAO->total, $eventDAO->currency);
-      $eventSummary[$eventDAO->event_id][ts('Registered Participant')] = "{$eventDAO->participant} ({" . implode(', ', $this->getActiveParticipantStatuses()) . ")";
+      $eventSummary[$eventDAO->event_id][ts('Registered Participant')] = "{$eventDAO->participant} (" . implode(', ', $this->getActiveParticipantStatuses()) . ")";
       $currency[$eventDAO->event_id] = $eventDAO->currency;
     }
     $this->assign_by_ref('summary', $eventSummary);
diff --git a/civicrm/CRM/Upgrade/Incremental/Base.php b/civicrm/CRM/Upgrade/Incremental/Base.php
index e9bf28307d325dd48e5533f00bad41c4c617490d..a52d0aaa25b44cea49329b5ac8def35fffb3005d 100644
--- a/civicrm/CRM/Upgrade/Incremental/Base.php
+++ b/civicrm/CRM/Upgrade/Incremental/Base.php
@@ -235,7 +235,7 @@ class CRM_Upgrade_Incremental_Base {
    * @param CRM_Queue_TaskContext $ctx
    * @param string $name
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function removePaymentProcessorType(CRM_Queue_TaskContext $ctx, $name) {
     $processors = civicrm_api3('PaymentProcessor', 'getcount', ['payment_processor_type_id' => $name]);
diff --git a/civicrm/CRM/Upgrade/Incremental/MessageTemplates.php b/civicrm/CRM/Upgrade/Incremental/MessageTemplates.php
index 9a0b6c0abdee4deb2bb92e05dc416479a5b9a833..67fd553e545e843817047054d109b5bfeea11eb2 100644
--- a/civicrm/CRM/Upgrade/Incremental/MessageTemplates.php
+++ b/civicrm/CRM/Upgrade/Incremental/MessageTemplates.php
@@ -446,7 +446,7 @@ class CRM_Upgrade_Incremental_MessageTemplates {
    * @param string $old
    * @param string $new
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function replaceTokenInGreetingOptions(string $old, string $new): void {
     $oldToken = '{' . $old . '}';
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFifty.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFifty.php
index 7d600df0de6a047ebb57700e89de547e6737a041..d59a42d62693f394b4458a07e6e2666a2f0a136a 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveFifty.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFifty.php
@@ -60,8 +60,7 @@ class CRM_Upgrade_Incremental_php_FiveFifty extends CRM_Upgrade_Incremental_Base
    * (Getting the other entities done is a stretch goal).
    *
    * @return bool
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function convertMappingFieldLabelsToNames(): bool {
     CRM_Import_ImportProcessor::convertSavedFields();
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyFive.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyFive.php
new file mode 100644
index 0000000000000000000000000000000000000000..fe8eb2a4085eccffdd25536b90d8f98851ae6459
--- /dev/null
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyFive.php
@@ -0,0 +1,48 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | 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       |
+ +--------------------------------------------------------------------+
+ */
+
+/**
+ * Upgrade logic for the 5.55.x series.
+ *
+ * Each minor version in the series is handled by either a `5.55.x.mysql.tpl` file,
+ * or a function in this class named `upgrade_5_55_x`.
+ * If only a .tpl file exists for a version, it will be run automatically.
+ * If the function exists, it must explicitly add the 'runSql' task if there is a corresponding .mysql.tpl.
+ *
+ * This class may also implement `setPreUpgradeMessage()` and `setPostUpgradeMessage()` functions.
+ */
+class CRM_Upgrade_Incremental_php_FiveFiftyFive extends CRM_Upgrade_Incremental_Base {
+
+  /**
+   * Upgrade step; adds tasks including 'runSql'.
+   *
+   * @param string $rev
+   *   The version number matching this function name
+   */
+  public function upgrade_5_55_alpha1($rev): void {
+    $this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev);
+  }
+
+  public function upgrade_5_55_beta2($rev): void {
+    $this->addTask(ts('Fix Event Badge Upgrade'), 'fix_event_badge_upgrade');
+  }
+
+  public static function fix_event_badge_upgrade() {
+    $problematic_fields = CRM_Core_DAO::executeQuery('SELECT id, data FROM civicrm_print_label WHERE data like \'%crmDate:\"%B %E%f\"%\'');
+    while ($problematic_fields->fetch()) {
+      $data = $problematic_fields->data;
+      $data = str_replace('crmDate:"%B %E%f"', 'crmDate:\\\"%B %E%f\\\"', $data);
+      CRM_Core_DAO::executeQuery("UPDATE civicrm_print_label SET data = '{$data}' WHERE id = %1", [1 => [$problematic_fields->id, 'Positive']]);
+    }
+    return TRUE;
+  }
+
+}
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyOne.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyOne.php
index abff73daa507700e62934e411c85df30bb911ddc..3acc87c862afcf99df1a0e2c0a410f71aca29ee2 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyOne.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFiftyOne.php
@@ -88,7 +88,7 @@ class CRM_Upgrade_Incremental_php_FiveFiftyOne extends CRM_Upgrade_Incremental_B
    * This updates them to hold the name - eg. 'total_amount'.
    *
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function convertMappingFieldLabelsToNames(): bool {
     // Contribution fields....
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFortyOne.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFortyOne.php
index dcf9e4c42297f4f60f8fdc0fef7db169e70518ec..2096ae551bbd01eec7675e142c06bdc85d646642 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveFortyOne.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFortyOne.php
@@ -107,7 +107,7 @@ class CRM_Upgrade_Incremental_php_FiveFortyOne extends CRM_Upgrade_Incremental_B
    *
    * @return bool
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function installCustomSearches(CRM_Queue_TaskContext $ctx) {
     // Install via direct SQL manipulation. Note that:
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveFortySeven.php b/civicrm/CRM/Upgrade/Incremental/php/FiveFortySeven.php
index 7fcf0bfcc81aeb21a0b9630d415196a5ede39d82..b28ab386041a5b1394fdb41a6c895460e9799255 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveFortySeven.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveFortySeven.php
@@ -96,7 +96,6 @@ class CRM_Upgrade_Incremental_php_FiveFortySeven extends CRM_Upgrade_Incremental
    * @param \CRM_Queue_TaskContext $ctx
    *
    * @return bool
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveThirty.php b/civicrm/CRM/Upgrade/Incremental/php/FiveThirty.php
index 3faabda7e5aaa1833a9612412b1b59dcf6d05c53..60a95bb35129237569bd22f3c36f6126de5f9faa 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveThirty.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveThirty.php
@@ -33,7 +33,6 @@ class CRM_Upgrade_Incremental_php_FiveThirty extends CRM_Upgrade_Incremental_Bas
    *
    * @return bool
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function installFinancialAcls(CRM_Queue_TaskContext $ctx) {
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyFour.php b/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyFour.php
index b34afcf7b0eb588a770db198d2c74deb995bed36..96a970526b6ad04b5d0dcbec2f5eabfcdc3d4dae 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyFour.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyFour.php
@@ -40,7 +40,7 @@ class CRM_Upgrade_Incremental_php_FiveTwentyFour extends CRM_Upgrade_Incremental
    *
    * @return bool
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function installCreditNotes(CRM_Queue_TaskContext $ctx) {
     // Install via direct SQL manipulation. Note that:
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyNine.php b/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyNine.php
index b862968647460e2e82606716964bfae6fb9b7087..c52b0a588337e07023aa66c6c3b181980d26a2d0 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyNine.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FiveTwentyNine.php
@@ -93,7 +93,6 @@ class CRM_Upgrade_Incremental_php_FiveTwentyNine extends CRM_Upgrade_Incremental
    *
    * @return bool
    *
-   * @throws \CiviCRM_API3_Exception
    * @throws \CRM_Core_Exception
    */
   public static function installEventCart(CRM_Queue_TaskContext $ctx) {
diff --git a/civicrm/CRM/Upgrade/Incremental/php/FourSeven.php b/civicrm/CRM/Upgrade/Incremental/php/FourSeven.php
index 71f6d29712e69ce00a5863ce8eff35c169317f80..d5306243e7ef5f6f52e09587c4d637aff1c06883 100644
--- a/civicrm/CRM/Upgrade/Incremental/php/FourSeven.php
+++ b/civicrm/CRM/Upgrade/Incremental/php/FourSeven.php
@@ -820,7 +820,7 @@ FROM `civicrm_dashboard_contact` JOIN `civicrm_contact` WHERE civicrm_dashboard_
     try {
       civicrm_api3('Extension', 'disable', ['key' => 'com.klangsoft.flexiblejobs']);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // just ignore if the extension isn't installed
     }
 
diff --git a/civicrm/CRM/Upgrade/Incremental/sql/5.55.alpha1.mysql.tpl b/civicrm/CRM/Upgrade/Incremental/sql/5.55.alpha1.mysql.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..03093c0189015f99b11c595b47454dd02373ff23
--- /dev/null
+++ b/civicrm/CRM/Upgrade/Incremental/sql/5.55.alpha1.mysql.tpl
@@ -0,0 +1 @@
+{* file to handle db changes in 5.55.alpha1 during upgrade *}
diff --git a/civicrm/CRM/Utils/API/MatchOption.php b/civicrm/CRM/Utils/API/MatchOption.php
index fa87a1cf8b03de2b87eb7741b1e317ca4b6edfd1..97301161b90a66dbc73eb58f4e4a1fda10ff5df6 100644
--- a/civicrm/CRM/Utils/API/MatchOption.php
+++ b/civicrm/CRM/Utils/API/MatchOption.php
@@ -128,14 +128,14 @@ class CRM_Utils_API_MatchOption implements API_Wrapper {
    *
    * @return array
    *   revised $createParams, including 'id' if known
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public function match($entity, $createParams, $keys, $isMandatory) {
     $getParams = $this->createGetParams($createParams, $keys);
     $getResult = civicrm_api3($entity, 'get', $getParams);
     if ($getResult['count'] == 0) {
       if ($isMandatory) {
-        throw new API_Exception("Failed to match existing record");
+        throw new CRM_Core_Exception("Failed to match existing record");
       }
       // OK, don't care
       return $createParams;
@@ -146,7 +146,7 @@ class CRM_Utils_API_MatchOption implements API_Wrapper {
       return $createParams;
     }
     else {
-      throw new API_Exception("Ambiguous match criteria");
+      throw new CRM_Core_Exception("Ambiguous match criteria");
     }
   }
 
diff --git a/civicrm/CRM/Utils/API/ReloadOption.php b/civicrm/CRM/Utils/API/ReloadOption.php
index 3e320d5c1408d94c277b966765c4603f41fbafb4..0ed1c4869109968a87d80d9c72366b155c67968c 100644
--- a/civicrm/CRM/Utils/API/ReloadOption.php
+++ b/civicrm/CRM/Utils/API/ReloadOption.php
@@ -80,7 +80,7 @@ class CRM_Utils_API_ReloadOption implements API_Wrapper {
         ];
         $reloadResult = civicrm_api3($apiRequest['entity'], 'get', $params);
         if ($reloadResult['is_error']) {
-          throw new API_Exception($reloadResult['error_message']);
+          throw new CRM_Core_Exception($reloadResult['error_message']);
         }
         $result['values'][$id] = array_merge($result['values'][$id], $reloadResult['values'][$result['id']]);
         return $result;
@@ -95,7 +95,7 @@ class CRM_Utils_API_ReloadOption implements API_Wrapper {
         return $result;
 
       default:
-        throw new API_Exception("Unknown reload mode " . $reloadMode);
+        throw new CRM_Core_Exception("Unknown reload mode " . $reloadMode);
     }
   }
 
diff --git a/civicrm/CRM/Utils/Check/Component.php b/civicrm/CRM/Utils/Check/Component.php
index 2f57004adeac08cab6f600a86befab37e61c55f3..f09877f2848967f644042e6109d256b9f2589a8d 100644
--- a/civicrm/CRM/Utils/Check/Component.php
+++ b/civicrm/CRM/Utils/Check/Component.php
@@ -23,7 +23,7 @@ abstract class CRM_Utils_Check_Component {
    *
    * @return array
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function getChecksConfig() {
@@ -65,7 +65,7 @@ abstract class CRM_Utils_Check_Component {
    *
    * @return CRM_Utils_Check_Message[]
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function checkAll($requestedChecks = [], $includeDisabled = FALSE) {
@@ -105,7 +105,7 @@ abstract class CRM_Utils_Check_Component {
    *
    * @return bool
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function isDisabled($method) {
diff --git a/civicrm/CRM/Utils/Check/Component/Case.php b/civicrm/CRM/Utils/Check/Component/Case.php
index 89f623ed73fa7b2cfe8889f2b92a9824900d5ece..d6b4c1148824d86f66d1eaae0a8bc1e8d49b6ba0 100644
--- a/civicrm/CRM/Utils/Check/Component/Case.php
+++ b/civicrm/CRM/Utils/Check/Component/Case.php
@@ -40,7 +40,7 @@ class CRM_Utils_Check_Component_Case extends CRM_Utils_Check_Component {
    * @inheritDoc
    */
   public function isEnabled() {
-    return CRM_Case_BAO_Case::enabled();
+    return CRM_Case_BAO_Case::isComponentEnabled();
   }
 
   /**
diff --git a/civicrm/CRM/Utils/Check/Component/Cms.php b/civicrm/CRM/Utils/Check/Component/Cms.php
index 397d956f21c66119bbac7d57f0ccac50427e29e4..1c4c7a41dd237ee0b001bfe395d3590dff7116eb 100644
--- a/civicrm/CRM/Utils/Check/Component/Cms.php
+++ b/civicrm/CRM/Utils/Check/Component/Cms.php
@@ -133,6 +133,15 @@ class CRM_Utils_Check_Component_Cms extends CRM_Utils_Check_Component {
     ];
   }
 
+  /**
+   * For sites running in WordPress, make sure clean URLs are properly set in settings file.
+   *
+   * @return CRM_Utils_Check_Message[]
+   */
+  public static function checkCleanurls() {
+    return CRM_Core_Config::singleton()->userSystem->checkCleanurls();
+  }
+
   /**
    * See if a page exists and is published.
    *
diff --git a/civicrm/CRM/Utils/Check/Component/FinancialTypeAcls.php b/civicrm/CRM/Utils/Check/Component/FinancialTypeAcls.php
index 05601e0778abdd12baa945dc057f6f12b8b76fd8..ef9a475b1c4c91fbab60cfe6170b97be053a270f 100644
--- a/civicrm/CRM/Utils/Check/Component/FinancialTypeAcls.php
+++ b/civicrm/CRM/Utils/Check/Component/FinancialTypeAcls.php
@@ -18,7 +18,7 @@ class CRM_Utils_Check_Component_FinancialTypeAcls extends CRM_Utils_Check_Compon
 
   /**
    * @return CRM_Utils_Check_Message[]
-   * @throws CiviCRM_API3_Exception
+   * @throws CRM_Core_Exception
    */
   public static function checkFinancialAclReport() {
     $messages = [];
diff --git a/civicrm/CRM/Utils/Check/Component/Schema.php b/civicrm/CRM/Utils/Check/Component/Schema.php
index 2d6a8aa7289031d5385c409c92577b47c12cde53..a61288d4b392a58af6f3cecf116bed4e4a7d6b84 100644
--- a/civicrm/CRM/Utils/Check/Component/Schema.php
+++ b/civicrm/CRM/Utils/Check/Component/Schema.php
@@ -20,7 +20,7 @@ class CRM_Utils_Check_Component_Schema extends CRM_Utils_Check_Component {
    * Check defined indices exist.
    *
    * @return CRM_Utils_Check_Message[]
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function checkIndices() {
     $messages = [];
@@ -106,7 +106,7 @@ class CRM_Utils_Check_Component_Schema extends CRM_Utils_Check_Component {
         'options' => ['limit' => 0],
       ]);
     }
-    catch (CiviCRM_API3_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $messages[] = new CRM_Utils_Check_Message(
         __FUNCTION__,
         ts('The smart group check was unable to run. This is likely to because a database upgrade is pending.'),
@@ -149,7 +149,7 @@ class CRM_Utils_Check_Component_Schema extends CRM_Utils_Check_Component {
             $url = CRM_Utils_System::url('civicrm/admin/custom/group/field/update', "action=update&reset=1&gid={$customField['custom_group_id']}&id={$field['cfid']}", TRUE);
             $fieldName = '<a href="' . $url . '" title="' . ts('Edit Custom Field', ['escape' => 'js']) . '">' . $customField['label'] . '</a>';
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
             $fieldName = '<span style="color:red">' . ts('Deleted') . ' - ' . ts('Field ID %1', [1 => $field['cfid']]) . '</span> ';
           }
         }
diff --git a/civicrm/CRM/Utils/Check/Message.php b/civicrm/CRM/Utils/Check/Message.php
index 7c425b30d784c6135523a42d2259e36746bcb642..8aae42516f2fe799e8f0908eb276ef019c540094 100644
--- a/civicrm/CRM/Utils/Check/Message.php
+++ b/civicrm/CRM/Utils/Check/Message.php
@@ -246,7 +246,7 @@ class CRM_Utils_Check_Message {
    *
    * @return bool
    *   TRUE means hidden, FALSE means visible.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function checkStatusPreference() {
     $this->hiddenUntil = FALSE;
diff --git a/civicrm/CRM/Utils/File.php b/civicrm/CRM/Utils/File.php
index 977b9fc8368e8d0cf94ee6635f288379a35c4df1..c2299ec490bcd35ec1831a5f40e386e120ea8bd2 100644
--- a/civicrm/CRM/Utils/File.php
+++ b/civicrm/CRM/Utils/File.php
@@ -531,6 +531,11 @@ class CRM_Utils_File {
     if (!empty($dir) && is_dir($dir)) {
       $htaccess = <<<HTACCESS
 <Files "*">
+# OpenLiteSpeed 1.4.38+
+  <IfModule !authz_core_module>
+    RewriteRule .* - [F,L]
+  </IfModule>
+
 # Apache 2.2
   <IfModule !authz_core_module>
     Order allow,deny
diff --git a/civicrm/CRM/Utils/Mail/EmailProcessor.php b/civicrm/CRM/Utils/Mail/EmailProcessor.php
index 49e20acfb364f3297bc779f092c41f478d9452ca..a31bef4d3deee84606e2ce60906842d0654bdd20 100644
--- a/civicrm/CRM/Utils/Mail/EmailProcessor.php
+++ b/civicrm/CRM/Utils/Mail/EmailProcessor.php
@@ -243,7 +243,7 @@ class CRM_Utils_Mail_EmailProcessor {
 
         // get $replyTo from either the Reply-To header or from From
         // FIXME: make sure it works with Reply-Tos containing non-email stuff
-        $replyTo = $mail->getHeader('Reply-To') ? $mail->getHeader('Reply-To') : $mail->from->email;
+        $replyTo = $mail->getHeader('Reply-To') ? $mail->getHeader('Reply-To') : ($mail->from ? $mail->from->email : "");
 
         // handle the action by passing it to the proper API call
         // FIXME: leave only one-letter cases when dropping legacy support
diff --git a/civicrm/CRM/Utils/OptionBag.php b/civicrm/CRM/Utils/OptionBag.php
index c6c1ca20e986f5060666bb8bc5e00b30693c4cb2..3061573ba70676e7ff1591159dbbcaafd854fe3a 100644
--- a/civicrm/CRM/Utils/OptionBag.php
+++ b/civicrm/CRM/Utils/OptionBag.php
@@ -42,7 +42,7 @@ class CRM_Utils_OptionBag implements ArrayAccess, IteratorAggregate, Countable {
    * @param string|null $type
    * @param mixed $default
    * @return mixed
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public function get($key, $type = NULL, $default = NULL) {
     if (!array_key_exists($key, $this->data)) {
@@ -56,7 +56,7 @@ class CRM_Utils_OptionBag implements ArrayAccess, IteratorAggregate, Countable {
       return $r;
     }
     else {
-      throw new \API_Exception(ts("Could not find valid value for %1 (%2)", [1 => $key, 2 => $type]));
+      throw new \CRM_Core_Exception(ts("Could not find valid value for %1 (%2)", [1 => $key, 2 => $type]));
     }
   }
 
diff --git a/civicrm/CRM/Utils/SQL/BaseParamQuery.php b/civicrm/CRM/Utils/SQL/BaseParamQuery.php
index 960dec4cbf6695778096cfb7724b97d2127cb3e6..e2f5fe5fe50af6dc153b9da4d8f4bdd2f8cb4a04 100644
--- a/civicrm/CRM/Utils/SQL/BaseParamQuery.php
+++ b/civicrm/CRM/Utils/SQL/BaseParamQuery.php
@@ -125,7 +125,7 @@ class CRM_Utils_SQL_BaseParamQuery implements ArrayAccess {
                 $values[$valueKey] = 'NULL';
               }
               elseif (!is_numeric($value)) {
-                //throw new API_Exception("Failed encoding non-numeric value" . var_export(array($m[0] => $values), TRUE));
+                //throw new CRM_Core_Exception("Failed encoding non-numeric value" . var_export(array($m[0] => $values), TRUE));
                 throw new CRM_Core_Exception("Failed encoding non-numeric value (" . $m[0] . ")");
               }
             }
diff --git a/civicrm/CRM/Utils/String.php b/civicrm/CRM/Utils/String.php
index 4b230e1879ce9e9eb82089e04efd7d4bce856689..c1673746254673dedb9f88593dc713a1b24a8486 100644
--- a/civicrm/CRM/Utils/String.php
+++ b/civicrm/CRM/Utils/String.php
@@ -88,7 +88,7 @@ class CRM_Utils_String {
   }
 
   /**
-   * Convert possibly underscore separated words to camel case.
+   * Convert possibly underscore, space or dash separated words to CamelCase.
    *
    * @param string $str
    * @param bool $ucFirst
@@ -96,7 +96,7 @@ class CRM_Utils_String {
    * @return string
    */
   public static function convertStringToCamel($str, $ucFirst = TRUE) {
-    $fragments = explode('_', $str);
+    $fragments = preg_split('/[-_ ]/', $str, -1, PREG_SPLIT_NO_EMPTY);
     $camel = implode('', array_map('ucfirst', $fragments));
     return $ucFirst ? $camel : lcfirst($camel);
   }
@@ -111,6 +111,16 @@ class CRM_Utils_String {
     return strtolower(ltrim(preg_replace('/(?=[A-Z])/', '_$0', $str), '_'));
   }
 
+  /**
+   * Converts `CamelCase` or `snake_case` to `dash-format`
+   *
+   * @param string $str
+   * @return string
+   */
+  public static function convertStringToDash(string $str): string {
+    return strtolower(implode('-', preg_split('/[-_ ]|(?=[A-Z])/', $str, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE)));
+  }
+
   /**
    * Takes a variable name and munges it randomly into another variable name.
    *
diff --git a/civicrm/CRM/Utils/System/Base.php b/civicrm/CRM/Utils/System/Base.php
index d2e5fa93bbe66fa9d5e0306cf99e829529a8558c..9426bf28adee68d0bd05862bd9a8e3fc9d4f2889 100644
--- a/civicrm/CRM/Utils/System/Base.php
+++ b/civicrm/CRM/Utils/System/Base.php
@@ -1110,4 +1110,8 @@ abstract class CRM_Utils_System_Base {
     return TRUE;
   }
 
+  public function checkCleanurls() {
+    return [];
+  }
+
 }
diff --git a/civicrm/CRM/Utils/System/WordPress.php b/civicrm/CRM/Utils/System/WordPress.php
index 928814f6d6d2900f59728dbb9eef1216a5462da4..e905bb003efcd6c045798725737060ceaca4768b 100644
--- a/civicrm/CRM/Utils/System/WordPress.php
+++ b/civicrm/CRM/Utils/System/WordPress.php
@@ -1509,4 +1509,103 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
     return apply_filters('civicrm_exit_after_fatal', $ret);
   }
 
+  /**
+   * Make sure clean URLs are properly set in settings file.
+   *
+   * @return CRM_Utils_Check_Message[]
+   */
+  public function checkCleanurls() {
+    $config = CRM_Core_Config::singleton();
+    $clean = 0;
+    if (defined('CIVICRM_CLEANURL')) {
+      $clean = CIVICRM_CLEANURL;
+    }
+    if ($clean == 1) {
+      //cleanURLs are enabled in CiviCRM, let's make sure the wordpress permalink settings and cache are actually correct by checking the first active contribution page
+      $contributionPages = \Civi\Api4\ContributionPage::get(FALSE)
+        ->addSelect('id')
+        ->addWhere('is_active', '=', TRUE)
+        ->setLimit(1)
+        ->execute();
+      if (count($contributionPages) > 0) {
+        $activePageId = $contributionPages[0]['id'];
+        $message = self::checkCleanPage('/contribute/transact/?reset=1&id=', $activePageId, $config);
+
+        return $message;
+      }
+      else {
+        //no active contribution pages, we can check an event page. This probably won't ever happen.
+        $eventPages = \Civi\Api4\Event::get(FALSE)
+          ->addSelect('id')
+          ->addWhere('is_active', '=', TRUE)
+          ->setLimit(1)
+          ->execute();
+        if (count($eventPages) > 0) {
+          $activePageId = $eventPages[0]['id'];
+          $message = self::checkCleanPage('/event/info/?reset=1&id=', $activePageId, $config);
+
+          return $message;
+        }
+        else {
+          //If there are no active event or contribution pages, we'll skip this check for now.
+
+          return [];
+        }
+      }
+    }
+    else {
+      //cleanURLs aren't enabled or aren't defined correctly in CiviCRM, admin should check civicrm.settings.php
+      $warning = ts('Clean URLs are not enabled correctly in CiviCRM. This can lead to "valid id" errors for users registering for events or making donations. Check civicrm.settings.php and review <a %1>the documentation</a> for more information.', [1 => 'href="' . CRM_Utils_System::docURL2('sysadmin/integration/wordpress/clean-urls/', TRUE) . '"']);
+
+      return [
+        new CRM_Utils_Check_Message(
+          __FUNCTION__,
+          $warning,
+          ts('Clean URLs Not Enabled'),
+          \Psr\Log\LogLevel::WARNING,
+          'fa-wordpress'
+        ),
+      ];
+    }
+  }
+
+  private static function checkCleanPage($slug, $id, $config) {
+    $page = $config->userFrameworkBaseURL . $config->wpBasePage . $slug . $id;
+    try {
+      $client = new \GuzzleHttp\Client();
+      $res = $client->head($page, ['http_errors' => FALSE]);
+      $httpCode = $res->getStatusCode();
+    }
+    catch (Exception $e) {
+      Civi::log()->error("Could not run " . __FUNCTION__ . " on $page. GuzzleHttp\Client returned " . $e->getMessage());
+
+      return [
+        new CRM_Utils_Check_Message(
+          __FUNCTION__,
+          ts('Could not load a clean page to check'),
+          ts('Guzzle client error'),
+          \Psr\Log\LogLevel::ERROR,
+          'fa-wordpress'
+        ),
+      ];
+    }
+
+    if ($httpCode == 404) {
+      $warning = ts('<a %1>Click here to go to Settings > Permalinks, then click "Save" to refresh the cache.</a>', [1 => 'href="' . get_admin_url(NULL, 'options-permalink.php') . '"']);
+      $message = new CRM_Utils_Check_Message(
+        __FUNCTION__,
+        $warning,
+        ts('Wordpress Permalinks cache needs to be refreshed.'),
+        \Psr\Log\LogLevel::WARNING,
+        'fa-wordpress'
+      );
+
+      return [$message];
+    }
+
+    //sanity
+    return [];
+
+  }
+
 }
diff --git a/civicrm/CRM/Utils/Token.php b/civicrm/CRM/Utils/Token.php
index ed97fbf8039eb0d1f1a9efc99c2ea8765a4f1f89..8e354309c718aeba035c9c91ea268cc499e52965 100644
--- a/civicrm/CRM/Utils/Token.php
+++ b/civicrm/CRM/Utils/Token.php
@@ -1595,7 +1595,7 @@ class CRM_Utils_Token {
    * @param array $knownTokens
    * @param bool $escapeSmarty
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function replaceCaseTokens($caseId, $str, $knownTokens = NULL, $escapeSmarty = FALSE): string {
     if (strpos($str, '{case.') === FALSE) {
@@ -1617,7 +1617,7 @@ class CRM_Utils_Token {
    * @param string $token
    * @param array $entityArray
    * @return string
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getApiTokenReplacement($entity, $token, $entityArray) {
     if (!isset($entityArray[$token])) {
@@ -1770,7 +1770,7 @@ class CRM_Utils_Token {
           ]);
           $value = CRM_Utils_Money::format($value, NULL, NULL, TRUE);
         }
-        catch (CiviCRM_API3_Exception $e) {
+        catch (CRM_Core_Exception $e) {
           // we can anticipate we will get an error if the minimum fee is set to 'NULL' because of the way the
           // api handles NULL (4.4)
           $value = 0;
diff --git a/civicrm/Civi/API/Api3SelectQuery.php b/civicrm/Civi/API/Api3SelectQuery.php
index 3bd6708ffa75f8914a4027bd52139729521b3117..366223290e7f3c5e778a681e28d2cc150538ffd3 100644
--- a/civicrm/Civi/API/Api3SelectQuery.php
+++ b/civicrm/Civi/API/Api3SelectQuery.php
@@ -111,7 +111,7 @@ class Api3SelectQuery extends SelectQuery {
         $orClause = [];
         foreach ($orGroup as $key) {
           if (!isset($filters[$key])) {
-            throw new \CiviCRM_API3_Exception("'$key' specified in OR group but not added to params");
+            throw new \CRM_Core_Exception("'$key' specified in OR group but not added to params");
           }
           $orClause[] = $filters[$key];
           unset($filters[$key]);
diff --git a/civicrm/Civi/API/Exception/NotImplementedException.php b/civicrm/Civi/API/Exception/NotImplementedException.php
index 6deb57071d804fecda1b4e86097af15190df75b4..c3cf691dc3f47c94083bbb4ea585a289b9a67423 100644
--- a/civicrm/Civi/API/Exception/NotImplementedException.php
+++ b/civicrm/Civi/API/Exception/NotImplementedException.php
@@ -1,13 +1,11 @@
 <?php
 namespace Civi\API\Exception;
 
-require_once 'api/Exception.php';
-
 /**
  * Class NotImplementedException
  * @package Civi\API\Exception
  */
-class NotImplementedException extends \API_Exception {
+class NotImplementedException extends \CRM_Core_Exception {
 
   /**
    * @param string $message
@@ -20,7 +18,7 @@ class NotImplementedException extends \API_Exception {
    *   A previous exception which caused this new exception.
    */
   public function __construct($message, $extraParams = [], \Exception $previous = NULL) {
-    parent::__construct($message, \API_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
+    parent::__construct($message, \CRM_Core_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
   }
 
 }
diff --git a/civicrm/Civi/API/Exception/UnauthorizedException.php b/civicrm/Civi/API/Exception/UnauthorizedException.php
index 12e44bda3de5d4404db085b7275bdac0e2b8b159..1e284ee17ee8b929ddaf86124012249253ea72ba 100644
--- a/civicrm/Civi/API/Exception/UnauthorizedException.php
+++ b/civicrm/Civi/API/Exception/UnauthorizedException.php
@@ -1,13 +1,11 @@
 <?php
 namespace Civi\API\Exception;
 
-require_once 'api/Exception.php';
-
 /**
  * Class UnauthorizedException
  * @package Civi\API\Exception
  */
-class UnauthorizedException extends \API_Exception {
+class UnauthorizedException extends \CRM_Core_Exception {
 
   /**
    * @param string $message
@@ -20,7 +18,7 @@ class UnauthorizedException extends \API_Exception {
    *   A previous exception which caused this new exception.
    */
   public function __construct($message, $extraParams = [], \Exception $previous = NULL) {
-    parent::__construct($message, \API_Exception::UNAUTHORIZED, $extraParams, $previous);
+    parent::__construct($message, \CRM_Core_Exception::UNAUTHORIZED, $extraParams, $previous);
   }
 
 }
diff --git a/civicrm/Civi/API/Kernel.php b/civicrm/Civi/API/Kernel.php
index 8dae508a790b552d918d849347e68a7e5a3b4e64..02ca71bfd4f67c15d5f078f2709443f84aff5bbb 100644
--- a/civicrm/Civi/API/Kernel.php
+++ b/civicrm/Civi/API/Kernel.php
@@ -52,7 +52,7 @@ class Kernel {
    *   Array to be passed to API function.
    *
    * @return array|int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see runSafe
    * @deprecated
    */
@@ -72,7 +72,7 @@ class Kernel {
    *   Array to be passed to API function.
    *
    * @return array|int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function runSafe($entity, $action, $params) {
     $apiRequest = [];
@@ -86,7 +86,7 @@ class Kernel {
         $this->dispatcher->dispatch('civi.api.exception', new ExceptionEvent($e, NULL, $apiRequest, $this));
       }
 
-      if ($e instanceof \API_Exception) {
+      if ($e instanceof \CRM_Core_Exception) {
         $err = $this->formatApiException($e, $apiRequest);
       }
       elseif ($e instanceof \PEAR_Exception) {
@@ -136,7 +136,7 @@ class Kernel {
    *
    * @param array|\Civi\Api4\Generic\AbstractAction $apiRequest
    * @return array|\Civi\Api4\Generic\Result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    * @throws \Civi\API\Exception\UnauthorizedException
    */
@@ -155,7 +155,7 @@ class Kernel {
    * Bootstrap - Load basic dependencies and sanity-check inputs.
    *
    * @param \Civi\Api4\Generic\AbstractAction|array $apiRequest
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function boot($apiRequest) {
     require_once 'api/Exception.php';
@@ -166,7 +166,7 @@ class Kernel {
     switch ($apiRequest['version']) {
       case 3:
         if (!is_array($apiRequest['params'])) {
-          throw new \API_Exception('Input variable `params` is not an array', 2000);
+          throw new \CRM_Core_Exception('Input variable `params` is not an array', 2000);
         }
         _civicrm_api3_initialize();
         break;
@@ -176,13 +176,13 @@ class Kernel {
         break;
 
       default:
-        throw new \API_Exception('Unknown api version', 2000);
+        throw new \CRM_Core_Exception('Unknown api version', 2000);
     }
   }
 
   /**
    * @param array $apiRequest
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function validate($apiRequest) {
   }
@@ -305,7 +305,7 @@ class Kernel {
    *
    * @return array
    *   API response.
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function formatException($e, $apiRequest) {
     $data = [];
@@ -316,14 +316,14 @@ class Kernel {
   }
 
   /**
-   * @param \API_Exception $e
+   * @param \CRM_Core_Exception $e
    *   An unhandled exception.
    * @param array $apiRequest
    *   The full description of the API request.
    *
    * @return array
    *   (API response)
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function formatApiException($e, $apiRequest) {
     $data = $e->getExtraParams();
@@ -349,7 +349,7 @@ class Kernel {
    * @return array
    *   API response.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function formatPearException($e, $apiRequest) {
     $data = [];
@@ -384,7 +384,7 @@ class Kernel {
    * @param mixed $code
    *   Doesn't appear to be used.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @return array
    *   Array<type>.
    */
@@ -404,7 +404,7 @@ class Kernel {
 
     if (isset($apiRequest['params']) && is_array($apiRequest['params']) && !empty($apiRequest['params']['api.has_parent'])) {
       $errorCode = empty($data['error_code']) ? 'chained_api_failed' : $data['error_code'];
-      throw new \API_Exception('Error in call to ' . $apiRequest['entity'] . '_' . $apiRequest['action'] . ' : ' . $msg, $errorCode, $data);
+      throw new \CRM_Core_Exception('Error in call to ' . $apiRequest['entity'] . '_' . $apiRequest['action'] . ' : ' . $msg, $errorCode, $data);
     }
 
     return $data;
diff --git a/civicrm/Civi/API/Provider/ProviderInterface.php b/civicrm/Civi/API/Provider/ProviderInterface.php
index b449338e613aa205f2d80bdd7efcee87dee0c28f..b7830da936bf1dc67dad4ca825b9ff7e02dd06e6 100644
--- a/civicrm/Civi/API/Provider/ProviderInterface.php
+++ b/civicrm/Civi/API/Provider/ProviderInterface.php
@@ -22,7 +22,7 @@ interface ProviderInterface {
    * @return array
    *   structured response data (per civicrm_api3_create_success)
    * @see civicrm_api3_create_success
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function invoke($apiRequest);
 
diff --git a/civicrm/Civi/API/Provider/ReflectionProvider.php b/civicrm/Civi/API/Provider/ReflectionProvider.php
index ac432b8fa310ce8b260e9ef9c602f83e3490fe33..bc70e301fe97673c00ab701e2003a57eeb36b5ee 100644
--- a/civicrm/Civi/API/Provider/ReflectionProvider.php
+++ b/civicrm/Civi/API/Provider/ReflectionProvider.php
@@ -97,7 +97,7 @@ class ReflectionProvider implements EventSubscriberInterface, ProviderInterface
    * @inheritDoc
    * @param array $apiRequest
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function invoke($apiRequest) {
     if (strtolower($apiRequest['entity']) == 'entity' && $apiRequest['action'] == 'get') {
@@ -114,7 +114,7 @@ class ReflectionProvider implements EventSubscriberInterface, ProviderInterface
     }
 
     // We shouldn't get here because onApiResolve() checks $this->actions
-    throw new \API_Exception("Unsupported action (" . $apiRequest['entity'] . '.' . $apiRequest['action'] . ']');
+    throw new \CRM_Core_Exception("Unsupported action (" . $apiRequest['entity'] . '.' . $apiRequest['action'] . ']');
   }
 
   /**
diff --git a/civicrm/Civi/API/Provider/StaticProvider.php b/civicrm/Civi/API/Provider/StaticProvider.php
index 138d561b1fd5567742afe7b5bbe022f8727172dd..8ba360430de4aa17683a9d8ac9684ad44df920a9 100644
--- a/civicrm/Civi/API/Provider/StaticProvider.php
+++ b/civicrm/Civi/API/Provider/StaticProvider.php
@@ -87,7 +87,7 @@ class StaticProvider extends AdhocProvider {
    *   The full description of the API request.
    * @return array
    *   Formatted API result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function doCreate($apiRequest) {
     if (isset($apiRequest['params']['id'])) {
@@ -99,7 +99,7 @@ class StaticProvider extends AdhocProvider {
     }
 
     if (!isset($this->records[$id])) {
-      throw new \API_Exception("Invalid ID: $id");
+      throw new \CRM_Core_Exception("Invalid ID: $id");
     }
 
     foreach ($this->fields as $field) {
@@ -116,7 +116,7 @@ class StaticProvider extends AdhocProvider {
    *   The full description of the API request.
    * @return array
    *   Formatted API result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function doGet($apiRequest) {
     return _civicrm_api3_basic_array_get($apiRequest['entity'], $apiRequest['params'], $this->records, 'id', $this->fields);
@@ -127,7 +127,7 @@ class StaticProvider extends AdhocProvider {
    *   The full description of the API request.
    * @return array
    *   Formatted API result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function doDelete($apiRequest) {
     $id = @$apiRequest['params']['id'];
diff --git a/civicrm/Civi/API/Provider/WrappingProvider.php b/civicrm/Civi/API/Provider/WrappingProvider.php
index 4e39eb4e74546d2401256eca9320f17c0ce4d7e4..daa4c91c1e38d9974a57185db923cac72939190d 100644
--- a/civicrm/Civi/API/Provider/WrappingProvider.php
+++ b/civicrm/Civi/API/Provider/WrappingProvider.php
@@ -50,12 +50,12 @@ class WrappingProvider implements ProviderInterface {
 
   public function getEntityNames($version) {
     // return $version == $this->version ? [$this->entity] : [];
-    throw new \API_Exception("Not support: WrappingProvider::getEntityNames()");
+    throw new \CRM_Core_Exception("Not support: WrappingProvider::getEntityNames()");
   }
 
   public function getActionNames($version, $entity) {
     // return $version == $this->version && $this->entity == $entity ? [$this->action] : [];
-    throw new \API_Exception("Not support: WrappingProvider::getActionNames()");
+    throw new \CRM_Core_Exception("Not support: WrappingProvider::getActionNames()");
   }
 
 }
diff --git a/civicrm/Civi/API/Request.php b/civicrm/Civi/API/Request.php
index 55765a9bcb36401feb7715854a2334d62fea482f..62cd7605cdf6c9e1b15ae2c79362b91c347263b6 100644
--- a/civicrm/Civi/API/Request.php
+++ b/civicrm/Civi/API/Request.php
@@ -52,7 +52,7 @@ class Request {
         }
         // Check enabled components
         $daoName = \CRM_Core_DAO_AllCoreTables::getFullName($entity);
-        if ($daoName && defined("{$daoName}::COMPONENT") && !\CRM_Core_Component::isEnabled($daoName::COMPONENT)) {
+        if ($daoName && !$daoName::isComponentEnabled()) {
           throw new \Civi\API\Exception\NotImplementedException("$entity API is not available because " . $daoName::COMPONENT . " component is disabled");
         }
         $args = (array) CoreUtil::getInfoItem($entity, 'class_args');
diff --git a/civicrm/Civi/API/SelectQuery.php b/civicrm/Civi/API/SelectQuery.php
index 76ae48e06489fc2d230ca3d487d82a11d2229952..f22742e844e8c638a8dc6c837ff109a684a5c282 100644
--- a/civicrm/Civi/API/SelectQuery.php
+++ b/civicrm/Civi/API/SelectQuery.php
@@ -105,7 +105,6 @@ abstract class SelectQuery {
    * Build & execute the query and return results array
    *
    * @return array|int
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Exception
    */
@@ -178,7 +177,7 @@ abstract class SelectQuery {
    *
    * @return array|null
    *   Returns the table and field name for adding this field to a SELECT or WHERE clause
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function addFkField($fkFieldName, $side) {
@@ -392,7 +391,7 @@ abstract class SelectQuery {
   /**
    * Orders the query by one or more fields
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function buildOrderBy() {
@@ -417,7 +416,7 @@ abstract class SelectQuery {
           }
         }
         else {
-          throw new \API_Exception("Unknown field specified for sort. Cannot order by '$item'");
+          throw new \CRM_Core_Exception("Unknown field specified for sort. Cannot order by '$item'");
         }
       }
     }
diff --git a/civicrm/Civi/API/Subscriber/APIv3SchemaAdapter.php b/civicrm/Civi/API/Subscriber/APIv3SchemaAdapter.php
index fa15949348b48accce8a44a6436e7900d617fce9..ccafbc33faaf5d0d1ad1e09c96fa3a128668a557 100644
--- a/civicrm/Civi/API/Subscriber/APIv3SchemaAdapter.php
+++ b/civicrm/Civi/API/Subscriber/APIv3SchemaAdapter.php
@@ -36,7 +36,7 @@ class APIv3SchemaAdapter implements EventSubscriberInterface {
    * @param \Civi\API\Event\PrepareEvent $event
    *   API preparation event.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function onApiPrepare(\Civi\API\Event\PrepareEvent $event) {
     $apiRequest = $event->getApiRequest();
diff --git a/civicrm/Civi/API/Subscriber/DynamicFKAuthorization.php b/civicrm/Civi/API/Subscriber/DynamicFKAuthorization.php
index ec5a50ac131d1d5d12783d67f3d46cf48d240992..e84bbb901de6be61cee03bfc093f89ff3a4368bc 100644
--- a/civicrm/Civi/API/Subscriber/DynamicFKAuthorization.php
+++ b/civicrm/Civi/API/Subscriber/DynamicFKAuthorization.php
@@ -134,7 +134,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
   /**
    * @param \Civi\API\Event\AuthorizeEvent $event
    *   API authorization event.
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function onApiAuthorize(\Civi\API\Event\AuthorizeEvent $event) {
@@ -152,7 +152,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
       if (/*!$isTrusted */
         empty($apiRequest['params']['id']) && empty($apiRequest['params']['entity_table'])
       ) {
-        throw new \API_Exception("Mandatory key(s) missing from params array: 'id' or 'entity_table'");
+        throw new \CRM_Core_Exception("Mandatory key(s) missing from params array: 'id' or 'entity_table'");
       }
 
       if (isset($apiRequest['params']['id'])) {
@@ -163,7 +163,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
           return;
         }
         elseif ($isValidId) {
-          throw new \API_Exception("Failed to match record to related entity");
+          throw new \CRM_Core_Exception("Failed to match record to related entity");
         }
         elseif (!$isValidId && strtolower($apiRequest['action']) == 'get') {
           // The matches will be an empty set; doesn't make a difference if we
@@ -183,7 +183,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
         return;
       }
 
-      throw new \API_Exception("Failed to run permission check");
+      throw new \CRM_Core_Exception("Failed to run permission check");
     }
   }
 
@@ -197,7 +197,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
    * @param array $apiRequest
    *   The full API request.
    * @throws \Exception
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function authorizeDelegate($action, $entityTable, $entityId, $apiRequest) {
@@ -207,7 +207,7 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
 
     $entity = $this->getDelegatedEntityName($entityTable);
     if (!$entity) {
-      throw new \API_Exception("Failed to run permission check: Unrecognized target entity table ($entityTable)");
+      throw new \CRM_Core_Exception("Failed to run permission check: Unrecognized target entity table ($entityTable)");
     }
     if (!$entityId) {
       throw new \Civi\API\Exception\UnauthorizedException("Authorization failed on ($entity): Missing entity_id");
@@ -253,16 +253,16 @@ class DynamicFKAuthorization implements EventSubscriberInterface {
    *   The saved FK.
    * @param array $apiRequest
    *   The full API request.
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function preventReassignment($fileId, $entityTable, $entityId, $apiRequest) {
     if (strtolower($apiRequest['action']) == 'create' && $fileId && !$this->isTrusted($apiRequest)) {
       // TODO: no change in field_name?
       if (isset($apiRequest['params']['entity_table']) && $entityTable != $apiRequest['params']['entity_table']) {
-        throw new \API_Exception("Cannot modify entity_table");
+        throw new \CRM_Core_Exception("Cannot modify entity_table");
       }
       if (isset($apiRequest['params']['entity_id']) && $entityId != $apiRequest['params']['entity_id']) {
-        throw new \API_Exception("Cannot modify entity_id");
+        throw new \CRM_Core_Exception("Cannot modify entity_id");
       }
     }
   }
diff --git a/civicrm/Civi/API/Subscriber/I18nSubscriber.php b/civicrm/Civi/API/Subscriber/I18nSubscriber.php
index 5cff1073004ea0a39f62de449ab63f877f26d2e2..89be3aeaf66bc7c016cd23f2ff47f01c3ba01660 100644
--- a/civicrm/Civi/API/Subscriber/I18nSubscriber.php
+++ b/civicrm/Civi/API/Subscriber/I18nSubscriber.php
@@ -45,7 +45,7 @@ class I18nSubscriber implements EventSubscriberInterface {
    * @param \Civi\API\Event\Event $event
    *   API preparation event.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function onApiPrepare(\Civi\API\Event\Event $event) {
     $apiRequest = $event->getApiRequest();
@@ -71,7 +71,7 @@ class I18nSubscriber implements EventSubscriberInterface {
    *
    * @param \Civi\API\Event\Event $event
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function onApiRespond(\Civi\API\Event\Event $event) {
     $apiRequest = $event->getApiRequest();
diff --git a/civicrm/Civi/API/WhitelistRule.php b/civicrm/Civi/API/WhitelistRule.php
index 5150b362f82827bbb946d5dbe1bc8cc990aef636..25d5e4f3c35882dc5b491386399f7879911cbd0d 100644
--- a/civicrm/Civi/API/WhitelistRule.php
+++ b/civicrm/Civi/API/WhitelistRule.php
@@ -220,7 +220,7 @@ class WhitelistRule {
    *   API result.
    * @return array
    *   Modified API result.
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function filter($apiRequest, $apiResult) {
     if ($this->fields === '*') {
@@ -238,7 +238,7 @@ class WhitelistRule {
         return $apiResult;
       }
     }
-    throw new \API_Exception(sprintf('Filtering failed for %s.%s. Unrecognized result format.', $apiRequest['entity'], $apiRequest['action']));
+    throw new \CRM_Core_Exception(sprintf('Filtering failed for %s.%s. Unrecognized result format.', $apiRequest['entity'], $apiRequest['action']));
   }
 
   /**
diff --git a/civicrm/Civi/Api4/Action/Address/GetCoordinates.php b/civicrm/Civi/Api4/Action/Address/GetCoordinates.php
index bf9ad89c403a60b57a1dc7a98816c11664b3f134..33d1487ca76184d5b217d533ba7c7c33c44359da 100644
--- a/civicrm/Civi/Api4/Action/Address/GetCoordinates.php
+++ b/civicrm/Civi/Api4/Action/Address/GetCoordinates.php
@@ -34,14 +34,14 @@ class GetCoordinates extends \Civi\Api4\Generic\AbstractAction {
     $geocodingClassName = \CRM_Utils_GeocodeProvider::getUsableClassName();
     $geocodingProvider = \CRM_Utils_GeocodeProvider::getConfiguredProvider();
     if (!is_callable([$geocodingProvider, 'getCoordinates'])) {
-      throw new \API_Exception('Geocoding provider does not support getCoordinates');
+      throw new \CRM_Core_Exception('Geocoding provider does not support getCoordinates');
     }
     $coord = $geocodingClassName::getCoordinates($this->address);
     if (isset($coord['geo_code_1'], $coord['geo_code_2'])) {
       $result[] = $coord;
     }
     elseif (!empty($coord['geo_code_error'])) {
-      throw new \API_Exception('Geocoding failed. ' . $coord['geo_code_error']);
+      throw new \CRM_Core_Exception('Geocoding failed. ' . $coord['geo_code_error']);
     }
   }
 
diff --git a/civicrm/Civi/Api4/Action/Contact/Delete.php b/civicrm/Civi/Api4/Action/Contact/Delete.php
index 2bc03ba4c170764e332d6762225c4a3eb0599333..9c739ec4099073774770860f68d9f9f1cab19040 100644
--- a/civicrm/Civi/Api4/Action/Contact/Delete.php
+++ b/civicrm/Civi/Api4/Action/Contact/Delete.php
@@ -22,12 +22,12 @@ class Delete extends \Civi\Api4\Generic\DAODeleteAction {
   /**
    * @param $items
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function deleteObjects($items) {
     foreach ($items as $item) {
       if (!\CRM_Contact_BAO_Contact::deleteContact($item['id'], FALSE, !$this->useTrash, $this->checkPermissions)) {
-        throw new \API_Exception("Could not delete {$this->getEntityName()} id {$item['id']}");
+        throw new \CRM_Core_Exception("Could not delete {$this->getEntityName()} id {$item['id']}");
       }
       $ids[] = ['id' => $item['id']];
     }
diff --git a/civicrm/Civi/Api4/Action/Contact/GetDuplicates.php b/civicrm/Civi/Api4/Action/Contact/GetDuplicates.php
index a45cf1ab535946fd81b9cf535fa68990a9a79d9e..f39298c0034fb888dc4e63093390c75a19095ea5 100644
--- a/civicrm/Civi/Api4/Action/Contact/GetDuplicates.php
+++ b/civicrm/Civi/Api4/Action/Contact/GetDuplicates.php
@@ -19,7 +19,7 @@ use Civi\Api4\Utils\FormattingUtil;
 
 /**
  * Get matching contacts based on a dedupe rule
- * @method setDedupeRule(string $dedupeRule)
+ * @method $this setDedupeRule(string $dedupeRule)
  * @method string getDedupeRule()
  */
 class GetDuplicates extends \Civi\Api4\Generic\DAOCreateAction {
@@ -66,7 +66,7 @@ class GetDuplicates extends \Civi\Api4\Generic\DAOCreateAction {
     if (strpos($this->dedupeRule, '.Unsupervised') || strpos($this->dedupeRule, '.Supervised')) {
       [$contactType, $ruleType] = explode('.', $this->dedupeRule);
       if (!empty($item['contact_type']) && $contactType !== $item['contact_type']) {
-        throw new \API_Exception('Mismatched contact type.');
+        throw new \CRM_Core_Exception('Mismatched contact type.');
       }
       $item['contact_type'] = $contactType;
       $dedupeParams['rule'] = $ruleType;
@@ -77,7 +77,7 @@ class GetDuplicates extends \Civi\Api4\Generic\DAOCreateAction {
         ->addSelect('id', 'contact_type')
         ->execute()->single();
       if (!empty($item['contact_type']) && $ruleGroup['contact_type'] !== $item['contact_type']) {
-        throw new \API_Exception('Mismatched contact type.');
+        throw new \CRM_Core_Exception('Mismatched contact type.');
       }
       $item['contact_type'] = $ruleGroup['contact_type'];
       $dedupeParams['rule_group_id'] = $ruleGroup['id'];
@@ -116,7 +116,7 @@ class GetDuplicates extends \Civi\Api4\Generic\DAOCreateAction {
    *
    * @param array $entityValues
    * @param array $dedupeParams
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function transformCustomParams(array &$entityValues, array &$dedupeParams) {
     foreach ($entityValues as $name => $value) {
diff --git a/civicrm/Civi/Api4/Action/Contact/MergeDuplicates.php b/civicrm/Civi/Api4/Action/Contact/MergeDuplicates.php
new file mode 100644
index 0000000000000000000000000000000000000000..00b32ed3261a1f843fb684826a67b81fd9bb6516
--- /dev/null
+++ b/civicrm/Civi/Api4/Action/Contact/MergeDuplicates.php
@@ -0,0 +1,83 @@
+<?php
+
+/*
+ +--------------------------------------------------------------------+
+ | 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       |
+ +--------------------------------------------------------------------+
+ */
+
+namespace Civi\Api4\Action\Contact;
+
+use Civi\Api4\Generic\BasicGetFieldsAction;
+use Civi\Api4\Generic\Result;
+
+/**
+ * Merge 2 contacts
+ *
+ * @method $this setMode(string $mode)
+ * @method string getMode()
+ * @method $this setContactId(int $contactId)
+ * @method int getContactId()
+ * @method $this setDuplicateId(int $duplicateId)
+ * @method int getDuplicateId()
+ */
+class MergeDuplicates extends \Civi\Api4\Generic\AbstractAction {
+
+  /**
+   * Main contact to keep with merged values
+   *
+   * @var int
+   * @required
+   */
+  protected $contactId;
+
+  /**
+   * Duplicate contact to delete
+   *
+   * @var int
+   * @required
+   */
+  protected $duplicateId;
+
+  /**
+   * Whether to run in "Safe Mode".
+   *
+   * Safe Mode skips the merge if there are conflicts. Does a force merge otherwise.
+   *
+   * @var string
+   * @required
+   * @options safe,aggressive
+   */
+  protected $mode = 'safe';
+
+  /**
+   * @param \Civi\Api4\Generic\Result $result
+   */
+  public function _run(Result $result) {
+    $merge = \CRM_Dedupe_Merger::merge(
+      [['srcID' => $this->duplicateId, 'dstID' => $this->contactId]],
+      [],
+      $this->mode,
+      FALSE,
+      $this->getCheckPermissions()
+    );
+    if ($merge) {
+      $result[] = $merge;
+    }
+    else {
+      throw new \CRM_Core_Exception('Merge failed');
+    }
+  }
+
+  /**
+   * @return array
+   */
+  public static function fields(BasicGetFieldsAction $action) {
+    return [];
+  }
+
+}
diff --git a/civicrm/Civi/Api4/Action/Entity/Get.php b/civicrm/Civi/Api4/Action/Entity/Get.php
index 13b96573fe637a93010f6ec1a7aa801ea2431c15..a7fa82d76217fb1752f861c78dcf176e2c0f57bd 100644
--- a/civicrm/Civi/Api4/Action/Entity/Get.php
+++ b/civicrm/Civi/Api4/Action/Entity/Get.php
@@ -35,7 +35,7 @@ class Get extends \Civi\Api4\Generic\BasicGetAction {
     return array_filter($provider->getEntities(), function($entity) {
       // Only include DAO entities from enabled components
       $daoName = $entity['dao'] ?? NULL;
-      return (!$daoName || !defined("{$daoName}::COMPONENT") || \CRM_Core_Component::isEnabled($daoName::COMPONENT));
+      return (!$daoName || $daoName::isComponentEnabled());
     });
   }
 
diff --git a/civicrm/Civi/Api4/Action/Queue/ClaimItems.php b/civicrm/Civi/Api4/Action/Queue/ClaimItems.php
index 8d05495060805e0732f47d1e30ce1d27d735be39..2855c02f2c6d4a701a384081cc581b504812067d 100644
--- a/civicrm/Civi/Api4/Action/Queue/ClaimItems.php
+++ b/civicrm/Civi/Api4/Action/Queue/ClaimItems.php
@@ -41,7 +41,7 @@ class ClaimItems extends \Civi\Api4\Generic\AbstractAction {
     $isBatch = $queue instanceof \CRM_Queue_Queue_BatchQueueInterface;
     $limit = $queue->getSpec('batch_limit') ?: 1;
     if ($limit > 1 && !$isBatch) {
-      throw new \API_Exception(sprintf('Queue "%s" (%s) does not support batching.', $queue->getName(), get_class($queue)));
+      throw new \CRM_Core_Exception(sprintf('Queue "%s" (%s) does not support batching.', $queue->getName(), get_class($queue)));
       // Note 1: Simply looping over `claimItem()` is unlikley to help the consumer b/c
       // drivers like Sql+Memory are linear+blocking.
       // Note 2: The default is batch_limit=1. So someone has specifically chosen an invalid configuration...
@@ -82,7 +82,7 @@ class ClaimItems extends \Civi\Api4\Generic\AbstractAction {
 
   protected function queue(): \CRM_Queue_Queue {
     if (empty($this->queue)) {
-      throw new \API_Exception('Missing required parameter: $queue');
+      throw new \CRM_Core_Exception('Missing required parameter: $queue');
     }
     return \Civi::queue($this->queue);
   }
diff --git a/civicrm/Civi/Api4/Action/Queue/RunItems.php b/civicrm/Civi/Api4/Action/Queue/RunItems.php
index 52a2503239047f3901b376e6261d076b8977190d..d711062e6ce9716c28c136261829c078ba63d8d6 100644
--- a/civicrm/Civi/Api4/Action/Queue/RunItems.php
+++ b/civicrm/Civi/Api4/Action/Queue/RunItems.php
@@ -58,7 +58,7 @@ class RunItems extends \Civi\Api4\Generic\AbstractAction {
       $queue = \Civi::queue($this->items[0]['queue']);
       $ids = \CRM_Utils_Array::collect('id', $this->items);
       if (count($ids) > 1 && !($queue instanceof \CRM_Queue_Queue_BatchQueueInterface)) {
-        throw new \API_Exception("runItems: Error: Running multiple items requires BatchQueueInterface");
+        throw new \CRM_Core_Exception("runItems: Error: Running multiple items requires BatchQueueInterface");
       }
       if (count($ids) > 1) {
         $items = $queue->fetchItems($ids);
@@ -77,7 +77,7 @@ class RunItems extends \Civi\Api4\Generic\AbstractAction {
         : [$queue->claimItem()];
     }
     else {
-      throw new \API_Exception("runItems: Requires either 'queue' or 'item'.");
+      throw new \CRM_Core_Exception("runItems: Requires either 'queue' or 'item'.");
     }
 
     if (empty($items)) {
@@ -87,7 +87,7 @@ class RunItems extends \Civi\Api4\Generic\AbstractAction {
     $outcomes = [];
     \CRM_Utils_Hook::queueRun($queue, $items, $outcomes);
     if (empty($outcomes)) {
-      throw new \API_Exception(sprintf('Failed to run queue items (name=%s, runner=%s, itemCount=%d, outcomeCount=%d)',
+      throw new \CRM_Core_Exception(sprintf('Failed to run queue items (name=%s, runner=%s, itemCount=%d, outcomeCount=%d)',
         $queue->getName(), $queue->getSpec('runner'), count($items), count($outcomes)));
     }
     foreach ($items as $itemPos => $item) {
@@ -102,19 +102,19 @@ class RunItems extends \Civi\Api4\Generic\AbstractAction {
   private function validateItemStubs(): void {
     $queueNames = [];
     if (!isset($this->items[0])) {
-      throw new \API_Exception("Queue items must be given as numeric array.");
+      throw new \CRM_Core_Exception("Queue items must be given as numeric array.");
     }
     foreach ($this->items as $item) {
       if (empty($item['queue'])) {
-        throw new \API_Exception("Queue item requires property 'queue'.");
+        throw new \CRM_Core_Exception("Queue item requires property 'queue'.");
       }
       if (empty($item['id'])) {
-        throw new \API_Exception("Queue item requires property 'id'.");
+        throw new \CRM_Core_Exception("Queue item requires property 'id'.");
       }
       $queueNames[$item['queue']] = 1;
     }
     if (count($queueNames) > 1) {
-      throw new \API_Exception("Queue items cannot be mixed. Found queues: " . implode(', ', array_keys($queueNames)));
+      throw new \CRM_Core_Exception("Queue items cannot be mixed. Found queues: " . implode(', ', array_keys($queueNames)));
     }
   }
 
diff --git a/civicrm/Civi/Api4/Action/Setting/AbstractSettingAction.php b/civicrm/Civi/Api4/Action/Setting/AbstractSettingAction.php
index 3f362dc40462444b3f93c9348f598f941093a303..0f126633441c45ef7b70e80c2700835f78073855 100644
--- a/civicrm/Civi/Api4/Action/Setting/AbstractSettingAction.php
+++ b/civicrm/Civi/Api4/Action/Setting/AbstractSettingAction.php
@@ -54,7 +54,7 @@ abstract class AbstractSettingAction extends \Civi\Api4\Generic\AbstractAction {
    *
    * @param int $domain
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function validateSettings($domain) {
     $meta = \Civi\Core\SettingsMetadata::getMetadata([], $domain);
@@ -63,7 +63,7 @@ abstract class AbstractSettingAction extends \Civi\Api4\Generic\AbstractAction {
     }, isset($this->values) ? array_keys($this->values) : $this->select);
     $invalid = array_diff($names, array_keys($meta));
     if ($invalid) {
-      throw new \API_Exception("Unknown settings for domain $domain: " . implode(', ', $invalid));
+      throw new \CRM_Core_Exception("Unknown settings for domain $domain: " . implode(', ', $invalid));
     }
     if (isset($this->values)) {
       foreach ($this->values as $name => $value) {
@@ -90,7 +90,7 @@ abstract class AbstractSettingAction extends \Civi\Api4\Generic\AbstractAction {
       $domains = Domain::get(FALSE)->addSelect('id')->execute()->column('id');
       $invalid = array_diff($this->domainId, $domains);
       if ($invalid) {
-        throw new \API_Exception('Invalid domain id: ' . implode(', ', $invalid));
+        throw new \CRM_Core_Exception('Invalid domain id: ' . implode(', ', $invalid));
       }
     }
     else {
diff --git a/civicrm/Civi/Api4/Action/System/RotateKey.php b/civicrm/Civi/Api4/Action/System/RotateKey.php
index 7afc9b204ee042e6da01a10175cc765bacbc3131..4f729aa5e3e11d8d24ad3de5ed08a2d3fe7fea30 100644
--- a/civicrm/Civi/Api4/Action/System/RotateKey.php
+++ b/civicrm/Civi/Api4/Action/System/RotateKey.php
@@ -37,12 +37,12 @@ class RotateKey extends AbstractAction {
   /**
    * @param \Civi\Api4\Generic\Result $result
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\Crypto\Exception\CryptoException
    */
   public function _run(Result $result) {
     if (empty($this->tag)) {
-      throw new \API_Exception("Missing required argument: tag");
+      throw new \CRM_Core_Exception("Missing required argument: tag");
     }
 
     // Track log of changes in memory.
diff --git a/civicrm/Civi/Api4/Contact.php b/civicrm/Civi/Api4/Contact.php
index 4b7db45231d0683f295e11971939754af166aa2c..b8ddca6aa0aa0959d0fec4f9e24e9ea9eee14c4a 100644
--- a/civicrm/Civi/Api4/Contact.php
+++ b/civicrm/Civi/Api4/Contact.php
@@ -90,4 +90,13 @@ class Contact extends Generic\DAOEntity {
       ->setCheckPermissions($checkPermissions);
   }
 
+  /**
+   * @param bool $checkPermissions
+   * @return Action\Contact\MergeDuplicates
+   */
+  public static function mergeDuplicates($checkPermissions = TRUE) {
+    return (new Action\Contact\MergeDuplicates(__CLASS__, __FUNCTION__))
+      ->setCheckPermissions($checkPermissions);
+  }
+
 }
diff --git a/civicrm/Civi/Api4/CustomValue.php b/civicrm/Civi/Api4/CustomValue.php
index a4a7d935a8be497aa7a3b0f3fe67357b57a3c196..722d6713ddd5008916caca7a5e5ad22a8cef819a 100644
--- a/civicrm/Civi/Api4/CustomValue.php
+++ b/civicrm/Civi/Api4/CustomValue.php
@@ -30,7 +30,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\Get
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function get($customGroup, $checkPermissions = TRUE) {
     return (new Action\CustomValue\Get($customGroup, __FUNCTION__))
@@ -41,7 +41,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\GetFields
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getFields($customGroup = NULL, $checkPermissions = TRUE) {
     return (new Action\CustomValue\GetFields($customGroup, __FUNCTION__))
@@ -52,7 +52,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\Save
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function save($customGroup, $checkPermissions = TRUE) {
     return (new Action\CustomValue\Save($customGroup, __FUNCTION__))
@@ -63,7 +63,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\Create
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function create($customGroup, $checkPermissions = TRUE) {
     return (new Action\CustomValue\Create($customGroup, __FUNCTION__))
@@ -74,7 +74,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\Update
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function update($customGroup, $checkPermissions = TRUE) {
     return (new Action\CustomValue\Update($customGroup, __FUNCTION__))
@@ -85,7 +85,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\CustomValue\Delete
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function delete($customGroup, $checkPermissions = TRUE) {
     return (new Action\CustomValue\Delete($customGroup, __FUNCTION__))
@@ -96,7 +96,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Generic\BasicReplaceAction
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function replace($customGroup, $checkPermissions = TRUE) {
     return (new Generic\BasicReplaceAction("Custom_$customGroup", __FUNCTION__))
@@ -107,7 +107,7 @@ class CustomValue {
    * @param string $customGroup
    * @param bool $checkPermissions
    * @return Action\GetActions
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getActions($customGroup = NULL, $checkPermissions = TRUE) {
     return (new Action\GetActions("Custom_$customGroup", __FUNCTION__))
diff --git a/civicrm/Civi/Api4/Event/Subscriber/ActivitySchemaMapSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/ActivitySchemaMapSubscriber.php
index 0c234dd8ade581ced3e7a48d2ebe91728d333311..bf32edb1e414fb6bfff1d2af7c22bd7bb81801fc 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/ActivitySchemaMapSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/ActivitySchemaMapSubscriber.php
@@ -8,7 +8,10 @@ use Civi\Api4\Service\Schema\Joinable\ExtraJoinable;
 use Civi\Api4\Service\Schema\Joinable\Joinable;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
-class ActivitySchemaMapSubscriber implements EventSubscriberInterface {
+/**
+ * @service civi.api4.activitySchema
+ */
+class ActivitySchemaMapSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * @return array
diff --git a/civicrm/Civi/Api4/Event/Subscriber/ContactSchemaMapSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/ContactSchemaMapSubscriber.php
index d8aec88dc4320160f04d2574cbf0a004351aec15..e5ef8156638f6bde05ca3f61667e9a4546a0d1dd 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/ContactSchemaMapSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/ContactSchemaMapSubscriber.php
@@ -7,7 +7,10 @@ use Civi\Api4\Event\SchemaMapBuildEvent;
 use Civi\Api4\Service\Schema\Joinable\Joinable;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
-class ContactSchemaMapSubscriber implements EventSubscriberInterface {
+/**
+ * @service civi.api4.contactSchema
+ */
+class ContactSchemaMapSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * @return array
diff --git a/civicrm/Civi/Api4/Event/Subscriber/Generic/AbstractPrepareSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/Generic/AbstractPrepareSubscriber.php
index 254d8db20914c699f002887010b9039cf99a8e24..2603162f93c483f479a6c6715d63c8d289983dbb 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/Generic/AbstractPrepareSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/Generic/AbstractPrepareSubscriber.php
@@ -15,7 +15,7 @@ namespace Civi\Api4\Event\Subscriber\Generic;
 use Civi\API\Event\PrepareEvent;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
-abstract class AbstractPrepareSubscriber implements EventSubscriberInterface {
+abstract class AbstractPrepareSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * @return array
diff --git a/civicrm/Civi/Api4/Event/Subscriber/IsCurrentSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/IsCurrentSubscriber.php
index fcede7f824b655c4ed6947bfbf7ca014312e3578..ee6f066da3207c34f21df9008b8d161ef0b3c97b 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/IsCurrentSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/IsCurrentSubscriber.php
@@ -18,6 +18,7 @@ use Civi\Api4\Utils\ReflectionUtils;
 /**
  * @deprecated
  * @see \Civi\Api4\Generic\Traits\IsCurrentTrait
+ * @service civi.api4.isCurrent
  */
 class IsCurrentSubscriber extends Generic\AbstractPrepareSubscriber {
 
diff --git a/civicrm/Civi/Api4/Event/Subscriber/PermissionCheckSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/PermissionCheckSubscriber.php
index 07f3c41055134b8b9180350f0323e4c333ceac59..454dbc0735b6dda1de54c9bf0c32c6a8c039ca41 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/PermissionCheckSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/PermissionCheckSubscriber.php
@@ -18,8 +18,10 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  * For any API requests that correspond to a Doctrine entity
  * ($apiRequest['doctrineClass']), check permissions specified in
  * Civi\API\Annotation\Permission.
+ *
+ * @service civi.api4.permissionCheck
  */
-class PermissionCheckSubscriber implements EventSubscriberInterface {
+class PermissionCheckSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * @return array
diff --git a/civicrm/Civi/Api4/Event/Subscriber/ValidateFieldsSubscriber.php b/civicrm/Civi/Api4/Event/Subscriber/ValidateFieldsSubscriber.php
index 65b7cc1bdfe17ffec509db315c6164141e61969a..be3a8276527cd7f706c1681f094390608d20fc5a 100644
--- a/civicrm/Civi/Api4/Event/Subscriber/ValidateFieldsSubscriber.php
+++ b/civicrm/Civi/Api4/Event/Subscriber/ValidateFieldsSubscriber.php
@@ -15,6 +15,8 @@ use Civi\API\Event\PrepareEvent;
 
 /**
  * Validate field inputs based on annotations in the action class
+ *
+ * @service civi.api4.validateFields
  */
 class ValidateFieldsSubscriber extends Generic\AbstractPrepareSubscriber {
 
@@ -32,10 +34,10 @@ class ValidateFieldsSubscriber extends Generic\AbstractPrepareSubscriber {
         $value = $apiRequest->$getParam();
         // Required fields
         if (!empty($info['required']) && (!$value && $value !== 0 && $value !== '0')) {
-          throw new \API_Exception('Parameter "' . $param . '" is required.');
+          throw new \CRM_Core_Exception('Parameter "' . $param . '" is required.');
         }
         if (!empty($info['type']) && !self::checkType($value, $info['type'])) {
-          throw new \API_Exception('Parameter "' . $param . '" is not of the correct type. Expecting ' . implode(' or ', $info['type']) . '.');
+          throw new \CRM_Core_Exception('Parameter "' . $param . '" is not of the correct type. Expecting ' . implode(' or ', $info['type']) . '.');
         }
         if (!empty($info['deprecated']) && isset($value)) {
           \CRM_Core_Error::deprecatedWarning('APIv4 ' . $apiRequest->getEntityName() . ".$param parameter is deprecated.");
@@ -50,7 +52,7 @@ class ValidateFieldsSubscriber extends Generic\AbstractPrepareSubscriber {
    * @param $value
    * @param $types
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function checkType($value, $types) {
     if ($value === NULL) {
@@ -78,7 +80,7 @@ class ValidateFieldsSubscriber extends Generic\AbstractPrepareSubscriber {
           return TRUE;
 
         default:
-          throw new \API_Exception('Unknown parameter type: ' . $type);
+          throw new \CRM_Core_Exception('Unknown parameter type: ' . $type);
       }
     }
     return FALSE;
diff --git a/civicrm/Civi/Api4/Event/ValidateValuesEvent.php b/civicrm/Civi/Api4/Event/ValidateValuesEvent.php
index 20b3c7de1380394b66656d97c468230f3648b6a7..6c43855874e34a1e506a6d5d27e6b5816fd7b3dd 100644
--- a/civicrm/Civi/Api4/Event/ValidateValuesEvent.php
+++ b/civicrm/Civi/Api4/Event/ValidateValuesEvent.php
@@ -140,11 +140,11 @@ class ValidateValuesEvent extends GenericHookEvent {
   /**
    * Convert the list of errors an exception.
    *
-   * @return \API_Exception
+   * @return \CRM_Core_Exception
    */
   public function toException() {
     // We should probably have a better way to report the errors in a structured/list format.
-    return new \API_Exception(ts('Found %1 error(s) in submitted %2 record(s) of type "%3": %4', [
+    return new \CRM_Core_Exception(ts('Found %1 error(s) in submitted %2 record(s) of type "%3": %4', [
       1 => count($this->errors),
       2 => count(array_unique(array_column($this->errors, 'record'))),
       3 => $this->getEntityName(),
diff --git a/civicrm/Civi/Api4/Generic/AbstractAction.php b/civicrm/Civi/Api4/Generic/AbstractAction.php
index 5ad1a3e45826d6a92fa0925ec940a15c52ec8ec9..b20c7d9fcbcc3234d571acead59951f414f55717 100644
--- a/civicrm/Civi/Api4/Generic/AbstractAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractAction.php
@@ -151,7 +151,7 @@ abstract class AbstractAction implements \ArrayAccess {
    *
    * @param string $entityName
    * @param string $actionName
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function __construct($entityName, $actionName) {
     // If a namespaced class name is passed in
@@ -170,17 +170,17 @@ abstract class AbstractAction implements \ArrayAccess {
    * @throws \Exception
    */
   public function __set($name, $value) {
-    throw new \API_Exception('Unknown api parameter');
+    throw new \CRM_Core_Exception('Unknown api parameter');
   }
 
   /**
    * @param int $val
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function setVersion($val) {
     if ($val !== 4 && $val !== '4') {
-      throw new \API_Exception('Cannot modify api version');
+      throw new \CRM_Core_Exception('Cannot modify api version');
     }
     return $this;
   }
@@ -213,12 +213,12 @@ abstract class AbstractAction implements \ArrayAccess {
    * @param $name
    * @param $arguments
    * @return static|mixed
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function __call($name, $arguments) {
     $param = lcfirst(substr($name, 3));
     if (!$param || $param[0] == '_') {
-      throw new \API_Exception('Unknown api parameter: ' . $name);
+      throw new \CRM_Core_Exception('Unknown api parameter: ' . $name);
     }
     $mode = substr($name, 0, 3);
     if ($this->paramExists($param)) {
@@ -231,7 +231,7 @@ abstract class AbstractAction implements \ArrayAccess {
           return $this;
       }
     }
-    throw new \API_Exception('Unknown api parameter: ' . $name);
+    throw new \CRM_Core_Exception('Unknown api parameter: ' . $name);
   }
 
   /**
@@ -241,7 +241,7 @@ abstract class AbstractAction implements \ArrayAccess {
    * This is basically the outer wrapper for api v4.
    *
    * @return \Civi\Api4\Generic\Result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function execute() {
@@ -378,7 +378,7 @@ abstract class AbstractAction implements \ArrayAccess {
    */
   public function offsetSet($offset, $value): void {
     if (in_array($offset, ['entity', 'action', 'entityName', 'actionName', 'params', 'version', 'id'])) {
-      throw new \API_Exception('Cannot modify api4 state via array access');
+      throw new \CRM_Core_Exception('Cannot modify api4 state via array access');
     }
     if ($offset == 'check_permissions') {
       $this->setCheckPermissions($value);
@@ -393,7 +393,7 @@ abstract class AbstractAction implements \ArrayAccess {
    */
   public function offsetUnset($offset): void {
     if (in_array($offset, ['entity', 'action', 'entityName', 'actionName', 'params', 'check_permissions', 'version', 'id'])) {
-      throw new \API_Exception('Cannot modify api4 state via array access');
+      throw new \CRM_Core_Exception('Cannot modify api4 state via array access');
     }
     unset($this->_arrayStorage[$offset]);
   }
@@ -441,7 +441,7 @@ abstract class AbstractAction implements \ArrayAccess {
    * This is because we DON'T want the wrapper to check permissions as this is an internal op.
    * @see \Civi\Api4\Action\Contact\GetFields
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @return array
    */
   public function entityFields() {
@@ -476,7 +476,7 @@ abstract class AbstractAction implements \ArrayAccess {
    *
    * @param $values
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function checkRequiredFields($values) {
     $unmatched = [];
@@ -499,7 +499,7 @@ abstract class AbstractAction implements \ArrayAccess {
    * Replaces pseudoconstants in input values
    *
    * @param array $record
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function formatWriteValues(&$record) {
     $optionFields = [];
@@ -548,12 +548,12 @@ abstract class AbstractAction implements \ArrayAccess {
    * @param array $vars
    *   Variable name => value
    * @return bool
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   protected function evaluateCondition($expr, $vars) {
     if (strpos($expr, '}') !== FALSE || strpos($expr, '{') !== FALSE) {
-      throw new \API_Exception('Illegal character in expression');
+      throw new \CRM_Core_Exception('Illegal character in expression');
     }
     $tpl = "{if $expr}1{else}0{/if}";
     return (bool) trim(\CRM_Core_Smarty::singleton()->fetchWith('string:' . $tpl, $vars));
diff --git a/civicrm/Civi/Api4/Generic/AbstractCreateAction.php b/civicrm/Civi/Api4/Generic/AbstractCreateAction.php
index d6b7c6dd8ef9a113ab6c98c5881fdac002030eb8..c1f88ad9ac622f4bbed05280dd8aa2056dc5a94f 100644
--- a/civicrm/Civi/Api4/Generic/AbstractCreateAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractCreateAction.php
@@ -53,14 +53,14 @@ abstract class AbstractCreateAction extends AbstractAction {
   }
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function validateValues() {
-    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of API_Exception?
+    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of CRM_Core_Exception?
     $unmatched = $this->checkRequiredFields($this->getValues());
     if ($unmatched) {
-      throw new \API_Exception("Mandatory values missing from Api4 {$this->getEntityName()}::{$this->getActionName()}: " . implode(", ", $unmatched), "mandatory_missing", ["fields" => $unmatched]);
+      throw new \CRM_Core_Exception("Mandatory values missing from Api4 {$this->getEntityName()}::{$this->getActionName()}: " . implode(", ", $unmatched), "mandatory_missing", ["fields" => $unmatched]);
     }
 
     if ($this->checkPermissions && !CoreUtil::checkAccessRecord($this, $this->getValues(), \CRM_Core_Session::getLoggedInContactID() ?: 0)) {
diff --git a/civicrm/Civi/Api4/Generic/AbstractGetAction.php b/civicrm/Civi/Api4/Generic/AbstractGetAction.php
index 8dfff86d61b86da2f292952500831b825a6ad3f7..41b9c2d818cc8dc031609cd368492b41895d4d9f 100644
--- a/civicrm/Civi/Api4/Generic/AbstractGetAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractGetAction.php
@@ -37,7 +37,7 @@ abstract class AbstractGetAction extends AbstractQueryAction {
    * Note: it will skip adding field defaults when fetching records by id,
    * or if that field has already been added to the where clause.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setDefaultWhereClause() {
     if (!$this->_itemsToGet('id')) {
diff --git a/civicrm/Civi/Api4/Generic/AbstractQueryAction.php b/civicrm/Civi/Api4/Generic/AbstractQueryAction.php
index 308c5dcc27062ed41ebf6f6438a1b482c11b34d3..be6b6664ddd794f4d6d840be43e66ff00b8462ec 100644
--- a/civicrm/Civi/Api4/Generic/AbstractQueryAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractQueryAction.php
@@ -78,11 +78,11 @@ abstract class AbstractQueryAction extends AbstractAction {
    * @param string $op
    * @param mixed $value
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function addWhere(string $fieldName, string $op, $value = NULL) {
     if (!in_array($op, CoreUtil::getOperators())) {
-      throw new \API_Exception('Unsupported operator');
+      throw new \CRM_Core_Exception('Unsupported operator');
     }
     $this->where[] = [$fieldName, $op, $value];
     return $this;
@@ -96,7 +96,7 @@ abstract class AbstractQueryAction extends AbstractAction {
    *   Either a nested array of arguments, or a variable number of arguments passed to this function.
    *
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function addClause(string $operator, $condition1) {
     if (!is_array($condition1[0])) {
diff --git a/civicrm/Civi/Api4/Generic/AbstractSaveAction.php b/civicrm/Civi/Api4/Generic/AbstractSaveAction.php
index 3ab1838035890d2cb37312cf54ff285852b507f4..82fac7e023159dbed16736fda0290be1f2f46da5 100644
--- a/civicrm/Civi/Api4/Generic/AbstractSaveAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractSaveAction.php
@@ -73,12 +73,12 @@ abstract class AbstractSaveAction extends AbstractAction {
   protected $reload = FALSE;
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function validateValues() {
     $idField = CoreUtil::getIdFieldName($this->getEntityName());
-    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of API_Exception?
+    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of CRM_Core_Exception?
     $unmatched = [];
     foreach ($this->records as $record) {
       if (empty($record[$idField])) {
@@ -86,7 +86,7 @@ abstract class AbstractSaveAction extends AbstractAction {
       }
     }
     if ($unmatched) {
-      throw new \API_Exception("Mandatory values missing from Api4 {$this->getEntityName()}::{$this->getActionName()}: " . implode(", ", $unmatched), "mandatory_missing", ["fields" => $unmatched]);
+      throw new \CRM_Core_Exception("Mandatory values missing from Api4 {$this->getEntityName()}::{$this->getActionName()}: " . implode(", ", $unmatched), "mandatory_missing", ["fields" => $unmatched]);
     }
 
     if ($this->checkPermissions) {
diff --git a/civicrm/Civi/Api4/Generic/AbstractUpdateAction.php b/civicrm/Civi/Api4/Generic/AbstractUpdateAction.php
index ba8e3934a81d0ea369681d87b948bbc2b533acee..d4b78a13eb0b1307c2163c512a97cb8d85de8498 100644
--- a/civicrm/Civi/Api4/Generic/AbstractUpdateAction.php
+++ b/civicrm/Civi/Api4/Generic/AbstractUpdateAction.php
@@ -79,7 +79,7 @@ abstract class AbstractUpdateAction extends AbstractBatchAction {
 
     // Require WHERE if we didn't get primary keys from values
     if (!$this->where) {
-      throw new \API_Exception('Parameter "where" is required unless primary keys are supplied in values.');
+      throw new \CRM_Core_Exception('Parameter "where" is required unless primary keys are supplied in values.');
     }
 
     // Update a single record by primary key (if this entity has a single primary key)
@@ -129,10 +129,10 @@ abstract class AbstractUpdateAction extends AbstractBatchAction {
   }
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function validateValues() {
-    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of API_Exception?
+    // FIXME: There should be a protocol to report a full list of errors... Perhaps a subclass of CRM_Core_Exception?
     $e = new ValidateValuesEvent($this, [$this->values], new \CRM_Utils_LazyArray(function () {
       $existing = $this->getBatchAction()->setSelect(['*'])->execute();
       $result = [];
diff --git a/civicrm/Civi/Api4/Generic/BasicGetAction.php b/civicrm/Civi/Api4/Generic/BasicGetAction.php
index 8f5ffdc1d7fe46067108677c58af29008fd077c4..95639ae36f0efeffdfb1cbe7a27f3136f6ac2227 100644
--- a/civicrm/Civi/Api4/Generic/BasicGetAction.php
+++ b/civicrm/Civi/Api4/Generic/BasicGetAction.php
@@ -99,7 +99,6 @@ class BasicGetAction extends AbstractGetAction {
    * Evaluate :pseudoconstant suffix expressions and replace raw values with option values
    *
    * @param $records
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function formatRawValues(&$records) {
diff --git a/civicrm/Civi/Api4/Generic/BasicUpdateAction.php b/civicrm/Civi/Api4/Generic/BasicUpdateAction.php
index 5fefc107f47e804437d80beb2766d1baaa5a747e..2667bebfb8f5f09c9d6ceb22aca1a429faab1112 100644
--- a/civicrm/Civi/Api4/Generic/BasicUpdateAction.php
+++ b/civicrm/Civi/Api4/Generic/BasicUpdateAction.php
@@ -49,7 +49,7 @@ class BasicUpdateAction extends AbstractUpdateAction {
   /**
    * @param array $items
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function updateRecords(array $items): array {
     return array_map([$this, 'writeRecord'], $items);
diff --git a/civicrm/Civi/Api4/Generic/DAOCreateAction.php b/civicrm/Civi/Api4/Generic/DAOCreateAction.php
index b40a67d448b8c2d0ff9074cbeb283c786031962e..21170f7e51c06c922c9c2a9fa7adfa02da419e5d 100644
--- a/civicrm/Civi/Api4/Generic/DAOCreateAction.php
+++ b/civicrm/Civi/Api4/Generic/DAOCreateAction.php
@@ -36,12 +36,12 @@ class DAOCreateAction extends AbstractCreateAction {
   }
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function validateValues() {
     $idField = CoreUtil::getIdFieldName($this->getEntityName());
     if (!empty($this->values[$idField])) {
-      throw new \API_Exception("Cannot pass $idField to Create action. Use Update action instead.");
+      throw new \CRM_Core_Exception("Cannot pass $idField to Create action. Use Update action instead.");
     }
     parent::validateValues();
   }
diff --git a/civicrm/Civi/Api4/Generic/DAODeleteAction.php b/civicrm/Civi/Api4/Generic/DAODeleteAction.php
index cd7a32fc1d5534740074c691b3671fa1a25c9e02..daf3317672403f553fa92cb5d7f3279ae854c4c3 100644
--- a/civicrm/Civi/Api4/Generic/DAODeleteAction.php
+++ b/civicrm/Civi/Api4/Generic/DAODeleteAction.php
@@ -30,7 +30,7 @@ class DAODeleteAction extends AbstractBatchAction {
   public function _run(Result $result) {
     $defaults = $this->getParamDefaults();
     if ($defaults['where'] && $this->where === $defaults['where']) {
-      throw new \API_Exception('Cannot delete ' . $this->getEntityName() . ' with no "where" parameter specified');
+      throw new \CRM_Core_Exception('Cannot delete ' . $this->getEntityName() . ' with no "where" parameter specified');
     }
 
     $items = $this->getBatchRecords();
@@ -53,7 +53,7 @@ class DAODeleteAction extends AbstractBatchAction {
   /**
    * @param $items
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function deleteObjects($items) {
     $idField = CoreUtil::getIdFieldName($this->getEntityName());
@@ -69,7 +69,7 @@ class DAODeleteAction extends AbstractBatchAction {
           $result[] = [$idField => $item[$idField]];
         }
         else {
-          throw new \API_Exception("Could not delete {$this->getEntityName()} $idField {$item[$idField]}");
+          throw new \CRM_Core_Exception("Could not delete {$this->getEntityName()} $idField {$item[$idField]}");
         }
       }
     }
diff --git a/civicrm/Civi/Api4/Generic/DAOGetAction.php b/civicrm/Civi/Api4/Generic/DAOGetAction.php
index 3d6c8753e8ad5fd96a1b7aea217f5957ac104eab..0e85f84d7b35e180eb59e72de99de9f9501ef90d 100644
--- a/civicrm/Civi/Api4/Generic/DAOGetAction.php
+++ b/civicrm/Civi/Api4/Generic/DAOGetAction.php
@@ -92,7 +92,6 @@ class DAOGetAction extends AbstractGetAction {
   protected $translationMode;
 
   /**
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function _run(Result $result) {
@@ -100,7 +99,7 @@ class DAOGetAction extends AbstractGetAction {
     $baoName = $this->getBaoName();
     if (!$baoName) {
       // In some cases (eg. site spin-up) the code may attempt to call the api before the entity name is registered.
-      throw new \API_Exception("BAO for {$this->getEntityName()} is not available. This could be a load-order issue");
+      throw new \CRM_Core_Exception("BAO for {$this->getEntityName()} is not available. This could be a load-order issue");
     }
     if (!$baoName::tableHasBeenAdded()) {
       \Civi::log()->warning("Could not read from {$this->getEntityName()} before table has been added. Upgrade required.", ['civi.tag' => 'upgrade_needed']);
@@ -151,11 +150,11 @@ class DAOGetAction extends AbstractGetAction {
    * @param mixed $value
    * @param bool $isExpression
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function addWhere(string $fieldName, string $op, $value = NULL, bool $isExpression = FALSE) {
     if (!in_array($op, CoreUtil::getOperators())) {
-      throw new \API_Exception('Unsupported operator');
+      throw new \CRM_Core_Exception('Unsupported operator');
     }
     $this->where[] = [$fieldName, $op, $value, $isExpression];
     return $this;
@@ -191,11 +190,11 @@ class DAOGetAction extends AbstractGetAction {
    * @param string $op
    * @param mixed $value
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function addHaving(string $expr, string $op, $value = NULL) {
     if (!in_array($op, CoreUtil::getOperators())) {
-      throw new \API_Exception('Unsupported operator');
+      throw new \CRM_Core_Exception('Unsupported operator');
     }
     $this->having[] = [$expr, $op, $value];
     return $this;
diff --git a/civicrm/Civi/Api4/Generic/DAOGetFieldsAction.php b/civicrm/Civi/Api4/Generic/DAOGetFieldsAction.php
index 7b8e848b1be3156ceea0f4a81d909d1f40b470a2..ab29f0306e1a7198c33f5d3bf006b95110597c93 100644
--- a/civicrm/Civi/Api4/Generic/DAOGetFieldsAction.php
+++ b/civicrm/Civi/Api4/Generic/DAOGetFieldsAction.php
@@ -76,7 +76,7 @@ class DAOGetFieldsAction extends BasicGetFieldsAction {
    * @param string $fieldName
    * @param array $fields
    * @return array|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getFkFieldSpec($fieldName, $fields) {
     $fieldPath = explode('.', $fieldName);
@@ -100,7 +100,7 @@ class DAOGetFieldsAction extends BasicGetFieldsAction {
    *
    * Normally this would involve calling getFields... but this IS getFields.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function formatValues() {
     foreach (array_keys($this->values) as $key) {
diff --git a/civicrm/Civi/Api4/Generic/DAOUpdateAction.php b/civicrm/Civi/Api4/Generic/DAOUpdateAction.php
index 25593822a6b70be6a9e645bacf3e481bbf4f7608..5026e649eb44359d3eceb462909101a686d02208 100644
--- a/civicrm/Civi/Api4/Generic/DAOUpdateAction.php
+++ b/civicrm/Civi/Api4/Generic/DAOUpdateAction.php
@@ -24,7 +24,6 @@ class DAOUpdateAction extends AbstractUpdateAction {
   /**
    * @param array $items
    * @return array
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function updateRecords(array $items): array {
diff --git a/civicrm/Civi/Api4/Generic/ExportAction.php b/civicrm/Civi/Api4/Generic/ExportAction.php
index e7cce1bb9fe70140ca5ed7f5482bedcdda26ec3b..4a98943d8ec4e55aefd210878abeba139449b98d 100644
--- a/civicrm/Civi/Api4/Generic/ExportAction.php
+++ b/civicrm/Civi/Api4/Generic/ExportAction.php
@@ -74,7 +74,7 @@ class ExportAction extends AbstractAction {
    */
   private function exportRecord(string $entityType, int $entityId, Result $result, $parentName = NULL, $excludeFields = []) {
     if (isset($this->exportedEntities[$entityType][$entityId])) {
-      throw new \API_Exception("Circular reference detected: attempted to export $entityType id $entityId multiple times.");
+      throw new \CRM_Core_Exception("Circular reference detected: attempted to export $entityType id $entityId multiple times.");
     }
     $this->exportedEntities[$entityType][$entityId] = TRUE;
     $select = $pseudofields = [];
diff --git a/civicrm/Civi/Api4/Generic/Result.php b/civicrm/Civi/Api4/Generic/Result.php
index fb8401e4d10bdbfe5c6ea95504d22d8f119f826e..f7998df3a7135ac3ceb5d0aed100fbeeedc85013 100644
--- a/civicrm/Civi/Api4/Generic/Result.php
+++ b/civicrm/Civi/Api4/Generic/Result.php
@@ -84,7 +84,7 @@ class Result extends \ArrayObject implements \JsonSerializable {
    * If there are too many or too few results, then throw an exception.
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function single() {
     return \CRM_Utils_Array::single($this, "{$this->entity} record");
@@ -109,7 +109,7 @@ class Result extends \ArrayObject implements \JsonSerializable {
    *
    * @param string $key
    * @return $this
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function indexBy($key) {
     $this->indexedBy = $key;
@@ -121,7 +121,7 @@ class Result extends \ArrayObject implements \JsonSerializable {
         }
       }
       if (!$newResults) {
-        throw new \API_Exception("Key $key not found in api results");
+        throw new \CRM_Core_Exception("Key $key not found in api results");
       }
       $this->exchangeArray($newResults);
     }
@@ -167,7 +167,7 @@ class Result extends \ArrayObject implements \JsonSerializable {
    */
   public function countMatched() :int {
     if (!isset($this->matchedCount)) {
-      throw new \API_Exception("countMatched can only be used if there was no limit set or if row_count was included in the select fields.");
+      throw new \CRM_Core_Exception("countMatched can only be used if there was no limit set or if row_count was included in the select fields.");
     }
     return $this->matchedCount;
   }
diff --git a/civicrm/Civi/Api4/Generic/Traits/DAOActionTrait.php b/civicrm/Civi/Api4/Generic/Traits/DAOActionTrait.php
index 047cdd26c2744361b198582bfe86589566699071..9ef9c08bb4a2a26a31899b8256dbdc296953749e 100644
--- a/civicrm/Civi/Api4/Generic/Traits/DAOActionTrait.php
+++ b/civicrm/Civi/Api4/Generic/Traits/DAOActionTrait.php
@@ -98,7 +98,6 @@ trait DAOActionTrait {
    *
    * @return array
    *   The records after being written to the DB (e.g. including newly assigned "id").
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function writeObjects($items) {
@@ -135,7 +134,7 @@ trait DAOActionTrait {
     foreach ($this->write($items) as $index => $dao) {
       if (!$dao) {
         $errMessage = sprintf('%s write operation failed', $this->getEntityName());
-        throw new \API_Exception($errMessage);
+        throw new \CRM_Core_Exception($errMessage);
       }
       $result[] = $this->baoToArray($dao, $items[$index]);
     }
@@ -230,7 +229,6 @@ trait DAOActionTrait {
    * @param array $params
    * @param int $entityId
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   protected function formatCustomParams(&$params, $entityId) {
@@ -264,7 +262,7 @@ trait DAOActionTrait {
         require_once 'api/v3/utils.php';
         $value = \_civicrm_api3_resolve_contactID($value);
         if ('unknown-user' === $value) {
-          throw new \API_Exception("\"{$field['name']}\" \"{$value}\" cannot be resolved to a contact ID", 2002, ['error_field' => $field['name'], "type" => "integer"]);
+          throw new \CRM_Core_Exception("\"{$field['name']}\" \"{$value}\" cannot be resolved to a contact ID", 2002, ['error_field' => $field['name'], "type" => "integer"]);
         }
       }
 
diff --git a/civicrm/Civi/Api4/Generic/Traits/ManagedEntity.php b/civicrm/Civi/Api4/Generic/Traits/ManagedEntity.php
index df7fc0edf6be5393c4cc952cf189ebee6f4201b8..f014bc76a69e516f55ee543a20d5464cca3ac32d 100644
--- a/civicrm/Civi/Api4/Generic/Traits/ManagedEntity.php
+++ b/civicrm/Civi/Api4/Generic/Traits/ManagedEntity.php
@@ -32,7 +32,7 @@ trait ManagedEntity {
         return $item;
       }
       else {
-        throw new \API_Exception('Cannot revert ' . $action->getEntityName() . ' with id ' . $item['id']);
+        throw new \CRM_Core_Exception('Cannot revert ' . $action->getEntityName() . ' with id ' . $item['id']);
       }
     }))->setCheckPermissions($checkPermissions);
   }
diff --git a/civicrm/Civi/Api4/Generic/Traits/SavedSearchInspectorTrait.php b/civicrm/Civi/Api4/Generic/Traits/SavedSearchInspectorTrait.php
index 0cd0f230a11929bc71edd4655f32b230d33d87f7..c9b03ab24d2497b7d2ddc2719074168efb1ed773 100644
--- a/civicrm/Civi/Api4/Generic/Traits/SavedSearchInspectorTrait.php
+++ b/civicrm/Civi/Api4/Generic/Traits/SavedSearchInspectorTrait.php
@@ -45,7 +45,7 @@ trait SavedSearchInspectorTrait {
 
   /**
    * If SavedSearch is supplied as a string, this will load it as an array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function loadSavedSearch() {
@@ -132,14 +132,14 @@ trait SavedSearchInspectorTrait {
           'expr' => $expr,
           'dataType' => $expr->getDataType(),
         ];
-        foreach ($expr->getFields() as $fieldName) {
-          $fieldMeta = $this->getField($fieldName);
+        foreach ($expr->getFields() as $fieldAlias) {
+          $fieldMeta = $this->getField($fieldAlias);
           if ($fieldMeta) {
-            $item['fields'][] = $fieldMeta;
+            $item['fields'][$fieldAlias] = $fieldMeta;
           }
         }
         if (!isset($item['dataType']) && $item['fields']) {
-          $item['dataType'] = $item['fields'][0]['data_type'];
+          $item['dataType'] = \CRM_Utils_Array::first($item['fields'])['data_type'];
         }
         $this->_selectClause[$expr->getAlias()] = $item;
       }
@@ -152,6 +152,7 @@ trait SavedSearchInspectorTrait {
    * @return array{fields: array, expr: SqlExpression, dataType: string}|NULL
    */
   protected function getSelectExpression($key) {
+    $key = explode(' AS ', $key)[1] ?? $key;
     return $this->getSelectClause()[$key] ?? NULL;
   }
 
diff --git a/civicrm/Civi/Api4/Generic/Traits/SelectParamTrait.php b/civicrm/Civi/Api4/Generic/Traits/SelectParamTrait.php
index 7ecd154363972d57fd0110df5781f841b2d66805..e2a3c7fbaef4ebd13fa644a53300bf606965804a 100644
--- a/civicrm/Civi/Api4/Generic/Traits/SelectParamTrait.php
+++ b/civicrm/Civi/Api4/Generic/Traits/SelectParamTrait.php
@@ -50,7 +50,7 @@ trait SelectParamTrait {
    * It ignores those containing special characters like dots or parentheses,
    * they are handled separately in Api4SelectQuery.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function expandSelectClauseWildcards() {
     if (!$this->select) {
diff --git a/civicrm/templates/CRM/Report/Form/Event/IncomeCountSummary.tpl b/civicrm/Civi/Api4/JobLog.php
similarity index 71%
rename from civicrm/templates/CRM/Report/Form/Event/IncomeCountSummary.tpl
rename to civicrm/Civi/Api4/JobLog.php
index 2dae3f79fd5be81a63615f22a22a46bb01ce5bd1..d49532781458a331da499ad2d888ca6fa5a2fc29 100644
--- a/civicrm/templates/CRM/Report/Form/Event/IncomeCountSummary.tpl
+++ b/civicrm/Civi/Api4/JobLog.php
@@ -1,4 +1,5 @@
-{*
+<?php
+/*
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
@@ -6,6 +7,17 @@
  | permitted exceptions and without any warranty. For full license    |
  | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
+ */
+namespace Civi\Api4;
 
+/**
+ * JobLog entity.
+ *
+ * @searchable secondary
+ * @since 5.56
+ * @package Civi\Api4
+ */
+class JobLog extends Generic\DAOEntity {
+  use Generic\Traits\ReadOnlyEntity;
+
+}
diff --git a/civicrm/Civi/Api4/Provider/ActionObjectProvider.php b/civicrm/Civi/Api4/Provider/ActionObjectProvider.php
index 8bfa560507170ebbbc0b72d760b69cb0bfc28e69..82bb3bf5d067f05fa589025eff2339343b67c61a 100644
--- a/civicrm/Civi/Api4/Provider/ActionObjectProvider.php
+++ b/civicrm/Civi/Api4/Provider/ActionObjectProvider.php
@@ -17,12 +17,15 @@ use Civi\Api4\Generic\AbstractAction;
 use Civi\API\Events;
 use Civi\Api4\Utils\ReflectionUtils;
 use Civi\Core\Event\GenericHookEvent;
+use Civi\Core\Service\AutoService;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
 /**
  * Accept $apiRequests based on \Civi\API\Action
+ *
+ * @service action_object_provider
  */
-class ActionObjectProvider implements EventSubscriberInterface, ProviderInterface {
+class ActionObjectProvider extends AutoService implements EventSubscriberInterface, ProviderInterface {
 
   /**
    * @return array
@@ -93,7 +96,7 @@ class ActionObjectProvider implements EventSubscriberInterface, ProviderInterfac
    * @param $request
    * @param $row
    * @return array|\Civi\Api4\Generic\Result|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function runChain($request, $row) {
     [$entity, $action, $params, $index] = $request;
diff --git a/civicrm/Civi/Api4/Query/Api4SelectQuery.php b/civicrm/Civi/Api4/Query/Api4SelectQuery.php
index f4abb51acc1d1bbece0955a3082ef2ec92f4412a..284afe6bbdd5bb8a7d072bc1b3334478da12fd26 100644
--- a/civicrm/Civi/Api4/Query/Api4SelectQuery.php
+++ b/civicrm/Civi/Api4/Query/Api4SelectQuery.php
@@ -96,6 +96,11 @@ class Api4SelectQuery {
    */
   private $entityAccess = [];
 
+  /**
+   * @var array
+   */
+  private $entityValues = [];
+
   /**
    * @param \Civi\Api4\Generic\DAOGetAction $apiGet
    */
@@ -115,6 +120,8 @@ class Api4SelectQuery {
     $tableName = CoreUtil::getTableName($this->getEntity());
     $this->query = \CRM_Utils_SQL_Select::from($tableName . ' ' . self::MAIN_TABLE_ALIAS);
 
+    $this->fillEntityValues();
+
     $this->entityAccess[$this->getEntity()] = TRUE;
 
     // Add ACLs first to avoid redundant subclauses
@@ -142,7 +149,6 @@ class Api4SelectQuery {
    * Builds main final sql statement after initialization.
    *
    * @return string
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function getSql() {
@@ -180,7 +186,7 @@ class Api4SelectQuery {
 
   /**
    * @return int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getCount() {
     $this->buildWhereClause();
@@ -208,7 +214,7 @@ class Api4SelectQuery {
   /**
    * @param array $select
    *   Array of select expressions; defaults to $this->getSelect
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function buildSelectClause($select = NULL) {
     // Use default if select not provided, exclude row_count which is handled elsewhere
@@ -268,7 +274,7 @@ class Api4SelectQuery {
       if ($valid) {
         $alias = $expr->getAlias();
         if ($alias != $expr->getExpr() && isset($this->apiFieldSpec[$alias])) {
-          throw new \API_Exception('Cannot use existing field name as alias');
+          throw new \CRM_Core_Exception('Cannot use existing field name as alias');
         }
         $this->selectAliases[$alias] = $expr->getExpr();
         $this->query->select($expr->render($this) . " AS `$alias`");
@@ -322,7 +328,7 @@ class Api4SelectQuery {
   protected function buildOrderBy() {
     foreach ($this->getOrderBy() as $item => $dir) {
       if ($dir !== 'ASC' && $dir !== 'DESC') {
-        throw new \API_Exception("Invalid sort direction. Cannot order by $item $dir");
+        throw new \CRM_Core_Exception("Invalid sort direction. Cannot order by $item $dir");
       }
 
       try {
@@ -341,7 +347,7 @@ class Api4SelectQuery {
         }
       }
       // If the expression could not be rendered, it might be a field alias
-      catch (\API_Exception $e) {
+      catch (\CRM_Core_Exception $e) {
         // Silently ignore fields the user lacks permission to see
         if (is_a($e, 'Civi\API\Exception\UnauthorizedException')) {
           $this->debug('unauthorized_fields', $item);
@@ -351,7 +357,7 @@ class Api4SelectQuery {
           $column = '`' . $item . '`';
         }
         else {
-          throw new \API_Exception("Invalid field '{$item}'");
+          throw new \CRM_Core_Exception("Invalid field '{$item}'");
         }
       }
 
@@ -380,6 +386,39 @@ class Api4SelectQuery {
     }
   }
 
+  /**
+   * This takes all the where clauses that use `=` to build an array of known values which every record must have.
+   *
+   * This gets passed to `FormattingUtil::getPseudoconstantList` to evaluate conditional pseudoconstants.
+   *
+   * @throws \CRM_Core_Exception
+   */
+  private function fillEntityValues() {
+    foreach ($this->getWhere() as $clause) {
+      [$fieldName, $operator, $value] = array_pad($clause, 3, NULL);
+      if (
+        // If the operator is `=`
+        $operator === '=' &&
+        // And is using a literal value
+        empty($clause[3]) &&
+        // And references a field not a function
+        !strpos($fieldName, ')')
+      ) {
+        $field = $this->getField($fieldName);
+        if ($field) {
+          // Resolve pseudoconstant suffix
+          FormattingUtil::formatInputValue($value, $fieldName, $field, $this->entityValues, $operator);
+          // If the operator is still `=` (so not a weird date range transformation)
+          if ($operator === '=') {
+            // Strip pseudoconstant suffix
+            [$fieldNameOnly] = explode(':', $fieldName);
+            $this->entityValues[$fieldNameOnly] = $value;
+          }
+        }
+      }
+    }
+  }
+
   /**
    * Recursively validate and transform a branch or leaf clause array to SQL.
    *
@@ -389,7 +428,7 @@ class Api4SelectQuery {
    * @param int $depth
    * @return string SQL where clause
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @uses composeClause() to generate the SQL etc.
    */
   protected function treeWalkClauses($clause, $type, $depth = 0) {
@@ -438,7 +477,7 @@ class Api4SelectQuery {
    *   WHERE|HAVING|ON
    * @param int $depth
    * @return string SQL
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   public function composeClause(array $clause, string $type, int $depth) {
@@ -447,7 +486,7 @@ class Api4SelectQuery {
     [$expr, $operator, $value] = array_pad($clause, 3, NULL);
     $isExpression = $clause[3] ?? FALSE;
     if (!in_array($operator, CoreUtil::getOperators(), TRUE)) {
-      throw new \API_Exception('Illegal operator');
+      throw new \CRM_Core_Exception('Illegal operator');
     }
 
     // For WHERE clause, expr must be the name of a field.
@@ -456,14 +495,14 @@ class Api4SelectQuery {
       if ($expr->getType() === 'SqlField') {
         $fieldName = count($expr->getFields()) === 1 ? $expr->getFields()[0] : NULL;
         $field = $this->getField($fieldName, TRUE);
-        FormattingUtil::formatInputValue($value, $fieldName, $field, $operator);
+        FormattingUtil::formatInputValue($value, $fieldName, $field, $this->entityValues, $operator);
       }
       elseif ($expr->getType() === 'SqlFunction') {
         $fauxField = [
           'name' => NULL,
           'data_type' => $expr::getDataType(),
         ];
-        FormattingUtil::formatInputValue($value, NULL, $fauxField, $operator);
+        FormattingUtil::formatInputValue($value, NULL, $fauxField, $this->entityValues, $operator);
       }
       $fieldAlias = $expr->render($this);
     }
@@ -475,7 +514,7 @@ class Api4SelectQuery {
         // Attempt to format if this is a real field
         if (isset($this->apiFieldSpec[$expr])) {
           $field = $this->getField($expr);
-          FormattingUtil::formatInputValue($value, $expr, $field, $operator);
+          FormattingUtil::formatInputValue($value, $expr, $field, $this->entityValues, $operator);
         }
       }
       // Expr references a non-field expression like a function; convert to alias
@@ -489,7 +528,7 @@ class Api4SelectQuery {
           [$selectField] = explode(':', $selectAlias);
           if ($selectAlias === $selectExpr && $fieldName === $selectField && isset($this->apiFieldSpec[$fieldName])) {
             $field = $this->getField($fieldName);
-            FormattingUtil::formatInputValue($value, $expr, $field, $operator);
+            FormattingUtil::formatInputValue($value, $expr, $field, $this->entityValues, $operator);
             $fieldAlias = $selectAlias;
             break;
           }
@@ -500,7 +539,7 @@ class Api4SelectQuery {
           throw new UnauthorizedException("Unauthorized field '$expr'");
         }
         else {
-          throw new \API_Exception("Invalid expression in HAVING clause: '$expr'. Must use a value from SELECT clause.");
+          throw new \CRM_Core_Exception("Invalid expression in HAVING clause: '$expr'. Must use a value from SELECT clause.");
         }
       }
       $fieldAlias = '`' . $fieldAlias . '`';
@@ -513,7 +552,7 @@ class Api4SelectQuery {
         $valExpr = $this->getExpression($value);
         if ($expr->getType() === 'SqlField' && $valExpr->getType() === 'SqlString') {
           $value = $valExpr->getExpr();
-          FormattingUtil::formatInputValue($value, $fieldName, $this->apiFieldSpec[$fieldName], $operator);
+          FormattingUtil::formatInputValue($value, $fieldName, $this->apiFieldSpec[$fieldName], $this->entityValues, $operator);
           return $this->createSQLClause($fieldAlias, $operator, $value, $this->apiFieldSpec[$fieldName], $depth);
         }
         else {
@@ -523,13 +562,13 @@ class Api4SelectQuery {
       }
       elseif ($expr->getType() === 'SqlField') {
         $field = $this->getField($fieldName);
-        FormattingUtil::formatInputValue($value, $fieldName, $field, $operator);
+        FormattingUtil::formatInputValue($value, $fieldName, $field, $this->entityValues, $operator);
       }
     }
 
     $sqlClause = $this->createSQLClause($fieldAlias, $operator, $value, $field, $depth);
     if ($sqlClause === NULL) {
-      throw new \API_Exception("Invalid value in $type clause for '$expr'");
+      throw new \CRM_Core_Exception("Invalid value in $type clause for '$expr'");
     }
     return $sqlClause;
   }
@@ -545,7 +584,7 @@ class Api4SelectQuery {
    */
   protected function createSQLClause($fieldAlias, $operator, $value, $field, int $depth) {
     if (!empty($field['operators']) && !in_array($operator, $field['operators'], TRUE)) {
-      throw new \API_Exception('Illegal operator for ' . $field['name']);
+      throw new \CRM_Core_Exception('Illegal operator for ' . $field['name']);
     }
     // Some fields use a callback to generate their sql
     if (!empty($field['sql_filters'])) {
@@ -605,7 +644,7 @@ class Api4SelectQuery {
    * @param string $expr
    * @param array $allowedTypes
    * @return SqlExpression
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getExpression(string $expr, $allowedTypes = NULL) {
     $sqlExpr = SqlExpression::convert($expr, FALSE, $allowedTypes);
@@ -649,7 +688,7 @@ class Api4SelectQuery {
    *   In strict mode, this will throw an exception if the field doesn't exist
    *
    * @return array|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getField($expr, $strict = FALSE) {
     // If the expression contains a pseudoconstant filter like activity_type_id:label,
@@ -665,7 +704,7 @@ class Api4SelectQuery {
       $this->debug($field === FALSE ? 'unauthorized_fields' : 'undefined_fields', $fieldName);
     }
     if ($strict && $field === NULL) {
-      throw new \API_Exception("Invalid field '$fieldName'");
+      throw new \CRM_Core_Exception("Invalid field '$fieldName'");
     }
     if ($strict && $field === FALSE) {
       throw new UnauthorizedException("Unauthorized field '$fieldName'");
@@ -704,7 +743,7 @@ class Api4SelectQuery {
   /**
    * Join onto other entities as specified by the api call.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
   private function addExplicitJoins() {
@@ -720,7 +759,7 @@ class Api4SelectQuery {
       // Ensure alias is a safe string, and supply default if not given
       $alias = $alias ?: strtolower($entity);
       if ($alias === self::MAIN_TABLE_ALIAS || !preg_match('/^[-\w]{1,256}$/', $alias)) {
-        throw new \API_Exception('Illegal join alias: "' . $alias . '"');
+        throw new \CRM_Core_Exception('Illegal join alias: "' . $alias . '"');
       }
       // First item in the array is a boolean indicating if the join is required (aka INNER or LEFT).
       // The rest are join conditions.
@@ -730,7 +769,7 @@ class Api4SelectQuery {
         $side = $side ? 'INNER' : 'LEFT';
       }
       if (!in_array($side, ['INNER', 'LEFT', 'EXCLUDE'])) {
-        throw new \API_Exception("Illegal value for join side: '$side'.");
+        throw new \CRM_Core_Exception("Illegal value for join side: '$side'.");
       }
       if ($side === 'EXCLUDE') {
         $side = 'LEFT';
@@ -832,7 +871,7 @@ class Api4SelectQuery {
    * @param string $joinEntity
    * @param string $alias
    * @param string $side
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function addBridgeJoin($joinTree, $joinEntity, $alias, $side) {
     $bridgeEntity = array_shift($joinTree);
@@ -892,7 +931,7 @@ class Api4SelectQuery {
    * @param string $bridgeEntity
    * @param string $joinEntity
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getBridgeRefs(string $bridgeEntity, string $joinEntity): array {
     $bridges = CoreUtil::getInfoItem($bridgeEntity, 'bridge') ?? [];
@@ -916,7 +955,7 @@ class Api4SelectQuery {
         }
       }
     }
-    throw new \API_Exception("Unable to join $bridgeEntity to $joinEntity");
+    throw new \CRM_Core_Exception("Unable to join $bridgeEntity to $joinEntity");
   }
 
   /**
@@ -980,7 +1019,7 @@ class Api4SelectQuery {
    * @param string $bridgeEntity
    * @param string $side
    * @return string[]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getBridgeJoinConditions(array &$joinTree, $baseRef, string $alias, string $bridgeAlias, string $bridgeEntity, string $side): array {
     $bridgeConditions = [];
@@ -1009,7 +1048,7 @@ class Api4SelectQuery {
     // If no bridge conditions were specified, link it to the base entity
     if (!$bridgeConditions) {
       if (!in_array($this->getEntity(), $baseRef->getTargetEntities())) {
-        throw new \API_Exception("Unable to join $bridgeEntity to " . $this->getEntity());
+        throw new \CRM_Core_Exception("Unable to join $bridgeEntity to " . $this->getEntity());
       }
       $bridgeConditions[] = "`$bridgeAlias`.`{$baseRef->getReferenceKey()}` = a.`{$baseRef->getTargetKey()}`";
       if ($baseRef->getTypeColumn()) {
@@ -1052,14 +1091,14 @@ class Api4SelectQuery {
     try {
       $joinPath = $joiner->getPath($explicitJoin['table'] ?? $this->getFrom(), $pathArray);
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       if (!empty($explicitJoin['bridge'])) {
         // Try looking up custom field in bridge entity instead
         try {
           $useBridgeTable = TRUE;
           $joinPath = $joiner->getPath(CoreUtil::getTableName($explicitJoin['bridge']), $pathArray);
         }
-        catch (\API_Exception $e) {
+        catch (\CRM_Core_Exception $e) {
           return;
         }
       }
diff --git a/civicrm/Civi/Api4/Query/SqlExpression.php b/civicrm/Civi/Api4/Query/SqlExpression.php
index d52c0a2d415b05cdfb7ebc045ff2159cc95dc5aa..4e4b4cf4bd403f689f1c8999461b52ffd235be7f 100644
--- a/civicrm/Civi/Api4/Query/SqlExpression.php
+++ b/civicrm/Civi/Api4/Query/SqlExpression.php
@@ -74,7 +74,7 @@ abstract class SqlExpression {
    * @param bool $parseAlias
    * @param array $mustBe
    * @return SqlExpression
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function convert(string $expression, $parseAlias = FALSE, $mustBe = []) {
     $as = $parseAlias ? strrpos($expression, ' AS ') : FALSE;
@@ -91,7 +91,7 @@ abstract class SqlExpression {
     elseif ($bracketPos && $lastChar === ')') {
       $fnName = substr($expr, 0, $bracketPos);
       if ($fnName !== strtoupper($fnName)) {
-        throw new \API_Exception('Sql function must be uppercase.');
+        throw new \CRM_Core_Exception('Sql function must be uppercase.');
       }
       $className = 'SqlFunction' . $fnName;
     }
@@ -114,7 +114,7 @@ abstract class SqlExpression {
     }
     $className = __NAMESPACE__ . '\\' . $className;
     if (!class_exists($className)) {
-      throw new \API_Exception('Unable to parse sql expression: ' . $expression);
+      throw new \CRM_Core_Exception('Unable to parse sql expression: ' . $expression);
     }
     $sqlExpression = new $className($expr, $alias);
     if ($mustBe) {
@@ -123,7 +123,7 @@ abstract class SqlExpression {
           return $sqlExpression;
         }
       }
-      throw new \API_Exception('Illegal sql expression.');
+      throw new \CRM_Core_Exception('Illegal sql expression.');
     }
     return $sqlExpression;
   }
@@ -171,6 +171,16 @@ abstract class SqlExpression {
     return substr($className, strrpos($className, '\\') + 1);
   }
 
+  /**
+   * Checks the name of this sql expression class.
+   *
+   * @param $type
+   * @return bool
+   */
+  public function isType($type): bool {
+    return $this->getType() === $type;
+  }
+
   /**
    * @return string
    */
@@ -209,7 +219,7 @@ abstract class SqlExpression {
    * @param array $mustBe
    * @param int $max
    * @return SqlExpression[]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function captureExpressions(string &$arg, array $mustBe, int $max) {
     $captured = [];
diff --git a/civicrm/Civi/Api4/Query/SqlField.php b/civicrm/Civi/Api4/Query/SqlField.php
index 0dde50583bcd6bffc39648db17d590422548ec9e..a921dabfaa029ef85343603ae5b9b0409bc77ffc 100644
--- a/civicrm/Civi/Api4/Query/SqlField.php
+++ b/civicrm/Civi/Api4/Query/SqlField.php
@@ -20,7 +20,7 @@ class SqlField extends SqlExpression {
 
   protected function initialize() {
     if ($this->alias && $this->alias !== $this->expr) {
-      throw new \API_Exception("Aliasing field names is not allowed, only expressions can have an alias.");
+      throw new \CRM_Core_Exception("Aliasing field names is not allowed, only expressions can have an alias.");
     }
     $this->fields[] = $this->expr;
   }
diff --git a/civicrm/Civi/Api4/Query/SqlFunction.php b/civicrm/Civi/Api4/Query/SqlFunction.php
index 32843bafa924fbb739d3ab30917d92c00dc0eabd..9f25b7a2386a37b1f540d8974895b21fe458d49e 100644
--- a/civicrm/Civi/Api4/Query/SqlFunction.php
+++ b/civicrm/Civi/Api4/Query/SqlFunction.php
@@ -59,7 +59,7 @@ abstract class SqlFunction extends SqlExpression {
           continue;
         }
         if (!$prefix && !$param['optional']) {
-          throw new \API_Exception("Missing param $name for SQL function " . static::getName());
+          throw new \CRM_Core_Exception("Missing param $name for SQL function " . static::getName());
         }
       }
       elseif ($param['flag_before']) {
@@ -76,7 +76,7 @@ abstract class SqlFunction extends SqlExpression {
           count($exprs) < $param['min_expr'] &&
           !(!$exprs && $param['optional'])
         ) {
-          throw new \API_Exception("Too few arguments to param $name for SQL function " . static::getName());
+          throw new \CRM_Core_Exception("Too few arguments to param $name for SQL function " . static::getName());
         }
         $this->args[$idx]['expr'] = $exprs;
 
@@ -84,7 +84,7 @@ abstract class SqlFunction extends SqlExpression {
       }
     }
     if (trim($arg)) {
-      throw new \API_Exception("Too many arguments given for SQL function " . static::getName());
+      throw new \CRM_Core_Exception("Too many arguments given for SQL function " . static::getName());
     }
   }
 
diff --git a/civicrm/Civi/Api4/Service/LegacySpecScanner.php b/civicrm/Civi/Api4/Service/LegacySpecScanner.php
new file mode 100644
index 0000000000000000000000000000000000000000..2177a0074098f4079cf81d2b15ebf43c5024f8c0
--- /dev/null
+++ b/civicrm/Civi/Api4/Service/LegacySpecScanner.php
@@ -0,0 +1,78 @@
+<?php
+
+namespace Civi\Api4\Service;
+
+use Civi\Core\Service\AutoDefinition;
+use Civi\Core\Service\AutoServiceInterface;
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+
+/**
+ * This provides transitional support for extensions that implemented 'SpecProviderInterface'.
+ * Compare these contracts:
+ *
+ * - For v5.19-v5.53, an extension could create a class in '$EXT/Civi/Api4/Service/Spec/Provider'
+ *   which implements 'SpecProviderInterface'. This would be auto-registered as a Symfony service
+ *   and tagged with 'spec_provider'.
+ * - For v5.54+, an extension can enable `scan-classes@1`. Any classes in `$EXT/Civi` or `$EXT/CRM`
+ *   will be scanned and registered, provided that they implement AutoServiceInterface and
+ *   enable `scan-classes@1`.
+ *
+ * The 5.54+ scanner supports more interfaces and more options. However, it won't necessarily detect
+ * spec-providers from 5.19-5.53 (because they don't have `scan-classes@1` and they don't
+ * implement `AutoServiceInterface`).
+ */
+class LegacySpecScanner implements AutoServiceInterface {
+
+  public static function buildContainer(ContainerBuilder $container): void {
+    $classNames = static::findClasses('Civi\Api4\Service\Spec\Provider', $container);
+    foreach ($classNames as $className) {
+      if (!class_exists($className)) {
+        continue;
+      }
+      $class = new \ReflectionClass($className);
+      if ($class->implementsInterface(AutoServiceInterface::class)) {
+        // This is already handled by the main scanner.
+        continue;
+      }
+      $container->addResource(new \Symfony\Component\Config\Resource\FileResource($class->getFileName()));
+      $name = $class->getName(); /* str_replace('\\', '_', $class->getName()); */
+      $definition = AutoDefinition::create($className)->addTag('internal');
+      $container->setDefinition($name, $definition);
+    }
+  }
+
+  /**
+   * Scan all extensions for files in a certain namespace.
+   *
+   * @param string $namespace
+   * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
+   * @return array
+   */
+  protected static function findClasses($namespace, $container): array {
+    $classes = [];
+
+    $namespace = \CRM_Utils_File::addTrailingSlash($namespace, '\\');
+    $locations = array_merge([\Civi::paths()->getPath('[civicrm.root]/Civi.php')],
+      array_column(\CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles(), 'filePath')
+    );
+    foreach ($locations as $location) {
+      $path = \CRM_Utils_File::addTrailingSlash(dirname($location ?? '')) . str_replace('\\', DIRECTORY_SEPARATOR, $namespace);
+      if (!file_exists($path) || !is_dir($path)) {
+        $resource = new \Symfony\Component\Config\Resource\FileExistenceResource($path);
+        $container->addResource($resource);
+      }
+      else {
+        $resource = new \Symfony\Component\Config\Resource\DirectoryResource($path, ';\.php$;');
+        $container->addResource($resource);
+        foreach (glob("$path*.php") as $file) {
+          $matches = [];
+          preg_match('/(\w*)\.php$/', $file, $matches);
+          $classes[] = $namespace . array_pop($matches);
+        }
+      }
+    }
+
+    return $classes;
+  }
+
+}
diff --git a/civicrm/Civi/Api4/Service/Schema/Joinable/CustomGroupJoinable.php b/civicrm/Civi/Api4/Service/Schema/Joinable/CustomGroupJoinable.php
index e42248279a4843a1c78ce0057b9506943fc8987e..4ca50f079554fcce3589e86fa6a2a69ba960a1e1 100644
--- a/civicrm/Civi/Api4/Service/Schema/Joinable/CustomGroupJoinable.php
+++ b/civicrm/Civi/Api4/Service/Schema/Joinable/CustomGroupJoinable.php
@@ -97,7 +97,7 @@ class CustomGroupJoinable extends Joinable {
    *
    * @param $extends
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function getEntityFromExtends($extends) {
diff --git a/civicrm/Civi/Api4/Service/Schema/Joiner.php b/civicrm/Civi/Api4/Service/Schema/Joiner.php
index cda0a8344ef124698ee8c5bb53291f78761fc3a4..4d96d3461c2f278980eaf74ce811f0fa2e8d08d8 100644
--- a/civicrm/Civi/Api4/Service/Schema/Joiner.php
+++ b/civicrm/Civi/Api4/Service/Schema/Joiner.php
@@ -39,7 +39,7 @@ class Joiner {
    * @param array $joinPath
    *
    * @return \Civi\Api4\Service\Schema\Joinable\Joinable[]
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getPath(string $baseTable, array $joinPath) {
     $cacheKey = sprintf('%s.%s', $baseTable, implode('.', $joinPath));
@@ -50,7 +50,7 @@ class Joiner {
         $link = $this->schemaMap->getLink($baseTable, $targetAlias);
 
         if (!$link) {
-          throw new \API_Exception(sprintf('Cannot join %s to %s', $baseTable, $targetAlias));
+          throw new \CRM_Core_Exception(sprintf('Cannot join %s to %s', $baseTable, $targetAlias));
         }
         else {
           $fullPath[$targetAlias] = $link;
diff --git a/civicrm/Civi/Api4/Service/Schema/SchemaMap.php b/civicrm/Civi/Api4/Service/Schema/SchemaMap.php
index c6c01d6c7b58c0ba87c06207b00ca0d7f9b17351..180932bbbdbd5ce2a612d809db45b27610229797 100644
--- a/civicrm/Civi/Api4/Service/Schema/SchemaMap.php
+++ b/civicrm/Civi/Api4/Service/Schema/SchemaMap.php
@@ -25,13 +25,13 @@ class SchemaMap {
    *
    * @return \Civi\Api4\Service\Schema\Joinable\Joinable|NULL
    *   Link to the target table
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getLink($baseTableName, $targetTableAlias): ?Joinable\Joinable {
     $table = $this->getTableByName($baseTableName);
 
     if (!$table) {
-      throw new \API_Exception("Table $baseTableName not found");
+      throw new \CRM_Core_Exception("Table $baseTableName not found");
     }
 
     foreach ($table->getTableLinks() as $link) {
diff --git a/civicrm/Civi/Api4/Service/Schema/SchemaMapBuilder.php b/civicrm/Civi/Api4/Service/Schema/SchemaMapBuilder.php
index a19c20a6920d2e06e05041e54ec18c54fd964fdd..db82769d3172083ebf0bee34d86113f7f4b1c52f 100644
--- a/civicrm/Civi/Api4/Service/Schema/SchemaMapBuilder.php
+++ b/civicrm/Civi/Api4/Service/Schema/SchemaMapBuilder.php
@@ -18,9 +18,14 @@ use Civi\Api4\Event\SchemaMapBuildEvent;
 use Civi\Api4\Service\Schema\Joinable\CustomGroupJoinable;
 use Civi\Api4\Service\Schema\Joinable\Joinable;
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
+use Civi\Core\Service\AutoService;
 use CRM_Core_DAO_AllCoreTables as AllCoreTables;
 
-class SchemaMapBuilder {
+/**
+ * @service schema_map_builder
+ */
+class SchemaMapBuilder extends AutoService {
+
   /**
    * @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
    */
@@ -32,6 +37,7 @@ class SchemaMapBuilder {
 
   /**
    * @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
+   * @inject dispatcher
    */
   public function __construct(EventDispatcherInterface $dispatcher) {
     $this->dispatcher = $dispatcher;
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ACLCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ACLCreationSpecProvider.php
index efa13bb6aea0c97e1d774205e95a19a870b1846e..41a29ba96b5c06a7482ee946b79a249933fe1cab 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ACLCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ACLCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ACLCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ACLCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ACLEntityRoleCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ACLEntityRoleCreationSpecProvider.php
index 6c887ab832e770176799667eeeda43a4122b5c4f..c6da836a719e3ab0c05e73314b772aa6f02577e5 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ACLEntityRoleCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ACLEntityRoleCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ACLEntityRoleCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ACLEntityRoleCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ActionScheduleCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ActionScheduleCreationSpecProvider.php
index adf8d8a4c72d62867a038d5c4d23c6dd23db552f..32173c1ca75e89b80aa2a46285a3fc51bf5b77a9 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ActionScheduleCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ActionScheduleCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ActionScheduleCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ActionScheduleCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ActivitySpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ActivitySpecProvider.php
index 496f7e64d0d94f2bfe81825fa1f54b6c7c159169..73e9ebd9e90704417b25fb436a8324f4835655ee 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ActivitySpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ActivitySpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ActivitySpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ActivitySpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/AddressCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/AddressCreationSpecProvider.php
index 89de3774548cd45c7cf390cd36640c97c54889fd..7cba691066d82559084df0e0972499848fc6c04a 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/AddressCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/AddressCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class AddressCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class AddressCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/AddressGetSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/AddressGetSpecProvider.php
index 65e891bde9fae5724c1b299b99fdb44330caa720..abf21de58477738d1e54d1017ab52e41180a02d2 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/AddressGetSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/AddressGetSpecProvider.php
@@ -17,7 +17,11 @@ use Civi\Api4\Query\Api4SelectQuery;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class AddressGetSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class AddressGetSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/BatchCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/BatchCreationSpecProvider.php
index 0294e32338c0c8a43438c43bb181618b860d979b..adb68d3b123aea8631dbc20e991c61750a9c16f4 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/BatchCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/BatchCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class BatchCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class BatchCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CampaignCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CampaignCreationSpecProvider.php
index 71807abc6c1926892416bc3af85fde39d5489878..b9df8801d329e581b5193b0098ff6dbcdec422bc 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CampaignCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CampaignCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CampaignCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CampaignCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CaseCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CaseCreationSpecProvider.php
index dd8ed75dfff9dfcdcd5728594cace067274a8fff..08445cd24ba4a0db055d75a6c6716abef0272381 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CaseCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CaseCreationSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CaseCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CaseCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CaseTypeGetSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CaseTypeGetSpecProvider.php
index 2d2c9cb9d58a87619081d7575debb542937d3fd3..f3d8e193feba8eb3140a1545e18bba496c1d0920 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CaseTypeGetSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CaseTypeGetSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CaseTypeGetSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CaseTypeGetSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContactCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContactCreationSpecProvider.php
index c3d799dd0505cbf5ae404852c23bca202d4b7a1d..15cb41cafd8d96f7b70b070eb90e23488ec51810 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContactCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContactCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ContactCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ContactCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContactGetSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContactGetSpecProvider.php
index 31be2aeb631010f39982656c517dc87e668fa2e0..e6cb6c8e9418c28fe1f1149048b4bd8658bf4e02 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContactGetSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContactGetSpecProvider.php
@@ -16,7 +16,11 @@ use Civi\Api4\Query\Api4SelectQuery;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ContactGetSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ContactGetSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContactTypeCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContactTypeCreationSpecProvider.php
index 891fe67920e862ca8e07e331d6ab7df671bf7d6f..210825484d4e233d3daf925de820afad6e1878b6 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContactTypeCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContactTypeCreationSpecProvider.php
@@ -18,8 +18,10 @@ use Civi\Api4\Service\Spec\RequestSpec;
  * Class ContactTypeCreationSpecProvider
  *
  * @package Civi\Api4\Service\Spec\Provider
+ * @service
+ * @internal
  */
-class ContactTypeCreationSpecProvider implements Generic\SpecProviderInterface {
+class ContactTypeCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionCreationSpecProvider.php
index a7095a0ba30d6e405ab32d4e503ece8a9c352ca3..5af7b1adbf8eb3c5b28cc4b93783aaf8f6fd40f5 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionCreationSpecProvider.php
@@ -18,8 +18,10 @@ use Civi\Api4\Service\Spec\RequestSpec;
  * Class ContributionCreationSpecProvider
  *
  * @package Civi\Api4\Service\Spec\Provider
+ * @service
+ * @internal
  */
-class ContributionCreationSpecProvider implements Generic\SpecProviderInterface {
+class ContributionCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionGetSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionGetSpecProvider.php
index 056dbb1e766ac2685756ff62c96e3e49212fd0d4..b1037b7ca0a370106dc96bfbb69f031d971569f8 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionGetSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionGetSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class ContributionGetSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ContributionGetSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionRecurCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionRecurCreationSpecProvider.php
index 6d38d6a9c02a2368f69491a94a584689c52ddd22..d3694fad4476e92231bc70ff7d28d618126344ff 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ContributionRecurCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ContributionRecurCreationSpecProvider.php
@@ -19,8 +19,10 @@ use Civi\Api4\Service\Spec\RequestSpec;
  * Class ContributionRecurCreationSpecProvider
  *
  * @package Civi\Api4\Service\Spec\Provider
+ * @service
+ * @internal
  */
-class ContributionRecurCreationSpecProvider implements Generic\SpecProviderInterface {
+class ContributionRecurCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CustomFieldCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CustomFieldCreationSpecProvider.php
index 4271fbf92668c7ae8c6f3f24a87611ec7652a442..90e1ca657e9ab83657a3c1dd97de286c8b5ee6c0 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CustomFieldCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CustomFieldCreationSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CustomFieldCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CustomFieldCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CustomGroupSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CustomGroupSpecProvider.php
index a49febd215f2d9c355913cbd453ed91d137cc3a8..9d967305d8c806a4be4057b1ff4b73a0c5783fa1 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CustomGroupSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CustomGroupSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CustomGroupSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CustomGroupSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/CustomValueSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/CustomValueSpecProvider.php
index 3d2c635e3393498432bae936236161f69c2ae95a..c4c1cb8a2b8a15f77e6e77c5ead35f68f469aa9d 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/CustomValueSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/CustomValueSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class CustomValueSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class CustomValueSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/DefaultLocationTypeProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/DefaultLocationTypeProvider.php
index 14cf96061f303474c5425927dd66d711068ba2aa..c849ecc5497378855b4605eae01ab47d5f90b4f7 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/DefaultLocationTypeProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/DefaultLocationTypeProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class DefaultLocationTypeProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class DefaultLocationTypeProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/DomainCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/DomainCreationSpecProvider.php
index b417dbad7297eb3df15de1fbb3a4cfe7741baee6..d7be27dbad6c3ee0c44efccca68b250bd2c2db29 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/DomainCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/DomainCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class DomainCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class DomainCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/DomainGetSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/DomainGetSpecProvider.php
index ddb52a88942781f93625581064683d86ea773359..f2f0e44defbb6c00fdb5aa79f6683208fcdc5f3c 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/DomainGetSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/DomainGetSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class DomainGetSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class DomainGetSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/EmailCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/EmailCreationSpecProvider.php
index 048135483019a7a400539cf157dd21e2ac47a992..e4f760c475a856f1e7985ae57d310af2b6a81d8b 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/EmailCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/EmailCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class EmailCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class EmailCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/EntityBatchCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/EntityBatchCreationSpecProvider.php
index c5f5b43bf93bfe963eab5a072ed749349a3ee0c0..5e2c72c1558d7fac45e167ae41f531f1054a3bb4 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/EntityBatchCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/EntityBatchCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class EntityBatchCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class EntityBatchCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagCreationSpecProvider.php
index 14c6f91b50955b8ea1502237b8250d6e5b7bd547..d37ad74103fbeeef3166765d7d750826be22ed58 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class EntityTagCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class EntityTagCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagFilterSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagFilterSpecProvider.php
index 607da6ba1b1bb251b4194a230e7433944ddab5e2..bdc05f6810aee19a0f58b006c0f7167c08a3cb2a 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagFilterSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/EntityTagFilterSpecProvider.php
@@ -19,7 +19,11 @@ use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 use Civi\Api4\Utils\CoreUtil;
 
-class EntityTagFilterSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class EntityTagFilterSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/EventCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/EventCreationSpecProvider.php
index d6c331cc47bcadeda7c9df9d2beb2d0411e625ad..fb2b2b10ff493f16e7b42107c10cf92e74b43cb2 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/EventCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/EventCreationSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class EventCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class EventCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/FieldCurrencySpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/FieldCurrencySpecProvider.php
index 40656bb76e42318a2d2af079b70b02f8629188b5..58c9abe285979eae40b960aabb908abc66279504 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/FieldCurrencySpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/FieldCurrencySpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class FieldCurrencySpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class FieldCurrencySpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * Generic create spec function to set sensible defaults for any entity with a "currency" field.
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/FieldDomainIdSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/FieldDomainIdSpecProvider.php
index bb3533cd023afdd8e1d7d845617880ec49a93af2..e7912950dfdc53d936dfdff56ad4c1e9212ad639 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/FieldDomainIdSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/FieldDomainIdSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class FieldDomainIdSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class FieldDomainIdSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * Generic create spec function to set sensible defaults for any entity with a "domain_id" field.
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/FinancialItemCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/FinancialItemCreationSpecProvider.php
index ffae9971ad5dd9ca505020355dfd3581fd8a71bf..a29d133f2f0741c958e23d9772fb6faa117e8a83 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/FinancialItemCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/FinancialItemCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class FinancialItemCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class FinancialItemCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   // I'm not sure it makes sense to have a default `entity_table`... actually, I don't even know if it makes
   // sense to expose `FinancialItem` as a public API, for what that's worth. But it's there, so clearly it does.
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/FinancialTrxnCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/FinancialTrxnCreationSpecProvider.php
index eca80431f6c50499d4ce69a5fb76fc4bbac58821..2878d2a64d3c298212450689227cdaa4e0c5fc88 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/FinancialTrxnCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/FinancialTrxnCreationSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class FinancialTrxnCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class FinancialTrxnCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * Modify the api spec.
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/GetActionDefaultsProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/GetActionDefaultsProvider.php
index 2e9795be71aec7b506462a249ec896e322045b60..a8e8616531d7d4a2fdbda383b01bd658dbbad7b2 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/GetActionDefaultsProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/GetActionDefaultsProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class GetActionDefaultsProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class GetActionDefaultsProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/GroupContactCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/GroupContactCreationSpecProvider.php
index 240a1a228b55c7af4896ab90255d0e607cacd3f1..353045a7102e5a33b9879d00d55a35b71a392c22 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/GroupContactCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/GroupContactCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class GroupContactCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class GroupContactCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/GroupCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/GroupCreationSpecProvider.php
index 397e943bd26b888877dd97e0efc038b8395811f4..dc6a2d5714f2bebafb381d91a764ca29e5db501f 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/GroupCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/GroupCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class GroupCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class GroupCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/IsCurrentFieldSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/IsCurrentFieldSpecProvider.php
index 03598ac6405b56578a340dce9ec6c6a95c4ff2b0..c031c6c2f91c18e2b5042a91adf4fa05a5d84f5e 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/IsCurrentFieldSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/IsCurrentFieldSpecProvider.php
@@ -22,7 +22,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class IsCurrentFieldSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class IsCurrentFieldSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/ManagedEntitySpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/ManagedEntitySpecProvider.php
index 175cadf6fe186fb37174a97ed43c2038a13ddaa8..5a247952e9da4842a2fa632a851c76a607a56a40 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/ManagedEntitySpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/ManagedEntitySpecProvider.php
@@ -26,8 +26,10 @@ use Civi\Api4\Utils\ReflectionUtils;
 
 /**
  * Provides calculated fields for APIs using the `ManagedEntity` trait
+ * @service
+ * @internal
  */
-class ManagedEntitySpecProvider implements Generic\SpecProviderInterface {
+class ManagedEntitySpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/MappingCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/MappingCreationSpecProvider.php
index c33eb07c0b90b792fe989b4f1cfa54c418ca3f1e..97cbd89b3b2dafcc771cc727f3679f3cec6ee319 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/MappingCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/MappingCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class MappingCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class MappingCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * This function runs for both Mapping and MappingField entities
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/MembershipCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/MembershipCreationSpecProvider.php
index a9094b190dc37a0fad24d34824f48ac38de1e2af..f971c345fd126419b22ffa49559f4a1a33392299 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/MembershipCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/MembershipCreationSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class MembershipCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class MembershipCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/MembershipTypeCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/MembershipTypeCreationSpecProvider.php
index 617d70720608861971e9e2ec8d77f6fb96522921..82ba4467741026c4359b059097fef52b993032e9 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/MembershipTypeCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/MembershipTypeCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class MembershipTypeCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class MembershipTypeCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/NavigationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/NavigationSpecProvider.php
index 3721f094170e100d88fd73bbc07119b5d82ccfa7..ad009a0347ada66a6251307562a7367a23e99f76 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/NavigationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/NavigationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class NavigationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class NavigationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * This runs for both create and get actions
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/NoteCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/NoteCreationSpecProvider.php
index d26a58e5ce344006879d72d78356f890aaecacfa..5cd5f493e1e19896d882cf653d1eedf4a679bd92 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/NoteCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/NoteCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class NoteCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class NoteCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/OptionValueCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/OptionValueCreationSpecProvider.php
index 3ce0a1f6026c6b5b78e6653049a8f0c9648a41bb..e560a8578541a9e6cfd878cec936d7f4c3c2b252 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/OptionValueCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/OptionValueCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class OptionValueCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class OptionValueCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorCreationSpecProvider.php
index cbcb995df0d4a4336b182ca9b94f8955ce2f7b09..9e11858ce02a890cfb1e10e86b9a855d59303612 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorCreationSpecProvider.php
@@ -13,7 +13,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class PaymentProcessorCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class PaymentProcessorCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * This runs for both create and get actions
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorTypeCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorTypeCreationSpecProvider.php
index 08cea9d596e9a2b132ccd034fd954f9e629e4f4d..7dd1e1cc28741d66ca706a7418d681140a75d4e7 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorTypeCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/PaymentProcessorTypeCreationSpecProvider.php
@@ -17,7 +17,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class PaymentProcessorTypeCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class PaymentProcessorTypeCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * This runs for both create and get actions
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/PhoneCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/PhoneCreationSpecProvider.php
index 3cd8f27680d084075ff0474380e82e99dda0e0aa..60d04c7907989c6f698d64a6b551abac1ac9780b 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/PhoneCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/PhoneCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class PhoneCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class PhoneCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/PriceFieldValueCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/PriceFieldValueCreationSpecProvider.php
index 4ba33e000cbcdfb6d31cd19f36cec5a56508c639..35e6fe2b778430cef0b63f5e770dc57c4f6c4de9 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/PriceFieldValueCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/PriceFieldValueCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class PriceFieldValueCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class PriceFieldValueCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipCacheSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipCacheSpecProvider.php
index cb65e5a143c665704820bf93439007a6bdf89406..051d7d0753baeea0e7e247abcb70d1aa86fe8153 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipCacheSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipCacheSpecProvider.php
@@ -15,7 +15,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 use Civi\Api4\Service\Spec\FieldSpec;
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class RelationshipCacheSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class RelationshipCacheSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipTypeCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipTypeCreationSpecProvider.php
index d5abcd40db0e1eee31d541e96049276ef473327a..43ae9668fcc612d9fccca362030d27e01ba073b5 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipTypeCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/RelationshipTypeCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class RelationshipTypeCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class RelationshipTypeCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/TagCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/TagCreationSpecProvider.php
index 6f74f99e94811d0951c22660d05483cd95b757f4..dcfaeaff75ee1290cdf11e03e292d701e6bc819a 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/TagCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/TagCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class TagCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class TagCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
diff --git a/civicrm/Civi/Api4/Service/Spec/Provider/UFFieldCreationSpecProvider.php b/civicrm/Civi/Api4/Service/Spec/Provider/UFFieldCreationSpecProvider.php
index c13264e9c0516a62035a98eb7076610bb20fc652..8eb14e1d037ef24c1862face513731bdbaf9d897 100644
--- a/civicrm/Civi/Api4/Service/Spec/Provider/UFFieldCreationSpecProvider.php
+++ b/civicrm/Civi/Api4/Service/Spec/Provider/UFFieldCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class UFFieldCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class UFFieldCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/Civi/Api4/Service/Spec/SpecGatherer.php b/civicrm/Civi/Api4/Service/Spec/SpecGatherer.php
index 7b0a3b9e8a78a95863e23803bf78ec8f695cec8c..3a79e2cd707da0d1e04f998c0719486be81156e7 100644
--- a/civicrm/Civi/Api4/Service/Spec/SpecGatherer.php
+++ b/civicrm/Civi/Api4/Service/Spec/SpecGatherer.php
@@ -15,12 +15,14 @@ namespace Civi\Api4\Service\Spec;
 use Civi\Api4\CustomField;
 use Civi\Api4\Service\Spec\Provider\Generic\SpecProviderInterface;
 use Civi\Api4\Utils\CoreUtil;
+use Civi\Core\Service\AutoService;
 
 /**
  * Class SpecGatherer
  * @package Civi\Api4\Service\Spec
+ * @service spec_gatherer
  */
-class SpecGatherer {
+class SpecGatherer extends AutoService {
 
   /**
    * @var \Civi\Api4\Service\Spec\Provider\Generic\SpecProviderInterface[]
@@ -108,7 +110,7 @@ class SpecGatherer {
    *
    * @param string $entity
    * @param \Civi\Api4\Service\Spec\RequestSpec $spec
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see \CRM_Core_SelectValues::customGroupExtends
    */
   private function addCustomFields($entity, RequestSpec $spec) {
@@ -123,7 +125,8 @@ class SpecGatherer {
     $query = CustomField::get(FALSE)
       ->setSelect(['custom_group_id.name', 'custom_group_id.title', '*'])
       ->addWhere('is_active', '=', TRUE)
-      ->addWhere('custom_group_id.is_multiple', '=', '0');
+      ->addWhere('custom_group_id.is_active', '=', TRUE)
+      ->addWhere('custom_group_id.is_multiple', '=', FALSE);
 
     // Contact custom groups are extra complicated because contact_type can be a value for extends
     if ($entity === 'Contact') {
@@ -220,12 +223,12 @@ class SpecGatherer {
    * @param string $entityName
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getDAOFields(string $entityName): array {
     $bao = CoreUtil::getBAOFromApiName($entityName);
     if (!$bao) {
-      throw new \API_Exception('Entity not loaded: ' . $entityName);
+      throw new \CRM_Core_Exception('Entity not loaded: ' . $entityName);
     }
     return $bao::getSupportedFields();
   }
diff --git a/civicrm/Civi/Api4/Utils/CoreUtil.php b/civicrm/Civi/Api4/Utils/CoreUtil.php
index f6f7801058b3e1ce1f533274da7539ca1ca783a5..630c9e7137dddf91bcba6721f9a8e62e3c15a3a1 100644
--- a/civicrm/Civi/Api4/Utils/CoreUtil.php
+++ b/civicrm/Civi/Api4/Utils/CoreUtil.php
@@ -161,7 +161,6 @@ class CoreUtil {
    * @param int|string $userID
    *   Contact ID of the user we are testing,. 0 for the anonymous user.
    * @return bool
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    * @throws \Civi\API\Exception\UnauthorizedException
@@ -208,7 +207,6 @@ class CoreUtil {
    *   Contact ID of the user we are testing, or 0 for the anonymous user.
    *
    * @return bool
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function checkAccessDelegated(string $entityName, string $actionName, array $record, int $userID) {
diff --git a/civicrm/Civi/Api4/Utils/FormattingUtil.php b/civicrm/Civi/Api4/Utils/FormattingUtil.php
index 3e92ddd2e023dbf8a56c062e82073d18827f0b72..788a5b73b78a768bfe74a2d995f7bd62396cc7ec 100644
--- a/civicrm/Civi/Api4/Utils/FormattingUtil.php
+++ b/civicrm/Civi/Api4/Utils/FormattingUtil.php
@@ -37,7 +37,7 @@ class FormattingUtil {
    *
    * @param array $params
    * @param array $fields
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function formatWriteParams(&$params, $fields) {
     foreach ($fields as $name => $field) {
@@ -82,23 +82,23 @@ class FormattingUtil {
    * @param $value
    * @param string|null $fieldName
    * @param array $fieldSpec
+   * @param array $params
    * @param string|null $operator (only for 'get' actions)
    * @param null $index (for recursive loops)
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
-  public static function formatInputValue(&$value, ?string $fieldName, array $fieldSpec, &$operator = NULL, $index = NULL) {
+  public static function formatInputValue(&$value, ?string $fieldName, array $fieldSpec, array $params = [], &$operator = NULL, $index = NULL) {
     // Evaluate pseudoconstant suffix
     $suffix = strpos(($fieldName ?? ''), ':');
     if ($suffix) {
-      $options = self::getPseudoconstantList($fieldSpec, $fieldName, [], $operator ? 'get' : 'create');
+      $options = self::getPseudoconstantList($fieldSpec, $fieldName, $params, $operator ? 'get' : 'create');
       $value = self::replacePseudoconstant($options, $value, TRUE);
       return;
     }
     elseif (is_array($value)) {
       $i = 0;
       foreach ($value as &$val) {
-        self::formatInputValue($val, $fieldName, $fieldSpec, $operator, $i++);
+        self::formatInputValue($val, $fieldName, $fieldSpec, $params, $operator, $i++);
       }
       return;
     }
@@ -111,7 +111,7 @@ class FormattingUtil {
     if ($fk === 'Contact' && !is_numeric($value)) {
       $value = \_civicrm_api3_resolve_contactID($value);
       if ('unknown-user' === $value) {
-        throw new \API_Exception("\"{$fieldSpec['name']}\" \"{$value}\" cannot be resolved to a contact ID", 2002, ['error_field' => $fieldSpec['name'], "type" => "integer"]);
+        throw new \CRM_Core_Exception("\"{$fieldSpec['name']}\" \"{$value}\" cannot be resolved to a contact ID", 2002, ['error_field' => $fieldSpec['name'], "type" => "integer"]);
       }
     }
 
@@ -148,7 +148,7 @@ class FormattingUtil {
       return date($format, strtotime($value ?? ''));
     }
     if (isset($index) && !strstr($operator, 'BETWEEN')) {
-      throw new \API_Exception("Relative dates cannot be in an array using the $operator operator.");
+      throw new \CRM_Core_Exception("Relative dates cannot be in an array using the $operator operator.");
     }
     [$dateFrom, $dateTo] = \CRM_Utils_Date::getFromTo($value);
     switch ($operator) {
@@ -159,9 +159,20 @@ class FormattingUtil {
       case 'LIKE':
       case 'NOT LIKE':
         $operator = ($operator === '=' || $operator === 'LIKE') ? 'BETWEEN' : 'NOT BETWEEN';
-        return [self::formatDateValue($format, $dateFrom), self::formatDateValue($format, $dateTo)];
 
-      // Less-than or greater-than-equal-to comparisons use the lower value
+        if (is_null($dateFrom) && !is_null($dateTo)) {
+          $operator = ($operator === 'BETWEEN') ? '<=' : '>=';
+          return self::formatDateValue($format, $dateTo);
+        }
+        elseif (!is_null($dateFrom) && is_null($dateTo)) {
+          $operator = ($operator === 'BETWEEN') ? '>=' : '<=';
+          return self::formatDateValue($format, $dateFrom);
+        }
+        else {
+          return [self::formatDateValue($format, $dateFrom), self::formatDateValue($format, $dateTo)];
+        }
+
+        // Less-than or greater-than-equal-to comparisons use the lower value
       case '<':
       case '>=':
         return self::formatDateValue($format, $dateFrom);
@@ -177,7 +188,7 @@ class FormattingUtil {
         return self::formatDateValue($format, $index ? $dateTo : $dateFrom);
 
       default:
-        throw new \API_Exception("Relative dates cannot be used with the $operator operator.");
+        throw new \CRM_Core_Exception("Relative dates cannot be used with the $operator operator.");
     }
   }
 
@@ -188,7 +199,6 @@ class FormattingUtil {
    * @param array $fields
    * @param string $action
    * @param array $selectAliases
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public static function formatOutputValues(&$results, $fields, $action = 'get', $selectAliases = []) {
@@ -247,7 +257,7 @@ class FormattingUtil {
    *   Other values for this object
    * @param string $action
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getPseudoconstantList(array $field, string $fieldAlias, $params = [], $action = 'get') {
     [$fieldPath, $valueType] = explode(':', $fieldAlias);
@@ -255,7 +265,7 @@ class FormattingUtil {
     // For create actions, only unique identifiers can be used.
     // For get actions any valid suffix is ok.
     if (($action === 'create' && !$context) || !in_array($valueType, self::$pseudoConstantSuffixes, TRUE)) {
-      throw new \API_Exception('Illegal expression');
+      throw new \CRM_Core_Exception('Illegal expression');
     }
     $baoName = $context ? CoreUtil::getBAOFromApiName($field['entity']) : NULL;
     // Use BAO::buildOptions if possible
@@ -271,7 +281,7 @@ class FormattingUtil {
     if (is_array($options)) {
       return $options;
     }
-    throw new \API_Exception("No option list found for '{$field['name']}'");
+    throw new \CRM_Core_Exception("No option list found for '{$field['name']}'");
   }
 
   /**
diff --git a/civicrm/Civi/Api4/services.xml b/civicrm/Civi/Api4/services.xml
deleted file mode 100644
index fe1ca2efc3eaf14a432275ce7f6020465f2778ff..0000000000000000000000000000000000000000
--- a/civicrm/Civi/Api4/services.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<container xmlns="http://symfony.com/schema/dic/services"
-           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-           xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
-
-    <services>
-
-        <service id="spec_gatherer" class="Civi\Api4\Service\Spec\SpecGatherer" public="true"/>
-
-        <service id="schema_map_builder" class="Civi\Api4\Service\Schema\SchemaMapBuilder" public="true">
-            <argument type="service" id="dispatcher" />
-        </service>
-
-        <service id="action_object_provider" class="Civi\Api4\Provider\ActionObjectProvider" public="true">
-            <tag name="event_subscriber"/>
-        </service>
-
-    </services>
-</container>
diff --git a/civicrm/Civi/CCase/SequenceListener.php b/civicrm/Civi/CCase/SequenceListener.php
index 3629914bca9ffff813a268d3050afcae7cf76e97..8b80360d1bba0394ec6f3fed5a282a2277aeef20 100644
--- a/civicrm/Civi/CCase/SequenceListener.php
+++ b/civicrm/Civi/CCase/SequenceListener.php
@@ -39,7 +39,7 @@ class SequenceListener implements CaseChangeListener {
    *
    * @param \Civi\CCase\Event\CaseChangeEvent $event
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @return void
    */
   public function onCaseChange(\Civi\CCase\Event\CaseChangeEvent $event) {
diff --git a/civicrm/Civi/Core/AssetBuilder.php b/civicrm/Civi/Core/AssetBuilder.php
index a67569364debdeeb9d3142d667f46911db5fa458..3d1a4d9a9c2bc0ffe05aae03214e2f1983f4a783 100644
--- a/civicrm/Civi/Core/AssetBuilder.php
+++ b/civicrm/Civi/Core/AssetBuilder.php
@@ -7,6 +7,7 @@ use Civi\Core\Exception\UnknownAssetException;
 /**
  * Class AssetBuilder
  * @package Civi\Core
+ * @service asset_builder
  *
  * The AssetBuilder is used to manage semi-dynamic assets.
  * In normal production use, these assets are built on first
@@ -70,7 +71,7 @@ use Civi\Core\Exception\UnknownAssetException;
  * secure it (e.g. alternative digest() calculations), but the
  * current implementation is KISS.
  */
-class AssetBuilder {
+class AssetBuilder extends \Civi\Core\Service\AutoService {
 
   /**
    * @return array
diff --git a/civicrm/Civi/Core/ClassScanner.php b/civicrm/Civi/Core/ClassScanner.php
index c50f0b850e32dea8880825f2dbb8472671d7b7bf..c1e8eefbc76937624cb8b280b4f1ecd8db48a1c2 100644
--- a/civicrm/Civi/Core/ClassScanner.php
+++ b/civicrm/Civi/Core/ClassScanner.php
@@ -16,11 +16,11 @@ namespace Civi\Core;
  *
  * The implementation of scanning+caching are generally built on these assumptions:
  *
- * - Scanning the filesystem can be expensive. One scan should serve many consumers.
+ * - Scanning the filesystem is expensive. One scan should serve many consumers.
  * - Consumers want to know about specific interfaces (`get(['interface' => 'CRM_Foo_BarInterface'])`.
  *
- * We reconcile these goals by performing a single scan and then storing separate cache-items for each
- * known interface (eg `$cache->get(md5('CRM_Foo_BarInterface'))`).
+ * We reconcile these goals by performing a single scan and then storing an index.
+ * (Indexes are stored per-interface. So `$cache->get(md5('CRM_Foo_BarInterface'))` is a list of matching classes.)
  */
 class ClassScanner {
 
@@ -42,6 +42,8 @@ class ClassScanner {
   private static $caches;
 
   /**
+   * Get a list of classes which match the $criteria.
+   *
    * @param array $criteria
    *   Ex: ['interface' => 'Civi\Core\HookInterface']
    * @return string[]
@@ -84,9 +86,11 @@ class ClassScanner {
    *
    * Example:
    *   assert $cache->get(md5(HookInterface::class)) == ['CRM_Foo_Bar', 'Civi\Whiz\Bang']
+   *   assert $cache->get(md5(UserJob::class)) == ['CRM_Foo_Job1', 'Civi\Whiz\Job2']
    *
    * @return string[]
-   *   List of PHP interfaces that were detected
+   *   List of PHP interfaces that were detected.
+   *   Ex: ['\Civi\Core\HookInterface', '\Civi\UserJob\UserJobInterface']
    */
   private static function buildIndex(\CRM_Utils_Cache_Interface $cache): array {
     $allClasses = static::scanClasses();
@@ -106,6 +110,8 @@ class ClassScanner {
   }
 
   /**
+   * Build a list of Civi-related classes (including core and extensions).
+   *
    * @return array
    *   Ex: ['CRM_Foo_Bar', 'Civi\Whiz\Bang']
    */
@@ -116,6 +122,8 @@ class ClassScanner {
   }
 
   /**
+   * Build a list of Civi-related classes (core-only).
+   *
    * @return array
    *   Ex: ['CRM_Foo_Bar', 'Civi\Whiz\Bang']
    */
@@ -133,9 +141,8 @@ class ClassScanner {
     $classes = [];
     static::scanFolders($classes, $civicrmRoot, 'Civi/Test/ExampleData', '\\');
     static::scanFolders($classes, $civicrmRoot, 'CRM/*/WorkflowMessage', '_');
-    static::scanFolders($classes, $civicrmRoot, 'Civi/*/WorkflowMessage', '\\');
-    static::scanFolders($classes, $civicrmRoot, 'Civi/WorkflowMessage', '\\');
     static::scanFolders($classes, $civicrmRoot, 'CRM/*/Import', '_');
+    static::scanFolders($classes, $civicrmRoot, 'Civi', '\\', ';\\\(Security|Test)\\\;');
     if (\CRM_Utils_Constant::value('CIVICRM_UF') === 'UnitTests') {
       if (strpos(get_include_path(), $civicrmRoot . 'tests/phpunit') !== FALSE) {
         static::scanFolders($classes, $civicrmRoot . 'tests/phpunit', 'CRM/*/WorkflowMessage', '_');
@@ -157,6 +164,17 @@ class ClassScanner {
     });
   }
 
+  /**
+   * Does `$class` have any interfaces that we care about?
+   *
+   * @param string $class
+   *   Concrete class that we are examining.
+   *   Ex: 'Civi\Myextension\Foo'
+   * @return array
+   *   List of implemented interfaces that we care about.
+   *   Ex: ['Civi\Core\HookInterface', 'Civi\Core\Service\AutoServiceInterface']
+   * @throws \ReflectionException
+   */
   private static function getRelevantInterfaces(string $class): array {
     $rawInterfaceNames = (new \ReflectionClass($class))->getInterfaceNames();
     return preg_grep(static::CIVI_INTERFACE_REGEX, $rawInterfaceNames);
@@ -166,12 +184,13 @@ class ClassScanner {
    * Search some $classRoot folder for a list of classes.
    *
    * Return any classes that implement a Civi-related interface, such as ExampleDataInterface
-   * or HookInterface. (Specifically, interfaces matchinv CIVI_INTERFACE_REGEX.)
+   * or HookInterface. (Specifically, interfaces matching CIVI_INTERFACE_REGEX.)
    *
    * @internal
    *   Currently reserved for use within civicrm-core. Signature may change.
    * @param string[] $classes
-   *   List of known/found classes.
+   *   Alterable list of extant classes.
+   *   `scanFolders()` will add new classes to this list.
    * @param string $classRoot
    *   The base folder in which to search.
    *   Ex: The $civicrm_root or some extension's basedir.
@@ -180,9 +199,13 @@ class ClassScanner {
    *   May use wildcards.
    *   Ex: "CRM" or "Civi"
    * @param string $classDelim
-   *   Namespace separator, eg underscore or backslash.
+   *   Namespace separator, eg "_" (PEAR namespacing) or "\" (PHP namespacing).
+   * @param string|null $excludeRegex
+   *   A regular expression describing class-files that should be excluded.
+   *   For example, if you have two versions of a class that are loaded in mutually-incompatible environments,
+   *   then you may need to skip scanning.
    */
-  public static function scanFolders(array &$classes, string $classRoot, string $classDir, string $classDelim): void {
+  public static function scanFolders(array &$classes, string $classRoot, string $classDir, string $classDelim, ?string $excludeRegex = NULL): void {
     $classRoot = \CRM_Utils_File::addTrailingSlash($classRoot, '/');
 
     $baseDirs = (array) glob($classRoot . $classDir);
@@ -194,6 +217,9 @@ class ClassScanner {
         $absFile = str_replace(DIRECTORY_SEPARATOR, '/', $absFile);
         $relFile = \CRM_Utils_File::relativize($absFile, $classRoot);
         $class = str_replace('/', $classDelim, substr($relFile, 0, -4));
+        if ($excludeRegex !== NULL && preg_match($excludeRegex, $class)) {
+          continue;
+        }
         if (class_exists($class)) {
           $interfaces = static::getRelevantInterfaces($class);
           if ($interfaces) {
@@ -210,6 +236,10 @@ class ClassScanner {
   }
 
   /**
+   * Lookup a cache-service used by ClassScanner.
+   *
+   * There are a couple of cache services (eg "index" and "structure") with different lifecycles.
+   *
    * @param string $name
    *   - The 'index' cache describes the list of live classes that match an interface. It persists for the
    *     duration of the system-configuration (eg cleared by system-flush or enable/disable extension).
@@ -222,17 +252,20 @@ class ClassScanner {
    * @internal
    */
   public static function cache(string $name): \CRM_Utils_Cache_Interface {
-    // Class-scanner runs before container is available. Manage our own cache. (Similar to extension-cache.)
-    // However, unlike extension-cache, we do not want to prefetch all interface lists on all pageloads.
+    // The class-scanner runs early (before the container is available), so we need to manage our own caches.
 
     if (!isset(static::$caches[$name])) {
       switch ($name) {
         case 'index':
           global $_DB_DATAOBJECT;
           if (empty($_DB_DATAOBJECT['CONFIG'])) {
-            // Atypical example: You have a test with a @dataProvider that relies on ClassScanner. Runs before bot.
+            // Atypical example: You have a PHPUnit test with a @dataProvider that relies on ClassScanner. It runs before boot.
             return new \CRM_Utils_Cache_ArrayCache([]);
           }
+
+          // The index-cache is similar to the extension-cache, except in the prefetch policy.
+          // (We need the full list of extensions on every page-load, but we don't need the full list
+          // of interfaces on every page-load.)
           static::$caches[$name] = \CRM_Utils_Cache::create([
             'name' => 'classes',
             'type' => ['*memory*', 'SqlGroup', 'ArrayCache'],
diff --git a/civicrm/Civi/Core/Compiler/AutoServiceScannerPass.php b/civicrm/Civi/Core/Compiler/AutoServiceScannerPass.php
new file mode 100644
index 0000000000000000000000000000000000000000..957a50ef2d8570b3b08e822e384c8b4818de118e
--- /dev/null
+++ b/civicrm/Civi/Core/Compiler/AutoServiceScannerPass.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace Civi\Core\Compiler;
+
+use Civi\Core\ClassScanner;
+use Civi\Core\Service\AutoServiceInterface;
+use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+
+/**
+ * Scan the source-tree for implementations of `AutoServiceInterface`. Load them.
+ *
+ * Note: This will scan the core codebase as well as active extensions. For fully automatic
+ * support in an extension, the extension must enable the mixin `scan-classes@1`.
+ */
+class AutoServiceScannerPass implements CompilerPassInterface {
+
+  public function process(ContainerBuilder $container) {
+    $autoServices = ClassScanner::get(['interface' => AutoServiceInterface::class]);
+    foreach ($autoServices as $autoService) {
+      $autoService::buildContainer($container);
+    }
+  }
+
+}
diff --git a/civicrm/Civi/Core/Container.php b/civicrm/Civi/Core/Container.php
index 4f89170fcce8615400884b794e5a92f993308c79..2590876664f77c2ca88726df1cf34f423f188202 100644
--- a/civicrm/Civi/Core/Container.php
+++ b/civicrm/Civi/Core/Container.php
@@ -1,11 +1,13 @@
 <?php
 namespace Civi\Core;
 
+use Civi\Core\Compiler\AutoServiceScannerPass;
 use Civi\Core\Compiler\EventScannerPass;
 use Civi\Core\Compiler\SpecProviderPass;
 use Civi\Core\Event\EventScanner;
 use Civi\Core\Lock\LockManager;
 use Symfony\Component\Config\ConfigCache;
+use Symfony\Component\DependencyInjection\Compiler\PassConfig;
 use Symfony\Component\DependencyInjection\ContainerBuilder;
 use Symfony\Component\DependencyInjection\Definition;
 use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
@@ -96,6 +98,7 @@ class Container {
   public function createContainer() {
     $civicrm_base_path = dirname(dirname(__DIR__));
     $container = new ContainerBuilder();
+    $container->addCompilerPass(new AutoServiceScannerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 1000);
     $container->addCompilerPass(new EventScannerPass());
     $container->addCompilerPass(new SpecProviderPass());
     $container->addCompilerPass(new RegisterListenersPass());
@@ -223,26 +226,6 @@ class Container {
       ]
     ))->setFactory('CRM_Utils_Cache::create')->setPublic(TRUE);
 
-    $container->setDefinition('sql_triggers', new Definition(
-      'Civi\Core\SqlTriggers',
-      []
-    ))->setPublic(TRUE);
-
-    $container->setDefinition('asset_builder', new Definition(
-      'Civi\Core\AssetBuilder',
-      []
-    ))->setPublic(TRUE);
-
-    $container->setDefinition('themes', new Definition(
-      'Civi\Core\Themes',
-      []
-    ))->setPublic(TRUE);
-
-    $container->setDefinition('format', new Definition(
-      '\Civi\Core\Format',
-      []
-    ))->setPublic(TRUE);
-
     $container->setDefinition('bundle.bootstrap3', new Definition('CRM_Core_Resources_Bundle', ['bootstrap3']))
       ->setFactory('CRM_Core_Resources_Common::createBootstrap3Bundle')->setPublic(TRUE);
 
@@ -395,7 +378,11 @@ class Container {
       }
     }
 
-    \CRM_Api4_Services::hook_container($container);
+    // FIXME: Automatically scan BasicServices for ProviderInterface.
+    $container->getDefinition('civi_api_kernel')->addMethodCall(
+      'registerApiProvider',
+      [new Reference('action_object_provider')]
+    );
 
     \CRM_Utils_Hook::container($container);
 
diff --git a/civicrm/Civi/Core/Format.php b/civicrm/Civi/Core/Format.php
index 8a711933f66afc2091cdbc0ddbd3f04abb638583..d7041e00ef97fe948d2c0ab7af58cf9aa3197492 100644
--- a/civicrm/Civi/Core/Format.php
+++ b/civicrm/Civi/Core/Format.php
@@ -16,10 +16,11 @@ use Brick\Money\Context\AutoContext;
 /**
  * Class Paths
  * @package Civi\Core
+ * @service format
  *
  * This class provides standardised formatting
  */
-class Format {
+class Format extends \Civi\Core\Service\AutoService {
 
   /**
    * Get formatted money
diff --git a/civicrm/Civi/Core/Locale.php b/civicrm/Civi/Core/Locale.php
index 9a02cd130d671cc84035bb68200bec87d8567bb8..709a37bcc04edf620fe5e6cb8d2071e6a79db555 100644
--- a/civicrm/Civi/Core/Locale.php
+++ b/civicrm/Civi/Core/Locale.php
@@ -169,11 +169,12 @@ class Locale {
    *   Ex: `en_US`, `es_ES`, `fr_CA`
    * @return \Civi\Core\Locale
    *   The effective locale specification.
+   * @throws \CRM_Core_Exception
    */
   public static function negotiate(string $preferred): Locale {
     // Create a locale for the requested language
     if (!preg_match(';^[a-z][a-z]_[A-Z][A-Z]$;', $preferred)) {
-      throw new \RuntimeException("Cannot instantiate malformed locale: $preferred");
+      throw new \CRM_Core_Exception("Cannot instantiate malformed locale: $preferred");
     }
 
     $systemDefault = \Civi::settings()->get('lcMessages');
diff --git a/civicrm/Civi/Core/Service/AutoDefinition.php b/civicrm/Civi/Core/Service/AutoDefinition.php
new file mode 100644
index 0000000000000000000000000000000000000000..5ab8c02d5b266676471e84f17ec9d754be7ba725
--- /dev/null
+++ b/civicrm/Civi/Core/Service/AutoDefinition.php
@@ -0,0 +1,199 @@
+<?php
+
+namespace Civi\Core\Service;
+
+use Civi\Api4\Service\Spec\Provider\Generic\SpecProviderInterface;
+use Civi\Api4\Utils\ReflectionUtils;
+use Civi\Core\HookInterface;
+use Symfony\Component\DependencyInjection\Definition;
+use Symfony\Component\DependencyInjection\Reference;
+use Symfony\Component\EventDispatcher\EventSubscriberInterface;
+
+class AutoDefinition {
+
+  /**
+   * Identify any/all service-definitions for the given class.
+   *
+   * If the class defines any static factory methods, then there may be multiple definitions.
+   *
+   * @param string $className
+   *   The name of the class to scan. Look for `@inject` and `@service` annotations.
+   * @return \Symfony\Component\DependencyInjection\Definition[]
+   *   Ex: ['my.service' => new Definition('My\Class')]
+   */
+  public static function scan(string $className): array {
+    $class = new \ReflectionClass($className);
+    $result = [];
+
+    $classDoc = ReflectionUtils::parseDocBlock($class->getDocComment());
+    if (!empty($classDoc['service'])) {
+      $serviceName = static::pickName($classDoc, $class->getName());
+      $def = static::createBaseline($class, $classDoc);
+      self::applyConstructor($def, $class);
+      $result[$serviceName] = $def;
+    }
+
+    foreach ($class->getMethods(\ReflectionMethod::IS_PUBLIC | \ReflectionMethod::IS_STATIC) as $method) {
+      /** @var \ReflectionMethod $method */
+      $methodDoc = ReflectionUtils::parseDocBlock($method->getDocComment());
+      if (!empty($methodDoc['service'])) {
+        $serviceName = static::pickName($methodDoc, $class->getName() . '::' . $method->getName());
+        $returnClass = isset($methodDoc['return'][0]) ? new \ReflectionClass($methodDoc['return'][0]) : $class;
+        $def = static::createBaseline($returnClass, $methodDoc);
+        $def->setFactory($class->getName() . '::' . $method->getName());
+        $def->setArguments(static::toReferences($methodDoc['inject'] ?? ''));
+        $result[$serviceName] = $def;
+      }
+    }
+
+    if (count($result) === 0) {
+      error_log("WARNING: Class {$class->getName()} was expected to have a service definition, but it did not. Perhaps it needs service name.");
+    }
+
+    return $result;
+  }
+
+  /**
+   * Create a basic definition for an unnamed service.
+   *
+   * @param string $className
+   *   The name of the class to scan. Look for `@inject` and `@service` annotations.
+   * @return \Symfony\Component\DependencyInjection\Definition
+   */
+  public static function create(string $className): Definition {
+    $class = new \ReflectionClass($className);
+    $classDoc = ReflectionUtils::parseDocBlock($class->getDocComment());
+    $def = static::createBaseline($class, $classDoc);
+    static::applyConstructor($def, $class);
+    return $def;
+  }
+
+  protected static function pickName(array $docBlock, string $internalDefault): string {
+    if (is_string($docBlock['service'])) {
+      return $docBlock['service'];
+    }
+    if (!empty($docBlock['internal']) && $internalDefault) {
+      return $internalDefault;
+    }
+    throw new \RuntimeException("Error: Failed to determine service name ($internalDefault). Please specify '@service NAME' or '@internal'.");
+  }
+
+  protected static function createBaseline(\ReflectionClass $class, ?array $docBlock = []): Definition {
+    $class = is_string($class) ? new \ReflectionClass($class) : $class;
+    $def = new Definition($class->getName());
+    $def->setPublic(TRUE);
+    self::applyTags($def, $class, $docBlock);
+    self::applyObjectProperties($def, $class);
+    self::applyObjectMethods($def, $class);
+    return $def;
+  }
+
+  protected static function toReferences(string $injectExpr): array {
+    return array_map(
+      function (string $part) {
+        return new Reference($part);
+      },
+      static::splitSymbols($injectExpr)
+    );
+  }
+
+  protected static function splitSymbols(string $expr): array {
+    if ($expr === '') {
+      return [];
+    }
+    $extraTags = explode(',', $expr);
+    return array_map('trim', $extraTags);
+  }
+
+  /**
+   * @param \Symfony\Component\DependencyInjection\Definition $def
+   * @param \ReflectionClass $class
+   * @param array $docBlock
+   */
+  protected static function applyTags(Definition $def, \ReflectionClass $class, array $docBlock): void {
+    if (!empty($docBlock['internal'])) {
+      $def->addTag('internal');
+    }
+    if ($class->implementsInterface(HookInterface::class) || $class->implementsInterface(EventSubscriberInterface::class)) {
+      $def->addTag('event_subscriber');
+    }
+    if ($class->implementsInterface(SpecProviderInterface::class)) {
+      $def->addTag('spec_provider');
+    }
+
+    if (!empty($classDoc['serviceTags'])) {
+      foreach (static::splitSymbols($classDoc['serviceTags']) as $extraTag) {
+        $def->addTag($extraTag);
+      }
+    }
+  }
+
+  /**
+   * @param \Symfony\Component\DependencyInjection\Definition $def
+   * @param \ReflectionClass $class
+   */
+  protected static function applyConstructor(Definition $def, \ReflectionClass $class): void {
+    if ($construct = $class->getConstructor()) {
+      $constructAnno = ReflectionUtils::parseDocBlock($construct->getDocComment() ?? '');
+      if (!empty($constructAnno['inject'])) {
+        $def->setArguments(static::toReferences($constructAnno['inject']));
+      }
+    }
+  }
+
+  /**
+   * Scan for any methods with `@inject`. They should be invoked via `$def->addMethodCall()`.
+   *
+   * @param \Symfony\Component\DependencyInjection\Definition $def
+   * @param \ReflectionClass $class
+   */
+  protected static function applyObjectMethods(Definition $def, \ReflectionClass $class): void {
+    foreach ($class->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) {
+      /** @var \ReflectionMethod $method */
+      if ($method->isStatic()) {
+        continue;
+      }
+
+      $anno = ReflectionUtils::parseDocBlock($method->getDocComment());
+      if (!empty($anno['inject'])) {
+        $def->addMethodCall($method->getName(), static::toReferences($anno['inject']));
+      }
+    }
+  }
+
+  /**
+   * Scan for any properties with `@inject`. They should be configured via `$def->setProperty()`
+   * or via `injectPrivateProperty()`.
+   *
+   * @param \Symfony\Component\DependencyInjection\Definition $def
+   * @param \ReflectionClass $class
+   * @throws \Exception
+   */
+  protected static function applyObjectProperties(Definition $def, \ReflectionClass $class): void {
+    foreach ($class->getProperties() as $property) {
+      /** @var \ReflectionProperty $property */
+      if ($property->isStatic()) {
+        continue;
+      }
+
+      $propDoc = ReflectionUtils::getCodeDocs($property);
+      if (!empty($propDoc['inject'])) {
+        if ($propDoc['inject'] === TRUE) {
+          $propDoc['inject'] = $property->getName();
+        }
+        if ($property->isPublic()) {
+          $def->setProperty($property->getName(), new Reference($propDoc['inject']));
+        }
+        elseif ($class->hasMethod('injectPrivateProperty')) {
+          $def->addMethodCall('injectPrivateProperty', [$property->getName(), new Reference($propDoc['inject'])]);
+        }
+        else {
+          throw new \Exception(sprintf('Property %s::$%s is marked private. To inject services into private properties, you must implement method "injectPrivateProperty($key, $value)".',
+            $class->getName(), $property->getName()
+          ));
+        }
+      }
+    }
+  }
+
+}
diff --git a/civicrm/Civi/Core/Service/AutoService.php b/civicrm/Civi/Core/Service/AutoService.php
new file mode 100644
index 0000000000000000000000000000000000000000..4679beca889745c102b449b1bdb955caff99c4fc
--- /dev/null
+++ b/civicrm/Civi/Core/Service/AutoService.php
@@ -0,0 +1,57 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | 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       |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Core\Service;
+
+/**
+ * AutoService is a base-class for defining a service (in Civi's service-container).
+ * Child classes are scanned automatically for various annotations and interfaces.
+ *
+ * = ANNOTATIONS =
+ *
+ * Annotations are used to declare and initialize services:
+ *
+ * - Declare a service. This can be done on a `class` or static factory-method. Supported annotations:
+ *     - `@service NAME`: Set the name of the new service.
+ *     - `@serviceTags TAG-1,TAG-2`: Declare additional tags for the service.
+ *     - `@internal`: Generate a hidden/automatic name. Limit discovery of the service.
+ * - Initialize the service by calling methods. This works with factory-, constructor-, and setter-methods.
+ *     - `@inject SERVICE-1,SERVICE-2`: Call the method automatically. Pass a list of other services as parameters.
+ * - Initialize the service by assigning properties. Any property may have these annotations:
+ *     - `@inject SERVICE`: Lookup the SERVICE and set the property.
+ *       If the `SERVICE` is blank, then it loads an eponymous service.
+ *
+ * For examples of using these annotations, consult the tests or the Developer Guide:
+ *
+ * @see \Civi\Core\Service\AutoDefinitionTest
+ * @link https://docs.civicrm.org/dev/en/latest/framework/services/
+ *
+ * = INTERFACES =
+ *
+ * Additionally, some `interface`s will be detected automatically. If an AutoService implements
+ * any of these interfaces, then it will be registered with appropriate parties:
+ *
+ * @see \Civi\Core\HookInterface
+ * @see \Civi\Api4\Service\Spec\Provider\Generic\SpecProviderInterface
+ * @see \Symfony\Component\EventDispatcher\EventSubscriberInterface
+ *
+ * = REQUIREMENTS / LIMITATIONS =
+ *
+ * - To scan an extension, one must use `<mixin>scan-classes@1.0.0</mixin>` or `hook_scanClasses`.
+ * - At time of writing, `ClassScanner` may not scan all core folders.
+ * - AutoServices are part of the container. They cannot be executed until the container has
+ *   started. Consequently, the services cannot subscribe to some early/boot-time events
+ *   (eg `hook_entityTypes` or `hook_container`).
+ */
+abstract class AutoService implements AutoServiceInterface {
+
+  use AutoServiceTrait;
+
+}
diff --git a/civicrm/Civi/Core/Service/AutoServiceInterface.php b/civicrm/Civi/Core/Service/AutoServiceInterface.php
new file mode 100644
index 0000000000000000000000000000000000000000..b1319e975e2f029a1108824d28d205f398ab87a6
--- /dev/null
+++ b/civicrm/Civi/Core/Service/AutoServiceInterface.php
@@ -0,0 +1,31 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | 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       |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Core\Service;
+
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+
+/**
+ * The CiviCRM container will automatically load classes that implement
+ * AutoServiceInterface.
+ *
+ * Formally, this resembles `hook_container` and `CompilerPassInterface`. However, the
+ * build method must be `static` (running before CiviCRM has fully booted), and downstream
+ * implementations should generally register concrete services (rather performing meta-services
+ * like tag-evaluation).
+ */
+interface AutoServiceInterface {
+
+  /**
+   * Register any services with the container.
+   */
+  public static function buildContainer(ContainerBuilder $container): void;
+
+}
diff --git a/civicrm/Civi/Core/Service/AutoServiceTrait.php b/civicrm/Civi/Core/Service/AutoServiceTrait.php
new file mode 100644
index 0000000000000000000000000000000000000000..3766c83fcf92c803bfa157f29a53c12dc2fbd683
--- /dev/null
+++ b/civicrm/Civi/Core/Service/AutoServiceTrait.php
@@ -0,0 +1,51 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | 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       |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Core\Service;
+
+use Symfony\Component\DependencyInjection\ContainerBuilder;
+
+/**
+ * By combining AutoServiceInterface and AutoServiceTrait, you can make any class
+ * behave like an AutoService (auto-registered in the CiviCRM container).
+ */
+trait AutoServiceTrait {
+
+  /**
+   * Register the service in the container.
+   *
+   * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
+   * @internal
+   */
+  final public static function buildContainer(ContainerBuilder $container): void {
+    // "final": AutoServices should avoid coupling to Symfony DI. However, if you really
+    // need to customize this, then omit AutoServiceTrait and write your own variant.
+
+    $file = (new \ReflectionClass(static::class))->getFileName();
+    $container->addResource(new \Symfony\Component\Config\Resource\FileResource($file));
+    foreach (AutoDefinition::scan(static::class) as $id => $definition) {
+      $container->setDefinition($id, $definition);
+    }
+  }
+
+  /**
+   * (Internal) Utility method used to `@inject` data into private properties.
+   *
+   * @param string $key
+   * @param mixed $value
+   * @internal
+   */
+  final public function injectPrivateProperty(string $key, $value): void {
+    // "final": There is no need to override. If you want a custom assignment logic, then put `@inject` on your setter method.
+
+    $this->{$key} = $value;
+  }
+
+}
diff --git a/civicrm/Civi/Core/SqlTriggers.php b/civicrm/Civi/Core/SqlTriggers.php
index 91b5cb943894cf42d199c5a345e2b1856cae474c..8d624c5609d4a0dd0096d68dbc15978fe820a08d 100644
--- a/civicrm/Civi/Core/SqlTriggers.php
+++ b/civicrm/Civi/Core/SqlTriggers.php
@@ -14,10 +14,11 @@ namespace Civi\Core;
 /**
  * Class SqlTriggers
  * @package Civi\Core
+ * @service sql_triggers
  *
  * This class manages creation and destruction of SQL triggers.
  */
-class SqlTriggers {
+class SqlTriggers extends \Civi\Core\Service\AutoService {
 
   /**
    * The name of the output file.
diff --git a/civicrm/Civi/Core/Themes.php b/civicrm/Civi/Core/Themes.php
index dee905485fdc24c5576ba2fd2a4f8846531fe6d4..baf07c7c75f76cc56015479e5c9b569d3612fecf 100644
--- a/civicrm/Civi/Core/Themes.php
+++ b/civicrm/Civi/Core/Themes.php
@@ -17,8 +17,9 @@ use Civi;
  *
  * @package CiviCRM_Hook
  * @copyright CiviCRM LLC https://civicrm.org/licensing
+ * @service themes
  */
-class Themes {
+class Themes extends \Civi\Core\Service\AutoService {
 
   /**
    * The "default" theme adapts based on the latest recommendation from civicrm.org
diff --git a/civicrm/Civi/Payment/System.php b/civicrm/Civi/Payment/System.php
index 358ce7f023eba1360af77e94e9b197924c013074..1dfa4eaf4fbf4e62830e5789addcf6a08ce98230 100644
--- a/civicrm/Civi/Payment/System.php
+++ b/civicrm/Civi/Payment/System.php
@@ -106,7 +106,7 @@ class System {
    *
    * @return \CRM_Core_Payment
    *
-   * @throws \CiviCRM_API3_Exception|\CRM_Core_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getById($id) {
     if (isset($this->cache[$id])) {
@@ -124,7 +124,7 @@ class System {
    * @param bool $is_test
    *
    * @return \CRM_Core_Payment|NULL
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getByName($name, $is_test) {
     $processor = civicrm_api3('payment_processor', 'getsingle', ['name' => $name, 'is_test' => $is_test]);
@@ -157,7 +157,7 @@ class System {
    * @param string $className
    *
    * @return \Civi\Payment\CRM_Core_Payment|NULL
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function getByClass($className) {
     return $this->getByProcessor([
diff --git a/civicrm/Civi/Test/Api3TestTrait.php b/civicrm/Civi/Test/Api3TestTrait.php
index 59eb25c063a049e98b821519889167585cae903e..22e3058cfd4522bb997051d88184de8a9345cd24 100644
--- a/civicrm/Civi/Test/Api3TestTrait.php
+++ b/civicrm/Civi/Test/Api3TestTrait.php
@@ -130,7 +130,7 @@ trait Api3TestTrait {
     try {
       $result = $this->civicrm_api($entity, $action, $params);
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       // api v4 call failed and threw an exception.
       return [];
     }
@@ -299,8 +299,7 @@ trait Api3TestTrait {
    * @param $v3Action
    * @param array $v3Params
    * @return array|int
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Exception
    */
   public function runApi4Legacy($v3Entity, $v3Action, $v3Params = []) {
@@ -467,6 +466,12 @@ trait Api3TestTrait {
         }
         break;
 
+      case 'merge':
+        $v4Action = 'mergeDuplicates';
+        $v3Params['contact_id'] = $v3Params['to_keep_id'];
+        $v3Params['duplicate_id'] = $v3Params['to_remove_id'];
+        break;
+
       case 'getoptions':
         $indexBy = 0;
         $v4Action = 'getFields';
@@ -626,7 +631,7 @@ trait Api3TestTrait {
    * @param array $result
    * @param bool $sequential
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function runApi4LegacyChain($key, $params, $mainEntity, $result, $sequential) {
     // Handle an array of multiple calls using recursion
diff --git a/civicrm/Civi/Test/WorkflowMessageTestTrait.php b/civicrm/Civi/Test/WorkflowMessageTestTrait.php
index 1c4bd7780510556d71c9536135606786a744cac6..8adf4e5038e9fec3bc46dd2246e74e21e8bbd088 100644
--- a/civicrm/Civi/Test/WorkflowMessageTestTrait.php
+++ b/civicrm/Civi/Test/WorkflowMessageTestTrait.php
@@ -24,7 +24,7 @@ trait WorkflowMessageTestTrait {
 
   /**
    * @return \Civi\Api4\Generic\AbstractGetAction
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function findExamples(): \Civi\Api4\Generic\AbstractGetAction {
     return \Civi\Api4\ExampleData::get(0)
diff --git a/civicrm/ang/exportui.css b/civicrm/ang/exportui.css
index 78f9714710e2cb833d447f389491eb2b967540ac..3367fd2a2030497944fd8b39353ab8a41725d2a0 100644
--- a/civicrm/ang/exportui.css
+++ b/civicrm/ang/exportui.css
@@ -1,9 +1,10 @@
 /* "fade-out" effect */
-div.crm-export-field-selector-outer {
+.crm-export-field-selector-outer {
+  display: block;
   position: relative;
   overflow-x: hidden;
 }
-div.crm-export-field-selector-outer:after {
+.crm-export-field-selector-outer:after {
   position: absolute;
   top: 0;
   right: 0;
@@ -27,7 +28,7 @@ table.crm-export-field-selector tfoot tr td > span {
 }
 .crm-export-field-selector tbody td {
   cursor: move;
-  width: 18%
+  width: 18%;
 }
 .crm-export-field-selector tbody td:first-child {
   width: 28%;
diff --git a/civicrm/ang/exportui/exportui.js b/civicrm/ang/exportui/exportui.js
index 91a8ee5e7316526049049cfb78499c7bfd1fd395..b39b13b6af430feb1adf3adfbf4cc607917ccc90 100644
--- a/civicrm/ang/exportui/exportui.js
+++ b/civicrm/ang/exportui/exportui.js
@@ -3,248 +3,254 @@
 
   angular.module('exportui', CRM.angular.modules)
 
-  .controller('ExportUiCtrl', function($scope, $timeout, crmApi, dialogService) {
-    var ts = $scope.ts = CRM.ts('exportui'),
-      // Which relationships we've already looked up for the preview
-      relations = [];
-
-    $scope.option_list = CRM.vars.exportUi.option_list;
-    $scope.contact_types = CRM.vars.exportUi.contact_types;
-    $scope.location_type_id = [{id: '', text: ts('Primary')}].concat(CRM.vars.exportUi.location_type_id);
-    // Map of all fields keyed by name
-    $scope.fields = _.transform(CRM.vars.exportUi.fields, function(result, category) {
-      _.each(category.children, function(field) {
-        result[field.id] = field;
-      });
-    }, {});
-    $scope.data = {
-      preview: CRM.vars.exportUi.preview_data,
-      contact_type: '',
-      columns: []
-    };
-    $scope.perms = {
-      admin: CRM.checkPerm('administer CiviCRM')
-    };
-    // For the "add new field" dropdown
-    $scope.new = {col: ''};
-    var contactTypes = _.transform($scope.contact_types, function(result, type) {
-      result.push(type.id);
-      _.each(type.children || [], function(subType) {
-        result.push(subType.id);
-      });
-    });
-    var cids = _.filter(_.map(CRM.vars.exportUi.preview_data, 'id'));
-
-    // Get fields for performing the export or saving the field mapping
-    function getSelectedColumns() {
-      var map = [];
-      _.each($scope.data.columns, function(col, no) {
-        // Make a copy of col without the extra angular props
-        var item = JSON.parse(angular.toJson(col));
-        delete item.select;
-        delete item.mapping_id;
-        item.contact_type = $scope.data.contact_type || 'Contact';
-        item.column_number = no;
-        map.push(item);
-      });
-      return map;
-    }
+  .component('crmExportUi', {
+    templateUrl: '~/exportui/export.html',
+    controller: function($scope, $timeout, crmApi, dialogService) {
+      var ts = $scope.ts = CRM.ts('exportui'),
+        // Which relationships we've already looked up for the preview
+        relations = [];
 
-    // Load a saved field mapping
-    function loadFieldMap(map) {
-      $scope.data.columns = [];
-      var mapContactTypes = [];
-      _.each(map, function(col) {
-        if (_.contains(contactTypes, col.contact_type)) {
-          mapContactTypes.push(col.contact_type);
-        }
-        if (col.relationship_type_id && col.relationship_direction) {
-          col.select = '' + col.relationship_type_id + '_' + col.relationship_direction;
-        } else {
-          col.select = col.name;
-        }
-        $scope.data.columns.push(col);
+      $scope.option_list = CRM.vars.exportUi.option_list;
+      $scope.contact_types = CRM.vars.exportUi.contact_types;
+      $scope.location_type_id = [{id: '', text: ts('Primary')}].concat(CRM.vars.exportUi.location_type_id);
+      // Map of all fields keyed by name
+      $scope.fields = _.transform(CRM.vars.exportUi.fields, function (result, category) {
+        _.each(category.children, function (field) {
+          result[field.id] = field;
+        });
+      }, {});
+      $scope.data = {
+        preview: CRM.vars.exportUi.preview_data,
+        contact_type: '',
+        columns: []
+      };
+      $scope.perms = {
+        admin: CRM.checkPerm('administer CiviCRM')
+      };
+      // For the "add new field" dropdown
+      $scope.new = {col: ''};
+      var contactTypes = _.transform($scope.contact_types, function (result, type) {
+        result.push(type.id);
+        _.each(type.children || [], function (subType) {
+          result.push(subType.id);
+        });
       });
-      // If all the fields are for the same contact type, set it form-wide
-      if (!$scope.data.contact_type && _.unique(mapContactTypes).length === 1) {
-        $scope.data.contact_type = mapContactTypes[0];
+      var cids = _.filter(_.map(CRM.vars.exportUi.preview_data, 'id'));
+
+      // Get fields for performing the export or saving the field mapping
+      function getSelectedColumns() {
+        var map = [];
+        _.each($scope.data.columns, function (col, no) {
+          // Make a copy of col without the extra angular props
+          var item = JSON.parse(angular.toJson(col));
+          delete item.select;
+          delete item.mapping_id;
+          item.contact_type = $scope.data.contact_type || 'Contact';
+          item.column_number = no;
+          map.push(item);
+        });
+        return map;
       }
-    }
 
-    // Return fields relevant to a contact type
-    // Filter out non-contact fields (for relationship selectors)
-    function filterFields(contactType, onlyContact) {
-      return _.transform(CRM.vars.exportUi.fields, function(result, cat) {
-        if (!cat.is_contact && onlyContact) {
-          return;
-        }
-        var fields = _.filter(cat.children, function(field) {
-          return !field.contact_type || !contactType || _.contains(field.contact_type, contactType);
+      // Load a saved field mapping
+      function loadFieldMap(map) {
+        $scope.data.columns = [];
+        var mapContactTypes = [];
+        _.each(map, function (col) {
+          if (_.contains(contactTypes, col.contact_type)) {
+            mapContactTypes.push(col.contact_type);
+          }
+          if (col.relationship_type_id && col.relationship_direction) {
+            col.select = '' + col.relationship_type_id + '_' + col.relationship_direction;
+          } else {
+            col.select = col.name;
+          }
+          $scope.data.columns.push(col);
         });
-        if (fields.length) {
-          result.push({
-            id: cat.id,
-            text: cat.text,
-            children: fields
-          });
+        // If all the fields are for the same contact type, set it form-wide
+        if (!$scope.data.contact_type && _.unique(mapContactTypes).length === 1) {
+          $scope.data.contact_type = mapContactTypes[0];
         }
-      });
-    }
+      }
 
-    $scope.getFields = function() {
-      return {results: filterFields($scope.data.contact_type)};
-    };
+      // Return fields relevant to a contact type
+      // Filter out non-contact fields (for relationship selectors)
+      function filterFields(contactType, onlyContact) {
+        return _.transform(CRM.vars.exportUi.fields, function (result, cat) {
+          if (!cat.is_contact && onlyContact) {
+            return;
+          }
+          var fields = _.filter(cat.children, function (field) {
+            return !field.contact_type || !contactType || _.contains(field.contact_type, contactType);
+          });
+          if (fields.length) {
+            result.push({
+              id: cat.id,
+              text: cat.text,
+              children: fields
+            });
+          }
+        });
+      }
 
-    $scope.getRelatedFields = function(contact_type) {
-      return function() {
-        return {results: filterFields(contact_type, true)};
+      $scope.getFields = function () {
+        return {results: filterFields($scope.data.contact_type)};
       };
-    };
 
-    $scope.showPreview = function(row, field) {
-      var key = field.name;
-      if (field.relationship_type_id && field.relationship_direction) {
-        fetchRelations(field);
-        key = '' + field.relationship_type_id + '_' + field.relationship_direction + '_' + key;
-      }
-      if (field.location_type_id) {
-        key += '_' + field.location_type_id + (field.phone_type_id ? '_' + field.phone_type_id : '');
-      }
-      return field.name ? row[key] : '';
-    };
-
-    function fetchRelations(field) {
-      if (cids.length && !relations[field.relationship_type_id + field.relationship_direction]) {
-        relations[field.relationship_type_id + field.relationship_direction] = true;
-        var a = field.relationship_direction[0],
-          b = field.relationship_direction[2],
-          params = {
-            relationship_type_id: field.relationship_type_id,
-            filters: {is_current: 1},
-            "api.Contact.getsingle": {id: '$value.contact_id_' + b}
-          };
-        params['contact_' + a] = {'IN': cids};
-        (function (field, params) {
-          crmApi('Relationship', 'get', params).then(function (data) {
-            _.each(data.values, function (rel) {
-              var row = cids.indexOf(rel['contact_id_' + a]);
-              if (row > -1) {
-                _.each(rel["api.Contact.getsingle"], function (item, key) {
-                  $scope.data.preview[row][field.relationship_type_id + '_' + field.relationship_direction + '_' + key] = item;
-                });
-              }
+      $scope.getRelatedFields = function (contact_type) {
+        return function () {
+          return {results: filterFields(contact_type, true)};
+        };
+      };
+
+      $scope.showPreview = function (row, field) {
+        var key = field.name;
+        if (field.relationship_type_id && field.relationship_direction) {
+          fetchRelations(field);
+          key = '' + field.relationship_type_id + '_' + field.relationship_direction + '_' + key;
+        }
+        if (field.location_type_id) {
+          key += '_' + field.location_type_id + (field.phone_type_id ? '_' + field.phone_type_id : '');
+        }
+        return field.name ? row[key] : '';
+      };
+
+      function fetchRelations(field) {
+        if (cids.length && !relations[field.relationship_type_id + field.relationship_direction]) {
+          relations[field.relationship_type_id + field.relationship_direction] = true;
+          var a = field.relationship_direction[0],
+            b = field.relationship_direction[2],
+            params = {
+              relationship_type_id: field.relationship_type_id,
+              filters: {is_current: 1},
+              "api.Contact.getsingle": {id: '$value.contact_id_' + b}
+            };
+          params['contact_' + a] = {'IN': cids};
+          (function (field, params) {
+            crmApi('Relationship', 'get', params).then(function (data) {
+              _.each(data.values, function (rel) {
+                var row = cids.indexOf(rel['contact_id_' + a]);
+                if (row > -1) {
+                  _.each(rel["api.Contact.getsingle"], function (item, key) {
+                    $scope.data.preview[row][field.relationship_type_id + '_' + field.relationship_direction + '_' + key] = item;
+                  });
+                }
+              });
             });
-          });
-        })(field, params);
+          })(field, params);
+        }
       }
-    }
 
-    $scope.saveMappingDialog = function() {
-      var options = CRM.utils.adjustDialogDefaults({
-        width: '40%',
-        height: 300,
-        autoOpen: false,
-        title: ts('Save Fields')
-      });
-      var mappingNames = _.transform(CRM.vars.exportUi.mapping_names, function(result, n, key) {
-        result[key] = n.toLowerCase();
-      });
-      var model = {
-        ts: ts,
-        saving: false,
-        overwrite: CRM.vars.exportUi.mapping_id ? '1' : '0',
-        mapping_id: CRM.vars.exportUi.mapping_id,
-        mapping_type_id: CRM.vars.exportUi.mapping_type_id,
-        mapping_names: CRM.vars.exportUi.mapping_names,
-        new_name: CRM.vars.exportUi.mapping_id ? CRM.vars.exportUi.mapping_names[CRM.vars.exportUi.mapping_id] : '',
-        description: CRM.vars.exportUi.mapping_description,
-        nameIsUnique: function() {
-          return !_.contains(mappingNames, this.new_name.toLowerCase()) || (this.overwrite === '1' && this.new_name.toLowerCase() === this.mapping_names[this.mapping_id].toLowerCase());
-        },
-        saveMapping: function() {
-          this.saving = true;
-          var mapping = {
-            id: this.overwrite === '1' ? this.mapping_id : null,
-            mapping_type_id: this.mapping_type_id,
-            name: this.new_name,
-            description: this.description,
-            sequential: 1
+      $scope.saveMappingDialog = function () {
+        var options = CRM.utils.adjustDialogDefaults({
+          width: '40%',
+          height: 300,
+          autoOpen: false,
+          title: ts('Save Fields')
+        });
+        var mappingNames = _.transform(CRM.vars.exportUi.mapping_names, function (result, n, key) {
+          result[key] = n.toLowerCase();
+        });
+        var model = {
+          ts: ts,
+          saving: false,
+          overwrite: CRM.vars.exportUi.mapping_id ? '1' : '0',
+          mapping_id: CRM.vars.exportUi.mapping_id,
+          mapping_type_id: CRM.vars.exportUi.mapping_type_id,
+          mapping_names: CRM.vars.exportUi.mapping_names,
+          new_name: CRM.vars.exportUi.mapping_id ? CRM.vars.exportUi.mapping_names[CRM.vars.exportUi.mapping_id] : '',
+          description: CRM.vars.exportUi.mapping_description,
+          nameIsUnique: function () {
+            return !_.contains(mappingNames, this.new_name.toLowerCase()) || (this.overwrite === '1' && this.new_name.toLowerCase() === this.mapping_names[this.mapping_id].toLowerCase());
           },
-            mappingFields = getSelectedColumns();
-          if (!mapping.id) {
-            _.each(mappingFields, function(field) {
-              delete field.id;
+          saveMapping: function () {
+            this.saving = true;
+            var mapping = {
+                id: this.overwrite === '1' ? this.mapping_id : null,
+                mapping_type_id: this.mapping_type_id,
+                name: this.new_name,
+                description: this.description,
+                sequential: 1
+              },
+              mappingFields = getSelectedColumns();
+            if (!mapping.id) {
+              _.each(mappingFields, function (field) {
+                delete field.id;
+              });
+            }
+            mapping['api.MappingField.replace'] = {values: mappingFields};
+            crmApi('Mapping', 'create', mapping).then(function (result) {
+              CRM.vars.exportUi.mapping_id = result.id;
+              CRM.vars.exportUi.mapping_description = mapping.description;
+              CRM.vars.exportUi.mapping_names[result.id] = mapping.name;
+              // Call loadFieldMap to update field ids in $scope.data.columns
+              loadFieldMap(result.values[0]['api.MappingField.replace'].values);
+              dialogService.close('exportSaveMapping');
             });
           }
-          mapping['api.MappingField.replace'] = {values: mappingFields};
-          crmApi('Mapping', 'create', mapping).then(function(result) {
-            CRM.vars.exportUi.mapping_id = result.id;
-            CRM.vars.exportUi.mapping_description = mapping.description;
-            CRM.vars.exportUi.mapping_names[result.id] = mapping.name;
-            // Call loadFieldMap to update field ids in $scope.data.columns
-            loadFieldMap(result.values[0]['api.MappingField.replace'].values);
-            dialogService.close('exportSaveMapping');
-          });
-        }
+        };
+        dialogService.open('exportSaveMapping', '~/exportui/exportSaveMapping.html', model, options);
       };
-      dialogService.open('exportSaveMapping', '~/exportui/exportSaveMapping.html', model, options);
-    };
 
-    // Load saved mapping
-    if ($('input[name=export_field_map]').val()) {
-      loadFieldMap(JSON.parse($('input[name=export_field_map]').val()));
-    }
+      this.$onInit = function() {
+        // Load saved mapping
+        if ($('input[name=export_field_map]').val()) {
+          loadFieldMap(JSON.parse($('input[name=export_field_map]').val()));
+        }
 
-    // Add new col
-    $scope.$watch('new.col', function(val) {
-      var field = val;
-      $timeout(function() {
-        if (field) {
-          $scope.data.columns.push({
-            select: field,
-            name: '',
-            location_type_id: null,
-            phone_type_id: null,
-            website_type_id: null,
-            im_provider_id: null,
-            relationship_type_id: null,
-            relationship_direction: null
+        // Add new col
+        $scope.$watch('new.col', function (val) {
+          var field = val;
+          $timeout(function () {
+            if (field) {
+              $scope.data.columns.push({
+                select: field,
+                name: '',
+                location_type_id: null,
+                phone_type_id: null,
+                website_type_id: null,
+                im_provider_id: null,
+                relationship_type_id: null,
+                relationship_direction: null
+              });
+              $scope.new.col = '';
+            }
           });
-          $scope.new.col = '';
-        }
-      });
-    });
-
-    // When adding/removing columns
-    $scope.$watch('data.columns', function(values) {
-      _.each(values, function(col, index) {
-        // Remove empty values
-        if (!col.select) {
-          $scope.data.columns.splice(index, 1);
-        } else {
-          // Format item
-          var selection = $scope.fields[col.select];
-          if (selection.relationship_type_id) {
-            col.relationship_type_id = selection.relationship_type_id;
-            col.relationship_direction = col.select.slice(col.select.indexOf('_')+1);
-          } else {
-            col.name = col.select;
-            col.relationship_direction = col.relationship_type_id = null;
-          }
-          var field = col.name ? $scope.fields[col.name] : {};
-          col.location_type_id = field.has_location ? col.location_type_id || '' : null;
-          _.each($scope.option_list, function(options, list) {
-            col[list] = (col.location_type_id || !field.has_location) && field.option_list === list ? col[list] || options[0].id : null;
+        });
+
+        // When adding/removing columns
+        $scope.$watch('data.columns', function (values) {
+          _.each(values, function (col, index) {
+            // Remove empty values
+            if (!col.select) {
+              $scope.data.columns.splice(index, 1);
+            } else {
+              // Format item
+              var selection = $scope.fields[col.select];
+              if (selection.relationship_type_id) {
+                col.relationship_type_id = selection.relationship_type_id;
+                col.relationship_direction = col.select.slice(col.select.indexOf('_') + 1);
+              } else {
+                col.name = col.select;
+                col.relationship_direction = col.relationship_type_id = null;
+              }
+              var field = col.name ? $scope.fields[col.name] : {};
+              col.location_type_id = field.has_location ? col.location_type_id || '' : null;
+              _.each($scope.option_list, function (options, list) {
+                col[list] = (col.location_type_id || !field.has_location) && field.option_list === list ? col[list] || options[0].id : null;
+              });
+            }
           });
-        }
-      });
-      // Store data in a quickform hidden field
-      var selectedColumns = getSelectedColumns();
-      $('input[name=export_field_map]').val(JSON.stringify(selectedColumns));
+          // Store data in a quickform hidden field
+          var selectedColumns = getSelectedColumns();
+          $('input[name=export_field_map]').val(JSON.stringify(selectedColumns));
 
-      // Hide submit button when no fields selected
-      $('.crm-button_qf_Map_next').toggle(!!selectedColumns.length);
-    }, true);
+          // Hide submit button when no fields selected
+          $('.crm-button_qf_Map_next').toggle(!!selectedColumns.length);
+        }, true);
+      };
+
+    }
   });
 
 })(angular, CRM.$, CRM._);
diff --git a/civicrm/api/api.php b/civicrm/api/api.php
index 2a857a1db1b8598b568cc1234ad15a044db6d2a9..670e6ee5fe9a984e963e1f26fdc78019f7d27819 100644
--- a/civicrm/api/api.php
+++ b/civicrm/api/api.php
@@ -56,7 +56,7 @@ function civicrm_api(string $entity, string $action, array $params) {
  *     e.g. `$index = ['name' => 'title']` will return an array of strings - the 'title' field keyed by the 'name' field.
  *
  * @return \Civi\Api4\Generic\Result
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\NotImplementedException
  */
 function civicrm_api4(string $entity, string $action, array $params = [], $index = NULL) {
@@ -97,7 +97,7 @@ function civicrm_api4(string $entity, string $action, array $params = [], $index
   elseif (CRM_Utils_Rule::integer($index)) {
     $item = $result->itemAt($index);
     if (is_null($item)) {
-      throw new \API_Exception("Index $index not found in api results");
+      throw new \CRM_Core_Exception("Index $index not found in api results");
     }
     // Attempt to return a Result object if item is array, otherwise just return the item
     if (!is_array($item)) {
@@ -123,7 +123,7 @@ function civicrm_api4(string $entity, string $action, array $params = [], $index
  * @param array $params
  *   Array to be passed to function.
  *
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array|int
  *   Dependant on the $action
@@ -132,7 +132,7 @@ function civicrm_api3(string $entity, string $action, array $params = []) {
   $params['version'] = 3;
   $result = \Civi::service('civi_api_kernel')->runSafe($entity, $action, $params);
   if (is_array($result) && !empty($result['is_error'])) {
-    throw new CiviCRM_API3_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
+    throw new CRM_Core_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
   }
   return $result;
 }
diff --git a/civicrm/api/v3/Activity.php b/civicrm/api/v3/Activity.php
index 878304bac48d123673a5fd40b720f34bed736acc..6d95e7ca2aab9f20eb7e2cfedd662a9073fcdc98 100644
--- a/civicrm/api/v3/Activity.php
+++ b/civicrm/api/v3/Activity.php
@@ -21,7 +21,7 @@
  * @param array $params
  *   Array per getfields documentation.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array
  */
@@ -204,8 +204,7 @@ function _civicrm_api3_activity_get_spec(&$params) {
  * @return array
  *   API result array
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_activity_get($params) {
@@ -289,7 +288,7 @@ function _civicrm_activity_get_handleSourceContactNameOrderBy(&$params, &$option
  *
  * @param array $params
  * @param CRM_Utils_SQL_Select $sql
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Exception
  */
 function _civicrm_api3_activity_get_extraFilters(&$params, &$sql) {
@@ -588,7 +587,7 @@ function _civicrm_api3_activity_fill_activity_contact_names(&$activities, $param
  * @param array $params
  *   Array holding 'id' of activity to be deleted.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array
  *   API result array
@@ -599,7 +598,7 @@ function civicrm_api3_activity_delete($params) {
     return civicrm_api3_create_success(1, $params, 'Activity', 'delete');
   }
   else {
-    throw new API_Exception('Could not delete Activity: ' . (int) $params['id']);
+    throw new CRM_Core_Exception('Could not delete Activity: ' . (int) $params['id']);
   }
 }
 
@@ -609,7 +608,7 @@ function civicrm_api3_activity_delete($params) {
  * @param array $params
  *   Associated array of fields.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws Exception
  * @return array
  *   array with errors
@@ -625,7 +624,7 @@ function _civicrm_api3_activity_check_params(&$params) {
     if ($value &&
       !CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity', $value, 'id')
     ) {
-      throw new API_Exception('Invalid ' . ucfirst($id) . ' Id');
+      throw new CRM_Core_Exception('Invalid ' . ucfirst($id) . ' Id');
     }
   }
   // this should be handled by wrapper layer & probably the api would already manage it
@@ -649,21 +648,21 @@ function _civicrm_api3_activity_check_params(&$params) {
       throw new Exception($errorString);
     }
     elseif ($activityTypeId && ($activityTypeId != $activityTypeIdInList)) {
-      throw new API_Exception('Mismatch in Activity');
+      throw new CRM_Core_Exception('Mismatch in Activity');
     }
     $params['activity_type_id'] = $activityTypeIdInList;
   }
   elseif ($activityTypeId &&
     !array_key_exists($activityTypeId, $activityTypes)
   ) {
-    throw new API_Exception('Invalid Activity Type ID');
+    throw new CRM_Core_Exception('Invalid Activity Type ID');
   }
 
   // check for activity duration minutes
   // this should be validated @ the wrapper layer not here
   // needs testing
   if (isset($params['duration_minutes']) && !is_numeric($params['duration_minutes'])) {
-    throw new API_Exception('Invalid Activity Duration (in minutes)');
+    throw new CRM_Core_Exception('Invalid Activity Duration (in minutes)');
   }
 
   return NULL;
diff --git a/civicrm/api/v3/ActivityType.php b/civicrm/api/v3/ActivityType.php
index 8bfb4ce843c1c377ce925679b7a72433703681d1..774e9b3101dbaae6464cee5a5b17ff37a9621722 100644
--- a/civicrm/api/v3/ActivityType.php
+++ b/civicrm/api/v3/ActivityType.php
@@ -94,7 +94,7 @@ function _civicrm_api3_activity_type_create_spec(&$params) {
  * @param array $params
  *   Array including id of activity_type to delete.
  * @return array API result array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @deprecated use OptionValue api
  */
 function civicrm_api3_activity_type_delete($params) {
@@ -102,5 +102,5 @@ function civicrm_api3_activity_type_delete($params) {
   if ($result) {
     return civicrm_api3_create_success(TRUE, $params);
   }
-  throw new API_Exception("Failure to delete activity type id {$params['id']}");
+  throw new CRM_Core_Exception("Failure to delete activity type id {$params['id']}");
 }
diff --git a/civicrm/api/v3/Attachment.php b/civicrm/api/v3/Attachment.php
index 3ad473519287bc7697c80c90342e377581c6938c..aa408d1bf5d58b745d90953dbaed066b8ab646e1 100644
--- a/civicrm/api/v3/Attachment.php
+++ b/civicrm/api/v3/Attachment.php
@@ -85,7 +85,7 @@ function _civicrm_api3_attachment_create_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception validation errors
+ * @throws CRM_Core_Exception validation errors
  * @see Civi\API\Subscriber\DynamicFKAuthorization
  */
 function civicrm_api3_attachment_create($params) {
@@ -104,29 +104,29 @@ function civicrm_api3_attachment_create($params) {
     $file['id'] = $fileDao->id = $id;
 
     if (!$fileDao->find(TRUE)) {
-      throw new API_Exception("Invalid ID");
+      throw new CRM_Core_Exception("Invalid ID");
     }
 
     $entityFileDao->file_id = $id;
     if (!$entityFileDao->find(TRUE)) {
-      throw new API_Exception("Cannot modify orphaned file");
+      throw new CRM_Core_Exception("Cannot modify orphaned file");
     }
   }
 
   if (!$id && !is_string($content) && !is_string($moveFile)) {
-    throw new API_Exception("Mandatory key(s) missing from params array: 'id' or 'content' or 'options.move-file'");
+    throw new CRM_Core_Exception("Mandatory key(s) missing from params array: 'id' or 'content' or 'options.move-file'");
   }
   if (!$isTrusted && $moveFile) {
-    throw new API_Exception("options.move-file is only supported on secure calls");
+    throw new CRM_Core_Exception("options.move-file is only supported on secure calls");
   }
   if (is_string($content) && is_string($moveFile)) {
-    throw new API_Exception("'content' and 'options.move-file' are mutually exclusive");
+    throw new CRM_Core_Exception("'content' and 'options.move-file' are mutually exclusive");
   }
   if ($id && !$isTrusted && isset($file['upload_date']) && $file['upload_date'] != CRM_Utils_Date::isoToMysql($fileDao->upload_date)) {
-    throw new API_Exception("Cannot modify upload_date" . var_export([$file['upload_date'], $fileDao->upload_date, CRM_Utils_Date::isoToMysql($fileDao->upload_date)], TRUE));
+    throw new CRM_Core_Exception("Cannot modify upload_date" . var_export([$file['upload_date'], $fileDao->upload_date, CRM_Utils_Date::isoToMysql($fileDao->upload_date)], TRUE));
   }
   if ($id && $name && $name != CRM_Utils_File::cleanFileName($fileDao->uri)) {
-    throw new API_Exception("Cannot modify name");
+    throw new CRM_Core_Exception("Cannot modify name");
   }
 
   if (!$id) {
@@ -147,7 +147,7 @@ function civicrm_api3_attachment_create($params) {
     // CRM-17432 Do not use rename() since it will break file permissions.
     // Also avoid move_uploaded_file() because the API can use options.move-file.
     if (!copy($moveFile, $path)) {
-      throw new API_Exception("Cannot copy uploaded file $moveFile to $path");
+      throw new CRM_Core_Exception("Cannot copy uploaded file $moveFile to $path");
     }
     unlink($moveFile);
   }
@@ -183,7 +183,7 @@ function _civicrm_api3_attachment_get_spec(&$spec) {
  *
  * @return array
  *   per APIv3
- * @throws API_Exception validation errors
+ * @throws CRM_Core_Exception validation errors
  */
 function civicrm_api3_attachment_get($params) {
   list($id, $file, $entityFile, $name, $content, $moveFile, $isTrusted, $returnContent) = _civicrm_api3_attachment_parse_params($params);
@@ -216,7 +216,7 @@ function _civicrm_api3_attachment_delete_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_attachment_delete($params) {
   if (!empty($params['id'])) {
@@ -226,7 +226,7 @@ function civicrm_api3_attachment_delete($params) {
     // ok
   }
   else {
-    throw new API_Exception("Mandatory key(s) missing from params array: id or entity_table+entity_table");
+    throw new CRM_Core_Exception("Mandatory key(s) missing from params array: id or entity_table+entity_table");
   }
 
   $config = CRM_Core_Config::singleton();
@@ -269,12 +269,12 @@ function civicrm_api3_attachment_delete($params) {
  * @param bool $isTrusted
  *
  * @return CRM_Core_DAO
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTrusted) {
   foreach (['name', 'content', 'path', 'url'] as $unsupportedFilter) {
     if (!empty($params[$unsupportedFilter])) {
-      throw new API_Exception("Get by $unsupportedFilter is not currently supported");
+      throw new CRM_Core_Exception("Get by $unsupportedFilter is not currently supported");
     }
   }
 
@@ -335,12 +335,12 @@ function __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTru
  *    - string $moveFile: the full path to a local file whose content should be loaded
  *    - bool $isTrusted: whether we trust the requester to do sketchy things (like moving files or reassigning entities)
  *    - bool $returnContent: whether we are expected to return the full content of the file
- * @throws API_Exception validation errors
+ * @throws CRM_Core_Exception validation errors
  */
 function _civicrm_api3_attachment_parse_params($params) {
   $id = $params['id'] ?? NULL;
   if ($id && !is_numeric($id)) {
-    throw new API_Exception("Malformed id");
+    throw new CRM_Core_Exception("Malformed id");
   }
 
   $file = [];
@@ -365,7 +365,7 @@ function _civicrm_api3_attachment_parse_params($params) {
   $name = NULL;
   if (array_key_exists('name', $params)) {
     if ($params['name'] != basename($params['name']) || preg_match(':[/\\\\]:', $params['name'])) {
-      throw new API_Exception('Malformed name');
+      throw new CRM_Core_Exception('Malformed name');
     }
     $name = $params['name'];
   }
diff --git a/civicrm/api/v3/Batch.php b/civicrm/api/v3/Batch.php
index 0b68afe41514126607020ec44d3d95f90dc9930e..b11ee30c6b114090b38a95ea68934e8fa69a411d 100644
--- a/civicrm/api/v3/Batch.php
+++ b/civicrm/api/v3/Batch.php
@@ -21,7 +21,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_batch_create($params) {
@@ -65,7 +65,7 @@ function civicrm_api3_batch_get($params) {
  *
  * @return array
  *   Array of deleted values.
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_batch_delete($params) {
diff --git a/civicrm/api/v3/Case.php b/civicrm/api/v3/Case.php
index 21082e6330c8f99e308b5c61bfe477d3a5b8f1d4..a4543080c19322adff6fafcf5a15ead5d133d1d1 100644
--- a/civicrm/api/v3/Case.php
+++ b/civicrm/api/v3/Case.php
@@ -40,7 +40,7 @@
  * 'details' => str // html format
  * ```
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   api result array
  */
@@ -61,7 +61,7 @@ function civicrm_api3_case_create($params) {
     // FIXME: Should we check if case with ID actually exists?
 
     if (array_key_exists('creator_id', $params)) {
-      throw new API_Exception('You cannot update creator id');
+      throw new CRM_Core_Exception('You cannot update creator id');
     }
 
     $mergedCaseIds = $origContactIds = [];
@@ -75,10 +75,10 @@ function civicrm_api3_case_create($params) {
       if (count($origContactIds) > 1) {
         // Multiple original contact IDs. Need to specify which one to use as a parameter
         if (empty($params['orig_contact_id'])) {
-          throw new API_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
+          throw new CRM_Core_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
         }
         if (!empty($params['orig_contact_id']) && !in_array($params['orig_contact_id'], $origContactIds)) {
-          throw new API_Exception('Invalid case contact id (orig_contact_id)');
+          throw new CRM_Core_Exception('Invalid case contact id (orig_contact_id)');
         }
         $origContactId = $params['orig_contact_id'];
       }
@@ -104,7 +104,7 @@ function civicrm_api3_case_create($params) {
   $caseBAO = CRM_Case_BAO_Case::create($params);
 
   if (!$caseBAO) {
-    throw new API_Exception('Case not created. Please check input params.');
+    throw new CRM_Core_Exception('Case not created. Please check input params.');
   }
 
   if (isset($params['contact_id']) && !isset($params['id'])) {
@@ -255,7 +255,7 @@ function _civicrm_api3_case_delete_spec(&$params) {
  * $params CRM_Utils_SQL_Select $sql
  *   Other apis wishing to wrap & extend this one can pass in a $sql object with extra clauses
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   (get mode, case_id provided): Array with case details, case roles, case activity ids, (search mode, case_id not provided): Array of cases found
  */
@@ -295,7 +295,7 @@ function civicrm_api3_case_get($params, $sql = NULL) {
         list(, $sortField) = array_pad(explode('.', $sortField), 2, 'id');
         // Validate inputs
         if (!array_key_exists($sortField, CRM_Contact_DAO_Contact::fieldKeys()) || ($dir != 'ASC' && $dir != 'DESC')) {
-          throw new API_Exception("Unknown field specified for sort. Cannot order by '$contactSort'");
+          throw new CRM_Core_Exception("Unknown field specified for sort. Cannot order by '$contactSort'");
         }
         $sql->orderBy("case_contact.$sortField $dir", NULL, $index);
       }
@@ -313,7 +313,7 @@ function civicrm_api3_case_get($params, $sql = NULL) {
   // Add clause to search by activity
   if (!empty($params['activity_id'])) {
     if (!CRM_Utils_Rule::positiveInteger($params['activity_id'])) {
-      throw new API_Exception('Invalid parameter: activity_id. Must provide a numeric value.');
+      throw new CRM_Core_Exception('Invalid parameter: activity_id. Must provide a numeric value.');
     }
     $activityId = $params['activity_id'];
     $originalId = CRM_Core_DAO::getFieldValue('CRM_Activity_BAO_Activity', $activityId, 'original_id');
@@ -368,7 +368,7 @@ function civicrm_api3_case_get($params, $sql = NULL) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_case_activity_create($params) {
@@ -383,7 +383,7 @@ function civicrm_api3_case_activity_create($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_case_addtimeline($params) {
@@ -440,7 +440,7 @@ function _civicrm_api3_case_addtimeline_spec(&$params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_case_merge($params) {
@@ -494,7 +494,7 @@ function _civicrm_api3_case_deprecation() {
  *   'start_date' => str datestamp
  *   'contact_id' => int // case client
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   api result array
  */
@@ -508,7 +508,7 @@ function civicrm_api3_case_update($params) {
 
   // return error if modifying creator id
   if (array_key_exists('creator_id', $params)) {
-    throw new API_Exception(ts('You cannot update creator id'));
+    throw new CRM_Core_Exception(ts('You cannot update creator id'));
   }
 
   $mCaseId = $origContactIds = [];
@@ -522,10 +522,10 @@ function civicrm_api3_case_update($params) {
   if (count($origContactIds) > 1) {
     // check valid orig contact id
     if (!empty($params['orig_contact_id']) && !in_array($params['orig_contact_id'], $origContactIds)) {
-      throw new API_Exception('Invalid case contact id (orig_contact_id)');
+      throw new CRM_Core_Exception('Invalid case contact id (orig_contact_id)');
     }
     elseif (empty($params['orig_contact_id'])) {
-      throw new API_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
+      throw new CRM_Core_Exception('Case is linked with more than one contact id. Provide the required params orig_contact_id to be replaced');
     }
     $origContactId = $params['orig_contact_id'];
   }
@@ -564,7 +564,7 @@ function civicrm_api3_case_update($params) {
  *   'move_to_trash' => bool (defaults to false)
  * ```
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return mixed
  */
 function civicrm_api3_case_delete($params) {
@@ -575,7 +575,7 @@ function civicrm_api3_case_delete($params) {
     return civicrm_api3_create_success($params, $params, 'Case', 'delete');
   }
   else {
-    throw new API_Exception('Could not delete case.');
+    throw new CRM_Core_Exception('Could not delete case.');
   }
 }
 
@@ -594,7 +594,7 @@ function _civicrm_api3_case_restore_spec(&$spec) {
  * Restore a specified case from the trash.
  *
  * @param array $params
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return mixed
  */
 function civicrm_api3_case_restore($params) {
@@ -602,7 +602,7 @@ function civicrm_api3_case_restore($params) {
     return civicrm_api3_create_success($params, $params, 'Case', 'restore');
   }
   else {
-    throw new API_Exception('Could not restore case.');
+    throw new CRM_Core_Exception('Could not restore case.');
   }
 }
 
diff --git a/civicrm/api/v3/CaseType.php b/civicrm/api/v3/CaseType.php
index 3caa7fba6d3a06f2d4e637851d88600e7559542c..d3c85d4cb6605bc83254bcf08da140f2318d6b3e 100644
--- a/civicrm/api/v3/CaseType.php
+++ b/civicrm/api/v3/CaseType.php
@@ -21,7 +21,7 @@
  * @param array $params
  *   Input parameters.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array
  */
diff --git a/civicrm/api/v3/Contact.php b/civicrm/api/v3/Contact.php
index eb54fc665cf6c62c23982c5913e1f7f22139558b..732f14be833ff9c12aa020199a7707ed62759354 100644
--- a/civicrm/api/v3/Contact.php
+++ b/civicrm/api/v3/Contact.php
@@ -30,8 +30,8 @@
  * @return array
  *   API Result Array
  *
- * @throws \CiviCRM_API3_Exception
- * @throws API_Exception
+ * @throws \CRM_Core_Exception
+ * @throws CRM_Core_Exception
  * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_create($params) {
@@ -44,7 +44,7 @@ function civicrm_api3_contact_create($params) {
   if (!empty($params['dupe_check'])) {
     $ids = CRM_Contact_BAO_Contact::getDuplicateContacts($params, $params['contact_type'], 'Unsupervised', [], $params['check_permission']);
     if (count($ids) > 0) {
-      throw new API_Exception("Found matching contacts: " . implode(',', $ids), "duplicate", ["ids" => $ids]);
+      throw new CRM_Core_Exception("Found matching contacts: " . implode(',', $ids), "duplicate", ["ids" => $ids]);
     }
   }
 
@@ -84,7 +84,7 @@ function civicrm_api3_contact_create($params) {
   if (empty($params['contact_type']) && $contactID) {
     $params['contact_type'] = CRM_Contact_BAO_Contact::getContactType($contactID);
     if (!$params['contact_type']) {
-      throw new API_Exception('Contact id ' . $contactID . ' not found.');
+      throw new CRM_Core_Exception('Contact id ' . $contactID . ' not found.');
     }
   }
 
@@ -99,7 +99,7 @@ function civicrm_api3_contact_create($params) {
   $contact = _civicrm_api3_contact_update($params, $contactID);
 
   if (is_a($contact, 'CRM_Core_Error')) {
-    throw new API_Exception($contact->_errors[0]['message']);
+    throw new CRM_Core_Exception($contact->_errors[0]['message']);
   }
   else {
     $values = [];
@@ -153,8 +153,7 @@ function _civicrm_api3_contact_create_spec(&$params) {
  * @return array
  *   API Result Array
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_get($params) {
   $options = [];
@@ -172,7 +171,7 @@ function civicrm_api3_contact_get($params) {
  * @param array $params
  *
  * @return int
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_getcount($params) {
   $options = [];
@@ -451,7 +450,6 @@ function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
  * @return array
  *   API Result Array
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_contact_delete($params) {
@@ -462,7 +460,7 @@ function civicrm_api3_contact_delete($params) {
   }
 
   if ($contactID == CRM_Core_Session::getLoggedInContactID()) {
-    throw new API_Exception('This contact record is linked to the currently logged in user account - and cannot be deleted.');
+    throw new CRM_Core_Exception('This contact record is linked to the currently logged in user account - and cannot be deleted.');
   }
   $restore = !empty($params['restore']);
   $skipUndelete = !empty($params['skip_undelete']);
@@ -471,13 +469,13 @@ function civicrm_api3_contact_delete($params) {
   // restrict permanent delete if a contact has financial trxn associated with it
   $error = NULL;
   if ($skipUndelete && CRM_Financial_BAO_FinancialItem::checkContactPresent([$contactID], $error)) {
-    throw new API_Exception($error['_qf_default']);
+    throw new CRM_Core_Exception($error['_qf_default']);
   }
   if (CRM_Contact_BAO_Contact::deleteContact($contactID, $restore, $skipUndelete,
     CRM_Utils_Array::value('check_permissions', $params))) {
     return civicrm_api3_create_success();
   }
-  throw new CiviCRM_API3_Exception('Could not delete contact');
+  throw new CRM_Core_Exception('Could not delete contact');
 }
 
 /**
@@ -488,8 +486,8 @@ function civicrm_api3_contact_delete($params) {
  * @param array $params
  *
  * @return null
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_contact_check_params(&$params) {
 
@@ -514,7 +512,7 @@ function _civicrm_api3_contact_check_params(&$params) {
 
   if (!empty($params['contact_sub_type']) && !empty($params['contact_type'])) {
     if (!(CRM_Contact_BAO_ContactType::isExtendsContactType($params['contact_sub_type'], $params['contact_type']))) {
-      throw new API_Exception("Invalid or Mismatched Contact Subtype: " . implode(', ', (array) $params['contact_sub_type']));
+      throw new CRM_Core_Exception("Invalid or Mismatched Contact Subtype: " . implode(', ', (array) $params['contact_sub_type']));
     }
   }
 
@@ -528,12 +526,12 @@ function _civicrm_api3_contact_check_params(&$params) {
 
     // check for mismatch employer name and id
     if (!empty($params['employer_id']) && !in_array($params['employer_id'], $dupeIds)) {
-      throw new API_Exception('Employer name and Employer id Mismatch');
+      throw new CRM_Core_Exception('Employer name and Employer id Mismatch');
     }
 
     // show error if multiple organisation with same name exist
     if (empty($params['employer_id']) && (count($dupeIds) > 1)) {
-      throw new API_Exception('Found more than one Organisation with same Name.');
+      throw new CRM_Core_Exception('Found more than one Organisation with same Name.');
     }
 
     if ($dupeIds) {
@@ -562,7 +560,6 @@ function _civicrm_api3_contact_check_params(&$params) {
  * @return CRM_Contact_BAO_Contact|CRM_Core_Error
  *
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function _civicrm_api3_contact_update($params, $contactID = NULL) {
@@ -580,7 +577,7 @@ function _civicrm_api3_contact_update($params, $contactID = NULL) {
  * @param array $params
  *   Array per getfields metadata.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_greeting_format_params($params) {
@@ -626,7 +623,7 @@ function _civicrm_api3_greeting_format_params($params) {
     if ($customGreeting && $greetingId &&
       ($greetingId != array_search('Customized', $greetings))
     ) {
-      throw new API_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
+      throw new CRM_Core_Exception(ts('Provide either %1 greeting id and/or %1 greeting or custom %1 greeting',
         [1 => $key]
       ));
     }
@@ -634,14 +631,14 @@ function _civicrm_api3_greeting_format_params($params) {
     if ($greetingVal && $greetingId &&
       ($greetingId != CRM_Utils_Array::key($greetingVal, $greetings))
     ) {
-      throw new API_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
+      throw new CRM_Core_Exception(ts('Mismatch in %1 greeting id and %1 greeting',
         [1 => $key]
       ));
     }
 
     if ($greetingId) {
       if (!$customGreeting && ($greetingId == array_search('Customized', $greetings))) {
-        throw new API_Exception(ts('Please provide a custom value for %1 greeting',
+        throw new CRM_Core_Exception(ts('Please provide a custom value for %1 greeting',
           [1 => $key]
         ));
       }
@@ -649,7 +646,7 @@ function _civicrm_api3_greeting_format_params($params) {
     elseif ($greetingVal) {
 
       if (!in_array($greetingVal, $greetings)) {
-        throw new API_Exception(ts('Invalid %1 greeting', [1 => $key]));
+        throw new CRM_Core_Exception(ts('Invalid %1 greeting', [1 => $key]));
       }
 
       $greetingId = CRM_Utils_Array::key($greetingVal, $greetings);
@@ -733,7 +730,7 @@ function _civicrm_api3_contact_getquick_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_getquick($params) {
   $name = CRM_Utils_Type::escape(CRM_Utils_Array::value('name', $params), 'String');
@@ -767,7 +764,7 @@ function civicrm_api3_contact_getquick($params) {
     $field_name = CRM_Utils_String::munge($params['field_name']);
     // there is no good reason to request api_key via getquick
     if ($field_name == 'api_key') {
-      throw new API_Exception('Illegal value "api_key" for parameter "field_name"');
+      throw new CRM_Core_Exception('Illegal value "api_key" for parameter "field_name"');
     }
     // Unique name contact_id = id
     if ($field_name == 'contact_id') {
@@ -1153,15 +1150,13 @@ function _civicrm_api3_contact_deprecation() {
  *
  * @param array $params
  *   Allowed array keys are:
- *   -int main_id: main contact id with whom merge has to happen
- *   -int other_id: duplicate contact which would be deleted after merge operation
+ *   -int to_keep_id: main contact id with whom merge has to happen
+ *   -int to_remove_id: duplicate contact which would be deleted after merge operation
  *   -string mode: "safe" skips the merge if there are no conflicts. Does a force merge otherwise.
  *
  * @return array
  *   API Result Array
  *
- * @throws API_Exception
- * @throws \CiviCRM_API3_Exception
  * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_merge($params) {
@@ -1175,7 +1170,7 @@ function civicrm_api3_contact_merge($params) {
 
     return civicrm_api3_create_success($result, $params);
   }
-  throw new API_Exception('Merge failed');
+  throw new CRM_Core_Exception('Merge failed');
 }
 
 /**
@@ -1219,8 +1214,7 @@ function _civicrm_api3_contact_merge_spec(&$params) {
  *   API Result Array
  *
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_get_merge_conflicts($params) {
   $migrationInfo = [];
@@ -1266,7 +1260,7 @@ function _civicrm_api3_contact_get_merge_conflicts_spec(&$params) {
  * @return array
  *   API Result Array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_getmergedto($params) {
   $contactID = _civicrm_api3_contact_getmergedto($params);
@@ -1290,7 +1284,7 @@ function civicrm_api3_contact_getmergedto($params) {
  *
  * @return int|false
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_contact_getmergedto($params) {
   $contactID = FALSE;
@@ -1343,7 +1337,7 @@ function _civicrm_api3_contact_getmergedto_spec(&$params) {
  * @return array
  *   API Result Array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_getmergedfrom($params) {
   $contacts = _civicrm_api3_contact_getmergedfrom($params);
@@ -1357,7 +1351,7 @@ function civicrm_api3_contact_getmergedfrom($params) {
  *
  * @return array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_contact_getmergedfrom($params) {
   $activities = [];
@@ -1452,7 +1446,7 @@ function civicrm_api3_contact_proximity($params) {
     !CRM_Utils_Rule::numeric($longitude) ||
     !CRM_Utils_Rule::numeric($distance)
   ) {
-    throw new API_Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
+    throw new CRM_Core_Exception(ts('Latitude, Longitude and Distance should exist and be numeric'));
   }
 
   if ($unit === 'mile') {
@@ -1599,14 +1593,14 @@ function _civicrm_api3_contact_getlist_output($result, $request) {
  * @return array
  *   API formatted array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contact_duplicatecheck($params) {
   if (!isset($params['match']) || !is_array($params['match'])) {
-    throw new \CiviCRM_API3_Exception('Duplicate check must include criteria to check against (missing or invalid $params[\'match\']).');
+    throw new \CRM_Core_Exception('Duplicate check must include criteria to check against (missing or invalid $params[\'match\']).');
   }
   if (!isset($params['match']['contact_type']) || !is_string($params['match']['contact_type'])) {
-    throw new \CiviCRM_API3_Exception('Duplicate check must include a contact type. (missing or invalid $params[\'match\'][\'contact_type\'])');
+    throw new \CRM_Core_Exception('Duplicate check must include a contact type. (missing or invalid $params[\'match\'][\'contact_type\'])');
   }
   $dupes = CRM_Contact_BAO_Contact::getDuplicateContacts(
     $params['match'],
diff --git a/civicrm/api/v3/Contribution.php b/civicrm/api/v3/Contribution.php
index 8cd09aa6672079df06532666754470eb412e8fa2..06fae12adacc97f0118609eb119868ac99044b93 100644
--- a/civicrm/api/v3/Contribution.php
+++ b/civicrm/api/v3/Contribution.php
@@ -23,7 +23,7 @@ use Civi\Api4\Contribution;
  * @param array $params
  *   Input parameters.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   Api result array
  */
@@ -50,7 +50,7 @@ function civicrm_api3_contribution_create($params) {
       ->addValue('id', $params['id'] ?? NULL)
       ->addValue('financial_type_id', $params['financial_type_id'] ?? NULL)
       ->execute()->first()['access']) {
-      throw new API_Exception('You do not have permission to create this contribution');
+      throw new CRM_Core_Exception('You do not have permission to create this contribution');
     }
   }
   if (!empty($params['id']) && !empty($params['contribution_status_id'])) {
@@ -60,14 +60,14 @@ function civicrm_api3_contribution_create($params) {
     // action it needs to be blocked there. If it is Ok through a form it needs to be OK through the api
     CRM_Contribute_BAO_Contribution::checkStatusValidation(NULL, $params, $error);
     if (array_key_exists('contribution_status_id', $error)) {
-      throw new API_Exception($error['contribution_status_id']);
+      throw new CRM_Core_Exception($error['contribution_status_id']);
     }
   }
   if (!empty($params['id']) && !empty($params['financial_type_id'])) {
     $error = [];
     CRM_Contribute_BAO_Contribution::checkFinancialTypeChange($params['financial_type_id'], $params['id'], $error);
     if (array_key_exists('financial_type_id', $error)) {
-      throw new API_Exception($error['financial_type_id']);
+      throw new CRM_Core_Exception($error['financial_type_id']);
     }
   }
   if (!isset($params['tax_amount']) && empty($params['line_item'])
@@ -209,18 +209,18 @@ function _civicrm_api3_contribution_create_legacy_support_45(&$params) {
  *   Input parameters.
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_contribution_delete($params) {
 
   $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id'];
   if (!empty($params['check_permissions']) && !\Civi\Api4\Utils\CoreUtil::checkAccessDelegated('Contribution', 'delete', ['id' => $contributionID], CRM_Core_Session::getLoggedInContactID() ?: 0)) {
-    throw new API_Exception('You do not have permission to delete this contribution');
+    throw new CRM_Core_Exception('You do not have permission to delete this contribution');
   }
   if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) {
     return civicrm_api3_create_success([$contributionID => 1]);
   }
-  throw new API_Exception('Could not delete contribution');
+  throw new CRM_Core_Exception('Could not delete contribution');
 }
 
 /**
@@ -274,7 +274,7 @@ function civicrm_api3_contribution_get($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_contribution_get_support_nonunique_returns($params) {
   $additionalOptions = [];
@@ -472,7 +472,6 @@ function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
  *
  * @return array
  *   API result array
- * @throws \API_Exception
  * @throws \CRM_Core_Exception
  * @throws \Exception
  */
@@ -480,10 +479,10 @@ function civicrm_api3_contribution_completetransaction($params): array {
   $contribution = new CRM_Contribute_BAO_Contribution();
   $contribution->id = $params['id'];
   if (!$contribution->find(TRUE)) {
-    throw new API_Exception('A valid contribution ID is required', 'invalid_data');
+    throw new CRM_Core_Exception('A valid contribution ID is required', 'invalid_data');
   }
   if ($contribution->contribution_status_id == CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed')) {
-    throw new API_Exception(ts('Contribution already completed'), 'contribution_completed');
+    throw new CRM_Core_Exception(ts('Contribution already completed'), 'contribution_completed');
   }
 
   $params['trxn_id'] = $params['trxn_id'] ?? $contribution->trxn_id;
@@ -604,7 +603,7 @@ function _civicrm_api3_contribution_completetransaction_spec(&$params) {
  *
  * @return array
  *   Api result array.
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_contribution_repeattransaction($params) {
 
@@ -616,7 +615,7 @@ function civicrm_api3_contribution_repeattransaction($params) {
     // @todo this duplicates work done by CRM_Contribute_BAO_Contribution::repeatTransaction & should be removed.
     $templateContribution = CRM_Contribute_BAO_ContributionRecur::getTemplateContribution($params['contribution_recur_id']);
     if (empty($templateContribution)) {
-      throw new CiviCRM_API3_Exception('Contribution.repeattransaction failed to get original_contribution_id for recur with ID: ' . $params['contribution_recur_id']);
+      throw new CRM_Core_Exception('Contribution.repeattransaction failed to get original_contribution_id for recur with ID: ' . $params['contribution_recur_id']);
     }
   }
   else {
@@ -628,7 +627,7 @@ function civicrm_api3_contribution_repeattransaction($params) {
       ->addWhere('contribution_recur_id', 'IS NOT EMPTY')
       ->execute()->first();
     if (empty($templateContribution)) {
-      throw new CiviCRM_API3_Exception("Contribution.repeattransaction failed to load the given original_contribution_id ($params[original_contribution_id]) because it does not exist, or because it does not belong to a recurring contribution");
+      throw new CRM_Core_Exception("Contribution.repeattransaction failed to load the given original_contribution_id ($params[original_contribution_id]) because it does not exist, or because it does not belong to a recurring contribution");
     }
   }
 
@@ -692,7 +691,6 @@ function civicrm_api3_contribution_repeattransaction($params) {
  *
  * @return mixed
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  */
 function _ipn_process_transaction($params, $contribution, $input, $ids) {
   CRM_Core_Error::deprecatedFunctionWarning('API3 contribution.completetransaction or contribution.repeattransaction');
diff --git a/civicrm/api/v3/ContributionProduct.php b/civicrm/api/v3/ContributionProduct.php
index 0a116d020be364272defbad3e57218b497ab8bb0..d0afa574c50bb0caf30c957d63d346290eded4b8 100644
--- a/civicrm/api/v3/ContributionProduct.php
+++ b/civicrm/api/v3/ContributionProduct.php
@@ -23,7 +23,7 @@
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_contribution_product_create($params) {
@@ -47,7 +47,7 @@ function civicrm_api3_contribution_product_get($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   Array of deleted values.
  */
diff --git a/civicrm/api/v3/ContributionSoft.php b/civicrm/api/v3/ContributionSoft.php
index 9a44d5267095e6180e7a1609d1f7d55469b22816..f2c829a1fa06561b0e32204f3eded71648439ca2 100644
--- a/civicrm/api/v3/ContributionSoft.php
+++ b/civicrm/api/v3/ContributionSoft.php
@@ -50,7 +50,7 @@ function _civicrm_api3_contribution_soft_create_spec(&$params) {
  * @return array
  *   Api formatted result.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_contribution_soft_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/Country.php b/civicrm/api/v3/Country.php
index 38c64f4d9916c9f97c468fe175098fa4143377db..fd5a54d013fec3dc77d54fa8d545dc5afa5c7dd7 100644
--- a/civicrm/api/v3/Country.php
+++ b/civicrm/api/v3/Country.php
@@ -23,7 +23,7 @@
  *
  * @return array
  *   API result array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_country_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_DAO(__FUNCTION__), $params, 'Country');
diff --git a/civicrm/api/v3/CustomField.php b/civicrm/api/v3/CustomField.php
index 7a66f733f50c45d53d57ddd0519ad381a2b984c0..4ca7cab13beec18f1c0291189a1257045fbcb1ce 100644
--- a/civicrm/api/v3/CustomField.php
+++ b/civicrm/api/v3/CustomField.php
@@ -27,7 +27,7 @@
  *
  * @return array
  *   API success array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_custom_field_create(array $params): array {
 
diff --git a/civicrm/api/v3/CustomValue.php b/civicrm/api/v3/CustomValue.php
index 9efe097af78746221e01707e59a172d696504025..f3b127c177cd273e4596946c18a7ffa73ee62d67 100644
--- a/civicrm/api/v3/CustomValue.php
+++ b/civicrm/api/v3/CustomValue.php
@@ -113,7 +113,7 @@ function _civicrm_api3_custom_value_create_spec(&$params) {
  *   Example: 'entity_id' => 123, 'return.custom_6' => 1, 'return.custom_33' => 1
  *   If you do not know the ID, you may use group name : field name, for example 'return.foo_stuff:my_field' => 1
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_custom_value_get($params) {
@@ -163,7 +163,7 @@ function civicrm_api3_custom_value_get($params) {
       return civicrm_api3_create_success($values, $params, 'CustomValue');
     }
     else {
-      throw new API_Exception($result['error_message']);
+      throw new CRM_Core_Exception($result['error_message']);
     }
   }
   else {
@@ -230,7 +230,7 @@ function _civicrm_api3_custom_value_get_spec(&$params) {
  *
  * @param array $spec description of fields supported by this API call
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_custom_value_gettree_spec(&$spec) {
   $spec['entity_id'] = [
@@ -280,9 +280,8 @@ function _civicrm_api3_custom_value_gettree_spec(&$spec) {
  * @param array $params
  *
  * @return array API result
- * @throws \API_Exception
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_custom_value_gettree($params) {
   $ret = [];
@@ -412,7 +411,7 @@ function _civicrm_api3_custom_value_getdisplayvalue_spec(&$spec) {
  * @param array $params
  *
  * @return array API result
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_custom_value_getdisplayvalue($params) {
   // Null or missing means use the current db value, but treat '0', 0, and '' as legitimate values to look up.
diff --git a/civicrm/api/v3/Cxn.php b/civicrm/api/v3/Cxn.php
index 3ad6508c98437c71717bfb86d350cc9b7d86442b..8c81f3c3944ea2047d18c06210930fa930a1c2e9 100644
--- a/civicrm/api/v3/Cxn.php
+++ b/civicrm/api/v3/Cxn.php
@@ -55,11 +55,11 @@ function civicrm_api3_cxn_register($params) {
   if (!empty($params['app_meta_url'])) {
     list ($status, $json) = CRM_Utils_HttpClient::singleton()->get($params['app_meta_url']);
     if (CRM_Utils_HttpClient::STATUS_OK != $status) {
-      throw new API_Exception("Failed to download appMeta. (Bad HTTP response)");
+      throw new CRM_Core_Exception("Failed to download appMeta. (Bad HTTP response)");
     }
     $appMeta = json_decode($json, TRUE);
     if (empty($appMeta)) {
-      throw new API_Exception("Failed to download appMeta. (Malformed)");
+      throw new CRM_Core_Exception("Failed to download appMeta. (Malformed)");
     }
   }
   elseif (!empty($params['app_guid'])) {
@@ -69,7 +69,7 @@ function civicrm_api3_cxn_register($params) {
   }
 
   if (empty($appMeta) || !is_array($appMeta)) {
-    throw new API_Exception("Missing expected parameter: app_guid");
+    throw new CRM_Core_Exception("Missing expected parameter: app_guid");
   }
   \Civi\Cxn\Rpc\AppMeta::validate($appMeta);
 
@@ -134,7 +134,7 @@ function civicrm_api3_cxn_unregister($params) {
  * @return string
  *   The CxnId. (If not available, then an exception is thrown.)
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_cxn_parseCxnId($params) {
   $cxnId = NULL;
@@ -147,11 +147,11 @@ function _civicrm_api3_cxn_parseCxnId($params) {
       1 => [$params['app_guid'], 'String'],
     ]);
     if (!$cxnId) {
-      throw new API_Exception("The app_guid does not correspond to an active connection.");
+      throw new CRM_Core_Exception("The app_guid does not correspond to an active connection.");
     }
   }
   if (!$cxnId) {
-    throw new API_Exception('Missing required parameter: cxn_guid');
+    throw new CRM_Core_Exception('Missing required parameter: cxn_guid');
   }
   return $cxnId;
 }
@@ -231,7 +231,7 @@ function civicrm_api3_cxn_getlink($params) {
   $appMeta = CRM_Cxn_BAO_Cxn::getAppMeta($cxnId);
 
   if (empty($params['page_name']) || !is_string($params['page_name'])) {
-    throw new API_Exception("Invalid page");
+    throw new CRM_Core_Exception("Invalid page");
   }
 
   /** @var \Civi\Cxn\Rpc\RegistrationClient $client */
diff --git a/civicrm/api/v3/CxnApp.php b/civicrm/api/v3/CxnApp.php
index f087d53e04043a2a11b36676ad87cbecba4d4a9d..8067d525caed988e21c507f5f7560f0e13d3d38f 100644
--- a/civicrm/api/v3/CxnApp.php
+++ b/civicrm/api/v3/CxnApp.php
@@ -73,7 +73,7 @@ function _civicrm_api3_cxn_app_get_spec(&$spec) {
  *
  * @param array $params
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws CRM_Core_Exception
  * @throws \Civi\Cxn\Rpc\Exception\InvalidMessageException
  */
@@ -83,7 +83,7 @@ function civicrm_api3_cxn_app_get($params) {
 
   list ($headers, $blob, $code) = CRM_Cxn_CiviCxnHttp::singleton()->send('GET', $url, '');
   if ($code != 200) {
-    throw new API_Exception("Failed to download application list.");
+    throw new CRM_Core_Exception("Failed to download application list.");
   }
 
   $agent = new \Civi\Cxn\Rpc\Agent(NULL, NULL);
diff --git a/civicrm/api/v3/Dashboard.php b/civicrm/api/v3/Dashboard.php
index 4fa78a46e6f5428a166670aa4b0220470cc50682..c18d234d8681d29e54cf2dd41cca492d5a8c53b6 100644
--- a/civicrm/api/v3/Dashboard.php
+++ b/civicrm/api/v3/Dashboard.php
@@ -64,8 +64,8 @@ function civicrm_api3_dashboard_get($params) {
  * @param array $params
  *   Array holding 'id' of dashlet to be deleted.
  * @return array
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_dashboard_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/DashboardContact.php b/civicrm/api/v3/DashboardContact.php
index 1662b934d2b52309a0892e2a757dcd5116da8e51..ef0941d01509e4cb0f9efbb7846b6d38b0449901 100644
--- a/civicrm/api/v3/DashboardContact.php
+++ b/civicrm/api/v3/DashboardContact.php
@@ -56,7 +56,7 @@ function _civicrm_api3_dashboard_contact_create_spec(&$fields) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_dashboard_contact_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/Dedupe.php b/civicrm/api/v3/Dedupe.php
index 494e8847989631b6f673e5171a8d283d825f9fd8..c83a3c46cc939ac92b5093a7fce2ba3e7223a758 100644
--- a/civicrm/api/v3/Dedupe.php
+++ b/civicrm/api/v3/Dedupe.php
@@ -21,7 +21,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_dedupe_get($params) {
   $sql = CRM_Utils_SQL_Select::fragment();
@@ -58,7 +58,7 @@ function _civicrm_api3_dedupe_get_spec(&$params) {
  *
  * @return array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_dedupe_delete($params) {
@@ -71,7 +71,7 @@ function civicrm_api3_dedupe_delete($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_dedupe_create($params) {
@@ -84,7 +84,7 @@ function civicrm_api3_dedupe_create($params) {
  * @param array $params
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_dedupe_getstatistics($params) {
   $stats = CRM_Dedupe_Merger::getMergeStats(CRM_Dedupe_Merger::getMergeCacheKeyString(
@@ -134,8 +134,7 @@ function _civicrm_api3_dedupe_getstatistics_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \CRM_Core_Exception
  */
 function civicrm_api3_dedupe_getduplicates($params) {
diff --git a/civicrm/api/v3/Domain.php b/civicrm/api/v3/Domain.php
index 974826b30ec1755a7c5f75db66ab024d767668f4..3ceda091966e4d197abe2c1e9e2cd09485a3bad8 100644
--- a/civicrm/api/v3/Domain.php
+++ b/civicrm/api/v3/Domain.php
@@ -21,7 +21,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_domain_get($params) {
 
diff --git a/civicrm/api/v3/Email.php b/civicrm/api/v3/Email.php
index a20bd0dd688ed558937fc448e3959071994f47bc..0d78cb275999e9507e81ff3a2e013da9e3557c10 100644
--- a/civicrm/api/v3/Email.php
+++ b/civicrm/api/v3/Email.php
@@ -24,7 +24,7 @@
  * @return array
  *   API result array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_email_create($params) {
@@ -58,8 +58,7 @@ function _civicrm_api3_email_create_spec(&$params) {
  * @return array
  *   API result array.
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_email_delete($params) {
diff --git a/civicrm/api/v3/Event.php b/civicrm/api/v3/Event.php
index f20d6702cf81ec2e303c415261e4a4ae73c86659..bfedf30a9cc4e184ee9a75cf4ccb9db3dc24ac72 100644
--- a/civicrm/api/v3/Event.php
+++ b/civicrm/api/v3/Event.php
@@ -25,7 +25,6 @@
  * @return array
  *   API result Array.
  * @throws \CRM_Core_Exception
- * @throws \API_Exception
  */
 function civicrm_api3_event_create($params) {
   // Required fields for creating an event
diff --git a/civicrm/api/v3/Extension.php b/civicrm/api/v3/Extension.php
index 0b654bf642e7d37e6740ff9eedc5b73076168e02..d70fb5a050e6a0081f69aebe28ac7f1423343c86 100644
--- a/civicrm/api/v3/Extension.php
+++ b/civicrm/api/v3/Extension.php
@@ -205,18 +205,18 @@ function _civicrm_api3_extension_uninstall_spec(&$fields) {
  *   - key: string, eg "com.example.myextension"
  *   - url: string eg "http://repo.com/myextension-1.0.zip"
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result
  */
 function civicrm_api3_extension_download($params) {
   if (!array_key_exists('url', $params)) {
     if (!CRM_Extension_System::singleton()->getBrowser()->isEnabled()) {
-      throw new API_Exception('Automatic downloading is disabled. Try adding parameter "url"');
+      throw new CRM_Core_Exception('Automatic downloading is disabled. Try adding parameter "url"');
     }
     if ($reqs = CRM_Extension_System::singleton()->getBrowser()->checkRequirements()) {
       $first = array_shift($reqs);
-      throw new API_Exception($first['message']);
+      throw new CRM_Core_Exception($first['message']);
     }
     if ($info = CRM_Extension_System::singleton()->getBrowser()->getExtension($params['key'])) {
       if ($info->downloadUrl) {
@@ -226,7 +226,7 @@ function civicrm_api3_extension_download($params) {
   }
 
   if (!array_key_exists('url', $params)) {
-    throw new API_Exception('Cannot resolve download url for extension. Try adding parameter "url"');
+    throw new CRM_Core_Exception('Cannot resolve download url for extension. Try adding parameter "url"');
   }
 
   if (!isset($info)) {
diff --git a/civicrm/api/v3/File.php b/civicrm/api/v3/File.php
index c222ee228a9abf6f8de30caef5d602f77aa1b2a2..68780b07ba37e0ef199ccd0fe04d62f0eb58c839 100644
--- a/civicrm/api/v3/File.php
+++ b/civicrm/api/v3/File.php
@@ -110,7 +110,7 @@ function civicrm_api3_file_update($params) {
  * @param array $params
  *   Array per getfields metadata.
  * @return array API Result Array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_file_delete($params) {
 
@@ -119,6 +119,6 @@ function civicrm_api3_file_delete($params) {
     return civicrm_api3_create_success();
   }
   else {
-    throw new API_Exception('Error while deleting a file.');
+    throw new CRM_Core_Exception('Error while deleting a file.');
   }
 }
diff --git a/civicrm/api/v3/FinancialTrxn.php b/civicrm/api/v3/FinancialTrxn.php
index 033e26339e4268f3c8fdd1c7dfdde954198f99cc..7da222ce1a8009e40dcdf30367067723fc0fb169 100644
--- a/civicrm/api/v3/FinancialTrxn.php
+++ b/civicrm/api/v3/FinancialTrxn.php
@@ -24,7 +24,7 @@
  */
 function civicrm_api3_financial_trxn_create($params) {
   if (empty($params['id']) && empty($params['contribution_id']) && empty($params['entity_id'])) {
-    throw new API_Exception("Mandatory key(s) missing from params array: both contribution_id and entity_id are missing");
+    throw new CRM_Core_Exception("Mandatory key(s) missing from params array: both contribution_id and entity_id are missing");
   }
 
   return _civicrm_api3_basic_create('CRM_Core_BAO_FinancialTrxn', $params, 'FinancialTrxn');
diff --git a/civicrm/api/v3/Generic.php b/civicrm/api/v3/Generic.php
index 429ee56acdbc4dd614a037e742cd5885c7f2b853..4310bd585bf890e7e6a3c406ca468b1bc463dc68 100644
--- a/civicrm/api/v3/Generic.php
+++ b/civicrm/api/v3/Generic.php
@@ -231,7 +231,7 @@ function civicrm_api3_generic_getfield($apiRequest) {
  * @param array $params
  * @param array $apiRequest
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Exception
  */
 function _civicrm_api3_generic_getfield_spec(&$params, $apiRequest) {
@@ -272,7 +272,7 @@ function _civicrm_api3_generic_getfield_spec(&$params, $apiRequest) {
  * @param array $apiRequest
  *   Api request as an array. Keys are.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return int
  *   count of results
  */
@@ -283,7 +283,7 @@ function civicrm_api3_generic_getcount($apiRequest) {
     return (int) $result['values'];
   }
   if (!isset($result['count'])) {
-    throw new API_Exception(ts('Unexpected result from getcount') . print_r($result, TRUE));
+    throw new CRM_Core_Exception(ts('Unexpected result from getcount') . print_r($result, TRUE));
   }
   return $result['count'];
 }
@@ -363,14 +363,14 @@ function _civicrm_api3_generic_getrefcount_spec(&$params, $apiRequest) {
  * @param array $apiRequest
  *   Api request as an array.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result (int 0 or 1)
  */
 function civicrm_api3_generic_getrefcount($apiRequest) {
   $entityToClassMap = CRM_Core_DAO_AllCoreTables::daoToClass();
   if (!isset($entityToClassMap[$apiRequest['entity']])) {
-    throw new API_Exception("The entity '{$apiRequest['entity']}' is unknown or unsupported by 'getrefcount'. Consider implementing this API.", 'getrefcount_unsupported');
+    throw new CRM_Core_Exception("The entity '{$apiRequest['entity']}' is unknown or unsupported by 'getrefcount'. Consider implementing this API.", 'getrefcount_unsupported');
   }
   $daoClass = $entityToClassMap[$apiRequest['entity']];
 
@@ -406,7 +406,7 @@ function civicrm_api3_generic_replace($apiRequest) {
  *
  * @return array
  *   Array of results
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_generic_getoptions($apiRequest) {
   // Resolve aliases.
diff --git a/civicrm/api/v3/Generic/Getactions.php b/civicrm/api/v3/Generic/Getactions.php
index 2d7f3d0126be4ebf4e64ad7d3e7c66d0b96d9a50..62b34288604ee33e1ccaddcc8bf67dc8df58fa3a 100644
--- a/civicrm/api/v3/Generic/Getactions.php
+++ b/civicrm/api/v3/Generic/Getactions.php
@@ -19,7 +19,7 @@
  * @param array $apiRequest
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_generic_getActions($apiRequest) {
   civicrm_api3_verify_mandatory($apiRequest, NULL, ['entity']);
diff --git a/civicrm/api/v3/Generic/Getlist.php b/civicrm/api/v3/Generic/Getlist.php
index 5a83a7192255cab1720cd5bbe8d27fb60c4ce9aa..9448d324f8908beadfe3d6afcad13561d1957fc8 100644
--- a/civicrm/api/v3/Generic/Getlist.php
+++ b/civicrm/api/v3/Generic/Getlist.php
@@ -19,7 +19,7 @@
  * @param array $apiRequest
  *
  * @return mixed
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_generic_getList($apiRequest) {
   $entity = CRM_Core_DAO_AllCoreTables::convertEntityNameToLower($apiRequest['entity']);
diff --git a/civicrm/api/v3/Generic/Setvalue.php b/civicrm/api/v3/Generic/Setvalue.php
index 8f6b10ed07ebd4e0aa47d33c4f64313c78827d6b..9445a2862a55add48b11dc9b751e26260c9c0af7 100644
--- a/civicrm/api/v3/Generic/Setvalue.php
+++ b/civicrm/api/v3/Generic/Setvalue.php
@@ -21,7 +21,7 @@
  *
  * @param array $apiRequest
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_generic_setValue($apiRequest) {
diff --git a/civicrm/api/v3/Group.php b/civicrm/api/v3/Group.php
index 6ebd4ded372c2cd47023c96be7885b6d50bb2889..940a546fc81335d87fa7e9cf862c01dec683d8a1 100644
--- a/civicrm/api/v3/Group.php
+++ b/civicrm/api/v3/Group.php
@@ -76,12 +76,12 @@ function civicrm_api3_group_get($params) {
  * @param array $params
  *   [id]
  * @return array API result array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_group_delete($params) {
   $group = civicrm_api3_group_get(['id' => $params['id']]);
   if ($group['count'] == 0) {
-    throw new API_Exception('Could not delete group ' . $params['id']);
+    throw new CRM_Core_Exception('Could not delete group ' . $params['id']);
   }
   CRM_Contact_BAO_Group::discard($params['id']);
   return civicrm_api3_create_success(TRUE);
diff --git a/civicrm/api/v3/GroupContact.php b/civicrm/api/v3/GroupContact.php
index e9b8e6de88bbb494b1d5a73a27022d9d74e5ab63..1233cbff6c8ce9763054218b5d7d6244d9a04f1c 100644
--- a/civicrm/api/v3/GroupContact.php
+++ b/civicrm/api/v3/GroupContact.php
@@ -125,8 +125,8 @@ function civicrm_api3_group_contact_create($params) {
  *
  * @param array $params
  * @return array
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  * @deprecated
  */
 function civicrm_api3_group_contact_delete($params) {
@@ -146,7 +146,7 @@ function civicrm_api3_group_contact_delete($params) {
   }
   $groupContact2 = civicrm_api3('GroupContact', 'get', $checkParams);
   if ($groupContact['count'] == 0 && $groupContact2['count'] == 0) {
-    throw new API_Exception('Cannot Delete GroupContact');
+    throw new CRM_Core_Exception('Cannot Delete GroupContact');
   }
   $params['status'] = CRM_Utils_Array::value('status', $params, empty($params['skip_undelete']) ? 'Removed' : 'Deleted');
   // "Deleted" isn't a real option so skip the api wrapper to avoid pseudoconstant validation
@@ -265,7 +265,7 @@ function _civicrm_api3_group_contact_common($params, $op = 'Added') {
  * @param array $params
  *
  * @return bool
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_group_contact_update_status($params) {
 
diff --git a/civicrm/api/v3/Job.php b/civicrm/api/v3/Job.php
index f4057444a4b5090faeda8544202146f570b7f26c..0303bc29ccc5abd0ff856dd918d537dd7cc5c304 100644
--- a/civicrm/api/v3/Job.php
+++ b/civicrm/api/v3/Job.php
@@ -65,12 +65,11 @@ function _civicrm_api3_job_clone_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_clone($params) {
   if (empty($params['id'])) {
-    throw new API_Exception("Mandatory key(s) missing from params array: id field is required");
+    throw new CRM_Core_Exception("Mandatory key(s) missing from params array: id field is required");
   }
   $id = $params['id'];
   unset($params['id']);
@@ -189,9 +188,7 @@ function _civicrm_api3_job_geocode_spec(&$params) {
  *  - makes testing a bit simpler since we can simulate past/future time
  *
  * @return array
- * @throws \API_Exception
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  */
 function civicrm_api3_job_send_reminder($params) {
   //note that $params['rowCount' can be overridden by one of the preferred syntaxes ($options['limit'] = x
@@ -201,7 +198,7 @@ function civicrm_api3_job_send_reminder($params) {
   $params['rowCount'] = 0;
   $lock = Civi::lockManager()->acquire('worker.core.ActionSchedule');
   if (!$lock->isAcquired()) {
-    throw new API_Exception('Could not acquire lock, another ActionSchedule process is running');
+    throw new CRM_Core_Exception('Could not acquire lock, another ActionSchedule process is running');
   }
 
   CRM_Core_BAO_ActionSchedule::processQueue($params['now'] ?? NULL, $params);
@@ -526,7 +523,7 @@ function civicrm_api3_job_process_respondent($params) {
  *
  * @return array
  *   API Result Array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_process_batch_merge($params) {
   $rule_group_id = $params['rule_group_id'] ?? NULL;
@@ -622,6 +619,7 @@ function civicrm_api3_job_run_payment_cron($params) {
  *
  * @param array $params
  *   Sends in various config parameters to decide what needs to be cleaned.
+ * @return array
  */
 function civicrm_api3_job_cleanup($params) {
   $session   = CRM_Utils_Array::value('session', $params, TRUE);
@@ -658,6 +656,8 @@ function civicrm_api3_job_cleanup($params) {
   if ($wordRplc) {
     CRM_Core_BAO_WordReplacement::rebuild();
   }
+
+  return civicrm_api3_create_success();
 }
 
 /**
@@ -666,12 +666,12 @@ function civicrm_api3_job_cleanup($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_disable_expired_relationships($params) {
   $result = CRM_Contact_BAO_Relationship::disableExpiredRelationships();
   if (!$result) {
-    throw new API_Exception('Failed to disable all expired relationships.');
+    throw new CRM_Core_Exception('Failed to disable all expired relationships.');
   }
   return civicrm_api3_create_success(1, $params, 'Job', 'disable_expired_relationships');
 }
@@ -687,12 +687,12 @@ function civicrm_api3_job_disable_expired_relationships($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_group_rebuild($params) {
   $lock = Civi::lockManager()->acquire('worker.core.GroupRebuild');
   if (!$lock->isAcquired()) {
-    throw new API_Exception('Could not acquire lock, another GroupRebuild process is running');
+    throw new CRM_Core_Exception('Could not acquire lock, another GroupRebuild process is running');
   }
 
   $limit = $params['limit'] ?? 0;
@@ -716,7 +716,7 @@ function civicrm_api3_job_group_rebuild($params) {
  * @param array $params
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_group_cache_flush(array $params): array {
   CRM_Contact_BAO_GroupContactCache::deterministicCacheFlush();
@@ -734,7 +734,7 @@ function civicrm_api3_job_group_cache_flush(array $params): array {
  *
  * @return array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_job_acl_cache_flush(array $params): array {
   CRM_ACL_BAO_Cache::resetCache();
diff --git a/civicrm/api/v3/LineItem.php b/civicrm/api/v3/LineItem.php
index b255dc1d06a188a45a5ead175d5b98af0001bf43..23dc2fd373188b4232f77be743ecc97ae1f8dabc 100644
--- a/civicrm/api/v3/LineItem.php
+++ b/civicrm/api/v3/LineItem.php
@@ -27,7 +27,7 @@
  * @return array
  *   api result array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_line_item_create($params) {
@@ -73,8 +73,8 @@ function civicrm_api3_line_item_get($params) {
  *   Array containing id of the group to be deleted.
  *
  * @return array API result array
- * @throws API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_line_item_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/LocBlock.php b/civicrm/api/v3/LocBlock.php
index f49b1be99701a12c791df868ca5b746b82924a32..b8c1a2d6c62c1d2130b75cec7cea13b25171281d 100644
--- a/civicrm/api/v3/LocBlock.php
+++ b/civicrm/api/v3/LocBlock.php
@@ -24,8 +24,7 @@
  * @return array
  *   API result array.
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_loc_block_create($params) {
   $entities = [];
@@ -71,7 +70,7 @@ function civicrm_api3_loc_block_create($params) {
     _civicrm_api3_object_to_array($dao, $values[$dao->id]);
     return civicrm_api3_create_success($values, $params, 'LocBlock', 'create', $dao);
   }
-  throw new API_Exception('Unable to create LocBlock. Please check your params.');
+  throw new CRM_Core_Exception('Unable to create LocBlock. Please check your params.');
 }
 
 /**
diff --git a/civicrm/api/v3/Logging.php b/civicrm/api/v3/Logging.php
index 7abc337574251b49d96568c1907506fc6136ca46..1401abbb1710ebfdf4af12ba8457911197002836 100644
--- a/civicrm/api/v3/Logging.php
+++ b/civicrm/api/v3/Logging.php
@@ -22,7 +22,7 @@
  *
  * @return array
  *   API Success Array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_logging_revert($params) {
@@ -39,7 +39,7 @@ function civicrm_api3_logging_revert($params) {
  *
  * @param array $params
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function _civicrm_api3_logging_revert_spec(&$params) {
@@ -73,7 +73,7 @@ function _civicrm_api3_logging_revert_spec(&$params) {
  *
  * @return array
  *   API Success Array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_logging_get($params) {
@@ -89,7 +89,7 @@ function civicrm_api3_logging_get($params) {
  *
  * @param array $params
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function _civicrm_api3_logging_get_spec(&$params) {
diff --git a/civicrm/api/v3/Mailing.php b/civicrm/api/v3/Mailing.php
index 9aaaf67df80ec0175762f5cf59d5b97b105da5e1..90f23c928f8bf706a0ea0bbe06621359161ecc99 100644
--- a/civicrm/api/v3/Mailing.php
+++ b/civicrm/api/v3/Mailing.php
@@ -23,7 +23,7 @@
  *
  * @return array
  *   API Success Array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
 function civicrm_api3_mailing_create($params) {
@@ -34,7 +34,7 @@ function civicrm_api3_mailing_create($params) {
     unset($safeParams['modified_date']);
   }
   if (!$timestampCheck) {
-    throw new API_Exception("Mailing has not been saved, Content maybe out of date, please refresh the page and try again");
+    throw new CRM_Core_Exception("Mailing has not been saved, Content maybe out of date, please refresh the page and try again");
   }
   // If we're going to autosend, then check validity before saving.
   if (empty($params['is_completed']) && !empty($params['scheduled_date'])
@@ -48,7 +48,7 @@ function civicrm_api3_mailing_create($params) {
     $errors = call_user_func($validationFunction, $params);
     if (!empty($errors)) {
       $fields = implode(',', array_keys($errors));
-      throw new CiviCRM_API3_Exception("Mailing cannot be sent. There are missing or invalid fields ($fields).", 'cannot-send', $errors);
+      throw new CRM_Core_Exception("Mailing cannot be sent. There are missing or invalid fields ($fields).", 'cannot-send', $errors);
     }
   }
 
@@ -66,14 +66,14 @@ function civicrm_api3_mailing_create($params) {
  *   Should contain an array of entities to retrieve tokens for.
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_gettokens($params) {
   $tokens = [];
   foreach ((array) $params['entity'] as $ent) {
     $func = lcfirst($ent) . 'Tokens';
     if (!method_exists('CRM_Core_SelectValues', $func)) {
-      throw new API_Exception('Unknown token entity: ' . $ent);
+      throw new CRM_Core_Exception('Unknown token entity: ' . $ent);
     }
     $tokens = array_merge(CRM_Core_SelectValues::$func(), $tokens);
   }
@@ -161,7 +161,7 @@ function _civicrm_api3_mailing_clone_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_clone($params) {
   $BLACKLIST = [
@@ -270,16 +270,16 @@ function _civicrm_api3_mailing_submit_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_mailing_submit($params) {
   civicrm_api3_verify_mandatory($params, 'CRM_Mailing_DAO_Mailing', ['id']);
 
   if (!isset($params['scheduled_date']) && !isset($updateParams['approval_date'])) {
-    throw new API_Exception("Missing parameter scheduled_date and/or approval_date");
+    throw new CRM_Core_Exception("Missing parameter scheduled_date and/or approval_date");
   }
   if (!is_numeric(CRM_Core_Session::getLoggedInContactID())) {
-    throw new API_Exception("Failed to determine current user");
+    throw new CRM_Core_Exception("Failed to determine current user");
   }
 
   $updateParams = [];
@@ -312,7 +312,7 @@ function civicrm_api3_mailing_submit($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_mailing_event_bounce($params) {
@@ -325,7 +325,7 @@ function civicrm_api3_mailing_event_bounce($params) {
     return civicrm_api3_create_success($params);
   }
   else {
-    throw new API_Exception(ts('Queue event could not be found'), 'no_queue_event');
+    throw new CRM_Core_Exception(ts('Queue event could not be found'), 'no_queue_event');
   }
 }
 
@@ -520,7 +520,7 @@ function civicrm_api3_mailing_event_open($params) {
  *   Array per getfields metadata.
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_preview($params) {
   $fromEmail = NULL;
@@ -593,12 +593,11 @@ function _civicrm_api3_mailing_send_test_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_send_test($params) {
   if (!array_key_exists('test_group', $params) && !array_key_exists('test_email', $params)) {
-    throw new API_Exception("Mandatory key(s) missing from params array: test_group and/or test_email field are required");
+    throw new CRM_Core_Exception("Mandatory key(s) missing from params array: test_group and/or test_email field are required");
   }
   civicrm_api3_verify_mandatory($params,
     'CRM_Mailing_DAO_MailingJob',
@@ -709,7 +708,7 @@ function _civicrm_api3_mailing_stats_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_stats($params) {
   civicrm_api3_verify_mandatory($params,
diff --git a/civicrm/api/v3/MailingAB.php b/civicrm/api/v3/MailingAB.php
index 1c70fab2f8bc7b640b36c44c5d1f1facc21a8d41..07d2bdde5154e41994885a2fa5fda3f3a1cf7e8e 100644
--- a/civicrm/api/v3/MailingAB.php
+++ b/civicrm/api/v3/MailingAB.php
@@ -96,22 +96,22 @@ function _civicrm_api3_mailing_a_b_submit_spec(&$spec) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_mailing_a_b_submit($params) {
   civicrm_api3_verify_mandatory($params, 'CRM_Mailing_DAO_MailingAB', ['id', 'status']);
 
   if (!isset($params['scheduled_date']) && !isset($updateParams['approval_date'])) {
-    throw new API_Exception("Missing parameter scheduled_date and/or approval_date");
+    throw new CRM_Core_Exception("Missing parameter scheduled_date and/or approval_date");
   }
 
   $dao = new CRM_Mailing_DAO_MailingAB();
   $dao->id = $params['id'];
   if (!$dao->find(TRUE)) {
-    throw new API_Exception("Failed to locate A/B test by ID");
+    throw new CRM_Core_Exception("Failed to locate A/B test by ID");
   }
   if (empty($dao->mailing_id_a) || empty($dao->mailing_id_b) || empty($dao->mailing_id_c)) {
-    throw new API_Exception("Missing mailing IDs for A/B test");
+    throw new CRM_Core_Exception("Missing mailing IDs for A/B test");
   }
 
   $submitParams = CRM_Utils_Array::subset($params, [
@@ -124,7 +124,7 @@ function civicrm_api3_mailing_a_b_submit($params) {
   switch ($params['status']) {
     case 'Testing':
       if (!empty($dao->status) && $dao->status != 'Draft') {
-        throw new API_Exception("Cannot transition to state 'Testing'");
+        throw new CRM_Core_Exception("Cannot transition to state 'Testing'");
       }
       civicrm_api3('Mailing', 'submit', $submitParams + [
         'id' => $dao->mailing_id_a,
@@ -139,7 +139,7 @@ function civicrm_api3_mailing_a_b_submit($params) {
 
     case 'Final':
       if ($dao->status != 'Testing') {
-        throw new API_Exception("Cannot transition to state 'Final'");
+        throw new CRM_Core_Exception("Cannot transition to state 'Final'");
       }
       if (!empty($params['winner_id'])) {
         _civicrm_api3_mailing_a_b_fill_winner($params['winner_id'], $dao->mailing_id_c);
@@ -151,7 +151,7 @@ function civicrm_api3_mailing_a_b_submit($params) {
       break;
 
     default:
-      throw new API_Exception("Unrecognized submission status");
+      throw new CRM_Core_Exception("Unrecognized submission status");
   }
 
   return civicrm_api3('MailingAB', 'create', [
@@ -168,7 +168,7 @@ function civicrm_api3_mailing_a_b_submit($params) {
  *   The experimental mailing chosen as the "winner".
  * @param int $final_id
  *   The final mailing which should imitate the "winner".
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_mailing_a_b_fill_winner($winner_id, $final_id) {
   $copyFields = [
@@ -206,7 +206,7 @@ function _civicrm_api3_mailing_a_b_fill_winner($winner_id, $final_id) {
     ->execute()
     ->fetchAll();
   if (count($f) !== 1) {
-    throw new API_Exception('Invalid winner_id');
+    throw new CRM_Core_Exception('Invalid winner_id');
   }
   foreach ($f as $winner) {
     civicrm_api3('Mailing', 'create', $winner + [
@@ -250,7 +250,7 @@ function _civicrm_api3_mailing_a_b_graph_stats_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_mailing_a_b_graph_stats($params) {
   civicrm_api3_verify_mandatory($params,
@@ -305,7 +305,7 @@ function civicrm_api3_mailing_a_b_graph_stats($params) {
 
       case 'total clicks on a particular link':
         if (empty($params['target_url'])) {
-          throw new API_Exception("Provide url to get stats result for total clicks on a particular link");
+          throw new CRM_Core_Exception("Provide url to get stats result for total clicks on a particular link");
         }
         // FIXME: doesn't make sense to get url_id mailing_id_(a|b) while getting start date in mailing_id_a
         $url_id = CRM_Mailing_BAO_TrackableURL::getTrackerURLId($mailingAB[$column], $params['target_url']);
diff --git a/civicrm/api/v3/MailingComponent.php b/civicrm/api/v3/MailingComponent.php
index 8f90adecbb3cae9555df064b5e569e30c4ffa6c6..e014d743b66dd05a394f2eddb23a9aca8785710e 100644
--- a/civicrm/api/v3/MailingComponent.php
+++ b/civicrm/api/v3/MailingComponent.php
@@ -20,7 +20,7 @@
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array.
  */
@@ -69,7 +69,7 @@ function _civicrm_api3_mailing_component_get_spec(&$params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array.
  */
diff --git a/civicrm/api/v3/MailingContact.php b/civicrm/api/v3/MailingContact.php
index 2ef5194da77674e0f6d8aff6f79fce69ba2b503c..5074124d8036b68c56faf33b736546e7ff220b90 100644
--- a/civicrm/api/v3/MailingContact.php
+++ b/civicrm/api/v3/MailingContact.php
@@ -44,7 +44,7 @@ function _civicrm_api3_mailing_contact_getresults($params, $count) {
   $options  = _civicrm_api3_get_options_from_params($params, TRUE, 'contribution', 'get');
   $fnName = '_civicrm_api3_mailing_contact_get_' . strtolower($params['type']);
   if (!function_exists($fnName)) {
-    throw new API_Exception('Invalid mailing type: ' . $params['type']);
+    throw new CRM_Core_Exception('Invalid mailing type: ' . $params['type']);
   }
   return $fnName(
       $params['contact_id'],
diff --git a/civicrm/api/v3/MailingEventQueue.php b/civicrm/api/v3/MailingEventQueue.php
index 9625809fdb6d0b2bdbd28ffa499aa467f41af417..8e046d2823cd4ed261e9aac43378f02e544e6921 100644
--- a/civicrm/api/v3/MailingEventQueue.php
+++ b/civicrm/api/v3/MailingEventQueue.php
@@ -27,7 +27,7 @@
  */
 function civicrm_api3_mailing_event_queue_create($params) {
   if (!array_key_exists('id', $params) && !array_key_exists('email_id', $params) && !array_key_exists('phone_id', $params)) {
-    throw new API_Exception("Mandatory key missing from params array: id, email_id, or phone_id field is required");
+    throw new CRM_Core_Exception("Mandatory key missing from params array: id, email_id, or phone_id field is required");
   }
   civicrm_api3_verify_mandatory($params,
     'CRM_Mailing_DAO_MailingJob',
@@ -54,7 +54,7 @@ function civicrm_api3_mailing_event_queue_get($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_event_queue_delete($params) {
   return _civicrm_api3_basic_delete('CRM_Mailing_Event_BAO_Queue', $params);
diff --git a/civicrm/api/v3/MailingEventSubscribe.php b/civicrm/api/v3/MailingEventSubscribe.php
index 8e64faa365335488c923ba85c60046679bad88ce..c51650d36d765247cb4d86b91b3c3994b71febeb 100644
--- a/civicrm/api/v3/MailingEventSubscribe.php
+++ b/civicrm/api/v3/MailingEventSubscribe.php
@@ -22,7 +22,7 @@
  * @param array $params
  *   Array per getfields metadata.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   api result array
  */
@@ -35,11 +35,11 @@ function civicrm_api3_mailing_event_subscribe_create($params) {
   $group->is_active = 1;
   $group->id        = (int) $group_id;
   if (!$group->find(TRUE)) {
-    throw new API_Exception('Invalid Group id');
+    throw new CRM_Core_Exception('Invalid Group id');
   }
 
   if (substr($group->visibility, 0, 6) != 'Public') {
-    throw new API_Exception('Group is not Public. Contact cannot be subscribed to this Group.');
+    throw new CRM_Core_Exception('Group is not Public. Contact cannot be subscribed to this Group.');
   }
 
   $subscribe = CRM_Mailing_Event_BAO_Subscribe::subscribe($group_id, $email, $contact_id);
diff --git a/civicrm/api/v3/MailingGroup.php b/civicrm/api/v3/MailingGroup.php
index 062d0085620940bad12ff9f32594a0bf03172577..8cfab0f83083284f9a17defd2b602cbcb6b6975c 100644
--- a/civicrm/api/v3/MailingGroup.php
+++ b/civicrm/api/v3/MailingGroup.php
@@ -92,7 +92,7 @@ function civicrm_api3_mailing_group_event_subscribe($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_group_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -115,7 +115,7 @@ function civicrm_api3_mailing_group_get($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_group_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/MailingJob.php b/civicrm/api/v3/MailingJob.php
index 4631d9bc5b319d035e5c67ec816a7a5add8cf789..7634bf170d345c086b26f24c40cb517ecd656bfe 100644
--- a/civicrm/api/v3/MailingJob.php
+++ b/civicrm/api/v3/MailingJob.php
@@ -22,7 +22,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_job_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'MailingJob');
@@ -60,7 +60,7 @@ function civicrm_api3_mailing_job_get($params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_mailing_job_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'MailingJob');
diff --git a/civicrm/api/v3/Membership.php b/civicrm/api/v3/Membership.php
index 7804ee3818ad8688757693e63005221785b574c0..7cb21fee7da0aeca51d032faba6f4e3dbe856540 100644
--- a/civicrm/api/v3/Membership.php
+++ b/civicrm/api/v3/Membership.php
@@ -39,7 +39,7 @@ function _civicrm_api3_membership_delete_spec(&$params) {
  * @param array $params
  *   Array array holding id - Id of the contact membership to be deleted.
  * @return array API result array.
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_membership_delete($params) {
   if (isset($params['preserve_contribution'])) {
@@ -47,7 +47,7 @@ function civicrm_api3_membership_delete($params) {
       return civicrm_api3_create_success(TRUE, $params);
     }
     else {
-      throw new API_Exception(ts('Could not delete membership'));
+      throw new CRM_Core_Exception(ts('Could not delete membership'));
     }
   }
   else {
@@ -68,7 +68,6 @@ function civicrm_api3_membership_delete($params) {
  *   API result array.
  *
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  */
 function civicrm_api3_membership_create($params) {
   // check params for membership id during update
diff --git a/civicrm/api/v3/MembershipStatus.php b/civicrm/api/v3/MembershipStatus.php
index 906d9f364340e31b489400d9a270cdca6140abfc..c4f6fa5f2ed641a5b115f250876961c7d8ff2eed 100644
--- a/civicrm/api/v3/MembershipStatus.php
+++ b/civicrm/api/v3/MembershipStatus.php
@@ -106,14 +106,14 @@ function civicrm_api3_membership_status_update($params) {
  *
  * @param array $params
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws CRM_Core_Exception
  */
 function civicrm_api3_membership_status_delete($params) {
 
   $memberStatusDelete = CRM_Member_BAO_MembershipStatus::del($params['id'], TRUE);
   if ($memberStatusDelete) {
-    throw new API_Exception($memberStatusDelete['error_message']);
+    throw new CRM_Core_Exception($memberStatusDelete['error_message']);
   }
   return civicrm_api3_create_success();
 }
@@ -126,14 +126,14 @@ function civicrm_api3_membership_status_delete($params) {
  *
  * @param array $membershipParams
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array
  *   Array of status id and status name
  */
 function civicrm_api3_membership_status_calc($membershipParams) {
   if (!($membershipID = CRM_Utils_Array::value('membership_id', $membershipParams))) {
-    throw new API_Exception('membershipParams do not contain membership_id');
+    throw new CRM_Core_Exception('membershipParams do not contain membership_id');
   }
 
   if (empty($membershipParams['id'])) {
@@ -157,7 +157,7 @@ SELECT start_date, end_date, join_date, membership_type_id
     }
   }
   else {
-    throw new API_Exception('did not find a membership record');
+    throw new CRM_Core_Exception('did not find a membership record');
   }
   return $result;
 }
diff --git a/civicrm/api/v3/MessageTemplate.php b/civicrm/api/v3/MessageTemplate.php
index 40a7a559086d0946d3e620e0ea990895425b0e6c..89b285e75d388aa060768884e4d762cc1ea6b97f 100644
--- a/civicrm/api/v3/MessageTemplate.php
+++ b/civicrm/api/v3/MessageTemplate.php
@@ -21,7 +21,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_message_template_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'MessageTemplate');
@@ -84,7 +84,7 @@ function civicrm_api3_message_template_get($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws \CRM_Core_Exception
  */
 function civicrm_api3_message_template_send($params) {
@@ -110,7 +110,7 @@ function civicrm_api3_message_template_send($params) {
   if (empty($params['messageTemplateID'])) {
     if (empty($params['workflow'])) {
       // Can't use civicrm_api3_verify_mandatory for this because it would give the wrong field names
-      throw new API_Exception(
+      throw new CRM_Core_Exception(
         'Mandatory key(s) missing from params array: requires id or workflow',
         'mandatory_missing',
         ['fields' => ['id', 'workflow']]
diff --git a/civicrm/api/v3/OptionValue.php b/civicrm/api/v3/OptionValue.php
index d29f4977f3b05933292f486ff400eff003d970a6..34a2b00507fb6e45f9c2feea6def655acb9e9ae3 100644
--- a/civicrm/api/v3/OptionValue.php
+++ b/civicrm/api/v3/OptionValue.php
@@ -46,7 +46,7 @@ function _civicrm_api3_option_value_get_spec(&$params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array
  */
@@ -86,7 +86,7 @@ function _civicrm_api3_option_value_create_spec(&$params) {
  *
  * @param array $params
  * @return array API result array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_option_value_delete($params) {
   // We will get the option group id before deleting so we can flush pseudoconstants.
@@ -97,6 +97,6 @@ function civicrm_api3_option_value_delete($params) {
     return civicrm_api3_create_success();
   }
   else {
-    throw new API_Exception('Could not delete OptionValue ' . $params['id']);
+    throw new CRM_Core_Exception('Could not delete OptionValue ' . $params['id']);
   }
 }
diff --git a/civicrm/api/v3/Order.php b/civicrm/api/v3/Order.php
index 3b495b93a2376318e256a9bb2f4e5ccfe3b8e3b2..5669b163e98facf8e2cc41ad0f4819f5e79436ec 100644
--- a/civicrm/api/v3/Order.php
+++ b/civicrm/api/v3/Order.php
@@ -26,7 +26,7 @@ use Civi\Api4\Membership;
  *
  * @return array
  *   Array of Order, if error an array with an error id and error message
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_order_get(array $params): array {
   $contributions = [];
@@ -70,8 +70,8 @@ function _civicrm_api3_order_get_spec(array &$params) {
  * @return array
  *   Api result array
  *
- * @throws \CiviCRM_API3_Exception
- * @throws API_Exception
+ * @throws \CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_order_create(array $params): array {
   civicrm_api3_verify_one_mandatory($params, NULL, ['line_items', 'total_amount']);
@@ -129,7 +129,7 @@ function civicrm_api3_order_create(array $params): array {
     if ($entityParams['entity'] === 'participant') {
       if (isset($entityParams['participant_status_id'])
         && (!CRM_Event_BAO_ParticipantStatusType::getIsValidStatusForClass($entityParams['participant_status_id'], 'Pending'))) {
-        throw new CiviCRM_API3_Exception('Creating a participant via the Order API with a non "pending" status is not supported');
+        throw new CRM_Core_Exception('Creating a participant via the Order API with a non "pending" status is not supported');
       }
       $entityParams['participant_status_id'] = $entityParams['participant_status_id'] ?? 'Pending from incomplete transaction';
       $entityParams['status_id'] = $entityParams['participant_status_id'];
@@ -190,8 +190,8 @@ function civicrm_api3_order_create(array $params): array {
  *   Input parameters.
  *
  * @return array
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_order_delete(array $params): array {
   $contribution = civicrm_api3('Contribution', 'get', [
@@ -202,7 +202,7 @@ function civicrm_api3_order_delete(array $params): array {
     $result = civicrm_api3('Contribution', 'delete', $params);
   }
   else {
-    throw new API_Exception('Only test orders can be deleted.');
+    throw new CRM_Core_Exception('Only test orders can be deleted.');
   }
   return civicrm_api3_create_success($result['values'], $params, 'Order', 'delete');
 }
@@ -214,7 +214,7 @@ function civicrm_api3_order_delete(array $params): array {
  *   Input parameters.
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_order_cancel(array $params) {
   $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
@@ -304,7 +304,7 @@ function _civicrm_api3_order_delete_spec(array &$params) {
  *
  * @param array $membershipParams
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _order_create_wrangle_membership_params(array &$membershipParams) {
   $fields = Membership::getFields(FALSE)->execute()->indexBy('name');
diff --git a/civicrm/api/v3/Participant.php b/civicrm/api/v3/Participant.php
index d9932b2bb86091643f4b8f1894b26bec162b73a4..e37625d8a9d478f3a8f6b45ef65ac8a03990314f 100644
--- a/civicrm/api/v3/Participant.php
+++ b/civicrm/api/v3/Participant.php
@@ -24,7 +24,6 @@
  * @return array
  *   API result array
  *
- * @throws \CiviCRM_API3_Exception
  * @throws \CRM_Core_Exception
  */
 function civicrm_api3_participant_create($params) {
@@ -58,7 +57,7 @@ function civicrm_api3_participant_create($params) {
  * @param array $params
  * @param CRM_Event_BAO_Participant $participant
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_participant_createlineitem(&$params, $participant) {
   // it is possible that a fee level contains information about multiple
diff --git a/civicrm/api/v3/ParticipantStatusType.php b/civicrm/api/v3/ParticipantStatusType.php
index 49899c796da543bde269f71894519dd3ce648ed8..5a9fff8e61eba0cb264cb4339fffb04ec149eee2 100644
--- a/civicrm/api/v3/ParticipantStatusType.php
+++ b/civicrm/api/v3/ParticipantStatusType.php
@@ -53,12 +53,12 @@ function civicrm_api3_participant_status_type_get($params) {
  * @param array $params
  *   [id]
  * @return array api result array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_participant_status_type_delete($params) {
   if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($params['id'])) {
     return civicrm_api3_create_success(TRUE);
   }
 
-  throw new API_Exception('Could not delete participant status type id ' . $params['id']);
+  throw new CRM_Core_Exception('Could not delete participant status type id ' . $params['id']);
 }
diff --git a/civicrm/api/v3/Payment.php b/civicrm/api/v3/Payment.php
index 437d0e5a4e5769dbe0aefdc39197790e4ea9531e..94cb94b6440e88b99630ec93b60fc12a47483eb6 100644
--- a/civicrm/api/v3/Payment.php
+++ b/civicrm/api/v3/Payment.php
@@ -24,7 +24,7 @@
  * @return array
  *   Array of financial transactions which are payments, if error an array with an error id and error message
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_payment_get($params) {
   $params['is_payment'] = TRUE;
@@ -72,7 +72,7 @@ function civicrm_api3_payment_get($params) {
  * @return array
  *   Api result array
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_payment_delete($params) {
   return civicrm_api3('FinancialTrxn', 'delete', $params);
@@ -87,8 +87,8 @@ function civicrm_api3_payment_delete($params) {
  * @return array
  *   Api result array
  *
- * @throws \CiviCRM_API3_Exception
- * @throws API_Exception
+ * @throws \CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_payment_cancel($params) {
   $eftParams = [
@@ -125,7 +125,6 @@ function civicrm_api3_payment_cancel($params) {
  *   Api result array
  *
  * @throws \CRM_Core_Exception
- * @throws \CiviCRM_API3_Exception
  */
 function civicrm_api3_payment_create($params) {
   if (empty($params['skipCleanMoney'])) {
diff --git a/civicrm/api/v3/PaymentProcessor.php b/civicrm/api/v3/PaymentProcessor.php
index ba98d4fa713fe34cd26914c3aa3d9c2ad52039e4..0570cc6e37106ff06bacefd55ff86f342d148275 100644
--- a/civicrm/api/v3/PaymentProcessor.php
+++ b/civicrm/api/v3/PaymentProcessor.php
@@ -107,8 +107,7 @@ function _civicrm_api3_payment_processor_getlist_defaults(&$request) {
  * @return array
  *   API result array.
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_payment_processor_pay($params) {
   $processor = Civi\Payment\System::singleton()->getById($params['payment_processor_id']);
@@ -123,7 +122,7 @@ function civicrm_api3_payment_processor_pay($params) {
       $code = 'EXTERNAL_FAILURE';
     }
     $message = $e->getMessage() ?? 'Payment Failed';
-    throw new API_Exception($message, $code, $errorData, $e);
+    throw new CRM_Core_Exception($message, $code, $errorData, $e);
   }
   return civicrm_api3_create_success(array($result), $params);
 }
@@ -172,8 +171,7 @@ function _civicrm_api3_payment_processor_pay_spec(&$params) {
  * @return array
  *   API result array.
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Civi\Payment\Exception\PaymentProcessorException
  */
 function civicrm_api3_payment_processor_refund($params) {
@@ -181,7 +179,7 @@ function civicrm_api3_payment_processor_refund($params) {
   $processor = Civi\Payment\System::singleton()->getById($params['payment_processor_id']);
   $processor->setPaymentProcessor(civicrm_api3('PaymentProcessor', 'getsingle', ['id' => $params['payment_processor_id']]));
   if (!$processor->supportsRefund()) {
-    throw new API_Exception('Payment Processor does not support refund');
+    throw new CRM_Core_Exception('Payment Processor does not support refund');
   }
   $result = $processor->doRefund($params);
   return civicrm_api3_create_success([$result], $params);
diff --git a/civicrm/api/v3/Pledge.php b/civicrm/api/v3/Pledge.php
index 571924b1930e251edf8285a4cc9cc4079da2d2fd..98d3a24c9c80dd735c36545fa30d7c3af3704ef0 100644
--- a/civicrm/api/v3/Pledge.php
+++ b/civicrm/api/v3/Pledge.php
@@ -22,7 +22,7 @@
  *
  * @return array
  *   Array containing 'is_error' to denote success or failure and details of the created pledge
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_pledge_create($params) {
   _civicrm_api3_pledge_format_params($params, TRUE);
diff --git a/civicrm/api/v3/Premium.php b/civicrm/api/v3/Premium.php
index ae1a1708307d68f9f74fa5ea0855c0832d9c534a..41f1ae151988adfa63ab5370d4bed33a0a7c82e9 100644
--- a/civicrm/api/v3/Premium.php
+++ b/civicrm/api/v3/Premium.php
@@ -24,7 +24,7 @@
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_premium_create($params) {
@@ -48,7 +48,7 @@ function civicrm_api3_premium_get($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   Array of deleted values.
  */
diff --git a/civicrm/api/v3/Product.php b/civicrm/api/v3/Product.php
index 5cc7413e1e3500a9ae4a674f664bab31a1de81f2..b75149e125f29282e0f267111a9401ea5764fb72 100644
--- a/civicrm/api/v3/Product.php
+++ b/civicrm/api/v3/Product.php
@@ -23,7 +23,7 @@
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  */
 function civicrm_api3_product_create($params) {
@@ -60,7 +60,7 @@ function civicrm_api3_product_get($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   Array of deleted values.
  */
diff --git a/civicrm/api/v3/Profile.php b/civicrm/api/v3/Profile.php
index 6afa73b30aa12d59e5ac7fbeba0d7c979cbe94f8..78306eb6ecfac3d965aad660dcdfe364d7863880 100644
--- a/civicrm/api/v3/Profile.php
+++ b/civicrm/api/v3/Profile.php
@@ -33,12 +33,12 @@
  *
  * @return array
  * @throws \CRM_Core_Exception
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_profile_get($params) {
   $nonStandardLegacyBehaviour = is_numeric($params['profile_id']);
   if (!empty($params['check_permissions']) && !empty($params['contact_id']) && !1 === civicrm_api3('contact', 'getcount', ['contact_id' => $params['contact_id'], 'check_permissions' => 1])) {
-    throw new API_Exception('permission denied');
+    throw new CRM_Core_Exception('permission denied');
   }
   $profiles = (array) $params['profile_id'];
   $values = [];
@@ -51,7 +51,7 @@ function civicrm_api3_profile_get($params) {
       continue;
     }
     if (!CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_active')) {
-      throw new API_Exception('Invalid value for profile_id : ' . $profileID);
+      throw new CRM_Core_Exception('Invalid value for profile_id : ' . $profileID);
     }
 
     $isContactActivityProfile = CRM_Core_BAO_UFField::checkContactActivityProfileType($profileID);
@@ -76,7 +76,7 @@ function civicrm_api3_profile_get($params) {
       $params['profile_id']
       );
       if (!empty($errors)) {
-        throw new API_Exception(array_pop($errors));
+        throw new CRM_Core_Exception(array_pop($errors));
       }
 
       $contactFields = $activityFields = [];
@@ -140,7 +140,7 @@ function _civicrm_api3_profile_get_spec(&$params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   API result array
  */
@@ -148,13 +148,13 @@ function civicrm_api3_profile_submit($params) {
   $profileID = _civicrm_api3_profile_getProfileID($params['profile_id']);
   if (!CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_active')) {
     //@todo declare pseudoconstant & let api do this
-    throw new API_Exception('Invalid value for profile_id');
+    throw new CRM_Core_Exception('Invalid value for profile_id');
   }
 
   $isContactActivityProfile = CRM_Core_BAO_UFField::checkContactActivityProfileType($profileID);
 
   if (!empty($params['id']) && CRM_Core_BAO_UFField::checkProfileType($profileID) && !$isContactActivityProfile) {
-    throw new API_Exception('Update profiles including more than one entity not currently supported');
+    throw new CRM_Core_Exception('Update profiles including more than one entity not currently supported');
   }
 
   $contactParams = $activityParams = $missingParams = [];
@@ -169,7 +169,7 @@ function civicrm_api3_profile_submit($params) {
       $profileID
     );
     if (!empty($errors)) {
-      throw new API_Exception(array_pop($errors));
+      throw new CRM_Core_Exception(array_pop($errors));
     }
   }
 
@@ -339,7 +339,7 @@ function civicrm_api3_profile_set($params) {
  *   Array of property name/value.
  *   pairs to profile field values
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *
  * @todo add example
@@ -367,7 +367,7 @@ function civicrm_api3_profile_apply($params) {
   );
 
   if (empty($data)) {
-    throw new API_Exception('Unable to format profile parameters.');
+    throw new CRM_Core_Exception('Unable to format profile parameters.');
   }
 
   return civicrm_api3_create_success($data);
@@ -699,7 +699,7 @@ function _civicrm_api3_map_profile_fields_to_entity(&$field) {
  * @param int $profileID
  *
  * @return int|string
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_profile_getProfileID($profileID) {
   if (!empty($profileID) && strtolower($profileID) != 'billing' && !is_numeric($profileID)) {
diff --git a/civicrm/api/v3/Relationship.php b/civicrm/api/v3/Relationship.php
index 50ae6e61a573a746683abb895bda4d296ec13a1e..f1f7664beeb1f5ccfd8fd56f9ba34e4e778e32aa 100644
--- a/civicrm/api/v3/Relationship.php
+++ b/civicrm/api/v3/Relationship.php
@@ -21,7 +21,7 @@
  * @param array $params
  *   Input parameters.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array
  *   API Result Array
diff --git a/civicrm/api/v3/ReportTemplate.php b/civicrm/api/v3/ReportTemplate.php
index 60b1068b19837694d8d2d48057e05648f3bcab87..0deb7b998ff2ce0b827f64790bf6c6d550a9bb72 100644
--- a/civicrm/api/v3/ReportTemplate.php
+++ b/civicrm/api/v3/ReportTemplate.php
@@ -41,7 +41,7 @@ function civicrm_api3_report_template_get($params) {
  * @return array
  *   API result array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_report_template_create($params) {
   require_once 'api/v3/OptionValue.php';
@@ -82,7 +82,7 @@ function _civicrm_api3_report_template_create_spec(&$params) {
  * @return array
  *   API result array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_report_template_delete($params) {
   require_once 'api/v3/OptionValue.php';
@@ -98,8 +98,7 @@ function civicrm_api3_report_template_delete($params) {
  * @return array
  *   API result array
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_report_template_getrows($params) {
   civicrm_api3_verify_one_mandatory($params, NULL, ['report_id', 'instance_id']);
@@ -114,8 +113,8 @@ function civicrm_api3_report_template_getrows($params) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_report_template_getrows($params) {
   if (empty($params['report_id'])) {
@@ -177,8 +176,7 @@ function _civicrm_api3_report_template_getrows($params) {
  * @return array
  *   API result array
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_report_template_getstatistics($params) {
   list($rows, $reportInstance, $metadata) = _civicrm_api3_report_template_getrows($params);
diff --git a/civicrm/api/v3/SavedSearch.php b/civicrm/api/v3/SavedSearch.php
index ca01c6fc4e70e42fde23af046f3159a251eaf6b3..bae73cc5207aedc8db5239eba37d504e920504ca 100644
--- a/civicrm/api/v3/SavedSearch.php
+++ b/civicrm/api/v3/SavedSearch.php
@@ -42,7 +42,7 @@
  *   api result array
  *   {@getfields saved_search_create}
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  *
  * @example SavedSearch/Create.php Std create example.
  * @access public
@@ -72,8 +72,7 @@ function _civicrm_api3_saved_search_create_spec(&$fields) {
  *   api result array
  *   {@getfields saved_search_delete}
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  *
  * @example SavedSearch/Delete.php Std delete example.
  * @access public
diff --git a/civicrm/api/v3/Setting.php b/civicrm/api/v3/Setting.php
index 133d90b578c17ab95cf71f7aa6247fceff8ffa17..2420e6586599ae45f7bcccfd09fcd2e2f1e91605 100644
--- a/civicrm/api/v3/Setting.php
+++ b/civicrm/api/v3/Setting.php
@@ -90,7 +90,7 @@ function _civicrm_api3_setting_getfields_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Exception
  */
 function civicrm_api3_setting_getdefaults($params) {
@@ -129,14 +129,14 @@ function _civicrm_api3_setting_getdefaults_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_setting_getoptions($params) {
   $domainId = $params['domain_id'] ?? NULL;
   $specs = \Civi\Core\SettingsMetadata::getMetadata(['name' => $params['field']], $domainId, TRUE);
 
   if (!isset($specs[$params['field']]['options']) || !is_array($specs[$params['field']]['options'])) {
-    throw new API_Exception("The field '" . $params['field'] . "' has no associated option list.");
+    throw new CRM_Core_Exception("The field '" . $params['field'] . "' has no associated option list.");
   }
 
   return civicrm_api3_create_success($specs[$params['field']]['options'], $params, 'Setting', 'getoptions');
@@ -197,7 +197,7 @@ function _civicrm_api3_setting_revert_spec(&$params) {
  * @param array $params
  * @deprecated
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  * @throws \Exception
  */
 function civicrm_api3_setting_fill($params) {
@@ -258,8 +258,7 @@ function _civicrm_api3_setting_deprecation() {
  * @return array
  *   api result array
  *
- * @throws \API_Exception
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_setting_create($params) {
   $domains = _civicrm_api3_setting_getDomainArray($params);
@@ -391,7 +390,7 @@ function _civicrm_api3_setting_getvalue_spec(&$params) {
  * @param array $params
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_setting_getDomainArray(&$params) {
   if (empty($params['domain_id']) && isset($params['id'])) {
@@ -408,7 +407,7 @@ function _civicrm_api3_setting_getDomainArray(&$params) {
       $params['domain_id'] = array_keys($domainAPIResult['values']);
     }
     else {
-      throw new API_Exception('All domains not retrieved - problem with Domain Get api call ' . $domainAPIResult['error_message']);
+      throw new CRM_Core_Exception('All domains not retrieved - problem with Domain Get api call ' . $domainAPIResult['error_message']);
     }
   }
   if (is_array($params['domain_id'])) {
diff --git a/civicrm/api/v3/StateProvince.php b/civicrm/api/v3/StateProvince.php
index 582deed3008144aea62748a5507ca346b4a3dbc7..bbc4b4a1aed613c2e0762beb668220eaa47982b7 100644
--- a/civicrm/api/v3/StateProvince.php
+++ b/civicrm/api/v3/StateProvince.php
@@ -23,7 +23,7 @@
  *
  * @return array
  *   API result array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_state_province_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_DAO(__FUNCTION__), $params, 'StateProvince');
diff --git a/civicrm/api/v3/System.php b/civicrm/api/v3/System.php
index 0e0b3c679b361ec13a6f7c0fca593241e7cd9e79..9ce36d94cfa0f8c63d2b9b10058289aaae7fc025 100644
--- a/civicrm/api/v3/System.php
+++ b/civicrm/api/v3/System.php
@@ -125,7 +125,7 @@ function _civicrm_api3_system_check_spec(&$spec) {
  *   API result descriptor; return items are alert codes/messages
  * @see civicrm_api3_create_success
  * @see civicrm_api3_create_error
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function civicrm_api3_system_check($params) {
   // array(array('name'=> $, 'severity'=>$, ...))
@@ -334,7 +334,7 @@ function _civicrm_api3_system_get_redacted_mysql() {
  * Get redacted settings.
  *
  * @return array
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_system_get_redacted_settings() {
   static $whitelist = NULL;
@@ -394,7 +394,7 @@ function civicrm_api3_system_updatelogtables($params) {
  *
  * @return array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_system_utf8conversion($params) {
   $params['patterns'] = explode(',', $params['patterns']);
@@ -407,7 +407,7 @@ function civicrm_api3_system_utf8conversion($params) {
   ) {
     return civicrm_api3_create_success(1);
   }
-  throw new API_Exception('Conversion failed');
+  throw new CRM_Core_Exception('Conversion failed');
 }
 
 /**
@@ -536,6 +536,6 @@ function civicrm_api3_system_rebuildmultilingualschema() {
     return civicrm_api3_create_success(1);
   }
   else {
-    throw new API_Exception('Cannot call rebuild Multilingual schema on non Multilingual database');
+    throw new CRM_Core_Exception('Cannot call rebuild Multilingual schema on non Multilingual database');
   }
 }
diff --git a/civicrm/api/v3/UFField.php b/civicrm/api/v3/UFField.php
index 2c6d81ea2846253866a78736cfee821ee7749d9b..0ac6b070d291ba28fffcce2037c47003e04aad5d 100644
--- a/civicrm/api/v3/UFField.php
+++ b/civicrm/api/v3/UFField.php
@@ -21,7 +21,7 @@
  * @param array $params
  *   Array per getfields metadata.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array
  *   Newly created $ufFieldArray
@@ -65,7 +65,7 @@ function civicrm_api3_uf_field_get($params) {
  *
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return array
  */
@@ -74,7 +74,7 @@ function civicrm_api3_uf_field_delete($params) {
 
   $ufGroupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFField', $fieldId, 'uf_group_id');
   if (!$ufGroupId) {
-    throw new API_Exception('Invalid value for field_id.');
+    throw new CRM_Core_Exception('Invalid value for field_id.');
   }
 
   $result = CRM_Core_BAO_UFField::del($fieldId);
diff --git a/civicrm/api/v3/Website.php b/civicrm/api/v3/Website.php
index 8ed541af12f7cad806eee8d302f541b54b05bc1f..8cb4b98bd871aa0db57d4c6e4c184059b8409d38 100644
--- a/civicrm/api/v3/Website.php
+++ b/civicrm/api/v3/Website.php
@@ -46,7 +46,7 @@ function _civicrm_api3_website_create_spec(&$params) {
  *
  * @return array
  *   API result array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_website_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/WordReplacement.php b/civicrm/api/v3/WordReplacement.php
index 7569e4e22e3066dbcd90cb57c1846633da59f486..24be72dcc739d9c1272fc6f95b9138235614a233 100644
--- a/civicrm/api/v3/WordReplacement.php
+++ b/civicrm/api/v3/WordReplacement.php
@@ -24,7 +24,7 @@
  * @param array $params
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_word_replacement_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
diff --git a/civicrm/api/v3/examples/Activity/ContactRefCustomField.ex.php b/civicrm/api/v3/examples/Activity/ContactRefCustomField.ex.php
index 6ad066c634c6fea81f534ceb26a1a1f1e6bdd621..e8e90c1d922a3e6cea65193afc68aca0a328d0c7 100644
--- a/civicrm/api/v3/examples/Activity/ContactRefCustomField.ex.php
+++ b/civicrm/api/v3/examples/Activity/ContactRefCustomField.ex.php
@@ -29,7 +29,7 @@ function activity_create_example() {
   try {
     $result = civicrm_api3('Activity', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/ContactRefCustomFieldGet.ex.php b/civicrm/api/v3/examples/Activity/ContactRefCustomFieldGet.ex.php
index a2162e39c53b47d015f39deece5562d8322aa91e..6141ee6b2f728e48fa2b61f41ee0ffc07682030d 100644
--- a/civicrm/api/v3/examples/Activity/ContactRefCustomFieldGet.ex.php
+++ b/civicrm/api/v3/examples/Activity/ContactRefCustomFieldGet.ex.php
@@ -21,7 +21,7 @@ function activity_get_example() {
   try {
     $result = civicrm_api3('Activity', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/Create.ex.php b/civicrm/api/v3/examples/Activity/Create.ex.php
index 5a39798972a0f8e7dfb85e1409608a04e6cbc9d1..734f5fd106802bb3e8b7f2f947b3bf6ef8551343 100644
--- a/civicrm/api/v3/examples/Activity/Create.ex.php
+++ b/civicrm/api/v3/examples/Activity/Create.ex.php
@@ -27,7 +27,7 @@ function activity_create_example() {
   try {
     $result = civicrm_api3('Activity', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/DateTimeHigh.ex.php b/civicrm/api/v3/examples/Activity/DateTimeHigh.ex.php
index 894484412a5c9f3c6f0a7fc313eb8bb0ae8e35bd..c548c40eb798bf12f5d61f8d3af4c4dd26d30c07 100644
--- a/civicrm/api/v3/examples/Activity/DateTimeHigh.ex.php
+++ b/civicrm/api/v3/examples/Activity/DateTimeHigh.ex.php
@@ -23,7 +23,7 @@ function activity_get_example() {
   try {
     $result = civicrm_api3('Activity', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/DateTimeLow.ex.php b/civicrm/api/v3/examples/Activity/DateTimeLow.ex.php
index fefd5cf63ba3a0d867dc2a78ed34bf5d64222d39..a3edbf46d1d81c2abe2010ed56d2c2464e1a6c3b 100644
--- a/civicrm/api/v3/examples/Activity/DateTimeLow.ex.php
+++ b/civicrm/api/v3/examples/Activity/DateTimeLow.ex.php
@@ -22,7 +22,7 @@ function activity_get_example() {
   try {
     $result = civicrm_api3('Activity', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/Delete.ex.php b/civicrm/api/v3/examples/Activity/Delete.ex.php
index fd6ebc4ba8bba7cd244f17708563bd9178d6b918..012d906baa3a003750cf545956054f73b7d35aa8 100644
--- a/civicrm/api/v3/examples/Activity/Delete.ex.php
+++ b/civicrm/api/v3/examples/Activity/Delete.ex.php
@@ -18,7 +18,7 @@ function activity_delete_example() {
   try {
     $result = civicrm_api3('Activity', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/Get.ex.php b/civicrm/api/v3/examples/Activity/Get.ex.php
index e09bac324e5df727956618b5f103b01b479ee574..8317521e9f27dcb13c3c0f4b0ec1eca046dc09a7 100644
--- a/civicrm/api/v3/examples/Activity/Get.ex.php
+++ b/civicrm/api/v3/examples/Activity/Get.ex.php
@@ -20,7 +20,7 @@ function activity_get_example() {
   try {
     $result = civicrm_api3('Activity', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/GetFields.ex.php b/civicrm/api/v3/examples/Activity/GetFields.ex.php
index 465fa3e4f66432b160ac2be96106c485dea0a074..7800ac1d31d8baa9119181007ef60783f703399b 100644
--- a/civicrm/api/v3/examples/Activity/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Activity/GetFields.ex.php
@@ -18,7 +18,7 @@ function activity_getfields_example() {
   try {
     $result = civicrm_api3('Activity', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/GetTargetAndAssignee.ex.php b/civicrm/api/v3/examples/Activity/GetTargetAndAssignee.ex.php
index f9236211b397e833851d569225d446617f84316f..2e62af1a5b870101ff1015143c95cd722c3af767 100644
--- a/civicrm/api/v3/examples/Activity/GetTargetAndAssignee.ex.php
+++ b/civicrm/api/v3/examples/Activity/GetTargetAndAssignee.ex.php
@@ -30,7 +30,7 @@ function activity_create_example() {
   try {
     $result = civicrm_api3('Activity', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/GetTargetandAssigneeName.ex.php b/civicrm/api/v3/examples/Activity/GetTargetandAssigneeName.ex.php
index 8c40df7603af8e291150fae025f4f8841e1bdb08..fa0f47211c60a93fe5674f166214a3ea7c85ec89 100644
--- a/civicrm/api/v3/examples/Activity/GetTargetandAssigneeName.ex.php
+++ b/civicrm/api/v3/examples/Activity/GetTargetandAssigneeName.ex.php
@@ -26,7 +26,7 @@ function activity_getsingle_example() {
   try {
     $result = civicrm_api3('Activity', 'getsingle', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Activity/ReturnAssigneeContact.ex.php b/civicrm/api/v3/examples/Activity/ReturnAssigneeContact.ex.php
index 1b4ce1121e72b241fd88fe10170e9cc46989878c..56eafffd28501c4a441916dd42ce99343f2d6c7e 100644
--- a/civicrm/api/v3/examples/Activity/ReturnAssigneeContact.ex.php
+++ b/civicrm/api/v3/examples/Activity/ReturnAssigneeContact.ex.php
@@ -29,7 +29,7 @@ function activity_get_example() {
   try {
     $result = civicrm_api3('Activity', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ActivityContact/Create.ex.php b/civicrm/api/v3/examples/ActivityContact/Create.ex.php
index f3a9bf503776ac70eb4678d12923abf4eb637e9b..925723407eadc98296508b620822c94ba22313fe 100644
--- a/civicrm/api/v3/examples/ActivityContact/Create.ex.php
+++ b/civicrm/api/v3/examples/ActivityContact/Create.ex.php
@@ -20,7 +20,7 @@ function activity_contact_create_example() {
   try {
     $result = civicrm_api3('ActivityContact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ActivityContact/Delete.ex.php b/civicrm/api/v3/examples/ActivityContact/Delete.ex.php
index dba912828e67f26d072c3dd1f367e4ae6b4f45c6..e37958d6f1a4ff92adfe5806e04cd46b634b0a18 100644
--- a/civicrm/api/v3/examples/ActivityContact/Delete.ex.php
+++ b/civicrm/api/v3/examples/ActivityContact/Delete.ex.php
@@ -18,7 +18,7 @@ function activity_contact_delete_example() {
   try {
     $result = civicrm_api3('ActivityContact', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ActivityType/Create.ex.php b/civicrm/api/v3/examples/ActivityType/Create.ex.php
index 43c02fd3c230387b68e74093964654a5dac4dec9..ca60925c1d65caa1fe17572b1d655d13e963d752 100644
--- a/civicrm/api/v3/examples/ActivityType/Create.ex.php
+++ b/civicrm/api/v3/examples/ActivityType/Create.ex.php
@@ -26,7 +26,7 @@ function activity_type_create_example() {
   try {
     $result = civicrm_api3('ActivityType', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ActivityType/Get.ex.php b/civicrm/api/v3/examples/ActivityType/Get.ex.php
index eb3c70436135ea47d05dcd95960e259d95f51f9f..7ad7b6c0265936f377b52bcfebfe2d6a611b4112 100644
--- a/civicrm/api/v3/examples/ActivityType/Get.ex.php
+++ b/civicrm/api/v3/examples/ActivityType/Get.ex.php
@@ -19,7 +19,7 @@ function activity_type_get_example() {
   try {
     $result = civicrm_api3('ActivityType', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/AddressLike.ex.php b/civicrm/api/v3/examples/Address/AddressLike.ex.php
index 47dc4b85b015cf5873d17590127cc099e22de72f..a3cd6c204ad7aed295c72e52d2971c1fc854e0c7 100644
--- a/civicrm/api/v3/examples/Address/AddressLike.ex.php
+++ b/civicrm/api/v3/examples/Address/AddressLike.ex.php
@@ -24,7 +24,7 @@ function address_get_example() {
   try {
     $result = civicrm_api3('Address', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/AddressParse.ex.php b/civicrm/api/v3/examples/Address/AddressParse.ex.php
index 6bac470ffc9f32420dfaa6761cb1fc3a4888b6fa..834805686744a48573f4797a62b2b31318c0723a 100644
--- a/civicrm/api/v3/examples/Address/AddressParse.ex.php
+++ b/civicrm/api/v3/examples/Address/AddressParse.ex.php
@@ -23,7 +23,7 @@ function address_create_example() {
   try {
     $result = civicrm_api3('Address', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/AddressSort.ex.php b/civicrm/api/v3/examples/Address/AddressSort.ex.php
index bde3f3d8af8a6a7bdf74d04231addf20d082a093..377645a7f66958b18b8aca587f0ab417a310c530 100644
--- a/civicrm/api/v3/examples/Address/AddressSort.ex.php
+++ b/civicrm/api/v3/examples/Address/AddressSort.ex.php
@@ -25,7 +25,7 @@ function address_get_example() {
   try {
     $result = civicrm_api3('Address', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/Create.ex.php b/civicrm/api/v3/examples/Address/Create.ex.php
index d3bacbe11a916876b0c1c94543803fe15fa39157..5315e21774fc49e63aac366993d61c495ed06cf6 100644
--- a/civicrm/api/v3/examples/Address/Create.ex.php
+++ b/civicrm/api/v3/examples/Address/Create.ex.php
@@ -25,7 +25,7 @@ function address_create_example() {
   try {
     $result = civicrm_api3('Address', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/Delete.ex.php b/civicrm/api/v3/examples/Address/Delete.ex.php
index e7e060a02e76beb63f3361a6133fb5749857bb28..b5583029df042cb218c57b9a7e06d50a82f831a3 100644
--- a/civicrm/api/v3/examples/Address/Delete.ex.php
+++ b/civicrm/api/v3/examples/Address/Delete.ex.php
@@ -18,7 +18,7 @@ function address_delete_example() {
   try {
     $result = civicrm_api3('Address', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/Get.ex.php b/civicrm/api/v3/examples/Address/Get.ex.php
index d58398aeead2f469029e8103c9471b7c6963d0f1..26de9b1fba1294755f1974c62484847a5405f67e 100644
--- a/civicrm/api/v3/examples/Address/Get.ex.php
+++ b/civicrm/api/v3/examples/Address/Get.ex.php
@@ -24,7 +24,7 @@ function address_get_example() {
   try {
     $result = civicrm_api3('Address', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Address/GetOptions.ex.php b/civicrm/api/v3/examples/Address/GetOptions.ex.php
index ae7090d658f7dca3161eaa5aeeac2bcee410e280..15ca3de74b05f5c2a815090d504c8b615221a887 100644
--- a/civicrm/api/v3/examples/Address/GetOptions.ex.php
+++ b/civicrm/api/v3/examples/Address/GetOptions.ex.php
@@ -18,7 +18,7 @@ function address_getoptions_example() {
   try {
     $result = civicrm_api3('Address', 'getoptions', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Batch/Create.ex.php b/civicrm/api/v3/examples/Batch/Create.ex.php
index 08457b0178332c8b47a6403a9b598f596d90d930..114886983725c1759d4b3af8e07e451921057ab2 100644
--- a/civicrm/api/v3/examples/Batch/Create.ex.php
+++ b/civicrm/api/v3/examples/Batch/Create.ex.php
@@ -23,7 +23,7 @@ function batch_create_example() {
   try {
     $result = civicrm_api3('Batch', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Batch/Delete.ex.php b/civicrm/api/v3/examples/Batch/Delete.ex.php
index 871e65756c15e024c246aaa0d8182c585aea5451..eb525d6271613877565b5ab751608ae05429dd57 100644
--- a/civicrm/api/v3/examples/Batch/Delete.ex.php
+++ b/civicrm/api/v3/examples/Batch/Delete.ex.php
@@ -18,7 +18,7 @@ function batch_delete_example() {
   try {
     $result = civicrm_api3('Batch', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Batch/Get.ex.php b/civicrm/api/v3/examples/Batch/Get.ex.php
index 04a0f42c50119817c4f2015d2255002ec3c6b932..3c46694d2f733dfb97d40eebbb1534ae83ad8b65 100644
--- a/civicrm/api/v3/examples/Batch/Get.ex.php
+++ b/civicrm/api/v3/examples/Batch/Get.ex.php
@@ -18,7 +18,7 @@ function batch_get_example() {
   try {
     $result = civicrm_api3('Batch', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Batch/Update.ex.php b/civicrm/api/v3/examples/Batch/Update.ex.php
index 0ee073de8dc79724ed3fb8841f528c47702ee0f7..aa1a825a552f992a9ac62c4b13868c605c6684b7 100644
--- a/civicrm/api/v3/examples/Batch/Update.ex.php
+++ b/civicrm/api/v3/examples/Batch/Update.ex.php
@@ -23,7 +23,7 @@ function batch_update_example() {
   try {
     $result = civicrm_api3('batch', 'update', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Campaign/Create.ex.php b/civicrm/api/v3/examples/Campaign/Create.ex.php
index cf4ab0e714d3d6cf992e0ac04f45779fdab39933..70ec4f9881d5eac07d34bd7f904bb4a42bc5ff3f 100644
--- a/civicrm/api/v3/examples/Campaign/Create.ex.php
+++ b/civicrm/api/v3/examples/Campaign/Create.ex.php
@@ -23,7 +23,7 @@ function campaign_create_example() {
   try {
     $result = civicrm_api3('Campaign', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Campaign/Delete.ex.php b/civicrm/api/v3/examples/Campaign/Delete.ex.php
index 81a793590ae0aaf9f93d55e25e2700f9230a5cbf..d828dc8d6f08c5ba3520a039733a77b144920149 100644
--- a/civicrm/api/v3/examples/Campaign/Delete.ex.php
+++ b/civicrm/api/v3/examples/Campaign/Delete.ex.php
@@ -18,7 +18,7 @@ function campaign_delete_example() {
   try {
     $result = civicrm_api3('Campaign', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Campaign/Get.ex.php b/civicrm/api/v3/examples/Campaign/Get.ex.php
index 317e91a14f8c11e17b72d39e03cbd820ffd0d47c..c7e1c27982b8370a3c9c2004bbdfbc8d29202eca 100644
--- a/civicrm/api/v3/examples/Campaign/Get.ex.php
+++ b/civicrm/api/v3/examples/Campaign/Get.ex.php
@@ -20,7 +20,7 @@ function campaign_get_example() {
   try {
     $result = civicrm_api3('Campaign', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Case/Create.ex.php b/civicrm/api/v3/examples/Case/Create.ex.php
index b03342315cbdc92e2353d7469a5b7a46adf03310..6f3d1abfe02432e6055643e01b9c1a16a7e3feed 100644
--- a/civicrm/api/v3/examples/Case/Create.ex.php
+++ b/civicrm/api/v3/examples/Case/Create.ex.php
@@ -21,7 +21,7 @@ function case_create_example() {
   try {
     $result = civicrm_api3('Case', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CaseContact/Create.ex.php b/civicrm/api/v3/examples/CaseContact/Create.ex.php
index 495da74a84adb670ca220af212b2e623ece8a42f..b17fd8f5a35d86da8fac1db29e184768ae9f7dea 100644
--- a/civicrm/api/v3/examples/CaseContact/Create.ex.php
+++ b/civicrm/api/v3/examples/CaseContact/Create.ex.php
@@ -19,7 +19,7 @@ function case_contact_create_example() {
   try {
     $result = civicrm_api3('CaseContact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CaseContact/Get.ex.php b/civicrm/api/v3/examples/CaseContact/Get.ex.php
index 0c8e042d3a5f3c6dd6463ec38158f6db5991dd38..6cf38ad0ee9da1599c76dd1a04f03ab32fa23f14 100644
--- a/civicrm/api/v3/examples/CaseContact/Get.ex.php
+++ b/civicrm/api/v3/examples/CaseContact/Get.ex.php
@@ -18,7 +18,7 @@ function case_contact_get_example() {
   try {
     $result = civicrm_api3('CaseContact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Constant/Get.ex.php b/civicrm/api/v3/examples/Constant/Get.ex.php
index 67050d8770d982ef91ada9e7cb96046851d4d6b5..2ac3a47dbc7ad777c293a8c680ef3e9e90e2d9e1 100644
--- a/civicrm/api/v3/examples/Constant/Get.ex.php
+++ b/civicrm/api/v3/examples/Constant/Get.ex.php
@@ -21,7 +21,7 @@ function constant_get_example() {
   try {
     $result = civicrm_api3('Constant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/APIChainedArray.ex.php b/civicrm/api/v3/examples/Contact/APIChainedArray.ex.php
index 94a3e62c0cc76fc7b624efefc1e57892837d990c..9b27a5e7ac2119bae08a211691f9c1e01a1e890f 100644
--- a/civicrm/api/v3/examples/Contact/APIChainedArray.ex.php
+++ b/civicrm/api/v3/examples/Contact/APIChainedArray.ex.php
@@ -27,7 +27,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/APIChainedArrayFormats.ex.php b/civicrm/api/v3/examples/Contact/APIChainedArrayFormats.ex.php
index 9590b7aa435665f751b3923cc392b52ee15210ab..5e915fa949ca5f78183ec9fb81ceebba5cabcea9 100644
--- a/civicrm/api/v3/examples/Contact/APIChainedArrayFormats.ex.php
+++ b/civicrm/api/v3/examples/Contact/APIChainedArrayFormats.ex.php
@@ -28,7 +28,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/APIChainedArrayMultipleCustom.ex.php b/civicrm/api/v3/examples/Contact/APIChainedArrayMultipleCustom.ex.php
index 4bfd9fb6cf1aa88a571835d57ebe317baba30a60..f721e50ebece16014fdf1e2dd26cd41256165d9b 100644
--- a/civicrm/api/v3/examples/Contact/APIChainedArrayMultipleCustom.ex.php
+++ b/civicrm/api/v3/examples/Contact/APIChainedArrayMultipleCustom.ex.php
@@ -25,7 +25,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/APIChainedArrayValuesFromSiblingFunction.ex.php b/civicrm/api/v3/examples/Contact/APIChainedArrayValuesFromSiblingFunction.ex.php
index 9ba497b712d20da5c1f97d24e60f83c15b2f6791..93ba35e529a12d5f96060dba90a175416665f5f8 100644
--- a/civicrm/api/v3/examples/Contact/APIChainedArrayValuesFromSiblingFunction.ex.php
+++ b/civicrm/api/v3/examples/Contact/APIChainedArrayValuesFromSiblingFunction.ex.php
@@ -30,7 +30,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/ChainTwoWebsites.ex.php b/civicrm/api/v3/examples/Contact/ChainTwoWebsites.ex.php
index a4e5efa7ed87e19509926a31fc5583baf3eaeb51..5901d1198f5dd7043c14342dab0e90be45f0e96e 100644
--- a/civicrm/api/v3/examples/Contact/ChainTwoWebsites.ex.php
+++ b/civicrm/api/v3/examples/Contact/ChainTwoWebsites.ex.php
@@ -43,7 +43,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/ChainTwoWebsitesSyntax2.ex.php b/civicrm/api/v3/examples/Contact/ChainTwoWebsitesSyntax2.ex.php
index 3a1596a8fe81efdb0f094040d5095ed19681f426..fd4fc0240ced603bbb77f8698b7aa46f380265fe 100644
--- a/civicrm/api/v3/examples/Contact/ChainTwoWebsitesSyntax2.ex.php
+++ b/civicrm/api/v3/examples/Contact/ChainTwoWebsitesSyntax2.ex.php
@@ -46,7 +46,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/ContactIDOfLoggedInUserContactAPI.ex.php b/civicrm/api/v3/examples/Contact/ContactIDOfLoggedInUserContactAPI.ex.php
index e0eeec276db3d6160c9acac561c79db5bf7dc29a..57ef407ceca8cbc534a372976a60d7f2cff33497 100644
--- a/civicrm/api/v3/examples/Contact/ContactIDOfLoggedInUserContactAPI.ex.php
+++ b/civicrm/api/v3/examples/Contact/ContactIDOfLoggedInUserContactAPI.ex.php
@@ -20,7 +20,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/Create.ex.php b/civicrm/api/v3/examples/Contact/Create.ex.php
index cbf2a40d2ca50f103d7384dd4c6f8ea9376466ea..7ed05c88a3ed9d61e36046d00bfff860ac6ab5b2 100644
--- a/civicrm/api/v3/examples/Contact/Create.ex.php
+++ b/civicrm/api/v3/examples/Contact/Create.ex.php
@@ -23,7 +23,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/CreateParticipantPayment.ex.php b/civicrm/api/v3/examples/Contact/CreateParticipantPayment.ex.php
index ba7bc6631436459a61c6b7c844463b429d3de393..ccde534e696c8f052adfb6d72fe85aaa6ea52bed 100644
--- a/civicrm/api/v3/examples/Contact/CreateParticipantPayment.ex.php
+++ b/civicrm/api/v3/examples/Contact/CreateParticipantPayment.ex.php
@@ -37,7 +37,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/CustomFieldGet.ex.php b/civicrm/api/v3/examples/Contact/CustomFieldGet.ex.php
index 2f76fb669f22c4500f0994d41ac5173414cdb995..bac9895300b2e91a01b8cf4440fa1f8feed5e014 100644
--- a/civicrm/api/v3/examples/Contact/CustomFieldGet.ex.php
+++ b/civicrm/api/v3/examples/Contact/CustomFieldGet.ex.php
@@ -21,7 +21,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/CustomFieldGetReturnSyntaxVariation.ex.php b/civicrm/api/v3/examples/Contact/CustomFieldGetReturnSyntaxVariation.ex.php
index 6bb4a9bd8f7ff3f2f47bb4214aa5c8eb951a15a6..0c07d8763f0b279d6669352196138eb0b151f4e9 100644
--- a/civicrm/api/v3/examples/Contact/CustomFieldGetReturnSyntaxVariation.ex.php
+++ b/civicrm/api/v3/examples/Contact/CustomFieldGetReturnSyntaxVariation.ex.php
@@ -21,7 +21,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/Delete.ex.php b/civicrm/api/v3/examples/Contact/Delete.ex.php
index 5573cda0365c4af1db76ba29a7f88e200bc7d1f2..5041f0ba828ef053ca79868d96056b9607e1153e 100644
--- a/civicrm/api/v3/examples/Contact/Delete.ex.php
+++ b/civicrm/api/v3/examples/Contact/Delete.ex.php
@@ -18,7 +18,7 @@ function contact_delete_example() {
   try {
     $result = civicrm_api3('Contact', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/FormatIsSuccess_Fail.ex.php b/civicrm/api/v3/examples/Contact/FormatIsSuccess_Fail.ex.php
index addf2a22a986d4336638821d59a194a42fd2c888..b89dcd7dc9e76bc5d2ded0672bcdc8f472964ca7 100644
--- a/civicrm/api/v3/examples/Contact/FormatIsSuccess_Fail.ex.php
+++ b/civicrm/api/v3/examples/Contact/FormatIsSuccess_Fail.ex.php
@@ -22,7 +22,7 @@ function contact_create_example() {
   try {
     $result = civicrm_api3('Contact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/FormatIsSuccess_True.ex.php b/civicrm/api/v3/examples/Contact/FormatIsSuccess_True.ex.php
index 3672c1c116ba9aac7ce9f5bbf47969d2cd412763..8322e4af31413b6eb0dce33069d7713d94e61128 100644
--- a/civicrm/api/v3/examples/Contact/FormatIsSuccess_True.ex.php
+++ b/civicrm/api/v3/examples/Contact/FormatIsSuccess_True.ex.php
@@ -22,7 +22,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/FormatOnlyID.ex.php b/civicrm/api/v3/examples/Contact/FormatOnlyID.ex.php
index 9ed03e5d3fdc6c5899c031eff8090e2f97b29aaf..215e1b3990161ff2f1ac92cf528e6b779363f523 100644
--- a/civicrm/api/v3/examples/Contact/FormatOnlyID.ex.php
+++ b/civicrm/api/v3/examples/Contact/FormatOnlyID.ex.php
@@ -23,7 +23,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/FormatSingleValue.ex.php b/civicrm/api/v3/examples/Contact/FormatSingleValue.ex.php
index 59a30148f635857401dfc879691b5ff307faccc2..4ef40d85e25fe5c6804256409aafcd013907e56f 100644
--- a/civicrm/api/v3/examples/Contact/FormatSingleValue.ex.php
+++ b/civicrm/api/v3/examples/Contact/FormatSingleValue.ex.php
@@ -23,7 +23,7 @@ function contact_getvalue_example() {
   try {
     $result = civicrm_api3('Contact', 'getvalue', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/Get.ex.php b/civicrm/api/v3/examples/Contact/Get.ex.php
index 9e52194dcc33932accba5c014298f634ae896a4b..5ec009192072f21343c2f32b45693a8961c10498 100644
--- a/civicrm/api/v3/examples/Contact/Get.ex.php
+++ b/civicrm/api/v3/examples/Contact/Get.ex.php
@@ -18,7 +18,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetActions.ex.php b/civicrm/api/v3/examples/Contact/GetActions.ex.php
index 13c028b40da9575e23974fbf3d600aa120c05355..d531d17f62bc8aabd9b4fa02e712c97d33463da6 100644
--- a/civicrm/api/v3/examples/Contact/GetActions.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetActions.ex.php
@@ -18,7 +18,7 @@ function contact_getactions_example() {
   try {
     $result = civicrm_api3('Contact', 'getactions', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetCountContact.ex.php b/civicrm/api/v3/examples/Contact/GetCountContact.ex.php
index fcb9fd35c1d8247f43de789d9b18c4a14d6fa418..44e45626722d131dcde8cdcfbfe6c83fd424d6b3 100644
--- a/civicrm/api/v3/examples/Contact/GetCountContact.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetCountContact.ex.php
@@ -21,7 +21,7 @@ function contact_getcount_example() {
   try {
     $result = civicrm_api3('Contact', 'getcount', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetFieldsOptions.ex.php b/civicrm/api/v3/examples/Contact/GetFieldsOptions.ex.php
index 1177b68ca4f742f73b3f5b4c545a31830fce5d64..04a81a41231ba8a1484b487d0131ea4709544747 100644
--- a/civicrm/api/v3/examples/Contact/GetFieldsOptions.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetFieldsOptions.ex.php
@@ -23,7 +23,7 @@ function contact_getfields_example() {
   try {
     $result = civicrm_api3('Contact', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetMergedfrom.ex.php b/civicrm/api/v3/examples/Contact/GetMergedfrom.ex.php
index 7c3c47790058f109adfb3600495a740753169ba2..bab1e98219f3a326b4086380daef38348bba22b9 100644
--- a/civicrm/api/v3/examples/Contact/GetMergedfrom.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetMergedfrom.ex.php
@@ -18,7 +18,7 @@ function contact_getmergedfrom_example() {
   try {
     $result = civicrm_api3('Contact', 'getmergedfrom', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetMergedto.ex.php b/civicrm/api/v3/examples/Contact/GetMergedto.ex.php
index 1b6c18da3f441a6d54fd07d9db14011c554a20ce..4746b88c42ab0fa079297c80e854db311ad09bbd 100644
--- a/civicrm/api/v3/examples/Contact/GetMergedto.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetMergedto.ex.php
@@ -19,7 +19,7 @@ function contact_getmergedto_example() {
   try {
     $result = civicrm_api3('Contact', 'getmergedto', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetOptions.ex.php b/civicrm/api/v3/examples/Contact/GetOptions.ex.php
index 75a7c9b9370ba465e122f393783c382fa1ce7d99..b7e43de58f411de0d73314d2581b49c0de6ffa22 100644
--- a/civicrm/api/v3/examples/Contact/GetOptions.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetOptions.ex.php
@@ -20,7 +20,7 @@ function contact_getoptions_example() {
   try {
     $result = civicrm_api3('Contact', 'getoptions', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetSingleContact.ex.php b/civicrm/api/v3/examples/Contact/GetSingleContact.ex.php
index 3992b4b438ba6ca4f1b9dc078c7429538937e319..12d9061f805fe1a5a76d8d4341618bcb5b8bb4fb 100644
--- a/civicrm/api/v3/examples/Contact/GetSingleContact.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetSingleContact.ex.php
@@ -22,7 +22,7 @@ function contact_getsingle_example() {
   try {
     $result = civicrm_api3('Contact', 'getsingle', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GetUnique.ex.php b/civicrm/api/v3/examples/Contact/GetUnique.ex.php
index 44ddafecbf5198b55a076d6302e54b159c59c523..e3f85e40625bcfedf182f432f8fe2042348fc67c 100644
--- a/civicrm/api/v3/examples/Contact/GetUnique.ex.php
+++ b/civicrm/api/v3/examples/Contact/GetUnique.ex.php
@@ -16,7 +16,7 @@ function contact_getunique_example() {
   try {
     $result = civicrm_api3('Contact', 'getunique', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/GroupFilterUsingContactAPI.ex.php b/civicrm/api/v3/examples/Contact/GroupFilterUsingContactAPI.ex.php
index 4e21725d1b08342d2da324a6e62d76d1dad4959b..24a4154202b22748756dcbbc30f9bfd28e3dd389 100644
--- a/civicrm/api/v3/examples/Contact/GroupFilterUsingContactAPI.ex.php
+++ b/civicrm/api/v3/examples/Contact/GroupFilterUsingContactAPI.ex.php
@@ -25,7 +25,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contact/NestedReplaceEmail.ex.php b/civicrm/api/v3/examples/Contact/NestedReplaceEmail.ex.php
index 8b443f1993d787365c559f11db7fbca21997c385..07c65f86ba95d238133c934b9f82eddc0aaaee62 100644
--- a/civicrm/api/v3/examples/Contact/NestedReplaceEmail.ex.php
+++ b/civicrm/api/v3/examples/Contact/NestedReplaceEmail.ex.php
@@ -49,7 +49,7 @@ function contact_get_example() {
   try {
     $result = civicrm_api3('Contact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/ContributionCreateWithHonoreeContact.ex.php b/civicrm/api/v3/examples/Contribution/ContributionCreateWithHonoreeContact.ex.php
index 8492f774c58c1ccb148429f5d1e9c9992cb56a4f..e56c890d5bc14cc8988166d9a26e0906d5acd7d2 100644
--- a/civicrm/api/v3/examples/Contribution/ContributionCreateWithHonoreeContact.ex.php
+++ b/civicrm/api/v3/examples/Contribution/ContributionCreateWithHonoreeContact.ex.php
@@ -29,7 +29,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/ContributionCreateWithNote.ex.php b/civicrm/api/v3/examples/Contribution/ContributionCreateWithNote.ex.php
index b0b2726779138e2e5fa2dd8d17b1bbe2cd577474..44ec08c356c8270298dc8c31cde0c00bda26f04c 100644
--- a/civicrm/api/v3/examples/Contribution/ContributionCreateWithNote.ex.php
+++ b/civicrm/api/v3/examples/Contribution/ContributionCreateWithNote.ex.php
@@ -32,7 +32,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCredit.ex.php b/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCredit.ex.php
index e6a60601cf3fd2749109686338d3a54a72a2677a..ea42d726dfe7a5d8e6d91c1a7e29abe1d37d283c 100644
--- a/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCredit.ex.php
+++ b/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCredit.ex.php
@@ -35,7 +35,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCreditDefaults.ex.php b/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCreditDefaults.ex.php
index 86686dbd23fd5d8e1d79ab236f56ae73a6564ae7..938f989bc54f4eb2037d916d52e923269dc9a42f 100644
--- a/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCreditDefaults.ex.php
+++ b/civicrm/api/v3/examples/Contribution/ContributionCreateWithSoftCreditDefaults.ex.php
@@ -29,7 +29,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/Create.ex.php b/civicrm/api/v3/examples/Contribution/Create.ex.php
index 557102d48c0d0bfd0cf45f62cbba445647c1c678..f275e817e58d4404c4430a626e85ade860b2e695 100644
--- a/civicrm/api/v3/examples/Contribution/Create.ex.php
+++ b/civicrm/api/v3/examples/Contribution/Create.ex.php
@@ -27,7 +27,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/CreateWithNestedLineItems.ex.php b/civicrm/api/v3/examples/Contribution/CreateWithNestedLineItems.ex.php
index efdc4e3b051781fd7ff437490c7bd5c791d1ce71..6324494bd35474880313a7d65c2d736e1d1b2b4a 100644
--- a/civicrm/api/v3/examples/Contribution/CreateWithNestedLineItems.ex.php
+++ b/civicrm/api/v3/examples/Contribution/CreateWithNestedLineItems.ex.php
@@ -46,7 +46,7 @@ function contribution_create_example() {
   try {
     $result = civicrm_api3('Contribution', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/Delete.ex.php b/civicrm/api/v3/examples/Contribution/Delete.ex.php
index abb478aa67a0c370f2e7154ea5287bf209048299..995946cd03740d6da84fe1aff7f5f4f1e3566138 100644
--- a/civicrm/api/v3/examples/Contribution/Delete.ex.php
+++ b/civicrm/api/v3/examples/Contribution/Delete.ex.php
@@ -18,7 +18,7 @@ function contribution_delete_example() {
   try {
     $result = civicrm_api3('Contribution', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/Get.ex.php b/civicrm/api/v3/examples/Contribution/Get.ex.php
index 28fd89ea34eaab370ae63b877857d122e2bea177..aa60007bb2d879d0fab74064e153aabd1565a34d 100644
--- a/civicrm/api/v3/examples/Contribution/Get.ex.php
+++ b/civicrm/api/v3/examples/Contribution/Get.ex.php
@@ -33,7 +33,7 @@ function contribution_get_example() {
   try {
     $result = civicrm_api3('Contribution', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Contribution/GetUnique.ex.php b/civicrm/api/v3/examples/Contribution/GetUnique.ex.php
index 7f7253330771f77242ac06cad58916df918825a2..01aa7359301147e78bba40bbe1bffa653c68ab66 100644
--- a/civicrm/api/v3/examples/Contribution/GetUnique.ex.php
+++ b/civicrm/api/v3/examples/Contribution/GetUnique.ex.php
@@ -16,7 +16,7 @@ function contribution_getunique_example() {
   try {
     $result = civicrm_api3('Contribution', 'getunique', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionPage/Create.ex.php b/civicrm/api/v3/examples/ContributionPage/Create.ex.php
index e795e702129214c5fabbe495408d663c87945b7b..2070e71044af9bb91e5ccb538dd244efb3475b20 100644
--- a/civicrm/api/v3/examples/ContributionPage/Create.ex.php
+++ b/civicrm/api/v3/examples/ContributionPage/Create.ex.php
@@ -27,7 +27,7 @@ function contribution_page_create_example() {
   try {
     $result = civicrm_api3('ContributionPage', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionPage/Delete.ex.php b/civicrm/api/v3/examples/ContributionPage/Delete.ex.php
index 831bbafc71e29bf42fc460bca866a0ff01d24e08..babbd43ca0ab73a76fad75080ca4ad2c58bef9b3 100644
--- a/civicrm/api/v3/examples/ContributionPage/Delete.ex.php
+++ b/civicrm/api/v3/examples/ContributionPage/Delete.ex.php
@@ -18,7 +18,7 @@ function contribution_page_delete_example() {
   try {
     $result = civicrm_api3('ContributionPage', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionPage/Get.ex.php b/civicrm/api/v3/examples/ContributionPage/Get.ex.php
index bfc747f45c1ea80bad4ed79ed5ec2e873a7cfc9d..46acb7e857abc716a065ffcac54b0b812c1beeb4 100644
--- a/civicrm/api/v3/examples/ContributionPage/Get.ex.php
+++ b/civicrm/api/v3/examples/ContributionPage/Get.ex.php
@@ -19,7 +19,7 @@ function contribution_page_get_example() {
   try {
     $result = civicrm_api3('ContributionPage', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionPage/Submit.ex.php b/civicrm/api/v3/examples/ContributionPage/Submit.ex.php
index 1b3f68bd3c2721866b2890b6c7c6363a3469a472..f1eb5c13c87818dfa866dbc7c77190d4ab340e41 100644
--- a/civicrm/api/v3/examples/ContributionPage/Submit.ex.php
+++ b/civicrm/api/v3/examples/ContributionPage/Submit.ex.php
@@ -41,7 +41,7 @@ function contribution_page_submit_example() {
   try {
     $result = civicrm_api3('ContributionPage', 'submit', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionRecur/Create.ex.php b/civicrm/api/v3/examples/ContributionRecur/Create.ex.php
index 6843dbf101b14d7f469389ce8f66a836cdcec549..d4029781aab4518b08c904b6a1730b0ee4361537 100644
--- a/civicrm/api/v3/examples/ContributionRecur/Create.ex.php
+++ b/civicrm/api/v3/examples/ContributionRecur/Create.ex.php
@@ -25,7 +25,7 @@ function contribution_recur_create_example() {
   try {
     $result = civicrm_api3('ContributionRecur', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionRecur/Delete.ex.php b/civicrm/api/v3/examples/ContributionRecur/Delete.ex.php
index 8f3628496546b308d3d62ec3c66235e14fd458b4..1d4b11c403b050212471a26d019683e3baea9f6f 100644
--- a/civicrm/api/v3/examples/ContributionRecur/Delete.ex.php
+++ b/civicrm/api/v3/examples/ContributionRecur/Delete.ex.php
@@ -18,7 +18,7 @@ function contribution_recur_delete_example() {
   try {
     $result = civicrm_api3('ContributionRecur', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionRecur/Get.ex.php b/civicrm/api/v3/examples/ContributionRecur/Get.ex.php
index 38caa084ea810497f7a5e1b73b1b95d9c4d4faba..a26894fc44264230b595a2d3eb128877aeff7fd9 100644
--- a/civicrm/api/v3/examples/ContributionRecur/Get.ex.php
+++ b/civicrm/api/v3/examples/ContributionRecur/Get.ex.php
@@ -18,7 +18,7 @@ function contribution_recur_get_example() {
   try {
     $result = civicrm_api3('ContributionRecur', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionSoft/Create.ex.php b/civicrm/api/v3/examples/ContributionSoft/Create.ex.php
index 9a95fe6eaeac5ceaa8c0a2d36e9813425a52053f..b90e7cbeadf1faa3fb5107e26530a2cde2dbe4b9 100644
--- a/civicrm/api/v3/examples/ContributionSoft/Create.ex.php
+++ b/civicrm/api/v3/examples/ContributionSoft/Create.ex.php
@@ -22,7 +22,7 @@ function contribution_soft_create_example() {
   try {
     $result = civicrm_api3('ContributionSoft', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionSoft/Delete.ex.php b/civicrm/api/v3/examples/ContributionSoft/Delete.ex.php
index 02c4265afcac96634880ce86140107651d05f47c..967a0891cfbc91ab02330f851ad14374984a8b83 100644
--- a/civicrm/api/v3/examples/ContributionSoft/Delete.ex.php
+++ b/civicrm/api/v3/examples/ContributionSoft/Delete.ex.php
@@ -18,7 +18,7 @@ function contribution_soft_delete_example() {
   try {
     $result = civicrm_api3('ContributionSoft', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ContributionSoft/Get.ex.php b/civicrm/api/v3/examples/ContributionSoft/Get.ex.php
index 26dadff3b4ce0cc44c7f725fd1bfb7307b5c5479..49ea3c8c04f2877128d5f4fcf96c8924b3af4bbf 100644
--- a/civicrm/api/v3/examples/ContributionSoft/Get.ex.php
+++ b/civicrm/api/v3/examples/ContributionSoft/Get.ex.php
@@ -18,7 +18,7 @@ function contribution_soft_get_example() {
   try {
     $result = civicrm_api3('ContributionSoft', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Country/Create.ex.php b/civicrm/api/v3/examples/Country/Create.ex.php
index 9897b2c57f2ca0f307ef842056446be72b51f73a..8443fc2d9e788d1a8942a9e3adbafc3b3278b4a6 100644
--- a/civicrm/api/v3/examples/Country/Create.ex.php
+++ b/civicrm/api/v3/examples/Country/Create.ex.php
@@ -20,7 +20,7 @@ function country_create_example() {
   try {
     $result = civicrm_api3('Country', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Country/Delete.ex.php b/civicrm/api/v3/examples/Country/Delete.ex.php
index 07c01d631ae409ec02a8e943c1995b55f83991e5..f7b33b0c5ae55cd218996400204ef36eaf6f089a 100644
--- a/civicrm/api/v3/examples/Country/Delete.ex.php
+++ b/civicrm/api/v3/examples/Country/Delete.ex.php
@@ -18,7 +18,7 @@ function country_delete_example() {
   try {
     $result = civicrm_api3('Country', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Country/Get.ex.php b/civicrm/api/v3/examples/Country/Get.ex.php
index bef86bf4a9a9ba194c9a71996712467b92b293a8..83e3d119a2777cde343a72f1dfbb9a103b6961df 100644
--- a/civicrm/api/v3/examples/Country/Get.ex.php
+++ b/civicrm/api/v3/examples/Country/Get.ex.php
@@ -18,7 +18,7 @@ function country_get_example() {
   try {
     $result = civicrm_api3('Country', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomField/Create.ex.php b/civicrm/api/v3/examples/CustomField/Create.ex.php
index ed02778eee994fc6b898e94c94403892372651cd..b4bb9124eb2d69501085cca34c708a93d768db5b 100644
--- a/civicrm/api/v3/examples/CustomField/Create.ex.php
+++ b/civicrm/api/v3/examples/CustomField/Create.ex.php
@@ -27,7 +27,7 @@ function custom_field_create_example() {
   try {
     $result = civicrm_api3('CustomField', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomField/Delete.ex.php b/civicrm/api/v3/examples/CustomField/Delete.ex.php
index 70a300f970a05f05a08126364a3e23f321c432f7..9b5ff15d59e7c3948de8d336889319c9832c8d1e 100644
--- a/civicrm/api/v3/examples/CustomField/Delete.ex.php
+++ b/civicrm/api/v3/examples/CustomField/Delete.ex.php
@@ -18,7 +18,7 @@ function custom_field_delete_example() {
   try {
     $result = civicrm_api3('CustomField', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomGroup/Create.ex.php b/civicrm/api/v3/examples/CustomGroup/Create.ex.php
index a0b4a0ff8a825bf6cb9bbcac83c8be72b10542e8..f965296441b5da5f1e2536de30d30d1740a7ec14 100644
--- a/civicrm/api/v3/examples/CustomGroup/Create.ex.php
+++ b/civicrm/api/v3/examples/CustomGroup/Create.ex.php
@@ -28,7 +28,7 @@ function custom_group_create_example() {
   try {
     $result = civicrm_api3('CustomGroup', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomGroup/Delete.ex.php b/civicrm/api/v3/examples/CustomGroup/Delete.ex.php
index 235dee916139ea28afec300e71f417a93c73c0cf..d495a48aa6c56d6e96c7f2f29d35531e817b1c3e 100644
--- a/civicrm/api/v3/examples/CustomGroup/Delete.ex.php
+++ b/civicrm/api/v3/examples/CustomGroup/Delete.ex.php
@@ -18,7 +18,7 @@ function custom_group_delete_example() {
   try {
     $result = civicrm_api3('CustomGroup', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomGroup/Get.ex.php b/civicrm/api/v3/examples/CustomGroup/Get.ex.php
index 1ad72fa5d59f88cc163f11d5db1f59ad4ed74173..f40211ba226073936403f75b2072db6364bb5167 100644
--- a/civicrm/api/v3/examples/CustomGroup/Get.ex.php
+++ b/civicrm/api/v3/examples/CustomGroup/Get.ex.php
@@ -16,7 +16,7 @@ function custom_group_get_example() {
   try {
     $result = civicrm_api3('CustomGroup', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomValue/Create.ex.php b/civicrm/api/v3/examples/CustomValue/Create.ex.php
index 4b2ca0b56fceff18eebabe37d91da799edaae2fb..930ddf9f925a73b547232883646a22fd50df177d 100644
--- a/civicrm/api/v3/examples/CustomValue/Create.ex.php
+++ b/civicrm/api/v3/examples/CustomValue/Create.ex.php
@@ -19,7 +19,7 @@ function custom_value_create_example() {
   try {
     $result = civicrm_api3('CustomValue', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomValue/FormatFieldName.ex.php b/civicrm/api/v3/examples/CustomValue/FormatFieldName.ex.php
index 9918a76d4daec6fb3792d369137b44b1aaf41176..e3533903801625a680baf5bd2bc212c5ca1ad82c 100644
--- a/civicrm/api/v3/examples/CustomValue/FormatFieldName.ex.php
+++ b/civicrm/api/v3/examples/CustomValue/FormatFieldName.ex.php
@@ -22,7 +22,7 @@ function custom_value_get_example() {
   try {
     $result = civicrm_api3('CustomValue', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/CustomValue/Get.ex.php b/civicrm/api/v3/examples/CustomValue/Get.ex.php
index 77fa73348d11bfe78ad5144a8931a8c891fb862f..b5eae03648cdde64d752c87eb6b602a32e0bf6b5 100644
--- a/civicrm/api/v3/examples/CustomValue/Get.ex.php
+++ b/civicrm/api/v3/examples/CustomValue/Get.ex.php
@@ -21,7 +21,7 @@ function custom_value_get_example() {
   try {
     $result = civicrm_api3('CustomValue', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Domain/Create.ex.php b/civicrm/api/v3/examples/Domain/Create.ex.php
index f4bbe211fcbff4c214bdc1863b639c82f49a7138..be9c1708af905a281b6243582dfe84a74e95344c 100644
--- a/civicrm/api/v3/examples/Domain/Create.ex.php
+++ b/civicrm/api/v3/examples/Domain/Create.ex.php
@@ -21,7 +21,7 @@ function domain_create_example() {
   try {
     $result = civicrm_api3('Domain', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Domain/Get.ex.php b/civicrm/api/v3/examples/Domain/Get.ex.php
index 0c8e4382dc4081f98c83fecd7558b6e96df5cf9e..54652a3bc4913452ff538a7470b1dfed5c5db103 100644
--- a/civicrm/api/v3/examples/Domain/Get.ex.php
+++ b/civicrm/api/v3/examples/Domain/Get.ex.php
@@ -18,7 +18,7 @@ function domain_get_example() {
   try {
     $result = civicrm_api3('Domain', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Email/Create.ex.php b/civicrm/api/v3/examples/Email/Create.ex.php
index 65c563a7e55a17bd95059321c56edacb25c79616..7b793b185fb62540b291e35f1d09ad0d106ad9f0 100644
--- a/civicrm/api/v3/examples/Email/Create.ex.php
+++ b/civicrm/api/v3/examples/Email/Create.ex.php
@@ -20,7 +20,7 @@ function email_create_example() {
   try {
     $result = civicrm_api3('Email', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Email/Delete.ex.php b/civicrm/api/v3/examples/Email/Delete.ex.php
index b2bb3c5ba5778019bb5b3370931518b3fc9fc933..a0152c884145a629874f03195de1e5c9bcaa50e8 100644
--- a/civicrm/api/v3/examples/Email/Delete.ex.php
+++ b/civicrm/api/v3/examples/Email/Delete.ex.php
@@ -18,7 +18,7 @@ function email_delete_example() {
   try {
     $result = civicrm_api3('Email', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Email/Replace.ex.php b/civicrm/api/v3/examples/Email/Replace.ex.php
index 075ed52e6f5b9b17763540d3b74777af485dc714..42a949cdb971cd6d516a620f164b8de2e415b3c4 100644
--- a/civicrm/api/v3/examples/Email/Replace.ex.php
+++ b/civicrm/api/v3/examples/Email/Replace.ex.php
@@ -45,7 +45,7 @@ function email_replace_example() {
   try {
     $result = civicrm_api3('Email', 'replace', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityBatch/Create.ex.php b/civicrm/api/v3/examples/EntityBatch/Create.ex.php
index 540e1ba5ba02c9cb875c16ee331ddf165ca3eedb..f0a3c130954c52f942e32131b6919fe838ee73ae 100644
--- a/civicrm/api/v3/examples/EntityBatch/Create.ex.php
+++ b/civicrm/api/v3/examples/EntityBatch/Create.ex.php
@@ -20,7 +20,7 @@ function entity_batch_create_example() {
   try {
     $result = civicrm_api3('EntityBatch', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityBatch/Delete.ex.php b/civicrm/api/v3/examples/EntityBatch/Delete.ex.php
index 1dac21e44b85a7c1eb56db5aedb4ac52922db5c3..d614b19fd4cb65e9242b63d5931d0492534d309d 100644
--- a/civicrm/api/v3/examples/EntityBatch/Delete.ex.php
+++ b/civicrm/api/v3/examples/EntityBatch/Delete.ex.php
@@ -18,7 +18,7 @@ function entity_batch_delete_example() {
   try {
     $result = civicrm_api3('EntityBatch', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityBatch/Get.ex.php b/civicrm/api/v3/examples/EntityBatch/Get.ex.php
index ce46614cce04e8fb92eaa3c59ad61305028eea05..0adac2b07c2bb561061fbb6342057d00f7eb3d16 100644
--- a/civicrm/api/v3/examples/EntityBatch/Get.ex.php
+++ b/civicrm/api/v3/examples/EntityBatch/Get.ex.php
@@ -20,7 +20,7 @@ function entity_batch_get_example() {
   try {
     $result = civicrm_api3('EntityBatch', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityTag/Create.ex.php b/civicrm/api/v3/examples/EntityTag/Create.ex.php
index 986ecfbfe3fc744dc0f5aa72009221efc237964d..18bb68026a3b12d2b8f7f70735fade78df21f716 100644
--- a/civicrm/api/v3/examples/EntityTag/Create.ex.php
+++ b/civicrm/api/v3/examples/EntityTag/Create.ex.php
@@ -19,7 +19,7 @@ function entity_tag_create_example() {
   try {
     $result = civicrm_api3('EntityTag', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityTag/Delete.ex.php b/civicrm/api/v3/examples/EntityTag/Delete.ex.php
index f2a4915a9f2132aee02cb3b9ee24e527e1754bba..f871a3da6551d50656d9992e8b11f650766c0cbe 100644
--- a/civicrm/api/v3/examples/EntityTag/Delete.ex.php
+++ b/civicrm/api/v3/examples/EntityTag/Delete.ex.php
@@ -19,7 +19,7 @@ function entity_tag_delete_example() {
   try {
     $result = civicrm_api3('EntityTag', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/EntityTag/Get.ex.php b/civicrm/api/v3/examples/EntityTag/Get.ex.php
index d47ccee808d3f4cbc308ea68e5da43ec4c8c36d9..6d139a45544bac7c1bbd7fd21183df9812643430 100644
--- a/civicrm/api/v3/examples/EntityTag/Get.ex.php
+++ b/civicrm/api/v3/examples/EntityTag/Get.ex.php
@@ -18,7 +18,7 @@ function entity_tag_get_example() {
   try {
     $result = civicrm_api3('EntityTag', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/ContactRefCustomField.ex.php b/civicrm/api/v3/examples/Event/ContactRefCustomField.ex.php
index 419ae61b835e9493f6896a2cf86ce9cc5637f9a5..d2a5d1db6c8c7104dd508769b57eb4b62fe3be10 100644
--- a/civicrm/api/v3/examples/Event/ContactRefCustomField.ex.php
+++ b/civicrm/api/v3/examples/Event/ContactRefCustomField.ex.php
@@ -21,7 +21,7 @@ function event_get_example() {
   try {
     $result = civicrm_api3('Event', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/Create.ex.php b/civicrm/api/v3/examples/Event/Create.ex.php
index 52c0858b003e52c2c5ee3f11b7388214ee3f9dac..b2bc9d0b11834bc4b4fa963584cf4d056906649c 100644
--- a/civicrm/api/v3/examples/Event/Create.ex.php
+++ b/civicrm/api/v3/examples/Event/Create.ex.php
@@ -32,7 +32,7 @@ function event_create_example() {
   try {
     $result = civicrm_api3('Event', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/Delete.ex.php b/civicrm/api/v3/examples/Event/Delete.ex.php
index e26639122639216f757ac42d936e955ba0f00f51..8e3f6cb209970ff2f031b8b5d3070cd14be04f1a 100644
--- a/civicrm/api/v3/examples/Event/Delete.ex.php
+++ b/civicrm/api/v3/examples/Event/Delete.ex.php
@@ -18,7 +18,7 @@ function event_delete_example() {
   try {
     $result = civicrm_api3('Event', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/Get.ex.php b/civicrm/api/v3/examples/Event/Get.ex.php
index bb24a0230250eb2c4b33f1d9b055cba221d6b3f6..921ab12aac2458243b0c641425945bc0adf393d4 100644
--- a/civicrm/api/v3/examples/Event/Get.ex.php
+++ b/civicrm/api/v3/examples/Event/Get.ex.php
@@ -19,7 +19,7 @@ function event_get_example() {
   try {
     $result = civicrm_api3('Event', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/IsCurrentOption.ex.php b/civicrm/api/v3/examples/Event/IsCurrentOption.ex.php
index c094ec7ff52d942b0120301fe79eedcab605d70b..0df7671851552a222bcae85ebff5882a582b51b8 100644
--- a/civicrm/api/v3/examples/Event/IsCurrentOption.ex.php
+++ b/civicrm/api/v3/examples/Event/IsCurrentOption.ex.php
@@ -20,7 +20,7 @@ function event_get_example() {
   try {
     $result = civicrm_api3('Event', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Event/IsFullOption.ex.php b/civicrm/api/v3/examples/Event/IsFullOption.ex.php
index 747a6bd30a8f7f2c42b47beb118c61e0aa3302b9..cf874bb64d7cb735e45219a42b6c1fd8364cac61 100644
--- a/civicrm/api/v3/examples/Event/IsFullOption.ex.php
+++ b/civicrm/api/v3/examples/Event/IsFullOption.ex.php
@@ -21,7 +21,7 @@ function event_getsingle_example() {
   try {
     $result = civicrm_api3('Event', 'getsingle', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Grant/Create.ex.php b/civicrm/api/v3/examples/Grant/Create.ex.php
index e48884fdad771430521063dbee011f9d9273e850..615ec933eb7facff8413cc44af9a811001111d2b 100644
--- a/civicrm/api/v3/examples/Grant/Create.ex.php
+++ b/civicrm/api/v3/examples/Grant/Create.ex.php
@@ -25,7 +25,7 @@ function grant_create_example() {
   try {
     $result = civicrm_api3('Grant', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Grant/Delete.ex.php b/civicrm/api/v3/examples/Grant/Delete.ex.php
index f214c55fbd78ed31ae205a220911b7e4713deec5..36a2200d40b1dc815913935f06535ab4ac08fefa 100644
--- a/civicrm/api/v3/examples/Grant/Delete.ex.php
+++ b/civicrm/api/v3/examples/Grant/Delete.ex.php
@@ -18,7 +18,7 @@ function grant_delete_example() {
   try {
     $result = civicrm_api3('Grant', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Grant/Get.ex.php b/civicrm/api/v3/examples/Grant/Get.ex.php
index 0516eec65fda063b7c67de64aa420f0dbc5fc4ce..3a95377fa9289df8e6e8d7cd51949e0968d46a36 100644
--- a/civicrm/api/v3/examples/Grant/Get.ex.php
+++ b/civicrm/api/v3/examples/Grant/Get.ex.php
@@ -18,7 +18,7 @@ function grant_get_example() {
   try {
     $result = civicrm_api3('Grant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Group/Get.ex.php b/civicrm/api/v3/examples/Group/Get.ex.php
index fb92e045ccd8d6d723e06b7ba316cefb652df28e..737e90b4e3c87e962d04c4a160b8e870d6e3076e 100644
--- a/civicrm/api/v3/examples/Group/Get.ex.php
+++ b/civicrm/api/v3/examples/Group/Get.ex.php
@@ -18,7 +18,7 @@ function group_get_example() {
   try {
     $result = civicrm_api3('Group', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Group/GetFields.ex.php b/civicrm/api/v3/examples/Group/GetFields.ex.php
index dcdb68a6080ecb8461e142573316310bf435fc9c..3a357d6903183f02d677da28a53a0b9589fa8153 100644
--- a/civicrm/api/v3/examples/Group/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Group/GetFields.ex.php
@@ -20,7 +20,7 @@ function group_getfields_example() {
   try {
     $result = civicrm_api3('Group', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupContact/Create.ex.php b/civicrm/api/v3/examples/GroupContact/Create.ex.php
index e60ffc8bd584e8d666341a3fe94798513ff43de3..ab4683ff29df1f1513a566cc05bcabe2e8ac2185 100644
--- a/civicrm/api/v3/examples/GroupContact/Create.ex.php
+++ b/civicrm/api/v3/examples/GroupContact/Create.ex.php
@@ -20,7 +20,7 @@ function group_contact_create_example() {
   try {
     $result = civicrm_api3('GroupContact', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupContact/Delete.ex.php b/civicrm/api/v3/examples/GroupContact/Delete.ex.php
index 590ea6f5151b1a3476db20b3c29567f065bfda28..4ae8dd70622396e7e339c9615adad08325ea8c24 100644
--- a/civicrm/api/v3/examples/GroupContact/Delete.ex.php
+++ b/civicrm/api/v3/examples/GroupContact/Delete.ex.php
@@ -19,7 +19,7 @@ function group_contact_delete_example() {
   try {
     $result = civicrm_api3('GroupContact', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupContact/Get.ex.php b/civicrm/api/v3/examples/GroupContact/Get.ex.php
index 823559f8d497cc1fb1708c654120021ba5fdb13f..3635d4c6922172cd1af23ed83cc5332d57cddf48 100644
--- a/civicrm/api/v3/examples/GroupContact/Get.ex.php
+++ b/civicrm/api/v3/examples/GroupContact/Get.ex.php
@@ -18,7 +18,7 @@ function group_contact_get_example() {
   try {
     $result = civicrm_api3('GroupContact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupContact/GetWithGroupID.ex.php b/civicrm/api/v3/examples/GroupContact/GetWithGroupID.ex.php
index 113a76de57af01c2f6971771f9be66697b71c5c9..7009d244b4e9dfcb5ea6dfca51bcad0542891d94 100644
--- a/civicrm/api/v3/examples/GroupContact/GetWithGroupID.ex.php
+++ b/civicrm/api/v3/examples/GroupContact/GetWithGroupID.ex.php
@@ -22,7 +22,7 @@ function group_contact_get_example() {
   try {
     $result = civicrm_api3('GroupContact', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupNesting/Create.ex.php b/civicrm/api/v3/examples/GroupNesting/Create.ex.php
index 2f2d7268a66ebfe93165a9cafe7ee9b0862dce41..40197d2b308281ef9e19598c905a7df3a2fc7401 100644
--- a/civicrm/api/v3/examples/GroupNesting/Create.ex.php
+++ b/civicrm/api/v3/examples/GroupNesting/Create.ex.php
@@ -19,7 +19,7 @@ function group_nesting_create_example() {
   try {
     $result = civicrm_api3('GroupNesting', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupNesting/Delete.ex.php b/civicrm/api/v3/examples/GroupNesting/Delete.ex.php
index 536ac38d64ef76c1eb251f8cf42e14c8781b6fe0..a99389bbb9ead830cbb2516f87213183627f59be 100644
--- a/civicrm/api/v3/examples/GroupNesting/Delete.ex.php
+++ b/civicrm/api/v3/examples/GroupNesting/Delete.ex.php
@@ -18,7 +18,7 @@ function group_nesting_delete_example() {
   try {
     $result = civicrm_api3('GroupNesting', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupNesting/Get.ex.php b/civicrm/api/v3/examples/GroupNesting/Get.ex.php
index 1625e8bb7ea3e27ba5daa9ce2a7eae9c48e49ec7..7f12e6123a52d110b0180df495fc4538e6c4d123 100644
--- a/civicrm/api/v3/examples/GroupNesting/Get.ex.php
+++ b/civicrm/api/v3/examples/GroupNesting/Get.ex.php
@@ -19,7 +19,7 @@ function group_nesting_get_example() {
   try {
     $result = civicrm_api3('GroupNesting', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupOrganization/Create.ex.php b/civicrm/api/v3/examples/GroupOrganization/Create.ex.php
index 63552d4da8cb89317131e02ab1b5a6f5a256c5f9..e27bc46e97adfdc62f734ef0cd01eac33b50fe08 100644
--- a/civicrm/api/v3/examples/GroupOrganization/Create.ex.php
+++ b/civicrm/api/v3/examples/GroupOrganization/Create.ex.php
@@ -19,7 +19,7 @@ function group_organization_create_example() {
   try {
     $result = civicrm_api3('GroupOrganization', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupOrganization/Delete.ex.php b/civicrm/api/v3/examples/GroupOrganization/Delete.ex.php
index e84acd361f8018933312cce87c070f1e07701346..3f8716302664f4c06ef053f52a211e2d13e90c1f 100644
--- a/civicrm/api/v3/examples/GroupOrganization/Delete.ex.php
+++ b/civicrm/api/v3/examples/GroupOrganization/Delete.ex.php
@@ -18,7 +18,7 @@ function group_organization_delete_example() {
   try {
     $result = civicrm_api3('GroupOrganization', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/GroupOrganization/Get.ex.php b/civicrm/api/v3/examples/GroupOrganization/Get.ex.php
index c0ef24fa35ec222851e49ef1204d8f5de3d1083c..c962c509149b51b4cbcc34357dd4b7a3c1fb2410 100644
--- a/civicrm/api/v3/examples/GroupOrganization/Get.ex.php
+++ b/civicrm/api/v3/examples/GroupOrganization/Get.ex.php
@@ -18,7 +18,7 @@ function group_organization_get_example() {
   try {
     $result = civicrm_api3('GroupOrganization', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Im/Create.ex.php b/civicrm/api/v3/examples/Im/Create.ex.php
index 03af0f6cae27c3e164e8f443a8c659bc89b48b93..2a47feb6289a112233ef645fada14f6eae145654 100644
--- a/civicrm/api/v3/examples/Im/Create.ex.php
+++ b/civicrm/api/v3/examples/Im/Create.ex.php
@@ -20,7 +20,7 @@ function im_create_example() {
   try {
     $result = civicrm_api3('Im', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Im/Delete.ex.php b/civicrm/api/v3/examples/Im/Delete.ex.php
index d2f5e2a4ca29abf46175760da0757392f7173cde..5094e1c253075f6e1ede5f8181a6977afbb2a8a8 100644
--- a/civicrm/api/v3/examples/Im/Delete.ex.php
+++ b/civicrm/api/v3/examples/Im/Delete.ex.php
@@ -18,7 +18,7 @@ function im_delete_example() {
   try {
     $result = civicrm_api3('Im', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Im/Get.ex.php b/civicrm/api/v3/examples/Im/Get.ex.php
index dd611a381830fbb6d357335f1a35ddfa84ad62fc..9da151891b971d22a9a96ecc6dae067d1402c33b 100644
--- a/civicrm/api/v3/examples/Im/Get.ex.php
+++ b/civicrm/api/v3/examples/Im/Get.ex.php
@@ -21,7 +21,7 @@ function im_get_example() {
   try {
     $result = civicrm_api3('Im', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Job/Clone.ex.php b/civicrm/api/v3/examples/Job/Clone.ex.php
index aad91cb682fd675097606038598642dfef90f1cc..5757ab43a490f336e610aaed4259692f39da510c 100644
--- a/civicrm/api/v3/examples/Job/Clone.ex.php
+++ b/civicrm/api/v3/examples/Job/Clone.ex.php
@@ -18,7 +18,7 @@ function job_clone_example() {
   try {
     $result = civicrm_api3('Job', 'clone', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Job/Create.ex.php b/civicrm/api/v3/examples/Job/Create.ex.php
index f022cce7d9b5882de7c6df9481933bf1d465aab4..605b9cc9ab2b63bbfc2043d03c6146f4cc5c29a8 100644
--- a/civicrm/api/v3/examples/Job/Create.ex.php
+++ b/civicrm/api/v3/examples/Job/Create.ex.php
@@ -25,7 +25,7 @@ function job_create_example() {
   try {
     $result = civicrm_api3('Job', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Job/Delete.ex.php b/civicrm/api/v3/examples/Job/Delete.ex.php
index 995e8654eb3cdce38fcfefdcd84d2e757cd66c2a..2f6dd94003e12b0a1d90bffcbf6fc8c6e6085637 100644
--- a/civicrm/api/v3/examples/Job/Delete.ex.php
+++ b/civicrm/api/v3/examples/Job/Delete.ex.php
@@ -18,7 +18,7 @@ function job_delete_example() {
   try {
     $result = civicrm_api3('Job', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LineItem/Create.ex.php b/civicrm/api/v3/examples/LineItem/Create.ex.php
index a3e8a2104419350b660ddc2f505a034250676e00..11eb298ce9434eeb13f52e1e221894a47fe8cb9c 100644
--- a/civicrm/api/v3/examples/LineItem/Create.ex.php
+++ b/civicrm/api/v3/examples/LineItem/Create.ex.php
@@ -24,7 +24,7 @@ function line_item_create_example() {
   try {
     $result = civicrm_api3('LineItem', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LineItem/Delete.ex.php b/civicrm/api/v3/examples/LineItem/Delete.ex.php
index 21b035602ee947f8bf52863e71d9e625db8731bb..c8cedafc79e6e2e1a010dddf5a7abf0af35d0697 100644
--- a/civicrm/api/v3/examples/LineItem/Delete.ex.php
+++ b/civicrm/api/v3/examples/LineItem/Delete.ex.php
@@ -18,7 +18,7 @@ function line_item_delete_example() {
   try {
     $result = civicrm_api3('LineItem', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LineItem/Get.ex.php b/civicrm/api/v3/examples/LineItem/Get.ex.php
index 1feccf91807a19cf9321cea79837460b4b663f20..6fcebcea171a6b371064a3b0eb881edfa661c1e2 100644
--- a/civicrm/api/v3/examples/LineItem/Get.ex.php
+++ b/civicrm/api/v3/examples/LineItem/Get.ex.php
@@ -18,7 +18,7 @@ function line_item_get_example() {
   try {
     $result = civicrm_api3('LineItem', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LocBlock/Create.ex.php b/civicrm/api/v3/examples/LocBlock/Create.ex.php
index 5d3ef0aa20c507ab072b242ffcc6efe310fbf5a0..b30a85cdcdad94b171e1c089f9ec1c8984a547c2 100644
--- a/civicrm/api/v3/examples/LocBlock/Create.ex.php
+++ b/civicrm/api/v3/examples/LocBlock/Create.ex.php
@@ -22,7 +22,7 @@ function loc_block_create_example() {
   try {
     $result = civicrm_api3('LocBlock', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LocBlock/CreateEntities.ex.php b/civicrm/api/v3/examples/LocBlock/CreateEntities.ex.php
index 17ceb410e3d882b10456ff95bde4a6440f49f4c3..9b2d00d2b65657e60884a7c11ff6c24770f9b5ae 100644
--- a/civicrm/api/v3/examples/LocBlock/CreateEntities.ex.php
+++ b/civicrm/api/v3/examples/LocBlock/CreateEntities.ex.php
@@ -35,7 +35,7 @@ function loc_block_create_example() {
   try {
     $result = civicrm_api3('LocBlock', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/LocBlock/Get.ex.php b/civicrm/api/v3/examples/LocBlock/Get.ex.php
index 338cc385f4080ecb5333dec948ba80266f48c928..67e14158aaecc0fd41b476b7afe32dd84046bdad 100644
--- a/civicrm/api/v3/examples/LocBlock/Get.ex.php
+++ b/civicrm/api/v3/examples/LocBlock/Get.ex.php
@@ -21,7 +21,7 @@ function loc_block_get_example() {
   try {
     $result = civicrm_api3('LocBlock', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Logging/Get.ex.php b/civicrm/api/v3/examples/Logging/Get.ex.php
index 28484e4b583c9d06b54fc07125d5763b5b25408d..f5431e58cc5a5ffaa2b4bd60dc9608174d1523cd 100644
--- a/civicrm/api/v3/examples/Logging/Get.ex.php
+++ b/civicrm/api/v3/examples/Logging/Get.ex.php
@@ -18,7 +18,7 @@ function logging_get_example() {
   try {
     $result = civicrm_api3('Logging', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Logging/Revert.ex.php b/civicrm/api/v3/examples/Logging/Revert.ex.php
index 59c11fff938e06e30f425ddcc28473e869589eb1..b7e1100024c95ec63ab495d884044e9479e4ad90 100644
--- a/civicrm/api/v3/examples/Logging/Revert.ex.php
+++ b/civicrm/api/v3/examples/Logging/Revert.ex.php
@@ -19,7 +19,7 @@ function logging_revert_example() {
   try {
     $result = civicrm_api3('Logging', 'revert', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailSettings/ChainedGetDelete.ex.php b/civicrm/api/v3/examples/MailSettings/ChainedGetDelete.ex.php
index 8dd2b35d5a2a18edb74f09ee27481720b56ca9fe..df398954ea1cf30eaaa5e78fc15961604718c6dc 100644
--- a/civicrm/api/v3/examples/MailSettings/ChainedGetDelete.ex.php
+++ b/civicrm/api/v3/examples/MailSettings/ChainedGetDelete.ex.php
@@ -21,7 +21,7 @@ function mail_settings_get_example() {
   try {
     $result = civicrm_api3('MailSettings', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailSettings/Create.ex.php b/civicrm/api/v3/examples/MailSettings/Create.ex.php
index 12357ea680f00a890a25c4e67cd121f6d1f2d940..a30d8c86b00103d561162e01bca050d27dba507e 100644
--- a/civicrm/api/v3/examples/MailSettings/Create.ex.php
+++ b/civicrm/api/v3/examples/MailSettings/Create.ex.php
@@ -25,7 +25,7 @@ function mail_settings_create_example() {
   try {
     $result = civicrm_api3('MailSettings', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailSettings/Delete.ex.php b/civicrm/api/v3/examples/MailSettings/Delete.ex.php
index 87945c6be8a568945d5455af3629888abf626732..e2dc25648d8172c5a33cdabe0a3c6689fa522234 100644
--- a/civicrm/api/v3/examples/MailSettings/Delete.ex.php
+++ b/civicrm/api/v3/examples/MailSettings/Delete.ex.php
@@ -18,7 +18,7 @@ function mail_settings_delete_example() {
   try {
     $result = civicrm_api3('MailSettings', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailSettings/Get.ex.php b/civicrm/api/v3/examples/MailSettings/Get.ex.php
index b007e786e2695d811e0d3a046e8df1e36434b3e0..14ff9fe1dff7f740c30ac12c2eb9769c6d37a1ce 100644
--- a/civicrm/api/v3/examples/MailSettings/Get.ex.php
+++ b/civicrm/api/v3/examples/MailSettings/Get.ex.php
@@ -25,7 +25,7 @@ function mail_settings_get_example() {
   try {
     $result = civicrm_api3('MailSettings', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailSettings/GetOptions.ex.php b/civicrm/api/v3/examples/MailSettings/GetOptions.ex.php
index 95ed1c3c3d030fbfd913d378902919bd6bdecaac..75d359bae090ac7ecef63d641a1233b68bc513c7 100644
--- a/civicrm/api/v3/examples/MailSettings/GetOptions.ex.php
+++ b/civicrm/api/v3/examples/MailSettings/GetOptions.ex.php
@@ -18,7 +18,7 @@ function mail_settings_getoptions_example() {
   try {
     $result = civicrm_api3('MailSettings', 'getoptions', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mailing/Clone.ex.php b/civicrm/api/v3/examples/Mailing/Clone.ex.php
index fd9ebc16e66338a28e2ae1ae4ff6dba371efa161..b06c69136a403ea67b04612e321b6e2cc39ac590 100644
--- a/civicrm/api/v3/examples/Mailing/Clone.ex.php
+++ b/civicrm/api/v3/examples/Mailing/Clone.ex.php
@@ -18,7 +18,7 @@ function mailing_clone_example() {
   try {
     $result = civicrm_api3('Mailing', 'clone', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mailing/Create.ex.php b/civicrm/api/v3/examples/Mailing/Create.ex.php
index b02fd78d144cd89205bb27f18c73c15420c41d65..4ecddd86455a35fbd1745325877765d6ac827656 100644
--- a/civicrm/api/v3/examples/Mailing/Create.ex.php
+++ b/civicrm/api/v3/examples/Mailing/Create.ex.php
@@ -50,7 +50,7 @@ https://civicrm.org
   try {
     $result = civicrm_api3('Mailing', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mailing/Delete.ex.php b/civicrm/api/v3/examples/Mailing/Delete.ex.php
index 9e3f5abaf9d342d7511fa82aafe50d171c6f1a94..511eff7e1b035e6838b09a609410e6929af3af90 100644
--- a/civicrm/api/v3/examples/Mailing/Delete.ex.php
+++ b/civicrm/api/v3/examples/Mailing/Delete.ex.php
@@ -18,7 +18,7 @@ function mailing_delete_example() {
   try {
     $result = civicrm_api3('Mailing', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mailing/GetTokens.ex.php b/civicrm/api/v3/examples/Mailing/GetTokens.ex.php
index e14c23409be0b5341024cbb083411442d3733d8f..5b39bb7dd5ea45235bb549feb26ccad981de170e 100644
--- a/civicrm/api/v3/examples/Mailing/GetTokens.ex.php
+++ b/civicrm/api/v3/examples/Mailing/GetTokens.ex.php
@@ -24,7 +24,7 @@ function mailing_gettokens_example() {
   try {
     $result = civicrm_api3('Mailing', 'gettokens', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mailing/Submit.ex.php b/civicrm/api/v3/examples/Mailing/Submit.ex.php
index 067a0ebf236a4d00fa20ce71d3391c64df67f80a..b2bf20e4d91d28431c02e8eb6c0d94e9a714877e 100644
--- a/civicrm/api/v3/examples/Mailing/Submit.ex.php
+++ b/civicrm/api/v3/examples/Mailing/Submit.ex.php
@@ -20,7 +20,7 @@ function mailing_submit_example() {
   try {
     $result = civicrm_api3('Mailing', 'submit', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailingAB/Create.ex.php b/civicrm/api/v3/examples/MailingAB/Create.ex.php
index 8064520b84ce78786d5654c54dbb8fe8b51b898d..6a287beb8def430b38e3f4028c9967b1eaf3062b 100644
--- a/civicrm/api/v3/examples/MailingAB/Create.ex.php
+++ b/civicrm/api/v3/examples/MailingAB/Create.ex.php
@@ -24,7 +24,7 @@ function mailing_a_b_create_example() {
   try {
     $result = civicrm_api3('MailingAB', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailingEventSubscribe/Create.ex.php b/civicrm/api/v3/examples/MailingEventSubscribe/Create.ex.php
index c466adee7b2470d7111c7e9e96ed94734d72e079..9059f57df929b668a74410aee094ced1461e4b42 100644
--- a/civicrm/api/v3/examples/MailingEventSubscribe/Create.ex.php
+++ b/civicrm/api/v3/examples/MailingEventSubscribe/Create.ex.php
@@ -22,7 +22,7 @@ function mailing_event_subscribe_create_example() {
   try {
     $result = civicrm_api3('MailingEventSubscribe', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MailingGroup/Subscribe.ex.php b/civicrm/api/v3/examples/MailingGroup/Subscribe.ex.php
index bfe0799b376bc5e3083b3aece9f1e82975e55470..df4f96729b8be865ad44aa85cf5f19b443be2ee0 100644
--- a/civicrm/api/v3/examples/MailingGroup/Subscribe.ex.php
+++ b/civicrm/api/v3/examples/MailingGroup/Subscribe.ex.php
@@ -22,7 +22,7 @@ function mailing_group_subscribe_example() {
   try {
     $result = civicrm_api3('mailing_group', 'subscribe', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mapping/Create.ex.php b/civicrm/api/v3/examples/Mapping/Create.ex.php
index 630db22863f3ba2a88babaec546058c512f3c14f..c3ebff0aee8519365f5b13194100ac8394161b03 100644
--- a/civicrm/api/v3/examples/Mapping/Create.ex.php
+++ b/civicrm/api/v3/examples/Mapping/Create.ex.php
@@ -20,7 +20,7 @@ function mapping_create_example() {
   try {
     $result = civicrm_api3('Mapping', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mapping/Delete.ex.php b/civicrm/api/v3/examples/Mapping/Delete.ex.php
index 441b55c838e5802d243d957db00dd8549c2c77d3..c70d4fd4d4e542c7fb85c59b35e0c0ec3f9c7220 100644
--- a/civicrm/api/v3/examples/Mapping/Delete.ex.php
+++ b/civicrm/api/v3/examples/Mapping/Delete.ex.php
@@ -18,7 +18,7 @@ function mapping_delete_example() {
   try {
     $result = civicrm_api3('Mapping', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Mapping/Get.ex.php b/civicrm/api/v3/examples/Mapping/Get.ex.php
index 25990981791259fba3d0e8dfe2bf552b1978b602..1c3c101dd89ee27c4422f5641fd58a2391460b5b 100644
--- a/civicrm/api/v3/examples/Mapping/Get.ex.php
+++ b/civicrm/api/v3/examples/Mapping/Get.ex.php
@@ -20,7 +20,7 @@ function mapping_get_example() {
   try {
     $result = civicrm_api3('Mapping', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MappingField/Create.ex.php b/civicrm/api/v3/examples/MappingField/Create.ex.php
index 0ba7a34fa79a0a04ed9ea3474daede8cecbed87c..27a3a7a8f2c698cfbb3d27b80b52afd807bcab0f 100644
--- a/civicrm/api/v3/examples/MappingField/Create.ex.php
+++ b/civicrm/api/v3/examples/MappingField/Create.ex.php
@@ -22,7 +22,7 @@ function mapping_field_create_example() {
   try {
     $result = civicrm_api3('MappingField', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MappingField/Delete.ex.php b/civicrm/api/v3/examples/MappingField/Delete.ex.php
index 3faab7c636a9f98515c4a3278b7b1df38217e7ba..c9f6b23566a75d1bacc6e185ff7a5764206dd2fc 100644
--- a/civicrm/api/v3/examples/MappingField/Delete.ex.php
+++ b/civicrm/api/v3/examples/MappingField/Delete.ex.php
@@ -18,7 +18,7 @@ function mapping_field_delete_example() {
   try {
     $result = civicrm_api3('MappingField', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MappingField/Get.ex.php b/civicrm/api/v3/examples/MappingField/Get.ex.php
index ee39aa1edcb679ab93df58da6778e2ad2bfe0c94..3e8403e6be903bbee50420d58f57c19f0599e13b 100644
--- a/civicrm/api/v3/examples/MappingField/Get.ex.php
+++ b/civicrm/api/v3/examples/MappingField/Get.ex.php
@@ -22,7 +22,7 @@ function mapping_field_get_example() {
   try {
     $result = civicrm_api3('MappingField', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/Create.ex.php b/civicrm/api/v3/examples/Membership/Create.ex.php
index ad4357b6c91216170e08ae2203a2323bfbe68c61..fed7a9162779a081b4f7e28942ab823a7c772536 100644
--- a/civicrm/api/v3/examples/Membership/Create.ex.php
+++ b/civicrm/api/v3/examples/Membership/Create.ex.php
@@ -25,7 +25,7 @@ function membership_create_example() {
   try {
     $result = civicrm_api3('Membership', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/CreateWithCustomData.ex.php b/civicrm/api/v3/examples/Membership/CreateWithCustomData.ex.php
index c37523e8883df54d117505d0711f7259f26dc9da..4f8ae718da46ac4a2a5b577e937fea5f8ca6affd 100644
--- a/civicrm/api/v3/examples/Membership/CreateWithCustomData.ex.php
+++ b/civicrm/api/v3/examples/Membership/CreateWithCustomData.ex.php
@@ -26,7 +26,7 @@ function membership_create_example() {
   try {
     $result = civicrm_api3('Membership', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/Delete.ex.php b/civicrm/api/v3/examples/Membership/Delete.ex.php
index d11b0d07938f77077c4367ff386262b713d47b99..ee913f54d8578705a98690a198478a0810232ac4 100644
--- a/civicrm/api/v3/examples/Membership/Delete.ex.php
+++ b/civicrm/api/v3/examples/Membership/Delete.ex.php
@@ -19,7 +19,7 @@ function membership_delete_example() {
   try {
     $result = civicrm_api3('Membership', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/FilterIsCurrent.ex.php b/civicrm/api/v3/examples/Membership/FilterIsCurrent.ex.php
index f0efeea0006e23d4f9b05efcf80478b6441bbddb..f8434450f7ce14478da089129638ed07aee95796 100644
--- a/civicrm/api/v3/examples/Membership/FilterIsCurrent.ex.php
+++ b/civicrm/api/v3/examples/Membership/FilterIsCurrent.ex.php
@@ -23,7 +23,7 @@ function membership_get_example() {
   try {
     $result = civicrm_api3('Membership', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/Get.ex.php b/civicrm/api/v3/examples/Membership/Get.ex.php
index 98d76362c4bf24d7d4d1b56a20470e24bbb1c059..bba4a3150b3a0ae742ba1a1023bb91b39d5df349 100644
--- a/civicrm/api/v3/examples/Membership/Get.ex.php
+++ b/civicrm/api/v3/examples/Membership/Get.ex.php
@@ -19,7 +19,7 @@ function membership_get_example() {
   try {
     $result = civicrm_api3('Membership', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/SearchWithCustomData.ex.php b/civicrm/api/v3/examples/Membership/SearchWithCustomData.ex.php
index 900e2b4f388ca20b0f66c0ca98975002ce2d641d..4541fb4909b11a6657af055aec64760f94176e98 100644
--- a/civicrm/api/v3/examples/Membership/SearchWithCustomData.ex.php
+++ b/civicrm/api/v3/examples/Membership/SearchWithCustomData.ex.php
@@ -25,7 +25,7 @@ function membership_create_example() {
   try {
     $result = civicrm_api3('Membership', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Membership/UpdateCustomData.ex.php b/civicrm/api/v3/examples/Membership/UpdateCustomData.ex.php
index f21a17757df900c78b8ffa0735b2741ee125cdc7..6552c3487d65a395ffa24d31d9492a23a71dc309 100644
--- a/civicrm/api/v3/examples/Membership/UpdateCustomData.ex.php
+++ b/civicrm/api/v3/examples/Membership/UpdateCustomData.ex.php
@@ -26,7 +26,7 @@ function membership_create_example() {
   try {
     $result = civicrm_api3('Membership', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipPayment/Create.ex.php b/civicrm/api/v3/examples/MembershipPayment/Create.ex.php
index 73d21e41b471e487112d4ed7a11b7cea7cb45864..d48c64db57762d78c49df581230fd22d415b01be 100644
--- a/civicrm/api/v3/examples/MembershipPayment/Create.ex.php
+++ b/civicrm/api/v3/examples/MembershipPayment/Create.ex.php
@@ -19,7 +19,7 @@ function membership_payment_create_example() {
   try {
     $result = civicrm_api3('MembershipPayment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipPayment/Get.ex.php b/civicrm/api/v3/examples/MembershipPayment/Get.ex.php
index 0f0043af14e5c239d5c3eee618e6bc6568dadcef..fbe5c2aee4f21062bca4328aa5fae970b6a502eb 100644
--- a/civicrm/api/v3/examples/MembershipPayment/Get.ex.php
+++ b/civicrm/api/v3/examples/MembershipPayment/Get.ex.php
@@ -19,7 +19,7 @@ function membership_payment_get_example() {
   try {
     $result = civicrm_api3('MembershipPayment', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipStatus/Create.ex.php b/civicrm/api/v3/examples/MembershipStatus/Create.ex.php
index fa9510a99a7295772e72becdfc6a1956f4998c8f..0ba7d7347ff0d77a2ff0e6bb950f3d205b2fdf9e 100644
--- a/civicrm/api/v3/examples/MembershipStatus/Create.ex.php
+++ b/civicrm/api/v3/examples/MembershipStatus/Create.ex.php
@@ -18,7 +18,7 @@ function membership_status_create_example() {
   try {
     $result = civicrm_api3('MembershipStatus', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipStatus/Get.ex.php b/civicrm/api/v3/examples/MembershipStatus/Get.ex.php
index 6039ecb36750d4805de4f395eaf1be294ee1c62a..095991660f5c5213f81c650c90ba315f72329722 100644
--- a/civicrm/api/v3/examples/MembershipStatus/Get.ex.php
+++ b/civicrm/api/v3/examples/MembershipStatus/Get.ex.php
@@ -18,7 +18,7 @@ function membership_status_get_example() {
   try {
     $result = civicrm_api3('MembershipStatus', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipType/Create.ex.php b/civicrm/api/v3/examples/MembershipType/Create.ex.php
index 3939701e8fd588372c084ab86a00ff8b19df92e6..93711c6412f28d6c0383a4b92e8d3b9bb7d05acc 100644
--- a/civicrm/api/v3/examples/MembershipType/Create.ex.php
+++ b/civicrm/api/v3/examples/MembershipType/Create.ex.php
@@ -27,7 +27,7 @@ function membership_type_create_example() {
   try {
     $result = civicrm_api3('MembershipType', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipType/Delete.ex.php b/civicrm/api/v3/examples/MembershipType/Delete.ex.php
index e64a2705b5092c4e858a38250f7ce518373233a9..67aff9ba1b4d33027d4fa8569671a9a06e3c7b36 100644
--- a/civicrm/api/v3/examples/MembershipType/Delete.ex.php
+++ b/civicrm/api/v3/examples/MembershipType/Delete.ex.php
@@ -18,7 +18,7 @@ function membership_type_delete_example() {
   try {
     $result = civicrm_api3('MembershipType', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MembershipType/Get.ex.php b/civicrm/api/v3/examples/MembershipType/Get.ex.php
index 2c403d858ad608d346bc22377e2e8ac276382d69..78bc4373616e2fedf7c5a0bd05c6edb2bcbe04c5 100644
--- a/civicrm/api/v3/examples/MembershipType/Get.ex.php
+++ b/civicrm/api/v3/examples/MembershipType/Get.ex.php
@@ -18,7 +18,7 @@ function membership_type_get_example() {
   try {
     $result = civicrm_api3('MembershipType', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MessageTemplate/Create.ex.php b/civicrm/api/v3/examples/MessageTemplate/Create.ex.php
index 72102eda2ed5ec18c0988fdce2ad52b21550bdfa..386818f9cd33e6762f40ab9030a304bd31a5e3fb 100644
--- a/civicrm/api/v3/examples/MessageTemplate/Create.ex.php
+++ b/civicrm/api/v3/examples/MessageTemplate/Create.ex.php
@@ -24,7 +24,7 @@ function message_template_create_example() {
   try {
     $result = civicrm_api3('MessageTemplate', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MessageTemplate/Delete.ex.php b/civicrm/api/v3/examples/MessageTemplate/Delete.ex.php
index 99192c78747c2f6fc7c6ec6fe3d84c3f196d9e50..4d3a118c9978e2d4512d31826846f6a7e47654c2 100644
--- a/civicrm/api/v3/examples/MessageTemplate/Delete.ex.php
+++ b/civicrm/api/v3/examples/MessageTemplate/Delete.ex.php
@@ -18,7 +18,7 @@ function message_template_delete_example() {
   try {
     $result = civicrm_api3('MessageTemplate', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/MessageTemplate/Get.ex.php b/civicrm/api/v3/examples/MessageTemplate/Get.ex.php
index 6763b823e2a3e2cd57570ce8e7cad05eeacc87d0..3edf3985b42d3fd8182d10c4045bb13fb3d0c43b 100644
--- a/civicrm/api/v3/examples/MessageTemplate/Get.ex.php
+++ b/civicrm/api/v3/examples/MessageTemplate/Get.ex.php
@@ -24,7 +24,7 @@ function message_template_get_example() {
   try {
     $result = civicrm_api3('MessageTemplate', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Note/Create.ex.php b/civicrm/api/v3/examples/Note/Create.ex.php
index d56eb91842f1f5d8d6c1b647930588d73837ded1..71fb2729a884de9087635ee6c5e30958240e3de2 100644
--- a/civicrm/api/v3/examples/Note/Create.ex.php
+++ b/civicrm/api/v3/examples/Note/Create.ex.php
@@ -25,7 +25,7 @@ function note_create_example() {
   try {
     $result = civicrm_api3('Note', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Note/Delete.ex.php b/civicrm/api/v3/examples/Note/Delete.ex.php
index 808d1eb5bca6cb195de2ed2c4c121806b86ebb64..370c49a03645e7274117b4f9ce4b5cf67a8de829 100644
--- a/civicrm/api/v3/examples/Note/Delete.ex.php
+++ b/civicrm/api/v3/examples/Note/Delete.ex.php
@@ -18,7 +18,7 @@ function note_delete_example() {
   try {
     $result = civicrm_api3('Note', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Note/Get.ex.php b/civicrm/api/v3/examples/Note/Get.ex.php
index 487285a99220775d221712713754f2f203999ee2..c62583b45a10fd29e511eaf0aaed82e648b85fba 100644
--- a/civicrm/api/v3/examples/Note/Get.ex.php
+++ b/civicrm/api/v3/examples/Note/Get.ex.php
@@ -19,7 +19,7 @@ function note_get_example() {
   try {
     $result = civicrm_api3('Note', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OpenID/Create.ex.php b/civicrm/api/v3/examples/OpenID/Create.ex.php
index 578297d5cdaed1251fae4cbf84ccc6b8f70f1100..41d665c8bab5d964a78148fcc4a9a5ebad75382e 100644
--- a/civicrm/api/v3/examples/OpenID/Create.ex.php
+++ b/civicrm/api/v3/examples/OpenID/Create.ex.php
@@ -20,7 +20,7 @@ function open_i_d_create_example() {
   try {
     $result = civicrm_api3('OpenID', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OpenID/Delete.ex.php b/civicrm/api/v3/examples/OpenID/Delete.ex.php
index b5665d682080f9717829c32bd54f5a16fadd49a2..1e906d9fbff6b41f21ae87cb3408496504a2fed7 100644
--- a/civicrm/api/v3/examples/OpenID/Delete.ex.php
+++ b/civicrm/api/v3/examples/OpenID/Delete.ex.php
@@ -18,7 +18,7 @@ function open_i_d_delete_example() {
   try {
     $result = civicrm_api3('OpenID', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OpenID/Get.ex.php b/civicrm/api/v3/examples/OpenID/Get.ex.php
index e820524707f1848286d7f5c7e6d6790e04f652e9..1f117d1dd0502424e175bd4919a79077c2ac43d3 100644
--- a/civicrm/api/v3/examples/OpenID/Get.ex.php
+++ b/civicrm/api/v3/examples/OpenID/Get.ex.php
@@ -21,7 +21,7 @@ function open_i_d_get_example() {
   try {
     $result = civicrm_api3('OpenID', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OptionGroup/Create.ex.php b/civicrm/api/v3/examples/OptionGroup/Create.ex.php
index 54a7c59a94bcc1897202d1b50cc22e5847edd3a6..1f23a4dc8e7d7dc155303b97c7e357e43231391e 100644
--- a/civicrm/api/v3/examples/OptionGroup/Create.ex.php
+++ b/civicrm/api/v3/examples/OptionGroup/Create.ex.php
@@ -28,7 +28,7 @@ function option_group_create_example() {
   try {
     $result = civicrm_api3('OptionGroup', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OptionGroup/Delete.ex.php b/civicrm/api/v3/examples/OptionGroup/Delete.ex.php
index a80ceafe842e91a99f0994e410fc24302769dd85..7b1e6acedd1bd1d487ffa5dc5c0d54de0ecaa96a 100644
--- a/civicrm/api/v3/examples/OptionGroup/Delete.ex.php
+++ b/civicrm/api/v3/examples/OptionGroup/Delete.ex.php
@@ -18,7 +18,7 @@ function option_group_delete_example() {
   try {
     $result = civicrm_api3('OptionGroup', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OptionGroup/Get.ex.php b/civicrm/api/v3/examples/OptionGroup/Get.ex.php
index 3cce49a7340a8fc059f7a72f1dbadbefc0513f70..570c36ab2ab09490b246f47b2105bc785386700a 100644
--- a/civicrm/api/v3/examples/OptionGroup/Get.ex.php
+++ b/civicrm/api/v3/examples/OptionGroup/Get.ex.php
@@ -18,7 +18,7 @@ function option_group_get_example() {
   try {
     $result = civicrm_api3('OptionGroup', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OptionValue/Get.ex.php b/civicrm/api/v3/examples/OptionValue/Get.ex.php
index 99ead82657b9f4b17d29bd36b75a4abbaebc2703..a69c81178ee75a884b5bb11a99d1779feb85c36b 100644
--- a/civicrm/api/v3/examples/OptionValue/Get.ex.php
+++ b/civicrm/api/v3/examples/OptionValue/Get.ex.php
@@ -18,7 +18,7 @@ function option_value_get_example() {
   try {
     $result = civicrm_api3('OptionValue', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/OptionValue/SortOption.ex.php b/civicrm/api/v3/examples/OptionValue/SortOption.ex.php
index 6dbad4c905d8b1588e327ef0a0f0933189c91d05..c68a2e3fd0ddc41c6419f24f38f14720c508e46d 100644
--- a/civicrm/api/v3/examples/OptionValue/SortOption.ex.php
+++ b/civicrm/api/v3/examples/OptionValue/SortOption.ex.php
@@ -24,7 +24,7 @@ function option_value_getsingle_example() {
   try {
     $result = civicrm_api3('OptionValue', 'getsingle', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Order/Cancel.ex.php b/civicrm/api/v3/examples/Order/Cancel.ex.php
index fa2a1f7ffea9c672464aad8a585a236d01ed3c76..2ae843024d613b76257bc3e5d2466210afaf9ceb 100644
--- a/civicrm/api/v3/examples/Order/Cancel.ex.php
+++ b/civicrm/api/v3/examples/Order/Cancel.ex.php
@@ -18,7 +18,7 @@ function order_cancel_example() {
   try {
     $result = civicrm_api3('Order', 'cancel', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Order/Create.ex.php b/civicrm/api/v3/examples/Order/Create.ex.php
index 946df2862c04f3e068ef624234fdbe8be7fcf8c1..f1ecc96b39f7418a444ca46446b63530eadc1ed7 100644
--- a/civicrm/api/v3/examples/Order/Create.ex.php
+++ b/civicrm/api/v3/examples/Order/Create.ex.php
@@ -48,7 +48,7 @@ function order_create_example() {
   try {
     $result = civicrm_api3('Order', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Order/CreateOrderParticipant.ex.php b/civicrm/api/v3/examples/Order/CreateOrderParticipant.ex.php
index 0eab7fdce978345f3d096f28be43e86e3ba49d90..310df9736c955e4265accda931f65a44f8e6aa01 100644
--- a/civicrm/api/v3/examples/Order/CreateOrderParticipant.ex.php
+++ b/civicrm/api/v3/examples/Order/CreateOrderParticipant.ex.php
@@ -58,7 +58,7 @@ function order_create_example() {
   try {
     $result = civicrm_api3('Order', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Order/Delete.ex.php b/civicrm/api/v3/examples/Order/Delete.ex.php
index 54828779ead3ecd291bbd9b9968beb93e5799cb9..756db3d7227a2a68f2a43b8b6f40a9f628e3738f 100644
--- a/civicrm/api/v3/examples/Order/Delete.ex.php
+++ b/civicrm/api/v3/examples/Order/Delete.ex.php
@@ -18,7 +18,7 @@ function order_delete_example() {
   try {
     $result = civicrm_api3('Order', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Order/Get.ex.php b/civicrm/api/v3/examples/Order/Get.ex.php
index ba6353586feec625c95c48f4fd939e32170d176b..abbca0d6b2999cac29569f328f60ab6431f24c1c 100644
--- a/civicrm/api/v3/examples/Order/Get.ex.php
+++ b/civicrm/api/v3/examples/Order/Get.ex.php
@@ -18,7 +18,7 @@ function order_get_example() {
   try {
     $result = civicrm_api3('Order', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Participant/Create.ex.php b/civicrm/api/v3/examples/Participant/Create.ex.php
index 27005da491932d25c6068ab0dc98eb040931cb19..16a7251ba6689ee5a36614347720b7c060be1751 100644
--- a/civicrm/api/v3/examples/Participant/Create.ex.php
+++ b/civicrm/api/v3/examples/Participant/Create.ex.php
@@ -24,7 +24,7 @@ function participant_create_example() {
   try {
     $result = civicrm_api3('Participant', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Participant/Get.ex.php b/civicrm/api/v3/examples/Participant/Get.ex.php
index 0d8c637151bd2776d1ef74c7e3cbaea5d5a4cb03..035406a6d01e9cfa3cdd2c9523ba631615b9449c 100644
--- a/civicrm/api/v3/examples/Participant/Get.ex.php
+++ b/civicrm/api/v3/examples/Participant/Get.ex.php
@@ -18,7 +18,7 @@ function participant_get_example() {
   try {
     $result = civicrm_api3('Participant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Participant/NestedDelete.ex.php b/civicrm/api/v3/examples/Participant/NestedDelete.ex.php
index cf785d31e0de108f3264c55a0430d159b5f3c622..bf494615488faa5f8d2d86f040358f891e98b0ad 100644
--- a/civicrm/api/v3/examples/Participant/NestedDelete.ex.php
+++ b/civicrm/api/v3/examples/Participant/NestedDelete.ex.php
@@ -21,7 +21,7 @@ function participant_get_example() {
   try {
     $result = civicrm_api3('Participant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Participant/NestedEventGet.ex.php b/civicrm/api/v3/examples/Participant/NestedEventGet.ex.php
index 6862b98c287744b1e3b71ff1f342692267ac05b7..921653f471f30398781c9bcaf9635da08bc8b2f9 100644
--- a/civicrm/api/v3/examples/Participant/NestedEventGet.ex.php
+++ b/civicrm/api/v3/examples/Participant/NestedEventGet.ex.php
@@ -21,7 +21,7 @@ function participant_get_example() {
   try {
     $result = civicrm_api3('Participant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantPayment/Create.ex.php b/civicrm/api/v3/examples/ParticipantPayment/Create.ex.php
index e00d13fcdee99883892ccde6e75a4b3dac378a27..e94e5914c30e2aab275c2603eb1e6ef9d565a8ce 100644
--- a/civicrm/api/v3/examples/ParticipantPayment/Create.ex.php
+++ b/civicrm/api/v3/examples/ParticipantPayment/Create.ex.php
@@ -19,7 +19,7 @@ function participant_payment_create_example() {
   try {
     $result = civicrm_api3('ParticipantPayment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantPayment/Delete.ex.php b/civicrm/api/v3/examples/ParticipantPayment/Delete.ex.php
index ba9ac3e66520cf29ccc468e8bc6047d3da5874f3..0068ea6d24c47eb9f80b9940c3f48d97780ba194 100644
--- a/civicrm/api/v3/examples/ParticipantPayment/Delete.ex.php
+++ b/civicrm/api/v3/examples/ParticipantPayment/Delete.ex.php
@@ -18,7 +18,7 @@ function participant_payment_delete_example() {
   try {
     $result = civicrm_api3('ParticipantPayment', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantPayment/Get.ex.php b/civicrm/api/v3/examples/ParticipantPayment/Get.ex.php
index aeba37e14326339abce1aef09b27d889e7714a95..52c297b5abc915e6e5d0d5fd31628e99fd93ba39 100644
--- a/civicrm/api/v3/examples/ParticipantPayment/Get.ex.php
+++ b/civicrm/api/v3/examples/ParticipantPayment/Get.ex.php
@@ -19,7 +19,7 @@ function participant_payment_get_example() {
   try {
     $result = civicrm_api3('ParticipantPayment', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantStatusType/Create.ex.php b/civicrm/api/v3/examples/ParticipantStatusType/Create.ex.php
index c00c9230c50a70148d8d91f8bbdd5d5243f4ac65..4a5f4199473219e446013d92a83b510a746d4060 100644
--- a/civicrm/api/v3/examples/ParticipantStatusType/Create.ex.php
+++ b/civicrm/api/v3/examples/ParticipantStatusType/Create.ex.php
@@ -25,7 +25,7 @@ function participant_status_type_create_example() {
   try {
     $result = civicrm_api3('ParticipantStatusType', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantStatusType/Delete.ex.php b/civicrm/api/v3/examples/ParticipantStatusType/Delete.ex.php
index 52853e3c957e0b1afe21ada83034eb925c1aaa71..9cb675fbfdc2989e6cf47cae333582031d086f6f 100644
--- a/civicrm/api/v3/examples/ParticipantStatusType/Delete.ex.php
+++ b/civicrm/api/v3/examples/ParticipantStatusType/Delete.ex.php
@@ -18,7 +18,7 @@ function participant_status_type_delete_example() {
   try {
     $result = civicrm_api3('ParticipantStatusType', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ParticipantStatusType/Get.ex.php b/civicrm/api/v3/examples/ParticipantStatusType/Get.ex.php
index 89fcfb3c10aa3ab6f0523d35618b0822f124b9f6..ccc098806407f36185a779959e2477f709e7c868 100644
--- a/civicrm/api/v3/examples/ParticipantStatusType/Get.ex.php
+++ b/civicrm/api/v3/examples/ParticipantStatusType/Get.ex.php
@@ -25,7 +25,7 @@ function participant_status_type_get_example() {
   try {
     $result = civicrm_api3('ParticipantStatusType', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/Cancel.ex.php b/civicrm/api/v3/examples/Payment/Cancel.ex.php
index 93fda68e2849f3b6057e5f44a3b141e84dc81d70..323aaad977f8cd36fb1d80036e54f802a5ad9a17 100644
--- a/civicrm/api/v3/examples/Payment/Cancel.ex.php
+++ b/civicrm/api/v3/examples/Payment/Cancel.ex.php
@@ -19,7 +19,7 @@ function payment_cancel_example() {
   try {
     $result = civicrm_api3('Payment', 'cancel', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/Create.ex.php b/civicrm/api/v3/examples/Payment/Create.ex.php
index 7f4304ca59880138423c5f7aa309e7185b243069..c1b14fd8e0c236dba08ecc2a6a4b294c9a207b99 100644
--- a/civicrm/api/v3/examples/Payment/Create.ex.php
+++ b/civicrm/api/v3/examples/Payment/Create.ex.php
@@ -19,7 +19,7 @@ function payment_create_example() {
   try {
     $result = civicrm_api3('Payment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/CreatePaymentWithLineItems.ex.php b/civicrm/api/v3/examples/Payment/CreatePaymentWithLineItems.ex.php
index c907cf174778e6408fba362bc18c1e03c712db45..c611d3ca7a768088f5a2625240b8bc28da9beb5a 100644
--- a/civicrm/api/v3/examples/Payment/CreatePaymentWithLineItems.ex.php
+++ b/civicrm/api/v3/examples/Payment/CreatePaymentWithLineItems.ex.php
@@ -29,7 +29,7 @@ function payment_create_example() {
   try {
     $result = civicrm_api3('Payment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/Delete.ex.php b/civicrm/api/v3/examples/Payment/Delete.ex.php
index 78781151333bb107efdb151e8c2ac2a8056d896e..63a7fc79ceddddf2acfea705bbc52ce364550644 100644
--- a/civicrm/api/v3/examples/Payment/Delete.ex.php
+++ b/civicrm/api/v3/examples/Payment/Delete.ex.php
@@ -19,7 +19,7 @@ function payment_delete_example() {
   try {
     $result = civicrm_api3('Payment', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/Get.ex.php b/civicrm/api/v3/examples/Payment/Get.ex.php
index b138cd7eb548864311c88e53bf70139a0aa005f6..7028841c0c8e6f78b3d6ded998377dd9708bdd6b 100644
--- a/civicrm/api/v3/examples/Payment/Get.ex.php
+++ b/civicrm/api/v3/examples/Payment/Get.ex.php
@@ -19,7 +19,7 @@ function payment_get_example() {
   try {
     $result = civicrm_api3('Payment', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Payment/UpdatePayment.ex.php b/civicrm/api/v3/examples/Payment/UpdatePayment.ex.php
index 6802716ea9288e25219121c6d6dcdf5fa6487fcc..bd40516ee7461db0808a2a64e39ebe2fec10af6c 100644
--- a/civicrm/api/v3/examples/Payment/UpdatePayment.ex.php
+++ b/civicrm/api/v3/examples/Payment/UpdatePayment.ex.php
@@ -23,7 +23,7 @@ function payment_create_example() {
   try {
     $result = civicrm_api3('Payment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentProcessor/Create.ex.php b/civicrm/api/v3/examples/PaymentProcessor/Create.ex.php
index 69ee100f1d00152f0d309f420fc07e3dd6c7f8b6..c06083e0cfea6f868eedfd84f6e1d3a37865230d 100644
--- a/civicrm/api/v3/examples/PaymentProcessor/Create.ex.php
+++ b/civicrm/api/v3/examples/PaymentProcessor/Create.ex.php
@@ -22,7 +22,7 @@ function payment_processor_create_example() {
   try {
     $result = civicrm_api3('PaymentProcessor', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentProcessor/Delete.ex.php b/civicrm/api/v3/examples/PaymentProcessor/Delete.ex.php
index 5277566504bc1a47b84439e971be61b7ef5363b7..57fa4002a73756e76d5b181a930ad9d415909bb4 100644
--- a/civicrm/api/v3/examples/PaymentProcessor/Delete.ex.php
+++ b/civicrm/api/v3/examples/PaymentProcessor/Delete.ex.php
@@ -18,7 +18,7 @@ function payment_processor_delete_example() {
   try {
     $result = civicrm_api3('PaymentProcessor', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentProcessorType/Create.ex.php b/civicrm/api/v3/examples/PaymentProcessorType/Create.ex.php
index 77b7384b19df864ccb2994f81a864e0316619deb..b5a753c4d83efaa696dc2e5702ec29dd38ac4ff4 100644
--- a/civicrm/api/v3/examples/PaymentProcessorType/Create.ex.php
+++ b/civicrm/api/v3/examples/PaymentProcessorType/Create.ex.php
@@ -23,7 +23,7 @@ function payment_processor_type_create_example() {
   try {
     $result = civicrm_api3('PaymentProcessorType', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentProcessorType/Delete.ex.php b/civicrm/api/v3/examples/PaymentProcessorType/Delete.ex.php
index ce41157b04e6e6b1c347e6af33c0c7802196dc5d..c1af30e58e93dfab61ee6ae982ba8cec98a2c53c 100644
--- a/civicrm/api/v3/examples/PaymentProcessorType/Delete.ex.php
+++ b/civicrm/api/v3/examples/PaymentProcessorType/Delete.ex.php
@@ -18,7 +18,7 @@ function payment_processor_type_delete_example() {
   try {
     $result = civicrm_api3('PaymentProcessorType', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentToken/Create.ex.php b/civicrm/api/v3/examples/PaymentToken/Create.ex.php
index 53dc8ae1626a2fe9868aec790e071a4bd726942e..e16ea0be4e8b08b3ee181625745b7ad69b1f6f28 100644
--- a/civicrm/api/v3/examples/PaymentToken/Create.ex.php
+++ b/civicrm/api/v3/examples/PaymentToken/Create.ex.php
@@ -24,7 +24,7 @@ function payment_token_create_example() {
   try {
     $result = civicrm_api3('PaymentToken', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentToken/Delete.ex.php b/civicrm/api/v3/examples/PaymentToken/Delete.ex.php
index 03d7fb263d0663cb9655405f3b796423fb8cb99a..9fa39c5d12557828f4e33f1a640980411e0b7b30 100644
--- a/civicrm/api/v3/examples/PaymentToken/Delete.ex.php
+++ b/civicrm/api/v3/examples/PaymentToken/Delete.ex.php
@@ -18,7 +18,7 @@ function payment_token_delete_example() {
   try {
     $result = civicrm_api3('PaymentToken', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PaymentToken/Get.ex.php b/civicrm/api/v3/examples/PaymentToken/Get.ex.php
index fd3b33ba71ab4cda0db558dd636740d95bd638fb..9995a23d746a166ec742095b8d391dd7735665b6 100644
--- a/civicrm/api/v3/examples/PaymentToken/Get.ex.php
+++ b/civicrm/api/v3/examples/PaymentToken/Get.ex.php
@@ -21,7 +21,7 @@ function payment_token_get_example() {
   try {
     $result = civicrm_api3('PaymentToken', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pcp/ChainedGetDelete.ex.php b/civicrm/api/v3/examples/Pcp/ChainedGetDelete.ex.php
index 5bab4a14a6503f89739a64fe7a5536269bcef49c..4901e25b00e098c20045eece2ff95335aaebe972 100644
--- a/civicrm/api/v3/examples/Pcp/ChainedGetDelete.ex.php
+++ b/civicrm/api/v3/examples/Pcp/ChainedGetDelete.ex.php
@@ -21,7 +21,7 @@ function pcp_get_example() {
   try {
     $result = civicrm_api3('Pcp', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pcp/Create.ex.php b/civicrm/api/v3/examples/Pcp/Create.ex.php
index 56aa78e3952392449dd4da36cade0573142791f6..c7325b8bdbaec15ec5370c6ef697bd4bd159c98a 100644
--- a/civicrm/api/v3/examples/Pcp/Create.ex.php
+++ b/civicrm/api/v3/examples/Pcp/Create.ex.php
@@ -21,7 +21,7 @@ function pcp_create_example() {
   try {
     $result = civicrm_api3('Pcp', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pcp/Delete.ex.php b/civicrm/api/v3/examples/Pcp/Delete.ex.php
index 83f1ec5677ae35a83731711a8d09758ab187f064..380c889e8e63a2e960c4ee70db021f8cb03b0fe4 100644
--- a/civicrm/api/v3/examples/Pcp/Delete.ex.php
+++ b/civicrm/api/v3/examples/Pcp/Delete.ex.php
@@ -18,7 +18,7 @@ function pcp_delete_example() {
   try {
     $result = civicrm_api3('Pcp', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pcp/Get.ex.php b/civicrm/api/v3/examples/Pcp/Get.ex.php
index 36246cbbbb9a7593b321386e2718ba80b1b2a9fa..5e87d5edd1ab3ae26b18534e6e37ece9fe477162 100644
--- a/civicrm/api/v3/examples/Pcp/Get.ex.php
+++ b/civicrm/api/v3/examples/Pcp/Get.ex.php
@@ -21,7 +21,7 @@ function pcp_get_example() {
   try {
     $result = civicrm_api3('Pcp', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Phone/Create.ex.php b/civicrm/api/v3/examples/Phone/Create.ex.php
index 95eab5a78316b45c7a70adb2fd4f81ac22e67f0e..3f236a9a13e58c21a484d3e429e8d67b91c85062 100644
--- a/civicrm/api/v3/examples/Phone/Create.ex.php
+++ b/civicrm/api/v3/examples/Phone/Create.ex.php
@@ -21,7 +21,7 @@ function phone_create_example() {
   try {
     $result = civicrm_api3('Phone', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Phone/Delete.ex.php b/civicrm/api/v3/examples/Phone/Delete.ex.php
index 44fa2491faa392344c9f29dcaded4260fe3cc01c..19b8ef963de4dfad82c4b5747409576e0cca1c47 100644
--- a/civicrm/api/v3/examples/Phone/Delete.ex.php
+++ b/civicrm/api/v3/examples/Phone/Delete.ex.php
@@ -18,7 +18,7 @@ function phone_delete_example() {
   try {
     $result = civicrm_api3('Phone', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Phone/Get.ex.php b/civicrm/api/v3/examples/Phone/Get.ex.php
index 981506ad464ce68e2c6e82b2c12e97c9b91a0d93..cce00a86f823728878aed9c91fb6d0d3ccb2fe80 100644
--- a/civicrm/api/v3/examples/Phone/Get.ex.php
+++ b/civicrm/api/v3/examples/Phone/Get.ex.php
@@ -19,7 +19,7 @@ function phone_get_example() {
   try {
     $result = civicrm_api3('Phone', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Phone/GetOptions.ex.php b/civicrm/api/v3/examples/Phone/GetOptions.ex.php
index 4ca5d2812415c2bbffba9448462228c9d235f346..8a2149d399229053056a38ba4debcda9bed2135b 100644
--- a/civicrm/api/v3/examples/Phone/GetOptions.ex.php
+++ b/civicrm/api/v3/examples/Phone/GetOptions.ex.php
@@ -18,7 +18,7 @@ function phone_getoptions_example() {
   try {
     $result = civicrm_api3('Phone', 'getoptions', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pledge/Create.ex.php b/civicrm/api/v3/examples/Pledge/Create.ex.php
index 53f81be28fb88d0e3b7ddbf5687a063cbe4f94cd..1e7949f88b1fa2e26a33f4f1eebf86ec33c96c99 100644
--- a/civicrm/api/v3/examples/Pledge/Create.ex.php
+++ b/civicrm/api/v3/examples/Pledge/Create.ex.php
@@ -30,7 +30,7 @@ function pledge_create_example() {
   try {
     $result = civicrm_api3('Pledge', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pledge/Delete.ex.php b/civicrm/api/v3/examples/Pledge/Delete.ex.php
index beb8fab405d5ca917f4c997e89faf13a08eec47e..3b68b3f55e56a8459377644aed1680d3e5342524 100644
--- a/civicrm/api/v3/examples/Pledge/Delete.ex.php
+++ b/civicrm/api/v3/examples/Pledge/Delete.ex.php
@@ -18,7 +18,7 @@ function pledge_delete_example() {
   try {
     $result = civicrm_api3('Pledge', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pledge/Get.ex.php b/civicrm/api/v3/examples/Pledge/Get.ex.php
index 99ba597bd646dfa383c3b33f15b3636a4cf7fbf4..7f9d7708e7d0950371fe70413a9303a6d9bc6abf 100644
--- a/civicrm/api/v3/examples/Pledge/Get.ex.php
+++ b/civicrm/api/v3/examples/Pledge/Get.ex.php
@@ -18,7 +18,7 @@ function pledge_get_example() {
   try {
     $result = civicrm_api3('Pledge', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Pledge/GetFilterHighDate.ex.php b/civicrm/api/v3/examples/Pledge/GetFilterHighDate.ex.php
index 612e7010959f640708b518ae0c40c5309a7f7cd0..63bbc8c8e3c7aac54659f0dd2d857889f6d905e0 100644
--- a/civicrm/api/v3/examples/Pledge/GetFilterHighDate.ex.php
+++ b/civicrm/api/v3/examples/Pledge/GetFilterHighDate.ex.php
@@ -20,7 +20,7 @@ function pledge_get_example() {
   try {
     $result = civicrm_api3('Pledge', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PledgePayment/Create.ex.php b/civicrm/api/v3/examples/PledgePayment/Create.ex.php
index 354e2d545a3a1aef5618c5258d8a8dfd1eaf41ec..77fe0c235edaabaf81e66c31821f9c0e2839dd9e 100644
--- a/civicrm/api/v3/examples/PledgePayment/Create.ex.php
+++ b/civicrm/api/v3/examples/PledgePayment/Create.ex.php
@@ -22,7 +22,7 @@ function pledge_payment_create_example() {
   try {
     $result = civicrm_api3('PledgePayment', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PledgePayment/Delete.ex.php b/civicrm/api/v3/examples/PledgePayment/Delete.ex.php
index b3ffa0f07192ca5da056729fb7f71f20c3ec9c63..a457f289946a3803c93132e44c00772a327f0648 100644
--- a/civicrm/api/v3/examples/PledgePayment/Delete.ex.php
+++ b/civicrm/api/v3/examples/PledgePayment/Delete.ex.php
@@ -18,7 +18,7 @@ function pledge_payment_delete_example() {
   try {
     $result = civicrm_api3('PledgePayment', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PledgePayment/Get.ex.php b/civicrm/api/v3/examples/PledgePayment/Get.ex.php
index 6c79278e9df6a227517b9a8b59563910ab203767..e125994b6e4d122a8e3d5754726104128e23b74b 100644
--- a/civicrm/api/v3/examples/PledgePayment/Get.ex.php
+++ b/civicrm/api/v3/examples/PledgePayment/Get.ex.php
@@ -16,7 +16,7 @@ function pledge_payment_get_example() {
   try {
     $result = civicrm_api3('PledgePayment', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PledgePayment/Update.ex.php b/civicrm/api/v3/examples/PledgePayment/Update.ex.php
index 3d9f0bc21530e5017475cdea973fec1a77e83df1..1a529a30b5996ac1628874fbbbcaeb4c79b7d521 100644
--- a/civicrm/api/v3/examples/PledgePayment/Update.ex.php
+++ b/civicrm/api/v3/examples/PledgePayment/Update.ex.php
@@ -19,7 +19,7 @@ function pledge_payment_update_example() {
   try {
     $result = civicrm_api3('PledgePayment', 'update', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceField/Create.ex.php b/civicrm/api/v3/examples/PriceField/Create.ex.php
index 87dadf1993261ce983acc04c880f2524352b8815..55b46038c22ae990e26e0431d4b8c05dc75952a4 100644
--- a/civicrm/api/v3/examples/PriceField/Create.ex.php
+++ b/civicrm/api/v3/examples/PriceField/Create.ex.php
@@ -23,7 +23,7 @@ function price_field_create_example() {
   try {
     $result = civicrm_api3('PriceField', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceField/Delete.ex.php b/civicrm/api/v3/examples/PriceField/Delete.ex.php
index b8b136acaf5adb5d1af101fe13f4c7b524f125fc..050116d70a198976478679e79899bed5f782d930 100644
--- a/civicrm/api/v3/examples/PriceField/Delete.ex.php
+++ b/civicrm/api/v3/examples/PriceField/Delete.ex.php
@@ -18,7 +18,7 @@ function price_field_delete_example() {
   try {
     $result = civicrm_api3('PriceField', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceField/Get.ex.php b/civicrm/api/v3/examples/PriceField/Get.ex.php
index 7d02feb7dd70f255ec3d1541faecfdbce103d017..1be17d8f0d2074480d2719d26c12d0b11246a361 100644
--- a/civicrm/api/v3/examples/PriceField/Get.ex.php
+++ b/civicrm/api/v3/examples/PriceField/Get.ex.php
@@ -18,7 +18,7 @@ function price_field_get_example() {
   try {
     $result = civicrm_api3('PriceField', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceFieldValue/Create.ex.php b/civicrm/api/v3/examples/PriceFieldValue/Create.ex.php
index ea5f8c026c66bdbb72b7adf1ed394537987b3b08..2231e10ab9ae0207d59a7f379f10289ec271bfda 100644
--- a/civicrm/api/v3/examples/PriceFieldValue/Create.ex.php
+++ b/civicrm/api/v3/examples/PriceFieldValue/Create.ex.php
@@ -25,7 +25,7 @@ function price_field_value_create_example() {
   try {
     $result = civicrm_api3('PriceFieldValue', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceFieldValue/Delete.ex.php b/civicrm/api/v3/examples/PriceFieldValue/Delete.ex.php
index 92aa1150cc5595068638e08acc47ba4da8a0371d..cc5ae1d553ca5494b58bd987c18aa513681a1097 100644
--- a/civicrm/api/v3/examples/PriceFieldValue/Delete.ex.php
+++ b/civicrm/api/v3/examples/PriceFieldValue/Delete.ex.php
@@ -18,7 +18,7 @@ function price_field_value_delete_example() {
   try {
     $result = civicrm_api3('PriceFieldValue', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceFieldValue/Get.ex.php b/civicrm/api/v3/examples/PriceFieldValue/Get.ex.php
index 4011501cf71b8b5eed3e6f843ba81b36a7840dfa..174c60b10214f4d7c434a959fb139f97fc3fbf78 100644
--- a/civicrm/api/v3/examples/PriceFieldValue/Get.ex.php
+++ b/civicrm/api/v3/examples/PriceFieldValue/Get.ex.php
@@ -18,7 +18,7 @@ function price_field_value_get_example() {
   try {
     $result = civicrm_api3('PriceFieldValue', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceSet/Create.ex.php b/civicrm/api/v3/examples/PriceSet/Create.ex.php
index ade9452b338db446312f1bfa2f1edf440e602100..a87d608fd6d4daeee5b749e97033a20002c73bbc 100644
--- a/civicrm/api/v3/examples/PriceSet/Create.ex.php
+++ b/civicrm/api/v3/examples/PriceSet/Create.ex.php
@@ -22,7 +22,7 @@ function price_set_create_example() {
   try {
     $result = civicrm_api3('PriceSet', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceSet/Delete.ex.php b/civicrm/api/v3/examples/PriceSet/Delete.ex.php
index 2fdb2dfe25ca3f0cb71caa578c258dede627d561..6e96a460ae273722d9d9a3645bb5753f13a2a410 100644
--- a/civicrm/api/v3/examples/PriceSet/Delete.ex.php
+++ b/civicrm/api/v3/examples/PriceSet/Delete.ex.php
@@ -18,7 +18,7 @@ function price_set_delete_example() {
   try {
     $result = civicrm_api3('PriceSet', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/PriceSet/Get.ex.php b/civicrm/api/v3/examples/PriceSet/Get.ex.php
index 9b9eac2ff3e8f39d058322358ce6d5e8bdabd984..69f8546942eb36266db3166710e982c655d0fe47 100644
--- a/civicrm/api/v3/examples/PriceSet/Get.ex.php
+++ b/civicrm/api/v3/examples/PriceSet/Get.ex.php
@@ -18,7 +18,7 @@ function price_set_get_example() {
   try {
     $result = civicrm_api3('PriceSet', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Profile/Apply.ex.php b/civicrm/api/v3/examples/Profile/Apply.ex.php
index 0ec9137f6dff282994c75f4d049b5a438147faf0..abd71e114c1d322b6ecd29a4b9084a8e2011a48b 100644
--- a/civicrm/api/v3/examples/Profile/Apply.ex.php
+++ b/civicrm/api/v3/examples/Profile/Apply.ex.php
@@ -25,7 +25,7 @@ function profile_apply_example() {
   try {
     $result = civicrm_api3('Profile', 'apply', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Profile/Get.ex.php b/civicrm/api/v3/examples/Profile/Get.ex.php
index b264dc7e96b9cdec2281b4eb0b17dde9773af6ea..c67491aa48a83abc914130590d652e92dc677cd9 100644
--- a/civicrm/api/v3/examples/Profile/Get.ex.php
+++ b/civicrm/api/v3/examples/Profile/Get.ex.php
@@ -23,7 +23,7 @@ function profile_get_example() {
   try {
     $result = civicrm_api3('Profile', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Profile/GetFields.ex.php b/civicrm/api/v3/examples/Profile/GetFields.ex.php
index ee57a5e603e3181003697a94793a7c842bda34e5..79902a2704e553b5c2433b58a5d14bf112dd0e77 100644
--- a/civicrm/api/v3/examples/Profile/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Profile/GetFields.ex.php
@@ -21,7 +21,7 @@ function profile_getfields_example() {
   try {
     $result = civicrm_api3('Profile', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Profile/Submit.ex.php b/civicrm/api/v3/examples/Profile/Submit.ex.php
index 841fcb32a2825133e82ab6f960b9a1eaba5940dc..451dc557f9e33dfc18c1fe1c349b41a0ebea64aa 100644
--- a/civicrm/api/v3/examples/Profile/Submit.ex.php
+++ b/civicrm/api/v3/examples/Profile/Submit.ex.php
@@ -25,7 +25,7 @@ function profile_submit_example() {
   try {
     $result = civicrm_api3('Profile', 'submit', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/BetweenRelationshipType.ex.php b/civicrm/api/v3/examples/Relationship/BetweenRelationshipType.ex.php
index 0b50ad12b3292aad8de68613a65bb42bd2937d92..63c181afb4c7ff68cd5a45bd0d2e3c175c8564da 100644
--- a/civicrm/api/v3/examples/Relationship/BetweenRelationshipType.ex.php
+++ b/civicrm/api/v3/examples/Relationship/BetweenRelationshipType.ex.php
@@ -25,7 +25,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/Create.ex.php b/civicrm/api/v3/examples/Relationship/Create.ex.php
index e405bc51b1a254ef7ea9f24598e9966b58455c0d..75124b5db7e9d547e9e8f2904b24fefa37ca91f6 100644
--- a/civicrm/api/v3/examples/Relationship/Create.ex.php
+++ b/civicrm/api/v3/examples/Relationship/Create.ex.php
@@ -24,7 +24,7 @@ function relationship_create_example() {
   try {
     $result = civicrm_api3('Relationship', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/Delete.ex.php b/civicrm/api/v3/examples/Relationship/Delete.ex.php
index 0f561e92d540f968651da7d05e4ee2bc52c8338b..2aff8d427862e95c268625fad529855531b8740b 100644
--- a/civicrm/api/v3/examples/Relationship/Delete.ex.php
+++ b/civicrm/api/v3/examples/Relationship/Delete.ex.php
@@ -18,7 +18,7 @@ function relationship_delete_example() {
   try {
     $result = civicrm_api3('Relationship', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/Get.ex.php b/civicrm/api/v3/examples/Relationship/Get.ex.php
index c3ea39ed3a0b4c5ede3677fad5143194ab259358..f48b9c04e484b187072180e8bfefdf5abd261f80 100644
--- a/civicrm/api/v3/examples/Relationship/Get.ex.php
+++ b/civicrm/api/v3/examples/Relationship/Get.ex.php
@@ -18,7 +18,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/INRelationshipType.ex.php b/civicrm/api/v3/examples/Relationship/INRelationshipType.ex.php
index 74544ef72cc3f921e498abd8f176866560f9f609..eab2a8acbc82728df0eddeaf0de11e27008285ed 100644
--- a/civicrm/api/v3/examples/Relationship/INRelationshipType.ex.php
+++ b/civicrm/api/v3/examples/Relationship/INRelationshipType.ex.php
@@ -25,7 +25,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/NotBetweenRelationshipType.ex.php b/civicrm/api/v3/examples/Relationship/NotBetweenRelationshipType.ex.php
index eafff85effc04ad20f66bfd8922e86e090b60ed6..c4e79bd809851003615fa901277f22161828ee51 100644
--- a/civicrm/api/v3/examples/Relationship/NotBetweenRelationshipType.ex.php
+++ b/civicrm/api/v3/examples/Relationship/NotBetweenRelationshipType.ex.php
@@ -25,7 +25,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/NotInRelationshipType.ex.php b/civicrm/api/v3/examples/Relationship/NotInRelationshipType.ex.php
index 2696dada28e732166a631977e3227937fabca8e3..818472ecba6c29c488b80eaabee30c301cc7f97c 100644
--- a/civicrm/api/v3/examples/Relationship/NotInRelationshipType.ex.php
+++ b/civicrm/api/v3/examples/Relationship/NotInRelationshipType.ex.php
@@ -25,7 +25,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Relationship/filterIsCurrent.ex.php b/civicrm/api/v3/examples/Relationship/filterIsCurrent.ex.php
index 5407675555651a1a94e54182a3bf178cc4cdf339..452e7005a4402abe766f166d0d2ec3eec84102fc 100644
--- a/civicrm/api/v3/examples/Relationship/filterIsCurrent.ex.php
+++ b/civicrm/api/v3/examples/Relationship/filterIsCurrent.ex.php
@@ -22,7 +22,7 @@ function relationship_get_example() {
   try {
     $result = civicrm_api3('Relationship', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/RelationshipType/Create.ex.php b/civicrm/api/v3/examples/RelationshipType/Create.ex.php
index 9c7d4d3537f1e7fd65858a6e677802cedf8b06cc..cfc602faf15a26f28db7dff0cf7ebfa1fd2b76be 100644
--- a/civicrm/api/v3/examples/RelationshipType/Create.ex.php
+++ b/civicrm/api/v3/examples/RelationshipType/Create.ex.php
@@ -24,7 +24,7 @@ function relationship_type_create_example() {
   try {
     $result = civicrm_api3('RelationshipType', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/RelationshipType/Delete.ex.php b/civicrm/api/v3/examples/RelationshipType/Delete.ex.php
index 23c3ea9245499c7017276019bb013400ca4b0097..f4cddd502076757beb167be1acadbd1462eba1c9 100644
--- a/civicrm/api/v3/examples/RelationshipType/Delete.ex.php
+++ b/civicrm/api/v3/examples/RelationshipType/Delete.ex.php
@@ -18,7 +18,7 @@ function relationship_type_delete_example() {
   try {
     $result = civicrm_api3('RelationshipType', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ReportTemplate/Getrows.ex.php b/civicrm/api/v3/examples/ReportTemplate/Getrows.ex.php
index 5441ac2df75f90700dbbf7fc4b32cc7b004cf315..d948f5019b75992641692df5ac5e4da07001e87e 100644
--- a/civicrm/api/v3/examples/ReportTemplate/Getrows.ex.php
+++ b/civicrm/api/v3/examples/ReportTemplate/Getrows.ex.php
@@ -26,7 +26,7 @@ function report_template_getrows_example() {
   try {
     $result = civicrm_api3('ReportTemplate', 'getrows', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/ReportTemplate/Getstatistics.ex.php b/civicrm/api/v3/examples/ReportTemplate/Getstatistics.ex.php
index 762ecb43099b94c9295df10ba33dbb06a04c5ce1..59d83f26b56d58042e62a2eddefbd267c6737d77 100644
--- a/civicrm/api/v3/examples/ReportTemplate/Getstatistics.ex.php
+++ b/civicrm/api/v3/examples/ReportTemplate/Getstatistics.ex.php
@@ -20,7 +20,7 @@ function report_template_getstatistics_example() {
   try {
     $result = civicrm_api3('ReportTemplate', 'getstatistics', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/SavedSearch/Create.ex.php b/civicrm/api/v3/examples/SavedSearch/Create.ex.php
index 8a376d32d584a5ac5eb0a0007855e1c13a3d1082..517cdb1b19d2fde8078f15959f3d50709a79decf 100644
--- a/civicrm/api/v3/examples/SavedSearch/Create.ex.php
+++ b/civicrm/api/v3/examples/SavedSearch/Create.ex.php
@@ -32,7 +32,7 @@ function saved_search_create_example() {
   try {
     $result = civicrm_api3('SavedSearch', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/SavedSearch/Delete.ex.php b/civicrm/api/v3/examples/SavedSearch/Delete.ex.php
index 37574e701e6c8f286c2441074b36b2d5a23f3a57..7a09625346e777254f5ccc0d1bba5726158c1eeb 100644
--- a/civicrm/api/v3/examples/SavedSearch/Delete.ex.php
+++ b/civicrm/api/v3/examples/SavedSearch/Delete.ex.php
@@ -18,7 +18,7 @@ function saved_search_delete_example() {
   try {
     $result = civicrm_api3('SavedSearch', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/SavedSearch/Get.ex.php b/civicrm/api/v3/examples/SavedSearch/Get.ex.php
index 7d948d0a675704f907e867868a7190ba4d49e5c2..9fef1a9e82e8730d52e76fc54c89d31b604309d4 100644
--- a/civicrm/api/v3/examples/SavedSearch/Get.ex.php
+++ b/civicrm/api/v3/examples/SavedSearch/Get.ex.php
@@ -18,7 +18,7 @@ function saved_search_get_example() {
   try {
     $result = civicrm_api3('SavedSearch', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/Create.ex.php b/civicrm/api/v3/examples/Setting/Create.ex.php
index 7ea582474cfa1c46162e6cd8a8b09b3973fa378b..8fffe7d5c3985a614dd60dd5f3a30c279fe65d88 100644
--- a/civicrm/api/v3/examples/Setting/Create.ex.php
+++ b/civicrm/api/v3/examples/Setting/Create.ex.php
@@ -19,7 +19,7 @@ function setting_create_example() {
   try {
     $result = civicrm_api3('Setting', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/CreateAllDomains.ex.php b/civicrm/api/v3/examples/Setting/CreateAllDomains.ex.php
index f5117e6fe27b92f9ec34a6de1b4c7b1bd0ea114d..281f8e62b9c5b1235dcf5253930eaba65e285b97 100644
--- a/civicrm/api/v3/examples/Setting/CreateAllDomains.ex.php
+++ b/civicrm/api/v3/examples/Setting/CreateAllDomains.ex.php
@@ -21,7 +21,7 @@ function setting_create_example() {
   try {
     $result = civicrm_api3('Setting', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/CreateSettingCurrentDomain.ex.php b/civicrm/api/v3/examples/Setting/CreateSettingCurrentDomain.ex.php
index 13d5f9055405bdd5ff1b8babc6c17e3e0531b924..057ad5b4afce573c8ab265bf03c058fd0cc287a0 100644
--- a/civicrm/api/v3/examples/Setting/CreateSettingCurrentDomain.ex.php
+++ b/civicrm/api/v3/examples/Setting/CreateSettingCurrentDomain.ex.php
@@ -20,7 +20,7 @@ function setting_create_example() {
   try {
     $result = civicrm_api3('Setting', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/CreateSpecifiedDomains.ex.php b/civicrm/api/v3/examples/Setting/CreateSpecifiedDomains.ex.php
index 9e27e290eb5bc457b89da3b6ae7ae8bc632400a3..115f8b0b7c0ce11aa5d459fbb5ac2a1f7ed2141d 100644
--- a/civicrm/api/v3/examples/Setting/CreateSpecifiedDomains.ex.php
+++ b/civicrm/api/v3/examples/Setting/CreateSpecifiedDomains.ex.php
@@ -24,7 +24,7 @@ function setting_create_example() {
   try {
     $result = civicrm_api3('Setting', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/Get.ex.php b/civicrm/api/v3/examples/Setting/Get.ex.php
index 03a62f402803aa9466fb7e1c5aab357b8016aaa8..6366789307c36f0049ab4220a770a72f5cd314c2 100644
--- a/civicrm/api/v3/examples/Setting/Get.ex.php
+++ b/civicrm/api/v3/examples/Setting/Get.ex.php
@@ -19,7 +19,7 @@ function setting_get_example() {
   try {
     $result = civicrm_api3('Setting', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetAllDomains.ex.php b/civicrm/api/v3/examples/Setting/GetAllDomains.ex.php
index d2d96418b17a4c6da11a74116c350ddb7d36533b..f4f545cfc1ab55e5756ece43d01c6d0b0a7967a0 100644
--- a/civicrm/api/v3/examples/Setting/GetAllDomains.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetAllDomains.ex.php
@@ -21,7 +21,7 @@ function setting_get_example() {
   try {
     $result = civicrm_api3('Setting', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetDefaults.ex.php b/civicrm/api/v3/examples/Setting/GetDefaults.ex.php
index a721feaf0ac10a8a501e6f0551281f5d5d7ca179..eaa1158e1f5d8187e2420ab4d0163fb5f2ed9c40 100644
--- a/civicrm/api/v3/examples/Setting/GetDefaults.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetDefaults.ex.php
@@ -20,7 +20,7 @@ function setting_getdefaults_example() {
   try {
     $result = civicrm_api3('Setting', 'getdefaults', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetFields.ex.php b/civicrm/api/v3/examples/Setting/GetFields.ex.php
index 2765ad7ac76b5a855beae2e87d2c429594e205b3..ee1e78de0e2928842e62f433d2f9508f182013d1 100644
--- a/civicrm/api/v3/examples/Setting/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetFields.ex.php
@@ -18,7 +18,7 @@ function setting_getfields_example() {
   try {
     $result = civicrm_api3('Setting', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetSettingCurrentDomain.ex.php b/civicrm/api/v3/examples/Setting/GetSettingCurrentDomain.ex.php
index 2939c09a99af48ca57d69d1d02debf2ce0db3013..b24dd50b40e90213804f406d6ef95c8e4367dc68 100644
--- a/civicrm/api/v3/examples/Setting/GetSettingCurrentDomain.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetSettingCurrentDomain.ex.php
@@ -20,7 +20,7 @@ function setting_get_example() {
   try {
     $result = civicrm_api3('Setting', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetSpecifiedDomains.ex.php b/civicrm/api/v3/examples/Setting/GetSpecifiedDomains.ex.php
index 5bcd7b299039754940a27403e231a4d828b81a06..e5b6f83f620703f23bdbb98ebf77157b2d201f17 100644
--- a/civicrm/api/v3/examples/Setting/GetSpecifiedDomains.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetSpecifiedDomains.ex.php
@@ -26,7 +26,7 @@ function setting_get_example() {
   try {
     $result = civicrm_api3('Setting', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/GetValue.ex.php b/civicrm/api/v3/examples/Setting/GetValue.ex.php
index 7a5cb0f22f4cbf27eca05c838434adf6cd7a50bc..9125ca52561171f467ea5846c0a0f930ddc8d572 100644
--- a/civicrm/api/v3/examples/Setting/GetValue.ex.php
+++ b/civicrm/api/v3/examples/Setting/GetValue.ex.php
@@ -21,7 +21,7 @@ function setting_getvalue_example() {
   try {
     $result = civicrm_api3('Setting', 'getvalue', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Setting/Revert.ex.php b/civicrm/api/v3/examples/Setting/Revert.ex.php
index 070211dfe9f54a808a8af6e1f48e7097d1864417..5d414f96314b98fea6d3396e189b71e47075c322 100644
--- a/civicrm/api/v3/examples/Setting/Revert.ex.php
+++ b/civicrm/api/v3/examples/Setting/Revert.ex.php
@@ -20,7 +20,7 @@ function setting_revert_example() {
   try {
     $result = civicrm_api3('Setting', 'revert', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StateProvince/Create.ex.php b/civicrm/api/v3/examples/StateProvince/Create.ex.php
index 8cf583aa333a87bcbfce4e891ac9d34f116558b1..2d07ecf6b2610f7ae31f5f4d9832b3f442ff4cf7 100644
--- a/civicrm/api/v3/examples/StateProvince/Create.ex.php
+++ b/civicrm/api/v3/examples/StateProvince/Create.ex.php
@@ -20,7 +20,7 @@ function state_province_create_example() {
   try {
     $result = civicrm_api3('StateProvince', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StateProvince/Delete.ex.php b/civicrm/api/v3/examples/StateProvince/Delete.ex.php
index 14e280b8f540795343fa5264fb3705fb555b7d1d..c51a5a0e699ccf01b336825262bfeefae6b4cc6b 100644
--- a/civicrm/api/v3/examples/StateProvince/Delete.ex.php
+++ b/civicrm/api/v3/examples/StateProvince/Delete.ex.php
@@ -18,7 +18,7 @@ function state_province_delete_example() {
   try {
     $result = civicrm_api3('StateProvince', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StateProvince/Get.ex.php b/civicrm/api/v3/examples/StateProvince/Get.ex.php
index 057206f1a8b81b069e9c0c8726cc2a35fb082714..18d2a9ce4ad3d724c9cd08dc48d14f25a505f6ef 100644
--- a/civicrm/api/v3/examples/StateProvince/Get.ex.php
+++ b/civicrm/api/v3/examples/StateProvince/Get.ex.php
@@ -18,7 +18,7 @@ function state_province_get_example() {
   try {
     $result = civicrm_api3('StateProvince', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StatusPreference/Create.ex.php b/civicrm/api/v3/examples/StatusPreference/Create.ex.php
index 509536b270fc41f4ed360e73c15529c1c3696a69..6eb9b4525d767f0cfe8d7c3ae63d0fd42226470e 100644
--- a/civicrm/api/v3/examples/StatusPreference/Create.ex.php
+++ b/civicrm/api/v3/examples/StatusPreference/Create.ex.php
@@ -22,7 +22,7 @@ function status_preference_create_example() {
   try {
     $result = civicrm_api3('StatusPreference', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StatusPreference/Delete.ex.php b/civicrm/api/v3/examples/StatusPreference/Delete.ex.php
index 418e7514f93b9df6c49003b2dcd19ac47d9d3b6a..a4582c6eec69f0924a90ba4c6847a932dcd42a48 100644
--- a/civicrm/api/v3/examples/StatusPreference/Delete.ex.php
+++ b/civicrm/api/v3/examples/StatusPreference/Delete.ex.php
@@ -18,7 +18,7 @@ function status_preference_delete_example() {
   try {
     $result = civicrm_api3('StatusPreference', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/StatusPreference/Get.ex.php b/civicrm/api/v3/examples/StatusPreference/Get.ex.php
index 0feb43099eb02e22ba808d0ce3e1dde0f87a02ef..f94a270575db510d9b327a35fe7e68eac2cff797 100644
--- a/civicrm/api/v3/examples/StatusPreference/Get.ex.php
+++ b/civicrm/api/v3/examples/StatusPreference/Get.ex.php
@@ -18,7 +18,7 @@ function status_preference_get_example() {
   try {
     $result = civicrm_api3('StatusPreference', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Survey/ChainedGetDelete.ex.php b/civicrm/api/v3/examples/Survey/ChainedGetDelete.ex.php
index df1218be8bc8e9e39178c1a8775049c64692fecc..4a24b150d96d426cb76018c796704008c329c4d2 100644
--- a/civicrm/api/v3/examples/Survey/ChainedGetDelete.ex.php
+++ b/civicrm/api/v3/examples/Survey/ChainedGetDelete.ex.php
@@ -21,7 +21,7 @@ function survey_get_example() {
   try {
     $result = civicrm_api3('Survey', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Survey/Create.ex.php b/civicrm/api/v3/examples/Survey/Create.ex.php
index 3dce012bd7934b61a7b46a5118cf1559fe8de48a..ef2eba60f456fbe4df8ab93792a07d808af0ae14 100644
--- a/civicrm/api/v3/examples/Survey/Create.ex.php
+++ b/civicrm/api/v3/examples/Survey/Create.ex.php
@@ -21,7 +21,7 @@ function survey_create_example() {
   try {
     $result = civicrm_api3('Survey', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Survey/Delete.ex.php b/civicrm/api/v3/examples/Survey/Delete.ex.php
index 1cfe8ea9e40bf68b89ababa319fb343bc13d5007..b93ad2be835d909f56eb7bc4744e037bd441561b 100644
--- a/civicrm/api/v3/examples/Survey/Delete.ex.php
+++ b/civicrm/api/v3/examples/Survey/Delete.ex.php
@@ -18,7 +18,7 @@ function survey_delete_example() {
   try {
     $result = civicrm_api3('Survey', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Survey/Get.ex.php b/civicrm/api/v3/examples/Survey/Get.ex.php
index 7dac9efd148f393cd2dc1717b98a5ad291e8d1e8..06a257139eb8896450e1eb14510c0386ce5dc4e0 100644
--- a/civicrm/api/v3/examples/Survey/Get.ex.php
+++ b/civicrm/api/v3/examples/Survey/Get.ex.php
@@ -21,7 +21,7 @@ function survey_get_example() {
   try {
     $result = civicrm_api3('Survey', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/SurveyRespondant/Get.ex.php b/civicrm/api/v3/examples/SurveyRespondant/Get.ex.php
index 2e93c13aad636c45043d2b295ff3779bd3995ff7..87ad6fa3333a8b4d1bcd444e9ed34edd11d9d773 100644
--- a/civicrm/api/v3/examples/SurveyRespondant/Get.ex.php
+++ b/civicrm/api/v3/examples/SurveyRespondant/Get.ex.php
@@ -22,7 +22,7 @@ function survey_respondant_get_example() {
   try {
     $result = civicrm_api3('SurveyRespondant', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/System/Flush.ex.php b/civicrm/api/v3/examples/System/Flush.ex.php
index a5323b45fb6fd038164aa32b3cae18356e82ef2f..5e9f8acbdd29fe3cc12414daafe053dee2514db8 100644
--- a/civicrm/api/v3/examples/System/Flush.ex.php
+++ b/civicrm/api/v3/examples/System/Flush.ex.php
@@ -18,7 +18,7 @@ function system_flush_example() {
   try {
     $result = civicrm_api3('System', 'flush', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/Create.ex.php b/civicrm/api/v3/examples/Tag/Create.ex.php
index e3bbbb9f10fd8adf163d4914e7d2a468049584d0..92da15c578b041d24343d93cc33607e59dd88797 100644
--- a/civicrm/api/v3/examples/Tag/Create.ex.php
+++ b/civicrm/api/v3/examples/Tag/Create.ex.php
@@ -19,7 +19,7 @@ function tag_create_example() {
   try {
     $result = civicrm_api3('Tag', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/Delete.ex.php b/civicrm/api/v3/examples/Tag/Delete.ex.php
index 2371cb6039e8f72a93cc6a7c1cff4de59214d16b..a00738ac35760788322e6fd511b6fa95bf3a03b5 100644
--- a/civicrm/api/v3/examples/Tag/Delete.ex.php
+++ b/civicrm/api/v3/examples/Tag/Delete.ex.php
@@ -18,7 +18,7 @@ function tag_delete_example() {
   try {
     $result = civicrm_api3('Tag', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/Get.ex.php b/civicrm/api/v3/examples/Tag/Get.ex.php
index ace87a87638be48ada378697e9b78b58b9300586..f2d1b724b68ea980942f460ae35246b6c3762af1 100644
--- a/civicrm/api/v3/examples/Tag/Get.ex.php
+++ b/civicrm/api/v3/examples/Tag/Get.ex.php
@@ -19,7 +19,7 @@ function tag_get_example() {
   try {
     $result = civicrm_api3('Tag', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/GetFields.ex.php b/civicrm/api/v3/examples/Tag/GetFields.ex.php
index 789b79c89957dfe52b63f73883f5e3f918783f10..c754b5a43398bd58042b3268321a98ae730d12cb 100644
--- a/civicrm/api/v3/examples/Tag/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Tag/GetFields.ex.php
@@ -20,7 +20,7 @@ function tag_getfields_example() {
   try {
     $result = civicrm_api3('Tag', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/GetList.ex.php b/civicrm/api/v3/examples/Tag/GetList.ex.php
index 23aa5c33b1445629c5eb6df695cbb725f8a3c470..d5f540c03386dcc014f0c9dd8f13cccd16cfed84 100644
--- a/civicrm/api/v3/examples/Tag/GetList.ex.php
+++ b/civicrm/api/v3/examples/Tag/GetList.ex.php
@@ -23,7 +23,7 @@ function tag_getlist_example() {
   try {
     $result = civicrm_api3('Tag', 'getlist', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Tag/GetReturnArray.ex.php b/civicrm/api/v3/examples/Tag/GetReturnArray.ex.php
index 9ccbb63fa1142bd7a95ece06770f3353adb1ae5c..d5518b1e7e8b347acad253c65e11cb4e92dfd5e1 100644
--- a/civicrm/api/v3/examples/Tag/GetReturnArray.ex.php
+++ b/civicrm/api/v3/examples/Tag/GetReturnArray.ex.php
@@ -24,7 +24,7 @@ function tag_get_example() {
   try {
     $result = civicrm_api3('Tag', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/TaxContributionPage/Create.ex.php b/civicrm/api/v3/examples/TaxContributionPage/Create.ex.php
index 5dd5d4fcd200ed0788dbaacf4de222a92b52c1ab..5c48e3b6be5f1009630155d79e1416ba04a2e8bb 100644
--- a/civicrm/api/v3/examples/TaxContributionPage/Create.ex.php
+++ b/civicrm/api/v3/examples/TaxContributionPage/Create.ex.php
@@ -26,7 +26,7 @@ function tax_contribution_page_create_example() {
   try {
     $result = civicrm_api3('tax_contribution_page', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/TaxContributionPage/CreateWithNestedLineItems.ex.php b/civicrm/api/v3/examples/TaxContributionPage/CreateWithNestedLineItems.ex.php
index fe1b5a8af746f491ccba71628888ebb2ea1783a8..d71a6e275177da10401b815628fa9a6cfd6993b3 100644
--- a/civicrm/api/v3/examples/TaxContributionPage/CreateWithNestedLineItems.ex.php
+++ b/civicrm/api/v3/examples/TaxContributionPage/CreateWithNestedLineItems.ex.php
@@ -48,7 +48,7 @@ function tax_contribution_page_create_example() {
   try {
     $result = civicrm_api3('tax_contribution_page', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/TaxContributionPage/Delete.ex.php b/civicrm/api/v3/examples/TaxContributionPage/Delete.ex.php
index fe9fc736eea9e1819e35bbd8779ccbf34330f0cb..aab88461c9d3e35174f7be4221cf98e5d3d11edf 100644
--- a/civicrm/api/v3/examples/TaxContributionPage/Delete.ex.php
+++ b/civicrm/api/v3/examples/TaxContributionPage/Delete.ex.php
@@ -18,7 +18,7 @@ function tax_contribution_page_delete_example() {
   try {
     $result = civicrm_api3('tax_contribution_page', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFField/Create.ex.php b/civicrm/api/v3/examples/UFField/Create.ex.php
index 947797d36f9869213bf3f47be7f281948b1fbfc5..79587ab169ea1a47f5714a78525b936e6ed9b7c9 100644
--- a/civicrm/api/v3/examples/UFField/Create.ex.php
+++ b/civicrm/api/v3/examples/UFField/Create.ex.php
@@ -27,7 +27,7 @@ function uf_field_create_example() {
   try {
     $result = civicrm_api3('UFField', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFField/Delete.ex.php b/civicrm/api/v3/examples/UFField/Delete.ex.php
index 95ef1f906316be9c4c0f30bf6b81aedb6d81c2f6..8b441b82def0c62013ac8ad5fc189ffbb5386071 100644
--- a/civicrm/api/v3/examples/UFField/Delete.ex.php
+++ b/civicrm/api/v3/examples/UFField/Delete.ex.php
@@ -18,7 +18,7 @@ function uf_field_delete_example() {
   try {
     $result = civicrm_api3('UFField', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFField/Get.ex.php b/civicrm/api/v3/examples/UFField/Get.ex.php
index 2d8cf63484029c4e251d7302233502a408814bac..7ed1b1546fafd9d0fce26b02af0457f7dfed0385 100644
--- a/civicrm/api/v3/examples/UFField/Get.ex.php
+++ b/civicrm/api/v3/examples/UFField/Get.ex.php
@@ -16,7 +16,7 @@ function uf_field_get_example() {
   try {
     $result = civicrm_api3('UFField', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFField/Replace.ex.php b/civicrm/api/v3/examples/UFField/Replace.ex.php
index 4bad961e70c14324f5877f7cc22fcb8e568eb045..a3da0d3a3033911f445e6dac5dcb003d84476e1c 100644
--- a/civicrm/api/v3/examples/UFField/Replace.ex.php
+++ b/civicrm/api/v3/examples/UFField/Replace.ex.php
@@ -52,7 +52,7 @@ function uf_field_replace_example() {
   try {
     $result = civicrm_api3('UFField', 'replace', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFGroup/Create.ex.php b/civicrm/api/v3/examples/UFGroup/Create.ex.php
index 879d513ec2245363d46bea4bd05d9f8714a46765..d4ea27b1810ada50e1119868b8be7d087d6d67d4 100644
--- a/civicrm/api/v3/examples/UFGroup/Create.ex.php
+++ b/civicrm/api/v3/examples/UFGroup/Create.ex.php
@@ -37,7 +37,7 @@ function uf_group_create_example() {
   try {
     $result = civicrm_api3('UFGroup', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFGroup/Delete.ex.php b/civicrm/api/v3/examples/UFGroup/Delete.ex.php
index b25743455af9ffe8b897275dc24a01b5d1065811..a1745bfb898e7e8625dab9f0f8189cea045a1629 100644
--- a/civicrm/api/v3/examples/UFGroup/Delete.ex.php
+++ b/civicrm/api/v3/examples/UFGroup/Delete.ex.php
@@ -18,7 +18,7 @@ function uf_group_delete_example() {
   try {
     $result = civicrm_api3('UFGroup', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFGroup/Get.ex.php b/civicrm/api/v3/examples/UFGroup/Get.ex.php
index fc4d018ae3fd09c47b12734e6f53251891dbad2b..25127e0bc9834314c34537e11ffd879a15c4a273 100644
--- a/civicrm/api/v3/examples/UFGroup/Get.ex.php
+++ b/civicrm/api/v3/examples/UFGroup/Get.ex.php
@@ -18,7 +18,7 @@ function uf_group_get_example() {
   try {
     $result = civicrm_api3('UFGroup', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFJoin/Create.ex.php b/civicrm/api/v3/examples/UFJoin/Create.ex.php
index b0244edbe9f90aae83d5a88c725495a1416206a2..52fcc0975b25f8720f4811108cd686eaf91e92a1 100644
--- a/civicrm/api/v3/examples/UFJoin/Create.ex.php
+++ b/civicrm/api/v3/examples/UFJoin/Create.ex.php
@@ -24,7 +24,7 @@ function uf_join_create_example() {
   try {
     $result = civicrm_api3('UFJoin', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFJoin/Get.ex.php b/civicrm/api/v3/examples/UFJoin/Get.ex.php
index 08f3ca6443c613960737757dfe788a77a2e25cad..50ea381ebbf99f81d4f46fdd49b5f29898f25410 100644
--- a/civicrm/api/v3/examples/UFJoin/Get.ex.php
+++ b/civicrm/api/v3/examples/UFJoin/Get.ex.php
@@ -20,7 +20,7 @@ function uf_join_get_example() {
   try {
     $result = civicrm_api3('UFJoin', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/UFMatch/Get.ex.php b/civicrm/api/v3/examples/UFMatch/Get.ex.php
index 8b87d90e446b8dca6b931d5fb34a9e8194aa0475..d4d6e24c190c794ac97b9d88374c733629cda735 100644
--- a/civicrm/api/v3/examples/UFMatch/Get.ex.php
+++ b/civicrm/api/v3/examples/UFMatch/Get.ex.php
@@ -18,7 +18,7 @@ function uf_match_get_example() {
   try {
     $result = civicrm_api3('UFMatch', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/User/Get.ex.php b/civicrm/api/v3/examples/User/Get.ex.php
index 92cc07edd26df25d7e9065128dcf2e3a1d6d7f4b..e5879ca59ff4444ab3500c5ac9a86c291a701b54 100644
--- a/civicrm/api/v3/examples/User/Get.ex.php
+++ b/civicrm/api/v3/examples/User/Get.ex.php
@@ -19,7 +19,7 @@ function user_get_example() {
   try {
     $result = civicrm_api3('User', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/User/GetFields.ex.php b/civicrm/api/v3/examples/User/GetFields.ex.php
index 4df70c692215618484435bdbe70e4a88f13bb996..905194a08f726930b0a50b17d86f55ca1b8d54b3 100644
--- a/civicrm/api/v3/examples/User/GetFields.ex.php
+++ b/civicrm/api/v3/examples/User/GetFields.ex.php
@@ -18,7 +18,7 @@ function user_getfields_example() {
   try {
     $result = civicrm_api3('User', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Website/Create.ex.php b/civicrm/api/v3/examples/Website/Create.ex.php
index ba17211e962e9ac289c1f146572ad8bc30fa898c..2ec70d1cd37a38dc2965109ca417be2b48254f91 100644
--- a/civicrm/api/v3/examples/Website/Create.ex.php
+++ b/civicrm/api/v3/examples/Website/Create.ex.php
@@ -20,7 +20,7 @@ function website_create_example() {
   try {
     $result = civicrm_api3('Website', 'create', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Website/Delete.ex.php b/civicrm/api/v3/examples/Website/Delete.ex.php
index 2b04101b8ac634e1bc1c9d9f87a08f1534daf888..c08be41dff40248d576bc9beb510bc6bde8bf782 100644
--- a/civicrm/api/v3/examples/Website/Delete.ex.php
+++ b/civicrm/api/v3/examples/Website/Delete.ex.php
@@ -18,7 +18,7 @@ function website_delete_example() {
   try {
     $result = civicrm_api3('Website', 'delete', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Website/Get.ex.php b/civicrm/api/v3/examples/Website/Get.ex.php
index 8492e1faefc61b86ad05f99420bb4ebb3c941604..63b3a32b186c72a4918e03644e58570db59d5023 100644
--- a/civicrm/api/v3/examples/Website/Get.ex.php
+++ b/civicrm/api/v3/examples/Website/Get.ex.php
@@ -20,7 +20,7 @@ function website_get_example() {
   try {
     $result = civicrm_api3('Website', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Website/GetFields.ex.php b/civicrm/api/v3/examples/Website/GetFields.ex.php
index 6801f5543a79b45e3a9d239d390c8080468233f1..cb696539975ce25bd118a92c5c89426c4fceeca4 100644
--- a/civicrm/api/v3/examples/Website/GetFields.ex.php
+++ b/civicrm/api/v3/examples/Website/GetFields.ex.php
@@ -18,7 +18,7 @@ function website_getfields_example() {
   try {
     $result = civicrm_api3('Website', 'getfields', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/examples/Website/GetWithMetadata.ex.php b/civicrm/api/v3/examples/Website/GetWithMetadata.ex.php
index d3cd32d16d66e2f9fcca741f96574b210b3626d3..652a3c562b4e12d8e30c897c5c608d648bfb9974 100644
--- a/civicrm/api/v3/examples/Website/GetWithMetadata.ex.php
+++ b/civicrm/api/v3/examples/Website/GetWithMetadata.ex.php
@@ -24,7 +24,7 @@ function website_get_example() {
   try {
     $result = civicrm_api3('Website', 'get', $params);
   }
-  catch (CiviCRM_API3_Exception $e) {
+  catch (CRM_Core_Exception $e) {
     // Handle error here.
     $errorMessage = $e->getMessage();
     $errorCode = $e->getErrorCode();
diff --git a/civicrm/api/v3/utils.php b/civicrm/api/v3/utils.php
index 4e650695db3370606cf0ed840896e04966cf6224..504d7d0fec55bab83c3d6a3d5075452f0096c0a4 100644
--- a/civicrm/api/v3/utils.php
+++ b/civicrm/api/v3/utils.php
@@ -34,7 +34,7 @@ function _civicrm_api3_initialize() {
  * @param array $keyoptions
  *   List of required fields options. One of the options is required.
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions = []) {
   $keys = [[]];
@@ -55,7 +55,7 @@ function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions
  *   List of required fields. A value can be an array denoting that either this or that is required.
  * @param bool $verifyDAO
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = [], $verifyDAO = TRUE) {
   $unmatched = [];
@@ -95,7 +95,7 @@ function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = [], $ve
     }
   }
   if (!empty($unmatched)) {
-    throw new API_Exception('Mandatory key(s) missing from params array: ' . implode(", ", $unmatched), 'mandatory_missing', ["fields" => $unmatched]);
+    throw new CRM_Core_Exception('Mandatory key(s) missing from params array: ' . implode(", ", $unmatched), 'mandatory_missing', ["fields" => $unmatched]);
   }
 }
 
@@ -142,7 +142,7 @@ function civicrm_api3_create_error($msg, $data = []) {
  *   - this param is currently used for legacy behaviour support
  *
  * @return array
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function civicrm_api3_create_success($values = 1, $params = [], $entity = NULL, $action = NULL, &$dao = NULL, $extraReturnValues = []) {
   $result = [];
@@ -512,7 +512,7 @@ function _civicrm_api3_field_names($fields) {
  *  (used if return not set - but don't do that - set return!).
  *
  * @return array
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = [], $getCount = NULL, $mode = 1, $defaultReturnProperties = NULL) {
   $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
@@ -646,7 +646,7 @@ function _civicrm_api3_get_query_object($params, $mode, $entity) {
  *   API specific queries eg for event isCurrent would be converted to
  *   $extraSql['where'] = array('civicrm_event' => array('(start_date >= CURDATE() || end_date >= CURDATE())'));
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws Exception
  */
 function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $extraSql = []) {
@@ -696,7 +696,7 @@ function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $extraSql
       if ($unique) {
         $daoFieldName = $allfields[$field]['name'];
         if (empty($daoFieldName)) {
-          throw new API_Exception("Failed to determine field name for \"$field\"");
+          throw new CRM_Core_Exception("Failed to determine field name for \"$field\"");
         }
         $dao->{$daoFieldName} = $params[$field];
       }
@@ -783,7 +783,7 @@ function _civicrm_api3_apply_filters_to_dao($filterField, $filterValue, &$dao) {
  * @param string $entity
  * @param string $action
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @return array
  *   options extracted from params
  */
@@ -851,14 +851,14 @@ function _civicrm_api3_get_options_from_params($params, $queryObject = FALSE, $e
         $finalSort[] = $s;
       }
       else {
-        throw new API_Exception("Unknown field specified for sort. Cannot order by '$s'");
+        throw new CRM_Core_Exception("Unknown field specified for sort. Cannot order by '$s'");
       }
     }
     $options['sort'] = implode(', ', $finalSort);
   }
 
   if ($options['sort'] && stristr($options['sort'], 'SELECT')) {
-    throw new API_Exception('invalid string in sort options');
+    throw new CRM_Core_Exception('invalid string in sort options');
   }
 
   if (!$queryObject) {
@@ -882,7 +882,7 @@ function _civicrm_api3_get_options_from_params($params, $queryObject = FALSE, $e
     elseif (!in_array($n, $otherVars)) {
       $inputParams[$n] = $v;
       if ($v && !is_array($v) && stristr($v, 'SELECT')) {
-        throw new API_Exception('invalid string');
+        throw new CRM_Core_Exception('invalid string');
       }
     }
   }
@@ -900,7 +900,6 @@ function _civicrm_api3_get_options_from_params($params, $queryObject = FALSE, $e
  *   DAO object.
  * @param string $entity
  *
- * @throws \API_Exception
  * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_apply_options_to_dao(&$params, &$dao, $entity) {
@@ -977,7 +976,7 @@ function _civicrm_api3_get_unique_name_array(&$bao) {
  *
  * @return array
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  *
  * @deprecated - DAO based retrieval is being phased out.
  *
@@ -1030,7 +1029,7 @@ function _civicrm_api3_dao_to_array($dao, $params = NULL, $uniqueFields = TRUE,
  * @param array $params
  *
  * @return bool
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  *
  * @todo filter so only required fields are queried
  */
@@ -1299,7 +1298,7 @@ function _civicrm_api3_basic_get($bao_name, $params, $returnAsSuccess = TRUE, $e
  * @param string $entity
  *   Entity - pass in if entity is non-standard & required $ids array.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  * @return array
  */
@@ -1329,7 +1328,7 @@ function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
     // so we need to reset the error object here to avoid getting concatenated errors
     //@todo - the mulitple error handling should be moved out of the contribution object to the import / multiple entity processes
     CRM_Core_Error::singleton()->reset();
-    throw new API_Exception($msg);
+    throw new CRM_Core_Exception($msg);
   }
   else {
     // If we have custom fields the BAO may have taken care of it or we may have to.
@@ -1369,7 +1368,7 @@ function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
  * @param string|CRM_Core_DAO $bao_name
  * @param array $params
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  *
  * @return CRM_Core_DAO|NULL
  *   An instance of the BAO
@@ -1389,9 +1388,9 @@ function _civicrm_api3_basic_create_fallback($bao_name, $params) {
  * @return array
  *   API result array
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_basic_delete($bao_name, &$params) {
   civicrm_api3_verify_mandatory($params, NULL, ['id']);
@@ -1405,9 +1404,9 @@ function _civicrm_api3_basic_delete($bao_name, &$params) {
       if ($bao !== FALSE) {
         return civicrm_api3_create_success();
       }
-      throw new API_Exception('Could not delete entity id ' . $params['id']);
+      throw new CRM_Core_Exception('Could not delete entity id ' . $params['id']);
     }
-    throw new API_Exception('Could not delete entity id ' . $params['id']);
+    throw new CRM_Core_Exception('Could not delete entity id ' . $params['id']);
   }
   else {
     $bao_name::deleteRecord($params);
@@ -1492,7 +1491,7 @@ function _civicrm_api3_custom_data_get(&$returnArray, $checkPermission, $entity,
  * @param array $params
  *
  * @return array $errors
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_validate($entity, $action, $params) {
   $errors = [];
@@ -1544,7 +1543,7 @@ function _civicrm_api3_validate($entity, $action, $params) {
  * @param array $params
  * @param string $action
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws Exception
  */
 function _civicrm_api3_validate_switch_cases($fieldName, $fieldInfo, $entity, $params, $action) {
@@ -1767,7 +1766,7 @@ function _civicrm_api3_getValidDate($dateValue, $fieldName, $fieldType) {
  *   Array of fields from getfields function.
  * @param string $entity
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_validate_constraint($fieldValue, $fieldName, $fieldInfo, $entity) {
   $daoName = $fieldInfo['FKClassName'];
@@ -1780,7 +1779,7 @@ function _civicrm_api3_validate_constraint($fieldValue, $fieldName, $fieldInfo,
   $dao->selectAdd();
   $dao->selectAdd('id');
   if (!$dao->find()) {
-    throw new API_Exception("$fieldName is not valid : " . $fieldValue);
+    throw new CRM_Core_Exception("$fieldName is not valid : " . $fieldValue);
   }
 }
 
@@ -1806,7 +1805,7 @@ function _civicrm_api3_validate_unique_key(&$params, &$fieldName) {
   // an entry already exists for this unique field
   if ($existing['count'] == 1) {
     // question - could this ever be a security issue?
-    throw new API_Exception("Field: `$fieldName` must be unique. An conflicting entity already exists - id: " . $existing['id']);
+    throw new CRM_Core_Exception("Field: `$fieldName` must be unique. An conflicting entity already exists - id: " . $existing['id']);
   }
 }
 
@@ -2082,7 +2081,7 @@ function _civicrm_api3_swap_out_aliases(&$apiRequest, $fields) {
  *   Array of fields from getfields function.
  * @param string $entity
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_validate_integer(&$params, $fieldName, &$fieldInfo, $entity) {
   [$fieldValue, $op] = _civicrm_api3_field_value_check($params, $fieldName);
@@ -2099,7 +2098,7 @@ function _civicrm_api3_validate_integer(&$params, $fieldName, &$fieldInfo, $enti
     if (!is_numeric($fieldValue) && is_scalar($fieldValue)) {
       $realContactId = _civicrm_api3_resolve_contactID($fieldValue);
       if ('unknown-user' === $realContactId) {
-        throw new API_Exception("\"$fieldName\" \"{$fieldValue}\" cannot be resolved to a contact ID", 2002, ['error_field' => $fieldName, "type" => "integer"]);
+        throw new CRM_Core_Exception("\"$fieldName\" \"{$fieldValue}\" cannot be resolved to a contact ID", 2002, ['error_field' => $fieldName, "type" => "integer"]);
       }
       elseif (is_numeric($realContactId)) {
         $fieldValue = $realContactId;
@@ -2128,14 +2127,14 @@ function _civicrm_api3_validate_integer(&$params, $fieldName, &$fieldInfo, $enti
     // After swapping options, ensure we have an integer(s)
     foreach ((array) ($fieldValue) as $value) {
       if ($value && !is_numeric($value) && $value !== 'null' && $value !== NULL && !is_array($value)) {
-        throw new API_Exception("$fieldName is not a valid integer", 2001, ['error_field' => $fieldName, "type" => "integer"]);
+        throw new CRM_Core_Exception("$fieldName is not a valid integer", 2001, ['error_field' => $fieldName, "type" => "integer"]);
       }
     }
 
     // Check our field length
     if (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen($fieldValue) > $fieldInfo['maxlength']
       ) {
-      throw new API_Exception($fieldValue . " is " . strlen($fieldValue) . " characters  - longer than $fieldName length" . $fieldInfo['maxlength'] . ' characters',
+      throw new CRM_Core_Exception($fieldValue . " is " . strlen($fieldValue) . " characters  - longer than $fieldName length" . $fieldInfo['maxlength'] . ' characters',
         2100, ['field' => $fieldName, "max_length" => $fieldInfo['maxlength']]
       );
     }
@@ -2232,7 +2231,7 @@ function _civicrm_api3_resolve_contactID($contactIdExpr) {
  * @param string $fieldName
  * @param array $fieldInfo
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_validate_html(&$params, &$fieldName, $fieldInfo) {
   [$fieldValue, $op] = _civicrm_api3_field_value_check($params, $fieldName);
@@ -2253,7 +2252,7 @@ function _civicrm_api3_validate_html(&$params, &$fieldName, $fieldInfo) {
  * @param string $entity
  * @param string $action
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  * @throws Exception
  */
 function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $entity, $action) {
@@ -2281,7 +2280,7 @@ function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $enti
     try {
       _civicrm_api3_api_match_pseudoconstant($fieldValue, $entity, $fieldName, $fieldInfo, $op);
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       // For get operations, allow any string
       if (!$isGet) {
         throw $e;
@@ -2290,7 +2289,7 @@ function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $enti
   }
   // Check our field length
   elseif (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen(utf8_decode($fieldValue)) > $fieldInfo['maxlength']) {
-    throw new API_Exception("Value for $fieldName is " . strlen(utf8_decode($value)) . " characters  - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
+    throw new CRM_Core_Exception("Value for $fieldName is " . strlen(utf8_decode($value)) . " characters  - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
       2100, ['field' => $fieldName]
     );
   }
@@ -2313,7 +2312,7 @@ function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $enti
  * @param string $op
  * @param array $additional_lookup_params
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_api_match_pseudoconstant(&$fieldValue, $entity, $fieldName, $fieldInfo, $op = '=', $additional_lookup_params = []) {
   if (in_array($op, ['>', '<', '>=', '<=', 'LIKE', 'NOT LIKE'])) {
@@ -2367,7 +2366,7 @@ function _civicrm_api3_api_match_pseudoconstant(&$fieldValue, $entity, $fieldNam
  *   in case we have the weird situation of it being a valid option in which case our
  *   brains will probably explode.
  *
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _civicrm_api3_api_match_pseudoconstant_value(&$value, $options, $fieldName, $isRequired) {
   // If option is a key, no need to translate
@@ -2419,7 +2418,7 @@ function _civicrm_api3_api_match_pseudoconstant_value(&$value, $options, $fieldN
     }
   }
   if ($newValue === FALSE) {
-    throw new API_Exception("'$value' is not a valid option for field $fieldName", 2001, ['error_field' => $fieldName]);
+    throw new CRM_Core_Exception("'$value' is not a valid option for field $fieldName", 2001, ['error_field' => $fieldName]);
   }
   $value = $newValue;
 }
@@ -2533,7 +2532,7 @@ function _civicrm_api3_field_value_check(&$params, $fieldName, $type = NULL) {
  *   List of filterable fields.
  *
  * @return array
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_basic_array_get($entity, $params, $records, $idCol, $filterableFields) {
   $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
@@ -2605,7 +2604,7 @@ function _civicrm_api3_basic_array_get($entity, $params, $records, $idCol, $filt
         return in_array($recordVal, $searchVal) == ($operator == 'IN');
 
       default:
-        throw new API_Exception("Unsupported operator: '$operator' cannot be used with array data");
+        throw new CRM_Core_Exception("Unsupported operator: '$operator' cannot be used with array data");
     }
   };
 
@@ -2677,7 +2676,7 @@ function _civicrm_api3_check_edit_permissions($bao_name, $params) {
  * @param string $entity API Entity
  *
  * @return bool
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function _civicrm_api3_compare_timestamps($modifiedDate, $id, $entity) {
   $currentDbInfo = civicrm_api3($entity, 'getsingle', ['id' => $id]);
diff --git a/civicrm/bin/ContributionProcessor.php b/civicrm/bin/ContributionProcessor.php
index 3de786f487fe97e674f219b8f7958a22ddfeee18..00b3776e0b3ed038f94ce38bdc4f58f653e7e3bc 100644
--- a/civicrm/bin/ContributionProcessor.php
+++ b/civicrm/bin/ContributionProcessor.php
@@ -183,7 +183,7 @@ class CiviContributeProcessor {
               CRM_Core_Error::debug_log_message("Skipped - {$trxnDetails['email']}, {$trxnDetails['amt']}, {$value} ..<p>", TRUE);
             }
           }
-          catch (CiviCRM_API3_Exception $e) {
+          catch (CRM_Core_Exception $e) {
             CRM_Core_Error::debug_log_message("Skipped - {$trxnDetails['email']}, {$trxnDetails['amt']}, {$value} ..<p>", TRUE);
           }
         }
diff --git a/civicrm/bower_components/jquery-ui/.composer-downloads/jquery-ui-f4e47df9c6fa2e82f5987f78dc64c392.json b/civicrm/bower_components/jquery-ui/.composer-downloads/jquery-ui-f4e47df9c6fa2e82f5987f78dc64c392.json
index 56686c84e3394d44ce77c107cb0bd0a270e23e63..ba8ed82f804416e26b9b4a486c03354b9cefa726 100644
--- a/civicrm/bower_components/jquery-ui/.composer-downloads/jquery-ui-f4e47df9c6fa2e82f5987f78dc64c392.json
+++ b/civicrm/bower_components/jquery-ui/.composer-downloads/jquery-ui-f4e47df9c6fa2e82f5987f78dc64c392.json
@@ -1,6 +1,6 @@
 {
     "name": "civicrm/civicrm-core:jquery-ui",
-    "url": "https://github.com/civicrm/jqueryui/archive/1.13.1-civicrm.zip",
-    "checksum": "cb12909a6642b8b7872dbeb7fa5f048de6c6276bef9720d0516e99b479cc3d1d",
+    "url": "https://github.com/civicrm/jqueryui/archive/1.13.2-civicrm.zip",
+    "checksum": "90c0a0954548ffbc1b734553d686302e532d054a820b03dd96720f9828cdb4df",
     "ignore": null
 }
\ No newline at end of file
diff --git a/civicrm/bower_components/jquery-ui/bower.json b/civicrm/bower_components/jquery-ui/bower.json
index 97a75777b12b37f4514d44f1efafd697978d1ec5..3f833b02f1199c4f1d6257d12e18a5b8ac5e0662 100644
--- a/civicrm/bower_components/jquery-ui/bower.json
+++ b/civicrm/bower_components/jquery-ui/bower.json
@@ -1,6 +1,6 @@
 {
   "name": "jquery-ui",
-  "version": "1.13.1",
+  "version": "1.13.2",
   "main": [
     "jquery-ui.js"
   ],
diff --git a/civicrm/bower_components/jquery-ui/component.json b/civicrm/bower_components/jquery-ui/component.json
index b3f7eec46eaec71acfa668535d5bb63b6909d53d..f678f1febf9df4a0f38919250ce3af3f96a855a3 100644
--- a/civicrm/bower_components/jquery-ui/component.json
+++ b/civicrm/bower_components/jquery-ui/component.json
@@ -1,7 +1,7 @@
 {
   "name": "jquery-ui",
   "repo": "components/jqueryui",
-  "version": "1.13.1",
+  "version": "1.13.2",
   "license": "MIT",
   "scripts": [
     "jquery-ui.js"
diff --git a/civicrm/bower_components/jquery-ui/jquery-ui.js b/civicrm/bower_components/jquery-ui/jquery-ui.js
index 5d9bfa2f1b179322d856241b231836e5b07d27b5..1a613bf2f94b3173ccc3f3a56c6f909ab7fc3721 100644
--- a/civicrm/bower_components/jquery-ui/jquery-ui.js
+++ b/civicrm/bower_components/jquery-ui/jquery-ui.js
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
 * Copyright jQuery Foundation and other contributors; Licensed MIT */
@@ -20,11 +20,11 @@
 
 $.ui = $.ui || {};
 
-var version = $.ui.version = "1.13.1";
+var version = $.ui.version = "1.13.2";
 
 
 /*!
- * jQuery UI Widget 1.13.1
+ * jQuery UI Widget 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -766,7 +766,7 @@ var widget = $.widget;
 
 
 /*!
- * jQuery UI Position 1.13.1
+ * jQuery UI Position 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -1263,7 +1263,7 @@ var position = $.ui.position;
 
 
 /*!
- * jQuery UI :data 1.13.1
+ * jQuery UI :data 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -1292,7 +1292,7 @@ var data = $.extend( $.expr.pseudos, {
 } );
 
 /*!
- * jQuery UI Disable Selection 1.13.1
+ * jQuery UI Disable Selection 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -2047,7 +2047,7 @@ colors = jQuery.Color.names = {
 
 
 /*!
- * jQuery UI Effects 1.13.1
+ * jQuery UI Effects 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -2431,7 +2431,7 @@ if ( $.uiBackCompat !== false ) {
 }
 
 $.extend( $.effects, {
-	version: "1.13.1",
+	version: "1.13.2",
 
 	define: function( name, mode, effect ) {
 		if ( !effect ) {
@@ -2999,7 +2999,7 @@ var effect = $.effects;
 
 
 /*!
- * jQuery UI Effects Blind 1.13.1
+ * jQuery UI Effects Blind 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3054,7 +3054,7 @@ var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, d
 
 
 /*!
- * jQuery UI Effects Bounce 1.13.1
+ * jQuery UI Effects Bounce 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3149,7 +3149,7 @@ var effectsEffectBounce = $.effects.define( "bounce", function( options, done )
 
 
 /*!
- * jQuery UI Effects Clip 1.13.1
+ * jQuery UI Effects Clip 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3199,7 +3199,7 @@ var effectsEffectClip = $.effects.define( "clip", "hide", function( options, don
 
 
 /*!
- * jQuery UI Effects Drop 1.13.1
+ * jQuery UI Effects Drop 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3253,7 +3253,7 @@ var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, don
 
 
 /*!
- * jQuery UI Effects Explode 1.13.1
+ * jQuery UI Effects Explode 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3349,7 +3349,7 @@ var effectsEffectExplode = $.effects.define( "explode", "hide", function( option
 
 
 /*!
- * jQuery UI Effects Fade 1.13.1
+ * jQuery UI Effects Fade 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3381,7 +3381,7 @@ var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, d
 
 
 /*!
- * jQuery UI Effects Fold 1.13.1
+ * jQuery UI Effects Fold 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3455,7 +3455,7 @@ var effectsEffectFold = $.effects.define( "fold", "hide", function( options, don
 
 
 /*!
- * jQuery UI Effects Highlight 1.13.1
+ * jQuery UI Effects Highlight 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3497,7 +3497,7 @@ var effectsEffectHighlight = $.effects.define( "highlight", "show", function( op
 
 
 /*!
- * jQuery UI Effects Size 1.13.1
+ * jQuery UI Effects Size 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3675,7 +3675,7 @@ var effectsEffectSize = $.effects.define( "size", function( options, done ) {
 
 
 /*!
- * jQuery UI Effects Scale 1.13.1
+ * jQuery UI Effects Scale 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3715,7 +3715,7 @@ var effectsEffectScale = $.effects.define( "scale", function( options, done ) {
 
 
 /*!
- * jQuery UI Effects Puff 1.13.1
+ * jQuery UI Effects Puff 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3741,7 +3741,7 @@ var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, don
 
 
 /*!
- * jQuery UI Effects Pulsate 1.13.1
+ * jQuery UI Effects Pulsate 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3790,7 +3790,7 @@ var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( option
 
 
 /*!
- * jQuery UI Effects Shake 1.13.1
+ * jQuery UI Effects Shake 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3849,7 +3849,7 @@ var effectsEffectShake = $.effects.define( "shake", function( options, done ) {
 
 
 /*!
- * jQuery UI Effects Slide 1.13.1
+ * jQuery UI Effects Slide 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3910,7 +3910,7 @@ var effectsEffectSlide = $.effects.define( "slide", "show", function( options, d
 
 
 /*!
- * jQuery UI Effects Transfer 1.13.1
+ * jQuery UI Effects Transfer 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -3935,7 +3935,7 @@ var effectsEffectTransfer = effect;
 
 
 /*!
- * jQuery UI Focusable 1.13.1
+ * jQuery UI Focusable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4017,7 +4017,7 @@ var form = $.fn._form = function() {
 
 
 /*!
- * jQuery UI Form Reset Mixin 1.13.1
+ * jQuery UI Form Reset Mixin 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4079,7 +4079,7 @@ var formResetMixin = $.ui.formResetMixin = {
 
 
 /*!
- * jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
+ * jQuery UI Support for jQuery core 1.8.x and newer 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4154,7 +4154,7 @@ if ( !$.fn.even || !$.fn.odd ) {
 
 ;
 /*!
- * jQuery UI Keycode 1.13.1
+ * jQuery UI Keycode 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4189,7 +4189,7 @@ var keycode = $.ui.keyCode = {
 
 
 /*!
- * jQuery UI Labels 1.13.1
+ * jQuery UI Labels 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4244,7 +4244,7 @@ var labels = $.fn.labels = function() {
 
 
 /*!
- * jQuery UI Scroll Parent 1.13.1
+ * jQuery UI Scroll Parent 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4278,7 +4278,7 @@ var scrollParent = $.fn.scrollParent = function( includeHidden ) {
 
 
 /*!
- * jQuery UI Tabbable 1.13.1
+ * jQuery UI Tabbable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4302,7 +4302,7 @@ var tabbable = $.extend( $.expr.pseudos, {
 
 
 /*!
- * jQuery UI Unique ID 1.13.1
+ * jQuery UI Unique ID 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4340,7 +4340,7 @@ var uniqueId = $.fn.extend( {
 
 
 /*!
- * jQuery UI Accordion 1.13.1
+ * jQuery UI Accordion 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4361,7 +4361,7 @@ var uniqueId = $.fn.extend( {
 
 
 var widgetsAccordion = $.widget( "ui.accordion", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		active: 0,
 		animate: {},
@@ -4972,7 +4972,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
 
 
 /*!
- * jQuery UI Menu 1.13.1
+ * jQuery UI Menu 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -4991,7 +4991,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
 
 
 var widgetsMenu = $.widget( "ui.menu", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<ul>",
 	delay: 300,
 	options: {
@@ -5663,7 +5663,7 @@ var widgetsMenu = $.widget( "ui.menu", {
 
 
 /*!
- * jQuery UI Autocomplete 1.13.1
+ * jQuery UI Autocomplete 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -5682,7 +5682,7 @@ var widgetsMenu = $.widget( "ui.menu", {
 
 
 $.widget( "ui.autocomplete", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<input>",
 	options: {
 		appendTo: null,
@@ -6319,7 +6319,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
 
 
 /*!
- * jQuery UI Controlgroup 1.13.1
+ * jQuery UI Controlgroup 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -6340,7 +6340,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
 var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
 
 var widgetsControlgroup = $.widget( "ui.controlgroup", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<div>",
 	options: {
 		direction: "horizontal",
@@ -6604,7 +6604,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
 } );
 
 /*!
- * jQuery UI Checkboxradio 1.13.1
+ * jQuery UI Checkboxradio 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -6624,7 +6624,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
 
 
 $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		disabled: null,
 		label: null,
@@ -6636,8 +6636,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
 	},
 
 	_getCreateOptions: function() {
-		var disabled, labels;
-		var that = this;
+		var disabled, labels, labelContents;
 		var options = this._super() || {};
 
 		// We read the type here, because it makes more sense to throw a element type error first,
@@ -6657,12 +6656,18 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
 
 		// We need to get the label text but this may also need to make sure it does not contain the
 		// input itself.
-		this.label.contents().not( this.element[ 0 ] ).each( function() {
+		// The label contents could be text, html, or a mix. We wrap all elements
+		// and read the wrapper's `innerHTML` to get a string representation of
+		// the label, without the input as part of it.
+		labelContents = this.label.contents().not( this.element[ 0 ] );
 
-			// The label contents could be text, html, or a mix. We concat each element to get a
-			// string representation of the label, without the input as part of it.
-			that.originalLabel += this.nodeType === 3 ? $( this ).text() : this.outerHTML;
-		} );
+		if ( labelContents.length ) {
+			this.originalLabel += labelContents
+				.clone()
+				.wrapAll( "<div></div>" )
+				.parent()
+				.html();
+		}
 
 		// Set the label option if we found label text
 		if ( this.originalLabel ) {
@@ -6870,7 +6875,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
 
 
 /*!
- * jQuery UI Button 1.13.1
+ * jQuery UI Button 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -6889,7 +6894,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
 
 
 $.widget( "ui.button", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<button>",
 	options: {
 		classes: {
@@ -7296,7 +7301,7 @@ var widgetsButton = $.ui.button;
 
 /* eslint-disable max-len, camelcase */
 /*!
- * jQuery UI Datepicker 1.13.1
+ * jQuery UI Datepicker 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -7314,7 +7319,7 @@ var widgetsButton = $.ui.button;
 //>>css.theme: ../../themes/base/theme.css
 
 
-$.extend( $.ui, { datepicker: { version: "1.13.1" } } );
+$.extend( $.ui, { datepicker: { version: "1.13.2" } } );
 
 var datepicker_instActive;
 
@@ -9511,7 +9516,7 @@ $.fn.datepicker = function( options ) {
 $.datepicker = new Datepicker(); // singleton instance
 $.datepicker.initialized = false;
 $.datepicker.uuid = new Date().getTime();
-$.datepicker.version = "1.13.1";
+$.datepicker.version = "1.13.2";
 
 var widgetsDatepicker = $.datepicker;
 
@@ -9521,7 +9526,7 @@ var widgetsDatepicker = $.datepicker;
 var ie = $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
 
 /*!
- * jQuery UI Mouse 1.13.1
+ * jQuery UI Mouse 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -9541,7 +9546,7 @@ $( document ).on( "mouseup", function() {
 } );
 
 var widgetsMouse = $.widget( "ui.mouse", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		cancel: "input, textarea, button, select, option",
 		distance: 1,
@@ -9783,7 +9788,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
 
 
 /*!
- * jQuery UI Draggable 1.13.1
+ * jQuery UI Draggable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -9800,7 +9805,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
 
 
 $.widget( "ui.draggable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "drag",
 	options: {
 		addClasses: true,
@@ -11018,7 +11023,7 @@ var widgetsDraggable = $.ui.draggable;
 
 
 /*!
- * jQuery UI Resizable 1.13.1
+ * jQuery UI Resizable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -11037,7 +11042,7 @@ var widgetsDraggable = $.ui.draggable;
 
 
 $.widget( "ui.resizable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "resize",
 	options: {
 		alsoResize: false,
@@ -12216,7 +12221,7 @@ var widgetsResizable = $.ui.resizable;
 
 
 /*!
- * jQuery UI Dialog 1.13.1
+ * jQuery UI Dialog 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -12235,7 +12240,7 @@ var widgetsResizable = $.ui.resizable;
 
 
 $.widget( "ui.dialog", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		appendTo: "body",
 		autoOpen: true,
@@ -13141,7 +13146,7 @@ var widgetsDialog = $.ui.dialog;
 
 
 /*!
- * jQuery UI Droppable 1.13.1
+ * jQuery UI Droppable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -13157,7 +13162,7 @@ var widgetsDialog = $.ui.dialog;
 
 
 $.widget( "ui.droppable", {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "drop",
 	options: {
 		accept: "*",
@@ -13624,7 +13629,7 @@ var widgetsDroppable = $.ui.droppable;
 
 
 /*!
- * jQuery UI Progressbar 1.13.1
+ * jQuery UI Progressbar 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -13645,7 +13650,7 @@ var widgetsDroppable = $.ui.droppable;
 
 
 var widgetsProgressbar = $.widget( "ui.progressbar", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		classes: {
 			"ui-progressbar": "ui-corner-all",
@@ -13787,7 +13792,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
 
 
 /*!
- * jQuery UI Selectable 1.13.1
+ * jQuery UI Selectable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -13804,7 +13809,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
 
 
 var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		appendTo: "body",
 		autoRefresh: true,
@@ -14085,7 +14090,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
 
 
 /*!
- * jQuery UI Selectmenu 1.13.1
+ * jQuery UI Selectmenu 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -14106,7 +14111,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
 
 
 var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<select>",
 	options: {
 		appendTo: null,
@@ -14479,7 +14484,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
 		// Support: IE
 		// Setting the text selection kills the button focus in IE, but
 		// restoring the focus doesn't kill the selection.
-		this.button.focus();
+		this.button.trigger( "focus" );
 	},
 
 	_documentClick: {
@@ -14754,7 +14759,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
 
 
 /*!
- * jQuery UI Slider 1.13.1
+ * jQuery UI Slider 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -14773,7 +14778,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
 
 
 var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "slide",
 
 	options: {
@@ -15489,7 +15494,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
 
 
 /*!
- * jQuery UI Sortable 1.13.1
+ * jQuery UI Sortable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -15506,7 +15511,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
 
 
 var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "sort",
 	ready: false,
 	options: {
@@ -17082,7 +17087,7 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
 
 
 /*!
- * jQuery UI Spinner 1.13.1
+ * jQuery UI Spinner 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -17112,7 +17117,7 @@ function spinnerModifier( fn ) {
 }
 
 $.widget( "ui.spinner", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<input>",
 	widgetEventPrefix: "spin",
 	options: {
@@ -17643,7 +17648,7 @@ var widgetsSpinner = $.ui.spinner;
 
 
 /*!
- * jQuery UI Tabs 1.13.1
+ * jQuery UI Tabs 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -17662,7 +17667,7 @@ var widgetsSpinner = $.ui.spinner;
 
 
 $.widget( "ui.tabs", {
-	version: "1.13.1",
+	version: "1.13.2",
 	delay: 300,
 	options: {
 		active: null,
@@ -18547,7 +18552,7 @@ var widgetsTabs = $.ui.tabs;
 
 
 /*!
- * jQuery UI Tooltip 1.13.1
+ * jQuery UI Tooltip 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -18566,7 +18571,7 @@ var widgetsTabs = $.ui.tabs;
 
 
 $.widget( "ui.tooltip", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		classes: {
 			"ui-tooltip": "ui-corner-all ui-widget-shadow"
diff --git a/civicrm/bower_components/jquery-ui/jquery-ui.min.js b/civicrm/bower_components/jquery-ui/jquery-ui.min.js
index c1cbc8b45266de1adac52d32a797a22dc35c9449..50b036f4d213175cf4b353e5289d2ce7beda715a 100644
--- a/civicrm/bower_components/jquery-ui/jquery-ui.min.js
+++ b/civicrm/bower_components/jquery-ui/jquery-ui.min.js
@@ -1,6 +1,6 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
 * Copyright jQuery Foundation and other contributors; Licensed MIT */
 
-!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(V){"use strict";V.ui=V.ui||{};V.ui.version="1.13.1";var n,i=0,a=Array.prototype.hasOwnProperty,r=Array.prototype.slice;V.cleanData=(n=V.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)}),V.widget=function(t,i,e){var s,n,o,a={},r=t.split(".")[0],l=r+"-"+(t=t.split(".")[1]);return e||(e=i,i=V.Widget),Array.isArray(e)&&(e=V.extend.apply(null,[{}].concat(e))),V.expr.pseudos[l.toLowerCase()]=function(t){return!!V.data(t,l)},V[r]=V[r]||{},s=V[r][t],n=V[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},V.extend(n,s,{version:e.version,_proto:V.extend({},e),_childConstructors:[]}),(o=new i).options=V.widget.extend({},o.options),V.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=V.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(V.each(s._childConstructors,function(t,e){var i=e.prototype;V.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),V.widget.bridge(t,n),n},V.widget.extend=function(t){for(var e,i,s=r.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],a.call(s[n],e)&&void 0!==i&&(V.isPlainObject(i)?t[e]=V.isPlainObject(t[e])?V.widget.extend({},t[e],i):V.widget.extend({},i):t[e]=i);return t},V.widget.bridge=function(o,e){var a=e.prototype.widgetFullName||o;V.fn[o]=function(i){var t="string"==typeof i,s=r.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=V.data(this,a);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V.data(this,a);t?(t.option(i||{}),t._init&&t._init()):V.data(this,a,new e(i,this))})),n}},V.Widget=function(){},V.Widget._childConstructors=[],V.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=V(e||this.defaultElement||this)[0],this.element=V(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=V(),this.hoverable=V(),this.focusable=V(),this.classesElementLookup={},e!==this&&(V.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=V(e.style?e.ownerDocument:e.document||e),this.window=V(this.document[0].defaultView||this.document[0].parentWindow)),this.options=V.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:V.noop,_create:V.noop,_init:V.noop,destroy:function(){var i=this;this._destroy(),V.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:V.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return V.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=V.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=V(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],a=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=a.classesElementLookup[t[s]]||V(),i=n.add?(function(){var i=[];n.element.each(function(t,e){V.map(a.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),a._on(V(i),{remove:"_untrackClassesElement"})}(),V(V.uniqueSort(i.get().concat(n.element.get())))):V(i.not(n.element).get()),a.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=V.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;V.each(s.classesElementLookup,function(t,e){-1!==V.inArray(i.target,e)&&(s.classesElementLookup[t]=V(e.not(i.target).get()))}),this._off(V(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var a,r=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=a=V(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,a=this.widget()),V.each(t,function(t,e){function i(){if(n||!0!==r.options.disabled&&!V(this).hasClass("ui-state-disabled"))return("string"==typeof e?r[e]:e).apply(r,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||V.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+r.eventNamespace,s=s[2];s?a.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=V(this.bindings.not(t).get()),this.focusable=V(this.focusable.not(t).get()),this.hoverable=V(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(V(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(V(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=V.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},V.each({show:"fadeIn",hide:"fadeOut"},function(o,a){V.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||a:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!V.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&V.effects&&V.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){V(this)[o](),i&&i.call(e[0]),t()})}});var s,x,k,o,l,h,c,u,C;V.widget;function D(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function I(t,e){return parseInt(V.css(t,e),10)||0}function T(t){return null!=t&&t===t.window}x=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,C=V.fn.position,V.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=V("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return V("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?V.position.scrollbarWidth():0,height:e?V.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=V(t||window),i=T(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?V(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},V.fn.position=function(u){if(!u||!u.of)return C.apply(this,arguments);var d,p,f,g,m,t,_="string"==typeof(u=V.extend({},u)).of?V(document).find(u.of):V(u.of),v=V.position.getWithinInfo(u.within),b=V.position.getScrollInfo(v),y=(u.collision||"flip").split(" "),w={},e=9===(t=(e=_)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:T(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return _[0].preventDefault&&(u.at="left top"),p=e.width,f=e.height,m=V.extend({},g=e.offset),V.each(["my","at"],function(){var t,e,i=(u[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):l.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=l.test(i[1])?i[1]:"center",t=h.exec(i[0]),e=h.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],u[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===y.length&&(y[1]=y[0]),"right"===u.at[0]?m.left+=p:"center"===u.at[0]&&(m.left+=p/2),"bottom"===u.at[1]?m.top+=f:"center"===u.at[1]&&(m.top+=f/2),d=D(w.at,p,f),m.left+=d[0],m.top+=d[1],this.each(function(){var i,t,a=V(this),r=a.outerWidth(),l=a.outerHeight(),e=I(this,"marginLeft"),s=I(this,"marginTop"),n=r+e+I(this,"marginRight")+b.width,o=l+s+I(this,"marginBottom")+b.height,h=V.extend({},m),c=D(w.my,a.outerWidth(),a.outerHeight());"right"===u.my[0]?h.left-=r:"center"===u.my[0]&&(h.left-=r/2),"bottom"===u.my[1]?h.top-=l:"center"===u.my[1]&&(h.top-=l/2),h.left+=c[0],h.top+=c[1],i={marginLeft:e,marginTop:s},V.each(["left","top"],function(t,e){V.ui.position[y[t]]&&V.ui.position[y[t]][e](h,{targetWidth:p,targetHeight:f,elemWidth:r,elemHeight:l,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+c[0],d[1]+c[1]],my:u.my,at:u.at,within:v,elem:a})}),u.using&&(t=function(t){var e=g.left-h.left,i=e+p-r,s=g.top-h.top,n=s+f-l,o={target:{element:_,left:g.left,top:g.top,width:p,height:f},element:{element:a,left:h.left,top:h.top,width:r,height:l},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};p<r&&k(e+i)<p&&(o.horizontal="center"),f<l&&k(s+n)<f&&(o.vertical="middle"),x(k(e),k(i))>x(k(s),k(n))?o.important="horizontal":o.important="vertical",u.using.call(this,t,o)}),a.offset(V.extend(h,{using:t}))})},V.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,a=s-o,r=o+e.collisionWidth-n-s;e.collisionWidth>n?0<a&&r<=0?(i=t.left+a+e.collisionWidth-n-s,t.left+=a-i):t.left=!(0<r&&a<=0)&&r<a?s+n-e.collisionWidth:s:0<a?t.left+=a:0<r?t.left-=r:t.left=x(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,a=s-o,r=o+e.collisionHeight-n-s;e.collisionHeight>n?0<a&&r<=0?(i=t.top+a+e.collisionHeight-n-s,t.top+=a-i):t.top=!(0<r&&a<=0)&&r<a?s+n-e.collisionHeight:s:0<a?t.top+=a:0<r?t.top-=r:t.top=x(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,a=t.left-e.collisionPosition.marginLeft,r=a-o,l=a+e.collisionWidth-n-o,h="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,a=-2*e.offset[0];r<0?((s=t.left+h+i+a+e.collisionWidth-n-s)<0||s<k(r))&&(t.left+=h+i+a):0<l&&(0<(o=t.left-e.collisionPosition.marginLeft+h+i+a-o)||k(o)<l)&&(t.left+=h+i+a)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,a=t.top-e.collisionPosition.marginTop,r=a-o,l=a+e.collisionHeight-n-o,h="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,a=-2*e.offset[1];r<0?((s=t.top+h+i+a+e.collisionHeight-n-s)<0||s<k(r))&&(t.top+=h+i+a):0<l&&(0<(o=t.top-e.collisionPosition.marginTop+h+i+a-o)||k(o)<l)&&(t.top+=h+i+a)}},flipfit:{left:function(){V.ui.position.flip.left.apply(this,arguments),V.ui.position.fit.left.apply(this,arguments)},top:function(){V.ui.position.flip.top.apply(this,arguments),V.ui.position.fit.top.apply(this,arguments)}}};V.ui.position,V.extend(V.expr.pseudos,{data:V.expr.createPseudo?V.expr.createPseudo(function(e){return function(t){return!!V.data(t,e)}}):function(t,e,i){return!!V.data(t,i[3])}}),V.fn.extend({disableSelection:(t="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}),enableSelection:function(){return this.off(".ui-disableSelection")}});var t,d=V,p={},e=p.toString,f=/^([\-+])=\s*(\d+\.?\d*)/,g=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})?/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16),t[4]?(parseInt(t[4],16)/255).toFixed(2):1]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])([a-f0-9])?/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16),t[4]?(parseInt(t[4]+t[4],16)/255).toFixed(2):1]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],m=d.Color=function(t,e,i,s){return new d.Color.fn.parse(t,e,i,s)},_={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},v={byte:{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},b=m.support={},y=d("<p>")[0],w=d.each;function P(t){return null==t?t+"":"object"==typeof t?p[e.call(t)]||"object":typeof t}function M(t,e,i){var s=v[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:Math.min(s.max,Math.max(0,t)))}function S(s){var n=m(),o=n._rgba=[];return s=s.toLowerCase(),w(g,function(t,e){var i=e.re.exec(s),i=i&&e.parse(i),e=e.space||"rgba";if(i)return i=n[e](i),n[_[e].cache]=i[_[e].cache],o=n._rgba=i._rgba,!1}),o.length?("0,0,0,0"===o.join()&&d.extend(o,B.transparent),n):B[s]}function H(t,e,i){return 6*(i=(i+1)%1)<1?t+(e-t)*i*6:2*i<1?e:3*i<2?t+(e-t)*(2/3-i)*6:t}y.style.cssText="background-color:rgba(1,1,1,.5)",b.rgba=-1<y.style.backgroundColor.indexOf("rgba"),w(_,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),d.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(t,e){p["[object "+e+"]"]=e.toLowerCase()}),(m.fn=d.extend(m.prototype,{parse:function(n,t,e,i){if(void 0===n)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=d(n).css(t),t=void 0);var o=this,s=P(n),a=this._rgba=[];return void 0!==t&&(n=[n,t,e,i],s="array"),"string"===s?this.parse(S(n)||B._default):"array"===s?(w(_.rgba.props,function(t,e){a[e.idx]=M(n[e.idx],e)}),this):"object"===s?(w(_,n instanceof m?function(t,e){n[e.cache]&&(o[e.cache]=n[e.cache].slice())}:function(t,i){var s=i.cache;w(i.props,function(t,e){if(!o[s]&&i.to){if("alpha"===t||null==n[t])return;o[s]=i.to(o._rgba)}o[s][e.idx]=M(n[t],e,!0)}),o[s]&&d.inArray(null,o[s].slice(0,3))<0&&(null==o[s][3]&&(o[s][3]=1),i.from&&(o._rgba=i.from(o[s])))}),this):void 0},is:function(t){var n=m(t),o=!0,a=this;return w(_,function(t,e){var i,s=n[e.cache];return s&&(i=a[e.cache]||e.to&&e.to(a._rgba)||[],w(e.props,function(t,e){if(null!=s[e.idx])return o=s[e.idx]===i[e.idx]})),o}),o},_space:function(){var i=[],s=this;return w(_,function(t,e){s[e.cache]&&i.push(t)}),i.pop()},transition:function(t,a){var e=(h=m(t))._space(),i=_[e],t=0===this.alpha()?m("transparent"):this,r=t[i.cache]||i.to(t._rgba),l=r.slice(),h=h[i.cache];return w(i.props,function(t,e){var i=e.idx,s=r[i],n=h[i],o=v[e.type]||{};null!==n&&(null===s?l[i]=n:(o.mod&&(n-s>o.mod/2?s+=o.mod:s-n>o.mod/2&&(s-=o.mod)),l[i]=M((n-s)*a+s,e)))}),this[e](l)},blend:function(t){if(1===this._rgba[3])return this;var e=this._rgba.slice(),i=e.pop(),s=m(t)._rgba;return m(d.map(e,function(t,e){return(1-i)*s[e]+i*t}))},toRgbaString:function(){var t="rgba(",e=d.map(this._rgba,function(t,e){return null!=t?t:2<e?1:0});return 1===e[3]&&(e.pop(),t="rgb("),t+e.join()+")"},toHslaString:function(){var t="hsla(",e=d.map(this.hsla(),function(t,e){return null==t&&(t=2<e?1:0),t=e&&e<3?Math.round(100*t)+"%":t});return 1===e[3]&&(e.pop(),t="hsl("),t+e.join()+")"},toHexString:function(t){var e=this._rgba.slice(),i=e.pop();return t&&e.push(~~(255*i)),"#"+d.map(e,function(t){return 1===(t=(t||0).toString(16)).length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}})).parse.prototype=m.fn,_.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/255,i=t[1]/255,s=t[2]/255,n=t[3],o=Math.max(e,i,s),a=Math.min(e,i,s),r=o-a,l=o+a,t=.5*l,i=a===o?0:e===o?60*(i-s)/r+360:i===o?60*(s-e)/r+120:60*(e-i)/r+240,l=0==r?0:t<=.5?r/l:r/(2-l);return[Math.round(i)%360,l,t,null==n?1:n]},_.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],t=t[3],i=s<=.5?s*(1+i):s+i-s*i,s=2*s-i;return[Math.round(255*H(s,i,e+1/3)),Math.round(255*H(s,i,e)),Math.round(255*H(s,i,e-1/3)),t]},w(_,function(l,t){var e=t.props,o=t.cache,a=t.to,r=t.from;m.fn[l]=function(t){if(a&&!this[o]&&(this[o]=a(this._rgba)),void 0===t)return this[o].slice();var i=P(t),s="array"===i||"object"===i?t:arguments,n=this[o].slice();return w(e,function(t,e){t=s["object"===i?t:e.idx];null==t&&(t=n[e.idx]),n[e.idx]=M(t,e)}),r?((t=m(r(n)))[o]=n,t):m(n)},w(e,function(a,r){m.fn[a]||(m.fn[a]=function(t){var e,i=P(t),s="alpha"===a?this._hsla?"hsla":"rgba":l,n=this[s](),o=n[r.idx];return"undefined"===i?o:("function"===i&&(i=P(t=t.call(this,o))),null==t&&r.empty?this:("string"===i&&(e=f.exec(t))&&(t=o+parseFloat(e[2])*("+"===e[1]?1:-1)),n[r.idx]=t,this[s](n)))})})}),(m.hook=function(t){t=t.split(" ");w(t,function(t,o){d.cssHooks[o]={set:function(t,e){var i,s,n="";if("transparent"!==e&&("string"!==P(e)||(i=S(e)))){if(e=m(i||e),!b.rgba&&1!==e._rgba[3]){for(s="backgroundColor"===o?t.parentNode:t;(""===n||"transparent"===n)&&s&&s.style;)try{n=d.css(s,"backgroundColor"),s=s.parentNode}catch(t){}e=e.blend(n&&"transparent"!==n?n:"_default")}e=e.toRgbaString()}try{t.style[o]=e}catch(t){}}},d.fx.step[o]=function(t){t.colorInit||(t.start=m(t.elem,o),t.end=m(t.end),t.colorInit=!0),d.cssHooks[o].set(t.elem,t.start.transition(t.end,t.pos))}})})("backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor"),d.cssHooks.borderColor={expand:function(i){var s={};return w(["Top","Right","Bottom","Left"],function(t,e){s["border"+e+"Color"]=i}),s}};var z,A,O,N,E,W,F,L,R,Y,B=d.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"},j="ui-effects-",q="ui-effects-style",K="ui-effects-animated";function U(t){var e,i,s=t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,null):t.currentStyle,n={};if(s&&s.length&&s[0]&&s[s[0]])for(i=s.length;i--;)"string"==typeof s[e=s[i]]&&(n[e.replace(/-([\da-z])/gi,function(t,e){return e.toUpperCase()})]=s[e]);else for(e in s)"string"==typeof s[e]&&(n[e]=s[e]);return n}function X(t,e,i,s){return t={effect:t=V.isPlainObject(t)?(e=t).effect:t},"function"==typeof(e=null==e?{}:e)&&(s=e,i=null,e={}),"number"!=typeof e&&!V.fx.speeds[e]||(s=i,i=e,e={}),"function"==typeof i&&(s=i,i=null),e&&V.extend(t,e),i=i||e.duration,t.duration=V.fx.off?0:"number"==typeof i?i:i in V.fx.speeds?V.fx.speeds[i]:V.fx.speeds._default,t.complete=s||e.complete,t}function $(t){return!t||"number"==typeof t||V.fx.speeds[t]||("string"==typeof t&&!V.effects.effect[t]||("function"==typeof t||"object"==typeof t&&!t.effect))}function G(t,e){var i=e.outerWidth(),e=e.outerHeight(),t=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/.exec(t)||["",0,i,e,0];return{top:parseFloat(t[1])||0,right:"auto"===t[2]?i:parseFloat(t[2]),bottom:"auto"===t[3]?e:parseFloat(t[3]),left:parseFloat(t[4])||0}}V.effects={effect:{}},N=["add","remove","toggle"],E={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1},V.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,e){V.fx.step[e]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(d.style(t.elem,e,t.end),t.setAttr=!0)}}),V.fn.addBack||(V.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),V.effects.animateClass=function(n,t,e,i){var o=V.speed(t,e,i);return this.queue(function(){var i=V(this),t=i.attr("class")||"",e=(e=o.children?i.find("*").addBack():i).map(function(){return{el:V(this),start:U(this)}}),s=function(){V.each(N,function(t,e){n[e]&&i[e+"Class"](n[e])})};s(),e=e.map(function(){return this.end=U(this.el[0]),this.diff=function(t,e){var i,s,n={};for(i in e)s=e[i],t[i]!==s&&(E[i]||!V.fx.step[i]&&isNaN(parseFloat(s))||(n[i]=s));return n}(this.start,this.end),this}),i.attr("class",t),e=e.map(function(){var t=this,e=V.Deferred(),i=V.extend({},o,{queue:!1,complete:function(){e.resolve(t)}});return this.el.animate(this.diff,i),e.promise()}),V.when.apply(V,e.get()).done(function(){s(),V.each(arguments,function(){var e=this.el;V.each(this.diff,function(t){e.css(t,"")})}),o.complete.call(i[0])})})},V.fn.extend({addClass:(O=V.fn.addClass,function(t,e,i,s){return e?V.effects.animateClass.call(this,{add:t},e,i,s):O.apply(this,arguments)}),removeClass:(A=V.fn.removeClass,function(t,e,i,s){return 1<arguments.length?V.effects.animateClass.call(this,{remove:t},e,i,s):A.apply(this,arguments)}),toggleClass:(z=V.fn.toggleClass,function(t,e,i,s,n){return"boolean"==typeof e||void 0===e?i?V.effects.animateClass.call(this,e?{add:t}:{remove:t},i,s,n):z.apply(this,arguments):V.effects.animateClass.call(this,{toggle:t},e,i,s)}),switchClass:function(t,e,i,s,n){return V.effects.animateClass.call(this,{add:e,remove:t},i,s,n)}}),V.expr&&V.expr.pseudos&&V.expr.pseudos.animated&&(V.expr.pseudos.animated=(W=V.expr.pseudos.animated,function(t){return!!V(t).data(K)||W(t)})),!1!==V.uiBackCompat&&V.extend(V.effects,{save:function(t,e){for(var i=0,s=e.length;i<s;i++)null!==e[i]&&t.data(j+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;s<n;s++)null!==e[s]&&(i=t.data(j+e[s]),t.css(e[s],i))},setMode:function(t,e){return e="toggle"===e?t.is(":hidden")?"show":"hide":e},createWrapper:function(i){if(i.parent().is(".ui-effects-wrapper"))return i.parent();var s={width:i.outerWidth(!0),height:i.outerHeight(!0),float:i.css("float")},t=V("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e={width:i.width(),height:i.height()},n=document.activeElement;try{n.id}catch(t){n=document.body}return i.wrap(t),i[0]!==n&&!V.contains(i[0],n)||V(n).trigger("focus"),t=i.parent(),"static"===i.css("position")?(t.css({position:"relative"}),i.css({position:"relative"})):(V.extend(s,{position:i.css("position"),zIndex:i.css("z-index")}),V.each(["top","left","bottom","right"],function(t,e){s[e]=i.css(e),isNaN(parseInt(s[e],10))&&(s[e]="auto")}),i.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),i.css(e),t.css(s).show()},removeWrapper:function(t){var e=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),t[0]!==e&&!V.contains(t[0],e)||V(e).trigger("focus")),t}}),V.extend(V.effects,{version:"1.13.1",define:function(t,e,i){return i||(i=e,e="effect"),V.effects.effect[t]=i,V.effects.effect[t].mode=e,i},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,e="vertical"!==i?(e||100)/100:1;return{height:t.height()*e,width:t.width()*s,outerHeight:t.outerHeight()*e,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();1<e&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(q,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(q)||"",t.removeData(q)},mode:function(t,e){t=t.is(":hidden");return"toggle"===e&&(e=t?"show":"hide"),e=(t?"hide"===e:"show"===e)?"none":e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(t){var e,i=t.css("position"),s=t.position();return t.css({marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()),/^(static|relative)/.test(i)&&(i="absolute",e=V("<"+t[0].nodeName+">").insertAfter(t).css({display:/^(inline|ruby)/.test(t.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight"),float:t.css("float")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).addClass("ui-effects-placeholder"),t.data(j+"placeholder",e)),t.css({position:i,left:s.left,top:s.top}),e},removePlaceholder:function(t){var e=j+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(t){V.effects.restoreStyle(t),V.effects.removePlaceholder(t)},setTransition:function(s,t,n,o){return o=o||{},V.each(t,function(t,e){var i=s.cssUnit(e);0<i[0]&&(o[e]=i[0]*n+i[1])}),o}}),V.fn.extend({effect:function(){function t(t){var e=V(this),i=V.effects.mode(e,r)||o;e.data(K,!0),l.push(i),o&&("show"===i||i===o&&"hide"===i)&&e.show(),o&&"none"===i||V.effects.saveStyle(e),"function"==typeof t&&t()}var s=X.apply(this,arguments),n=V.effects.effect[s.effect],o=n.mode,e=s.queue,i=e||"fx",a=s.complete,r=s.mode,l=[];return V.fx.off||!n?r?this[r](s.duration,a):this.each(function(){a&&a.call(this)}):!1===e?this.each(t).each(h):this.queue(i,t).queue(i,h);function h(t){var e=V(this);function i(){"function"==typeof a&&a.call(e[0]),"function"==typeof t&&t()}s.mode=l.shift(),!1===V.uiBackCompat||o?"none"===s.mode?(e[r](),i()):n.call(e[0],s,function(){e.removeData(K),V.effects.cleanUp(e),"hide"===s.mode&&e.hide(),i()}):(e.is(":hidden")?"hide"===r:"show"===r)?(e[r](),i()):n.call(e[0],s,i)}},show:(R=V.fn.show,function(t){if($(t))return R.apply(this,arguments);t=X.apply(this,arguments);return t.mode="show",this.effect.call(this,t)}),hide:(L=V.fn.hide,function(t){if($(t))return L.apply(this,arguments);t=X.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)}),toggle:(F=V.fn.toggle,function(t){if($(t)||"boolean"==typeof t)return F.apply(this,arguments);t=X.apply(this,arguments);return t.mode="toggle",this.effect.call(this,t)}),cssUnit:function(t){var i=this.css(t),s=[];return V.each(["em","px","%","pt"],function(t,e){0<i.indexOf(e)&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):G(this.css("clip"),this)},transfer:function(t,e){var i=V(this),s=V(t.to),n="fixed"===s.css("position"),o=V("body"),a=n?o.scrollTop():0,r=n?o.scrollLeft():0,o=s.offset(),o={top:o.top-a,left:o.left-r,height:s.innerHeight(),width:s.innerWidth()},s=i.offset(),l=V("<div class='ui-effects-transfer'></div>");l.appendTo("body").addClass(t.className).css({top:s.top-a,left:s.left-r,height:i.innerHeight(),width:i.innerWidth(),position:n?"fixed":"absolute"}).animate(o,t.duration,t.easing,function(){l.remove(),"function"==typeof e&&e()})}}),V.fx.step.clip=function(t){t.clipInit||(t.start=V(t.elem).cssClip(),"string"==typeof t.end&&(t.end=G(t.end,t.elem)),t.clipInit=!0),V(t.elem).cssClip({top:t.pos*(t.end.top-t.start.top)+t.start.top,right:t.pos*(t.end.right-t.start.right)+t.start.right,bottom:t.pos*(t.end.bottom-t.start.bottom)+t.start.bottom,left:t.pos*(t.end.left-t.start.left)+t.start.left})},Y={},V.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,t){Y[t]=function(t){return Math.pow(t,e+2)}}),V.extend(Y,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;t<((e=Math.pow(2,--i))-1)/11;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),V.each(Y,function(t,e){V.easing["easeIn"+t]=e,V.easing["easeOut"+t]=function(t){return 1-e(1-t)},V.easing["easeInOut"+t]=function(t){return t<.5?e(2*t)/2:1-e(-2*t+2)/2}});y=V.effects,V.effects.define("blind","hide",function(t,e){var i={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},s=V(this),n=t.direction||"up",o=s.cssClip(),a={clip:V.extend({},o)},r=V.effects.createPlaceholder(s);a.clip[i[n][0]]=a.clip[i[n][1]],"show"===t.mode&&(s.cssClip(a.clip),r&&r.css(V.effects.clipToBox(a)),a.clip=o),r&&r.animate(V.effects.clipToBox(a),t.duration,t.easing),s.animate(a,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("bounce",function(t,e){var i,s,n=V(this),o=t.mode,a="hide"===o,r="show"===o,l=t.direction||"up",h=t.distance,c=t.times||5,o=2*c+(r||a?1:0),u=t.duration/o,d=t.easing,p="up"===l||"down"===l?"top":"left",f="up"===l||"left"===l,g=0,t=n.queue().length;for(V.effects.createPlaceholder(n),l=n.css(p),h=h||n["top"==p?"outerHeight":"outerWidth"]()/3,r&&((s={opacity:1})[p]=l,n.css("opacity",0).css(p,f?2*-h:2*h).animate(s,u,d)),a&&(h/=Math.pow(2,c-1)),(s={})[p]=l;g<c;g++)(i={})[p]=(f?"-=":"+=")+h,n.animate(i,u,d).animate(s,u,d),h=a?2*h:h/2;a&&((i={opacity:0})[p]=(f?"-=":"+=")+h,n.animate(i,u,d)),n.queue(e),V.effects.unshift(n,t,1+o)}),V.effects.define("clip","hide",function(t,e){var i={},s=V(this),n=t.direction||"vertical",o="both"===n,a=o||"horizontal"===n,o=o||"vertical"===n,n=s.cssClip();i.clip={top:o?(n.bottom-n.top)/2:n.top,right:a?(n.right-n.left)/2:n.right,bottom:o?(n.bottom-n.top)/2:n.bottom,left:a?(n.right-n.left)/2:n.left},V.effects.createPlaceholder(s),"show"===t.mode&&(s.cssClip(i.clip),i.clip=n),s.animate(i,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("drop","hide",function(t,e){var i=V(this),s="show"===t.mode,n=t.direction||"left",o="up"===n||"down"===n?"top":"left",a="up"===n||"left"===n?"-=":"+=",r="+="==a?"-=":"+=",l={opacity:0};V.effects.createPlaceholder(i),n=t.distance||i["top"==o?"outerHeight":"outerWidth"](!0)/2,l[o]=a+n,s&&(i.css(l),l[o]=r+n,l.opacity=1),i.animate(l,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("explode","hide",function(t,e){var i,s,n,o,a,r,l=t.pieces?Math.round(Math.sqrt(t.pieces)):3,h=l,c=V(this),u="show"===t.mode,d=c.show().css("visibility","hidden").offset(),p=Math.ceil(c.outerWidth()/h),f=Math.ceil(c.outerHeight()/l),g=[];function m(){g.push(this),g.length===l*h&&(c.css({visibility:"visible"}),V(g).remove(),e())}for(i=0;i<l;i++)for(o=d.top+i*f,r=i-(l-1)/2,s=0;s<h;s++)n=d.left+s*p,a=s-(h-1)/2,c.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-s*p,top:-i*f}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:p,height:f,left:n+(u?a*p:0),top:o+(u?r*f:0),opacity:u?0:1}).animate({left:n+(u?0:a*p),top:o+(u?0:r*f),opacity:u?1:0},t.duration||500,t.easing,m)}),V.effects.define("fade","toggle",function(t,e){var i="show"===t.mode;V(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("fold","hide",function(e,t){var i=V(this),s=e.mode,n="show"===s,o="hide"===s,a=e.size||15,r=/([0-9]+)%/.exec(a),l=!!e.horizFirst?["right","bottom"]:["bottom","right"],h=e.duration/2,c=V.effects.createPlaceholder(i),u=i.cssClip(),d={clip:V.extend({},u)},p={clip:V.extend({},u)},f=[u[l[0]],u[l[1]]],s=i.queue().length;r&&(a=parseInt(r[1],10)/100*f[o?0:1]),d.clip[l[0]]=a,p.clip[l[0]]=a,p.clip[l[1]]=0,n&&(i.cssClip(p.clip),c&&c.css(V.effects.clipToBox(p)),p.clip=u),i.queue(function(t){c&&c.animate(V.effects.clipToBox(d),h,e.easing).animate(V.effects.clipToBox(p),h,e.easing),t()}).animate(d,h,e.easing).animate(p,h,e.easing).queue(t),V.effects.unshift(i,s,4)}),V.effects.define("highlight","show",function(t,e){var i=V(this),s={backgroundColor:i.css("backgroundColor")};"hide"===t.mode&&(s.opacity=0),V.effects.saveStyle(i),i.css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(s,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("size",function(s,e){var n,i=V(this),t=["fontSize"],o=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],a=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=s.mode,l="effect"!==r,h=s.scale||"both",c=s.origin||["middle","center"],u=i.css("position"),d=i.position(),p=V.effects.scaledDimensions(i),f=s.from||p,g=s.to||V.effects.scaledDimensions(i,0);V.effects.createPlaceholder(i),"show"===r&&(r=f,f=g,g=r),n={from:{y:f.height/p.height,x:f.width/p.width},to:{y:g.height/p.height,x:g.width/p.width}},"box"!==h&&"both"!==h||(n.from.y!==n.to.y&&(f=V.effects.setTransition(i,o,n.from.y,f),g=V.effects.setTransition(i,o,n.to.y,g)),n.from.x!==n.to.x&&(f=V.effects.setTransition(i,a,n.from.x,f),g=V.effects.setTransition(i,a,n.to.x,g))),"content"!==h&&"both"!==h||n.from.y!==n.to.y&&(f=V.effects.setTransition(i,t,n.from.y,f),g=V.effects.setTransition(i,t,n.to.y,g)),c&&(c=V.effects.getBaseline(c,p),f.top=(p.outerHeight-f.outerHeight)*c.y+d.top,f.left=(p.outerWidth-f.outerWidth)*c.x+d.left,g.top=(p.outerHeight-g.outerHeight)*c.y+d.top,g.left=(p.outerWidth-g.outerWidth)*c.x+d.left),delete f.outerHeight,delete f.outerWidth,i.css(f),"content"!==h&&"both"!==h||(o=o.concat(["marginTop","marginBottom"]).concat(t),a=a.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=V(this),e=V.effects.scaledDimensions(t),i={height:e.height*n.from.y,width:e.width*n.from.x,outerHeight:e.outerHeight*n.from.y,outerWidth:e.outerWidth*n.from.x},e={height:e.height*n.to.y,width:e.width*n.to.x,outerHeight:e.height*n.to.y,outerWidth:e.width*n.to.x};n.from.y!==n.to.y&&(i=V.effects.setTransition(t,o,n.from.y,i),e=V.effects.setTransition(t,o,n.to.y,e)),n.from.x!==n.to.x&&(i=V.effects.setTransition(t,a,n.from.x,i),e=V.effects.setTransition(t,a,n.to.x,e)),l&&V.effects.saveStyle(t),t.css(i),t.animate(e,s.duration,s.easing,function(){l&&V.effects.restoreStyle(t)})})),i.animate(g,{queue:!1,duration:s.duration,easing:s.easing,complete:function(){var t=i.offset();0===g.opacity&&i.css("opacity",f.opacity),l||(i.css("position","static"===u?"relative":u).offset(t),V.effects.saveStyle(i)),e()}})}),V.effects.define("scale",function(t,e){var i=V(this),s=t.mode,s=parseInt(t.percent,10)||(0===parseInt(t.percent,10)||"effect"!==s?0:100),s=V.extend(!0,{from:V.effects.scaledDimensions(i),to:V.effects.scaledDimensions(i,s,t.direction||"both"),origin:t.origin||["middle","center"]},t);t.fade&&(s.from.opacity=1,s.to.opacity=0),V.effects.effect.size.call(this,s,e)}),V.effects.define("puff","hide",function(t,e){t=V.extend(!0,{},t,{fade:!0,percent:parseInt(t.percent,10)||150});V.effects.effect.scale.call(this,t,e)}),V.effects.define("pulsate","show",function(t,e){var i=V(this),s=t.mode,n="show"===s,o=2*(t.times||5)+(n||"hide"===s?1:0),a=t.duration/o,r=0,l=1,s=i.queue().length;for(!n&&i.is(":visible")||(i.css("opacity",0).show(),r=1);l<o;l++)i.animate({opacity:r},a,t.easing),r=1-r;i.animate({opacity:r},a,t.easing),i.queue(e),V.effects.unshift(i,s,1+o)}),V.effects.define("shake",function(t,e){var i=1,s=V(this),n=t.direction||"left",o=t.distance||20,a=t.times||3,r=2*a+1,l=Math.round(t.duration/r),h="up"===n||"down"===n?"top":"left",c="up"===n||"left"===n,u={},d={},p={},n=s.queue().length;for(V.effects.createPlaceholder(s),u[h]=(c?"-=":"+=")+o,d[h]=(c?"+=":"-=")+2*o,p[h]=(c?"-=":"+=")+2*o,s.animate(u,l,t.easing);i<a;i++)s.animate(d,l,t.easing).animate(p,l,t.easing);s.animate(d,l,t.easing).animate(u,l/2,t.easing).queue(e),V.effects.unshift(s,n,1+r)}),V.effects.define("slide","show",function(t,e){var i,s,n=V(this),o={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},a=t.mode,r=t.direction||"left",l="up"===r||"down"===r?"top":"left",h="up"===r||"left"===r,c=t.distance||n["top"==l?"outerHeight":"outerWidth"](!0),u={};V.effects.createPlaceholder(n),i=n.cssClip(),s=n.position()[l],u[l]=(h?-1:1)*c+s,u.clip=n.cssClip(),u.clip[o[r][1]]=u.clip[o[r][0]],"show"===a&&(n.cssClip(u.clip),n.css(l,u[l]),u.clip=i,u[l]=s),n.animate(u,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),y=!1!==V.uiBackCompat?V.effects.define("transfer",function(t,e){V(this).transfer(t,e)}):y;V.ui.focusable=function(t,e){var i,s,n,o,a=t.nodeName.toLowerCase();return"area"===a?(s=(i=t.parentNode).name,!(!t.href||!s||"map"!==i.nodeName.toLowerCase())&&(0<(s=V("img[usemap='#"+s+"']")).length&&s.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(a)?(n=!t.disabled)&&(o=V(t).closest("fieldset")[0])&&(n=!o.disabled):n="a"===a&&t.href||e,n&&V(t).is(":visible")&&function(t){var e=t.css("visibility");for(;"inherit"===e;)t=t.parent(),e=t.css("visibility");return"visible"===e}(V(t)))},V.extend(V.expr.pseudos,{focusable:function(t){return V.ui.focusable(t,null!=V.attr(t,"tabindex"))}});var Q,J;V.ui.focusable,V.fn._form=function(){return"string"==typeof this[0].form?this.closest("form"):V(this[0].form)},V.ui.formResetMixin={_formResetHandler:function(){var e=V(this);setTimeout(function(){var t=e.data("ui-form-reset-instances");V.each(t,function(){this.refresh()})})},_bindFormResetHandler:function(){var t;this.form=this.element._form(),this.form.length&&((t=this.form.data("ui-form-reset-instances")||[]).length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t))},_unbindFormResetHandler:function(){var t;this.form.length&&((t=this.form.data("ui-form-reset-instances")).splice(V.inArray(this,t),1),t.length?this.form.data("ui-form-reset-instances",t):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset"))}};V.expr.pseudos||(V.expr.pseudos=V.expr[":"]),V.uniqueSort||(V.uniqueSort=V.unique),V.escapeSelector||(Q=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,J=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},V.escapeSelector=function(t){return(t+"").replace(Q,J)}),V.fn.even&&V.fn.odd||V.fn.extend({even:function(){return this.filter(function(t){return t%2==0})},odd:function(){return this.filter(function(t){return t%2==1})}});var Z;V.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},V.fn.labels=function(){var t,e,i;return this.length?this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).siblings()),t="label[for='"+V.escapeSelector(t)+"']",e=e.add(i.find(t).addBack(t))),this.pushStack(e)):this.pushStack([])},V.fn.scrollParent=function(t){var e=this.css("position"),i="absolute"===e,s=t?/(auto|scroll|hidden)/:/(auto|scroll)/,t=this.parents().filter(function(){var t=V(this);return(!i||"static"!==t.css("position"))&&s.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==e&&t.length?t:V(this[0].ownerDocument||document)},V.extend(V.expr.pseudos,{tabbable:function(t){var e=V.attr(t,"tabindex"),i=null!=e;return(!i||0<=e)&&V.ui.focusable(t,i)}}),V.fn.extend({uniqueId:(Z=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++Z)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&V(this).removeAttr("id")})}}),V.widget("ui.accordion",{version:"1.13.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:function(t){return t.find("> li > :first-child").add(t.find("> :not(li)").even())},heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=V(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),t.collapsible||!1!==t.active&&null!=t.active||(t.active=0),this._processPanels(),t.active<0&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():V()}},_createIcons:function(){var t,e=this.options.icons;e&&(t=V("<span>"),this._addClass(t,"ui-accordion-header-icon","ui-icon "+e.header),t.prependTo(this.headers),t=this.active.children(".ui-accordion-header-icon"),this._removeClass(t,e.header)._addClass(t,null,e.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){"active"!==t?("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||!1!==this.options.active||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons())):this._activate(e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var e=V.ui.keyCode,i=this.headers.length,s=this.headers.index(t.target),n=!1;switch(t.keyCode){case e.RIGHT:case e.DOWN:n=this.headers[(s+1)%i];break;case e.LEFT:case e.UP:n=this.headers[(s-1+i)%i];break;case e.SPACE:case e.ENTER:this._eventHandler(t);break;case e.HOME:n=this.headers[0];break;case e.END:n=this.headers[i-1]}n&&(V(t.target).attr("tabIndex",-1),V(n).attr("tabIndex",0),V(n).trigger("focus"),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===V.ui.keyCode.UP&&t.ctrlKey&&V(t.currentTarget).prev().trigger("focus")},refresh:function(){var t=this.options;this._processPanels(),!1===t.active&&!0===t.collapsible||!this.headers.length?(t.active=!1,this.active=V()):!1===t.active?this._activate(0):this.active.length&&!V.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=V()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;"function"==typeof this.options.header?this.headers=this.options.header(this.element):this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var i,t=this.options,e=t.heightStyle,s=this.element.parent();this.active=this._findActive(t.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var t=V(this),e=t.uniqueId().attr("id"),i=t.next(),s=i.uniqueId().attr("id");t.attr("aria-controls",s),i.attr("aria-labelledby",e)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(t.event),"fill"===e?(i=s.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.headers.each(function(){i-=V(this).outerHeight(!0)}),this.headers.next().each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.headers.next().each(function(){var t=V(this).is(":visible");t||V(this).show(),i=Math.max(i,V(this).css("height","").height()),t||V(this).hide()}).height(i))},_activate:function(t){t=this._findActive(t)[0];t!==this.active[0]&&(t=t||this.active[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):V()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():s.next(),r=i.next(),a={oldHeader:i,oldPanel:r,newHeader:o?V():s,newPanel:a};t.preventDefault(),n&&!e.collapsible||!1===this._trigger("beforeActivate",t,a)||(e.active=!o&&this.headers.index(s),this.active=n?V():s,this._toggle(a),this._removeClass(i,"ui-accordion-header-active","ui-state-active"),e.icons&&(i=i.children(".ui-accordion-header-icon"),this._removeClass(i,null,e.icons.activeHeader)._addClass(i,null,e.icons.header)),n||(this._removeClass(s,"ui-accordion-header-collapsed")._addClass(s,"ui-accordion-header-active","ui-state-active"),e.icons&&(n=s.children(".ui-accordion-header-icon"),this._removeClass(n,null,e.icons.header)._addClass(n,null,e.icons.activeHeader)),this._addClass(s.next(),"ui-accordion-content-active")))},_toggle:function(t){var e=t.newPanel,i=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=e,this.prevHide=i,this.options.animate?this._animate(e,i,t):(i.hide(),e.show(),this._toggleComplete(t)),i.attr({"aria-hidden":"true"}),i.prev().attr({"aria-selected":"false","aria-expanded":"false"}),e.length&&i.length?i.prev().attr({tabIndex:-1,"aria-expanded":"false"}):e.length&&this.headers.filter(function(){return 0===parseInt(V(this).attr("tabIndex"),10)}).attr("tabIndex",-1),e.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,i,e){var s,n,o,a=this,r=0,l=t.css("box-sizing"),h=t.length&&(!i.length||t.index()<i.index()),c=this.options.animate||{},u=h&&c.down||c,h=function(){a._toggleComplete(e)};return n=(n="string"==typeof u?u:n)||u.easing||c.easing,o=(o="number"==typeof u?u:o)||u.duration||c.duration,i.length?t.length?(s=t.show().outerHeight(),i.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),void t.hide().animate(this.showProps,{duration:o,easing:n,complete:h,step:function(t,e){e.now=Math.round(t),"height"!==e.prop?"content-box"===l&&(r+=e.now):"content"!==a.options.heightStyle&&(e.now=Math.round(s-i.outerHeight()-r),r=0)}})):i.animate(this.hideProps,o,n,h):t.animate(this.showProps,o,n,h)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),V.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},V.widget("ui.menu",{version:"1.13.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=V(t.target),i=V(V.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){V.contains(this.element[0],V.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=V(t.target).closest(".ui-menu-item"),i=V(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=V(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case V.ui.keyCode.PAGE_UP:this.previousPage(t);break;case V.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case V.ui.keyCode.HOME:this._move("first","first",t);break;case V.ui.keyCode.END:this._move("last","last",t);break;case V.ui.keyCode.UP:this.previous(t);break;case V.ui.keyCode.DOWN:this.next(t);break;case V.ui.keyCode.LEFT:this.collapse(t);break;case V.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case V.ui.keyCode.ENTER:case V.ui.keyCode.SPACE:this._activate(t);break;case V.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=V(this),e=t.prev(),i=V("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=V(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!V.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(V.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(V.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=V.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:V(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!V(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=V(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=V(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||V(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(V(this).children(".ui-menu-item-wrapper").text()))})}});V.widget("ui.autocomplete",{version:"1.13.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=V("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){V(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==V.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=V("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||V.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(V.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=V.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:V.map(t,function(t){return"string"==typeof t?{label:t,value:t}:V.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(V.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;V.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return V("<li>").append(V("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),V.extend(V.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(V.ui.autocomplete.escapeRegex(e),"i");return V.grep(t,function(t){return i.test(t.label||t.value||t)})}}),V.widget("ui.autocomplete",V.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(e))},100))}});V.ui.autocomplete;var tt=/ui-corner-([a-z]){2,6}/g;V.widget("ui.controlgroup",{version:"1.13.1",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var o=this,a=[];V.each(this.options.items,function(s,t){var e,n={};if(t)return"controlgroupLabel"===s?((e=o.element.find(t)).each(function(){var t=V(this);t.children(".ui-controlgroup-label-contents").length||t.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),o._addClass(e,null,"ui-widget ui-widget-content ui-state-default"),void(a=a.concat(e.get()))):void(V.fn[s]&&(n=o["_"+s+"Options"]?o["_"+s+"Options"]("middle"):{classes:{}},o.element.find(t).each(function(){var t=V(this),e=t[s]("instance"),i=V.widget.extend({},n);"button"===s&&t.parent(".ui-spinner").length||((e=e||t[s]()[s]("instance"))&&(i.classes=o._resolveClassesValues(i.classes,e)),t[s](i),i=t[s]("widget"),V.data(i[0],"ui-controlgroup-data",e||t[s]("instance")),a.push(i[0]))})))}),this.childWidgets=V(V.uniqueSort(a)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var t=V(this).data("ui-controlgroup-data");t&&t[e]&&t[e]()})},_updateCornerClass:function(t,e){e=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,"ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all"),this._addClass(t,null,e)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){t=this._buildSimpleOptions(t,"ui-spinner");return t.classes["ui-spinner-up"]="",t.classes["ui-spinner-down"]="",t},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e&&"auto",classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(i,s){var n={};return V.each(i,function(t){var e=s.options.classes[t]||"",e=String.prototype.trim.call(e.replace(tt,""));n[t]=(e+" "+i[t]).replace(/\s+/g," ")}),n},_setOption:function(t,e){"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"!==t?this.refresh():this._callChildMethod(e?"disable":"enable")},refresh:function(){var n,o=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),n=this.childWidgets,(n=this.options.onlyVisible?n.filter(":visible"):n).length&&(V.each(["first","last"],function(t,e){var i,s=n[e]().data("ui-controlgroup-data");s&&o["_"+s.widgetName+"Options"]?((i=o["_"+s.widgetName+"Options"](1===n.length?"only":e)).classes=o._resolveClassesValues(i.classes,s),s.element[s.widgetName](i)):o._updateCornerClass(n[e](),e)}),this._callChildMethod("refresh"))}});V.widget("ui.checkboxradio",[V.ui.formResetMixin,{version:"1.13.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var t,e=this,i=this._super()||{};return this._readType(),t=this.element.labels(),this.label=V(t[t.length-1]),this.label.length||V.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){e.originalLabel+=3===this.nodeType?V(this).text():this.outerHTML}),this.originalLabel&&(i.label=this.originalLabel),null!=(t=this.element[0].disabled)&&(i.disabled=t),i},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var t=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===t&&/radio|checkbox/.test(this.type)||V.error("Can't create checkboxradio on element.nodeName="+t+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var t=this.element[0].name,e="input[name='"+V.escapeSelector(t)+"']";return t?(this.form.length?V(this.form[0].elements).filter(e):V(e).filter(function(){return 0===V(this)._form().length})).not(this.element):V([])},_toggleClasses:function(){var t=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",t)._toggleClass(this.icon,null,"ui-icon-blank",!t),"radio"===this.type&&this._getRadioGroup().each(function(){var t=V(this).checkboxradio("instance");t&&t._removeClass(t.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){if("label"!==t||e){if(this._super(t,e),"disabled"===t)return this._toggleClass(this.label,null,"ui-state-disabled",e),void(this.element[0].disabled=e);this.refresh()}},_updateIcon:function(t){var e="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=V("<span>"),this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(e+=t?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,t?"ui-icon-blank":"ui-icon-check")):e+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",e),t||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),(t=this.iconSpace?t.not(this.iconSpace[0]):t).remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]);var et;V.ui.checkboxradio;V.widget("ui.button",{version:"1.13.1",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),null!=(t=this.element[0].disabled)&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(t){t.keyCode===V.ui.keyCode.SPACE&&(t.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(t,e){var i="iconPosition"!==t,s=i?this.options.iconPosition:e,t="top"===s||"bottom"===s;this.icon?i&&this._removeClass(this.icon,null,this.options.icon):(this.icon=V("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),i&&this._addClass(this.icon,null,e),this._attachIcon(s),t?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(s))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=(void 0===t.showLabel?this.options:t).showLabel,i=(void 0===t.icon?this.options:t).icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),(this.element[0].disabled=e)&&this.element.trigger("blur"))},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),!1!==V.uiBackCompat&&(V.widget("ui.button",V.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){"text"!==t?("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments)):this._super("showLabel",e)}}),V.fn.button=(et=V.fn.button,function(i){var t="string"==typeof i,s=Array.prototype.slice.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t=V(this).attr("type"),e=V.data(this,"ui-"+("checkbox"!==t&&"radio"!==t?"button":"checkboxradio"));return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for button widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on button prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V(this).attr("type"),e="checkbox"!==t&&"radio"!==t?"button":"checkboxradio",t=V.data(this,"ui-"+e);t?(t.option(i||{}),t._init&&t._init()):"button"!=e?V(this).checkboxradio(V.extend({icon:!1},i)):et.call(V(this),i)})),n}),V.fn.buttonset=function(){return V.ui.controlgroup||V.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))});var it;V.ui.button;function st(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:"",selectMonthLabel:"Select month",selectYearLabel:"Select year"},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,onUpdateDatepicker:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},V.extend(this._defaults,this.regional[""]),this.regional.en=V.extend(!0,{},this.regional[""]),this.regional["en-US"]=V.extend(!0,{},this.regional.en),this.dpDiv=nt(V("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function nt(t){var e="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return t.on("mouseout",e,function(){V(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",e,ot)}function ot(){V.datepicker._isDisabledDatepicker((it.inline?it.dpDiv.parent():it.input)[0])||(V(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),V(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).addClass("ui-datepicker-next-hover"))}function at(t,e){for(var i in V.extend(t,e),e)null==e[i]&&(t[i]=e[i]);return t}V.extend(V.ui,{datepicker:{version:"1.13.1"}}),V.extend(st.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return at(this._defaults,t||{}),this},_attachDatepicker:function(t,e){var i,s=t.nodeName.toLowerCase(),n="div"===s||"span"===s;t.id||(this.uuid+=1,t.id="dp"+this.uuid),(i=this._newInst(V(t),n)).settings=V.extend({},e||{}),"input"===s?this._connectDatepicker(t,i):n&&this._inlineDatepicker(t,i)},_newInst:function(t,e){return{id:t[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1"),input:t,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:e,dpDiv:e?nt(V("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(t,e){var i=V(t);e.append=V([]),e.trigger=V([]),i.hasClass(this.markerClassName)||(this._attachments(i,e),i.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(e),V.data(t,"datepicker",e),e.settings.disabled&&this._disableDatepicker(t))},_attachments:function(t,e){var i,s=this._get(e,"appendText"),n=this._get(e,"isRTL");e.append&&e.append.remove(),s&&(e.append=V("<span>").addClass(this._appendClass).text(s),t[n?"before":"after"](e.append)),t.off("focus",this._showDatepicker),e.trigger&&e.trigger.remove(),"focus"!==(i=this._get(e,"showOn"))&&"both"!==i||t.on("focus",this._showDatepicker),"button"!==i&&"both"!==i||(s=this._get(e,"buttonText"),i=this._get(e,"buttonImage"),this._get(e,"buttonImageOnly")?e.trigger=V("<img>").addClass(this._triggerClass).attr({src:i,alt:s,title:s}):(e.trigger=V("<button type='button'>").addClass(this._triggerClass),i?e.trigger.html(V("<img>").attr({src:i,alt:s,title:s})):e.trigger.text(s)),t[n?"before":"after"](e.trigger),e.trigger.on("click",function(){return V.datepicker._datepickerShowing&&V.datepicker._lastInput===t[0]?V.datepicker._hideDatepicker():(V.datepicker._datepickerShowing&&V.datepicker._lastInput!==t[0]&&V.datepicker._hideDatepicker(),V.datepicker._showDatepicker(t[0])),!1}))},_autoSize:function(t){var e,i,s,n,o,a;this._get(t,"autoSize")&&!t.inline&&(o=new Date(2009,11,20),(a=this._get(t,"dateFormat")).match(/[DM]/)&&(e=function(t){for(n=s=i=0;n<t.length;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length))},_inlineDatepicker:function(t,e){var i=V(t);i.hasClass(this.markerClassName)||(i.addClass(this.markerClassName).append(e.dpDiv),V.data(t,"datepicker",e),this._setDate(e,this._getDefaultDate(e),!0),this._updateDatepicker(e),this._updateAlternate(e),e.settings.disabled&&this._disableDatepicker(t),e.dpDiv.css("display","block"))},_dialogDatepicker:function(t,e,i,s,n){var o,a=this._dialogInst;return a||(this.uuid+=1,o="dp"+this.uuid,this._dialogInput=V("<input type='text' id='"+o+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),V("body").append(this._dialogInput),(a=this._dialogInst=this._newInst(this._dialogInput,!1)).settings={},V.data(this._dialogInput[0],"datepicker",a)),at(a.settings,s||{}),e=e&&e.constructor===Date?this._formatDate(a,e):e,this._dialogInput.val(e),this._pos=n?n.length?n:[n.pageX,n.pageY]:null,this._pos||(o=document.documentElement.clientWidth,s=document.documentElement.clientHeight,e=document.documentElement.scrollLeft||document.body.scrollLeft,n=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[o/2-100+e,s/2-150+n]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),a.settings.onSelect=i,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),V.blockUI&&V.blockUI(this.dpDiv),V.data(this._dialogInput[0],"datepicker",a),this},_destroyDatepicker:function(t){var e,i=V(t),s=V.data(t,"datepicker");i.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),V.removeData(t,"datepicker"),"input"===e?(s.append.remove(),s.trigger.remove(),i.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):"div"!==e&&"span"!==e||i.removeClass(this.markerClassName).empty(),it===s&&(it=null,this._curInst=null))},_enableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!1,s.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!0,s.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;e<this._disabledInputs.length;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(t){try{return V.data(t,"datepicker")}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(t,e,i){var s,n,o=this._getInst(t);if(2===arguments.length&&"string"==typeof e)return"defaults"===e?V.extend({},V.datepicker._defaults):o?"all"===e?V.extend({},o.settings):this._get(o,e):null;s=e||{},"string"==typeof e&&((s={})[e]=i),o&&(this._curInst===o&&this._hideDatepicker(),n=this._getDateDatepicker(t,!0),e=this._getMinMaxDate(o,"min"),i=this._getMinMaxDate(o,"max"),at(o.settings,s),null!==e&&void 0!==s.dateFormat&&void 0===s.minDate&&(o.settings.minDate=this._formatDate(o,e)),null!==i&&void 0!==s.dateFormat&&void 0===s.maxDate&&(o.settings.maxDate=this._formatDate(o,i)),"disabled"in s&&(s.disabled?this._disableDatepicker(t):this._enableDatepicker(t)),this._attachments(V(t),o),this._autoSize(o),this._setDate(o,n),this._updateAlternate(o),this._updateDatepicker(o))},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){t=this._getInst(t);t&&this._updateDatepicker(t)},_setDateDatepicker:function(t,e){t=this._getInst(t);t&&(this._setDate(t,e),this._updateDatepicker(t),this._updateAlternate(t))},_getDateDatepicker:function(t,e){t=this._getInst(t);return t&&!t.inline&&this._setDateFromField(t,e),t?this._getDate(t):null},_doKeyDown:function(t){var e,i,s=V.datepicker._getInst(t.target),n=!0,o=s.dpDiv.is(".ui-datepicker-rtl");if(s._keyEvent=!0,V.datepicker._datepickerShowing)switch(t.keyCode){case 9:V.datepicker._hideDatepicker(),n=!1;break;case 13:return(i=V("td."+V.datepicker._dayOverClass+":not(."+V.datepicker._currentClass+")",s.dpDiv))[0]&&V.datepicker._selectDay(t.target,s.selectedMonth,s.selectedYear,i[0]),(e=V.datepicker._get(s,"onSelect"))?(i=V.datepicker._formatDate(s),e.apply(s.input?s.input[0]:null,[i,s])):V.datepicker._hideDatepicker(),!1;case 27:V.datepicker._hideDatepicker();break;case 33:V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 34:V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 35:(t.ctrlKey||t.metaKey)&&V.datepicker._clearDate(t.target),n=t.ctrlKey||t.metaKey;break;case 36:(t.ctrlKey||t.metaKey)&&V.datepicker._gotoToday(t.target),n=t.ctrlKey||t.metaKey;break;case 37:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?1:-1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 38:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,-7,"D"),n=t.ctrlKey||t.metaKey;break;case 39:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?-1:1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 40:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,7,"D"),n=t.ctrlKey||t.metaKey;break;default:n=!1}else 36===t.keyCode&&t.ctrlKey?V.datepicker._showDatepicker(this):n=!1;n&&(t.preventDefault(),t.stopPropagation())},_doKeyPress:function(t){var e,i=V.datepicker._getInst(t.target);if(V.datepicker._get(i,"constrainInput"))return e=V.datepicker._possibleChars(V.datepicker._get(i,"dateFormat")),i=String.fromCharCode(null==t.charCode?t.keyCode:t.charCode),t.ctrlKey||t.metaKey||i<" "||!e||-1<e.indexOf(i)},_doKeyUp:function(t){t=V.datepicker._getInst(t.target);if(t.input.val()!==t.lastVal)try{V.datepicker.parseDate(V.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,V.datepicker._getFormatConfig(t))&&(V.datepicker._setDateFromField(t),V.datepicker._updateAlternate(t),V.datepicker._updateDatepicker(t))}catch(t){}return!0},_showDatepicker:function(t){var e,i,s,n;"input"!==(t=t.target||t).nodeName.toLowerCase()&&(t=V("input",t.parentNode)[0]),V.datepicker._isDisabledDatepicker(t)||V.datepicker._lastInput===t||(n=V.datepicker._getInst(t),V.datepicker._curInst&&V.datepicker._curInst!==n&&(V.datepicker._curInst.dpDiv.stop(!0,!0),n&&V.datepicker._datepickerShowing&&V.datepicker._hideDatepicker(V.datepicker._curInst.input[0])),!1!==(i=(s=V.datepicker._get(n,"beforeShow"))?s.apply(t,[t,n]):{})&&(at(n.settings,i),n.lastVal=null,V.datepicker._lastInput=t,V.datepicker._setDateFromField(n),V.datepicker._inDialog&&(t.value=""),V.datepicker._pos||(V.datepicker._pos=V.datepicker._findPos(t),V.datepicker._pos[1]+=t.offsetHeight),e=!1,V(t).parents().each(function(){return!(e|="fixed"===V(this).css("position"))}),s={left:V.datepicker._pos[0],top:V.datepicker._pos[1]},V.datepicker._pos=null,n.dpDiv.empty(),n.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),V.datepicker._updateDatepicker(n),s=V.datepicker._checkOffset(n,s,e),n.dpDiv.css({position:V.datepicker._inDialog&&V.blockUI?"static":e?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"}),n.inline||(i=V.datepicker._get(n,"showAnim"),s=V.datepicker._get(n,"duration"),n.dpDiv.css("z-index",function(t){for(var e,i;t.length&&t[0]!==document;){if(("absolute"===(e=t.css("position"))||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}(V(t))+1),V.datepicker._datepickerShowing=!0,V.effects&&V.effects.effect[i]?n.dpDiv.show(i,V.datepicker._get(n,"showOptions"),s):n.dpDiv[i||"show"](i?s:null),V.datepicker._shouldFocusInput(n)&&n.input.trigger("focus"),V.datepicker._curInst=n)))},_updateDatepicker:function(t){this.maxRows=4,(it=t).dpDiv.empty().append(this._generateHTML(t)),this._attachHandlers(t);var e,i=this._getNumberOfMonths(t),s=i[1],n=t.dpDiv.find("."+this._dayOverClass+" a"),o=V.datepicker._get(t,"onUpdateDatepicker");0<n.length&&ot.apply(n.get(0)),t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),1<s&&t.dpDiv.addClass("ui-datepicker-multi-"+s).css("width",17*s+"em"),t.dpDiv[(1!==i[0]||1!==i[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),t===V.datepicker._curInst&&V.datepicker._datepickerShowing&&V.datepicker._shouldFocusInput(t)&&t.input.trigger("focus"),t.yearshtml&&(e=t.yearshtml,setTimeout(function(){e===t.yearshtml&&t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year").first().replaceWith(t.yearshtml),e=t.yearshtml=null},0)),o&&o.apply(t.input?t.input[0]:null,[t])},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(t,e,i){var s=t.dpDiv.outerWidth(),n=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,a=t.input?t.input.outerHeight():0,r=document.documentElement.clientWidth+(i?0:V(document).scrollLeft()),l=document.documentElement.clientHeight+(i?0:V(document).scrollTop());return e.left-=this._get(t,"isRTL")?s-o:0,e.left-=i&&e.left===t.input.offset().left?V(document).scrollLeft():0,e.top-=i&&e.top===t.input.offset().top+a?V(document).scrollTop():0,e.left-=Math.min(e.left,e.left+s>r&&s<r?Math.abs(e.left+s-r):0),e.top-=Math.min(e.top,e.top+n>l&&n<l?Math.abs(n+a):0),e},_findPos:function(t){for(var e=this._getInst(t),i=this._get(e,"isRTL");t&&("hidden"===t.type||1!==t.nodeType||V.expr.pseudos.hidden(t));)t=t[i?"previousSibling":"nextSibling"];return[(e=V(t).offset()).left,e.top]},_hideDatepicker:function(t){var e,i,s=this._curInst;!s||t&&s!==V.data(t,"datepicker")||this._datepickerShowing&&(e=this._get(s,"showAnim"),i=this._get(s,"duration"),t=function(){V.datepicker._tidyDialog(s)},V.effects&&(V.effects.effect[e]||V.effects[e])?s.dpDiv.hide(e,V.datepicker._get(s,"showOptions"),i,t):s.dpDiv["slideDown"===e?"slideUp":"fadeIn"===e?"fadeOut":"hide"](e?i:null,t),e||t(),this._datepickerShowing=!1,(t=this._get(s,"onClose"))&&t.apply(s.input?s.input[0]:null,[s.input?s.input.val():"",s]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),V.blockUI&&(V.unblockUI(),V("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(t){var e;V.datepicker._curInst&&(e=V(t.target),t=V.datepicker._getInst(e[0]),(e[0].id===V.datepicker._mainDivId||0!==e.parents("#"+V.datepicker._mainDivId).length||e.hasClass(V.datepicker.markerClassName)||e.closest("."+V.datepicker._triggerClass).length||!V.datepicker._datepickerShowing||V.datepicker._inDialog&&V.blockUI)&&(!e.hasClass(V.datepicker.markerClassName)||V.datepicker._curInst===t)||V.datepicker._hideDatepicker())},_adjustDate:function(t,e,i){var s=V(t),t=this._getInst(s[0]);this._isDisabledDatepicker(s[0])||(this._adjustInstDate(t,e,i),this._updateDatepicker(t))},_gotoToday:function(t){var e=V(t),i=this._getInst(e[0]);this._get(i,"gotoCurrent")&&i.currentDay?(i.selectedDay=i.currentDay,i.drawMonth=i.selectedMonth=i.currentMonth,i.drawYear=i.selectedYear=i.currentYear):(t=new Date,i.selectedDay=t.getDate(),i.drawMonth=i.selectedMonth=t.getMonth(),i.drawYear=i.selectedYear=t.getFullYear()),this._notifyChange(i),this._adjustDate(e)},_selectMonthYear:function(t,e,i){var s=V(t),t=this._getInst(s[0]);t["selected"+("M"===i?"Month":"Year")]=t["draw"+("M"===i?"Month":"Year")]=parseInt(e.options[e.selectedIndex].value,10),this._notifyChange(t),this._adjustDate(s)},_selectDay:function(t,e,i,s){var n=V(t);V(s).hasClass(this._unselectableClass)||this._isDisabledDatepicker(n[0])||((n=this._getInst(n[0])).selectedDay=n.currentDay=parseInt(V("a",s).attr("data-date")),n.selectedMonth=n.currentMonth=e,n.selectedYear=n.currentYear=i,this._selectDate(t,this._formatDate(n,n.currentDay,n.currentMonth,n.currentYear)))},_clearDate:function(t){t=V(t);this._selectDate(t,"")},_selectDate:function(t,e){var i=V(t),t=this._getInst(i[0]);e=null!=e?e:this._formatDate(t),t.input&&t.input.val(e),this._updateAlternate(t),(i=this._get(t,"onSelect"))?i.apply(t.input?t.input[0]:null,[e,t]):t.input&&t.input.trigger("change"),t.inline?this._updateDatepicker(t):(this._hideDatepicker(),this._lastInput=t.input[0],"object"!=typeof t.input[0]&&t.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(t){var e,i,s=this._get(t,"altField");s&&(e=this._get(t,"altFormat")||this._get(t,"dateFormat"),i=this._getDate(t),t=this.formatDate(e,i,this._getFormatConfig(t)),V(document).find(s).val(t))},noWeekends:function(t){t=t.getDay();return[0<t&&t<6,""]},iso8601Week:function(t){var e=new Date(t.getTime());return e.setDate(e.getDate()+4-(e.getDay()||7)),t=e.getTime(),e.setMonth(0),e.setDate(1),Math.floor(Math.round((t-e)/864e5)/7)+1},parseDate:function(e,n,t){if(null==e||null==n)throw"Invalid arguments";if(""===(n="object"==typeof n?n.toString():n+""))return null;for(var i,s,o,a=0,r=(t?t.shortYearCutoff:null)||this._defaults.shortYearCutoff,r="string"!=typeof r?r:(new Date).getFullYear()%100+parseInt(r,10),l=(t?t.dayNamesShort:null)||this._defaults.dayNamesShort,h=(t?t.dayNames:null)||this._defaults.dayNames,c=(t?t.monthNamesShort:null)||this._defaults.monthNamesShort,u=(t?t.monthNames:null)||this._defaults.monthNames,d=-1,p=-1,f=-1,g=-1,m=!1,_=function(t){t=w+1<e.length&&e.charAt(w+1)===t;return t&&w++,t},v=function(t){var e=_(t),e="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,e=new RegExp("^\\d{"+("y"===t?e:1)+","+e+"}"),e=n.substring(a).match(e);if(!e)throw"Missing number at position "+a;return a+=e[0].length,parseInt(e[0],10)},b=function(t,e,i){var s=-1,e=V.map(_(t)?i:e,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(V.each(e,function(t,e){var i=e[1];if(n.substr(a,i.length).toLowerCase()===i.toLowerCase())return s=e[0],a+=i.length,!1}),-1!==s)return s+1;throw"Unknown name at position "+a},y=function(){if(n.charAt(a)!==e.charAt(w))throw"Unexpected literal at position "+a;a++},w=0;w<e.length;w++)if(m)"'"!==e.charAt(w)||_("'")?y():m=!1;else switch(e.charAt(w)){case"d":f=v("d");break;case"D":b("D",l,h);break;case"o":g=v("o");break;case"m":p=v("m");break;case"M":p=b("M",c,u);break;case"y":d=v("y");break;case"@":d=(o=new Date(v("@"))).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"!":d=(o=new Date((v("!")-this._ticksTo1970)/1e4)).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"'":_("'")?y():m=!0;break;default:y()}if(a<n.length&&(s=n.substr(a),!/^\s+/.test(s)))throw"Extra/unparsed characters found in date: "+s;if(-1===d?d=(new Date).getFullYear():d<100&&(d+=(new Date).getFullYear()-(new Date).getFullYear()%100+(d<=r?0:-100)),-1<g)for(p=1,f=g;;){if(f<=(i=this._getDaysInMonth(d,p-1)))break;p++,f-=i}if((o=this._daylightSavingAdjust(new Date(d,p-1,f))).getFullYear()!==d||o.getMonth()+1!==p||o.getDate()!==f)throw"Invalid date";return o},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*60*60*1e7,formatDate:function(e,t,i){if(!t)return"";function s(t,e,i){var s=""+e;if(c(t))for(;s.length<i;)s="0"+s;return s}function n(t,e,i,s){return(c(t)?s:i)[e]}var o,a=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,r=(i?i.dayNames:null)||this._defaults.dayNames,l=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,h=(i?i.monthNames:null)||this._defaults.monthNames,c=function(t){t=o+1<e.length&&e.charAt(o+1)===t;return t&&o++,t},u="",d=!1;if(t)for(o=0;o<e.length;o++)if(d)"'"!==e.charAt(o)||c("'")?u+=e.charAt(o):d=!1;else switch(e.charAt(o)){case"d":u+=s("d",t.getDate(),2);break;case"D":u+=n("D",t.getDay(),a,r);break;case"o":u+=s("o",Math.round((new Date(t.getFullYear(),t.getMonth(),t.getDate()).getTime()-new Date(t.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=s("m",t.getMonth()+1,2);break;case"M":u+=n("M",t.getMonth(),l,h);break;case"y":u+=c("y")?t.getFullYear():(t.getFullYear()%100<10?"0":"")+t.getFullYear()%100;break;case"@":u+=t.getTime();break;case"!":u+=1e4*t.getTime()+this._ticksTo1970;break;case"'":c("'")?u+="'":d=!0;break;default:u+=e.charAt(o)}return u},_possibleChars:function(e){for(var t="",i=!1,s=function(t){t=n+1<e.length&&e.charAt(n+1)===t;return t&&n++,t},n=0;n<e.length;n++)if(i)"'"!==e.charAt(n)||s("'")?t+=e.charAt(n):i=!1;else switch(e.charAt(n)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":s("'")?t+="'":i=!0;break;default:t+=e.charAt(n)}return t},_get:function(t,e){return(void 0!==t.settings[e]?t.settings:this._defaults)[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(t){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(r,t,e){var i,s,t=null==t||""===t?e:"string"==typeof t?function(t){try{return V.datepicker.parseDate(V.datepicker._get(r,"dateFormat"),t,V.datepicker._getFormatConfig(r))}catch(t){}for(var e=(t.toLowerCase().match(/^c/)?V.datepicker._getDate(r):null)||new Date,i=e.getFullYear(),s=e.getMonth(),n=e.getDate(),o=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=o.exec(t);a;){switch(a[2]||"d"){case"d":case"D":n+=parseInt(a[1],10);break;case"w":case"W":n+=7*parseInt(a[1],10);break;case"m":case"M":s+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s))}a=o.exec(t)}return new Date(i,s,n)}(t):"number"==typeof t?isNaN(t)?e:(i=t,(s=new Date).setDate(s.getDate()+i),s):new Date(t.getTime());return(t=t&&"Invalid Date"===t.toString()?e:t)&&(t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)),this._daylightSavingAdjust(t)},_daylightSavingAdjust:function(t){return t?(t.setHours(12<t.getHours()?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,e=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=e.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=e.getMonth(),t.drawYear=t.selectedYear=t.currentYear=e.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){return!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay))},_attachHandlers:function(t){var e=this._get(t,"stepMonths"),i="#"+t.id.replace(/\\\\/g,"\\");t.dpDiv.find("[data-handler]").map(function(){var t={prev:function(){V.datepicker._adjustDate(i,-e,"M")},next:function(){V.datepicker._adjustDate(i,+e,"M")},hide:function(){V.datepicker._hideDatepicker()},today:function(){V.datepicker._gotoToday(i)},selectDay:function(){return V.datepicker._selectDay(i,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return V.datepicker._selectMonthYear(i,this,"M"),!1},selectYear:function(){return V.datepicker._selectMonthYear(i,this,"Y"),!1}};V(this).on(this.getAttribute("data-event"),t[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,l,h,c,u,d,p,f,g,m,_,v,b,y,w,x,k,C,D,I,T,P,M,S,H,z,A=new Date,O=this._daylightSavingAdjust(new Date(A.getFullYear(),A.getMonth(),A.getDate())),N=this._get(t,"isRTL"),E=this._get(t,"showButtonPanel"),W=this._get(t,"hideIfNoPrevNext"),F=this._get(t,"navigationAsDateFormat"),L=this._getNumberOfMonths(t),R=this._get(t,"showCurrentAtPos"),A=this._get(t,"stepMonths"),Y=1!==L[0]||1!==L[1],B=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),j=this._getMinMaxDate(t,"min"),q=this._getMinMaxDate(t,"max"),K=t.drawMonth-R,U=t.drawYear;if(K<0&&(K+=12,U--),q)for(e=this._daylightSavingAdjust(new Date(q.getFullYear(),q.getMonth()-L[0]*L[1]+1,q.getDate())),e=j&&e<j?j:e;this._daylightSavingAdjust(new Date(U,K,1))>e;)--K<0&&(K=11,U--);for(t.drawMonth=K,t.drawYear=U,R=this._get(t,"prevText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K-A,1)),this._getFormatConfig(t)):R,i=this._canAdjustMonth(t,-1,U,K)?V("<a>").attr({class:"ui-datepicker-prev ui-corner-all","data-handler":"prev","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-prev ui-corner-all ui-state-disabled",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML,R=this._get(t,"nextText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K+A,1)),this._getFormatConfig(t)):R,s=this._canAdjustMonth(t,1,U,K)?V("<a>").attr({class:"ui-datepicker-next ui-corner-all","data-handler":"next","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-next ui-corner-all ui-state-disabled",title:R}).append(V("<span>").attr("class","ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML,A=this._get(t,"currentText"),W=this._get(t,"gotoCurrent")&&t.currentDay?B:O,A=F?this.formatDate(A,W,this._getFormatConfig(t)):A,R="",t.inline||(R=V("<button>").attr({type:"button",class:"ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all","data-handler":"hide","data-event":"click"}).text(this._get(t,"closeText"))[0].outerHTML),F="",E&&(F=V("<div class='ui-datepicker-buttonpane ui-widget-content'>").append(N?R:"").append(this._isInRange(t,W)?V("<button>").attr({type:"button",class:"ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all","data-handler":"today","data-event":"click"}).text(A):"").append(N?"":R)[0].outerHTML),n=parseInt(this._get(t,"firstDay"),10),n=isNaN(n)?0:n,o=this._get(t,"showWeek"),a=this._get(t,"dayNames"),r=this._get(t,"dayNamesMin"),l=this._get(t,"monthNames"),h=this._get(t,"monthNamesShort"),c=this._get(t,"beforeShowDay"),u=this._get(t,"showOtherMonths"),d=this._get(t,"selectOtherMonths"),p=this._getDefaultDate(t),f="",m=0;m<L[0];m++){for(_="",this.maxRows=4,v=0;v<L[1];v++){if(b=this._daylightSavingAdjust(new Date(U,K,t.selectedDay)),y=" ui-corner-all",w="",Y){if(w+="<div class='ui-datepicker-group",1<L[1])switch(v){case 0:w+=" ui-datepicker-group-first",y=" ui-corner-"+(N?"right":"left");break;case L[1]-1:w+=" ui-datepicker-group-last",y=" ui-corner-"+(N?"left":"right");break;default:w+=" ui-datepicker-group-middle",y=""}w+="'>"}for(w+="<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix"+y+"'>"+(/all|left/.test(y)&&0===m?N?s:i:"")+(/all|right/.test(y)&&0===m?N?i:s:"")+this._generateMonthYearHeader(t,K,U,j,q,0<m||0<v,l,h)+"</div><table class='ui-datepicker-calendar'><thead><tr>",x=o?"<th class='ui-datepicker-week-col'>"+this._get(t,"weekHeader")+"</th>":"",g=0;g<7;g++)x+="<th scope='col'"+(5<=(g+n+6)%7?" class='ui-datepicker-week-end'":"")+"><span title='"+a[k=(g+n)%7]+"'>"+r[k]+"</span></th>";for(w+=x+"</tr></thead><tbody>",D=this._getDaysInMonth(U,K),U===t.selectedYear&&K===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,D)),C=(this._getFirstDayOfMonth(U,K)-n+7)%7,D=Math.ceil((C+D)/7),I=Y&&this.maxRows>D?this.maxRows:D,this.maxRows=I,T=this._daylightSavingAdjust(new Date(U,K,1-C)),P=0;P<I;P++){for(w+="<tr>",M=o?"<td class='ui-datepicker-week-col'>"+this._get(t,"calculateWeek")(T)+"</td>":"",g=0;g<7;g++)S=c?c.apply(t.input?t.input[0]:null,[T]):[!0,""],z=(H=T.getMonth()!==K)&&!d||!S[0]||j&&T<j||q&&q<T,M+="<td class='"+(5<=(g+n+6)%7?" ui-datepicker-week-end":"")+(H?" ui-datepicker-other-month":"")+(T.getTime()===b.getTime()&&K===t.selectedMonth&&t._keyEvent||p.getTime()===T.getTime()&&p.getTime()===b.getTime()?" "+this._dayOverClass:"")+(z?" "+this._unselectableClass+" ui-state-disabled":"")+(H&&!u?"":" "+S[1]+(T.getTime()===B.getTime()?" "+this._currentClass:"")+(T.getTime()===O.getTime()?" ui-datepicker-today":""))+"'"+(H&&!u||!S[2]?"":" title='"+S[2].replace(/'/g,"&#39;")+"'")+(z?"":" data-handler='selectDay' data-event='click' data-month='"+T.getMonth()+"' data-year='"+T.getFullYear()+"'")+">"+(H&&!u?"&#xa0;":z?"<span class='ui-state-default'>"+T.getDate()+"</span>":"<a class='ui-state-default"+(T.getTime()===O.getTime()?" ui-state-highlight":"")+(T.getTime()===B.getTime()?" ui-state-active":"")+(H?" ui-priority-secondary":"")+"' href='#' aria-current='"+(T.getTime()===B.getTime()?"true":"false")+"' data-date='"+T.getDate()+"'>"+T.getDate()+"</a>")+"</td>",T.setDate(T.getDate()+1),T=this._daylightSavingAdjust(T);w+=M+"</tr>"}11<++K&&(K=0,U++),_+=w+="</tbody></table>"+(Y?"</div>"+(0<L[0]&&v===L[1]-1?"<div class='ui-datepicker-row-break'></div>":""):"")}f+=_}return f+=F,t._keyEvent=!1,f},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var l,h,c,u,d,p,f=this._get(t,"changeMonth"),g=this._get(t,"changeYear"),m=this._get(t,"showMonthAfterYear"),_=this._get(t,"selectMonthLabel"),v=this._get(t,"selectYearLabel"),b="<div class='ui-datepicker-title'>",y="";if(o||!f)y+="<span class='ui-datepicker-month'>"+a[e]+"</span>";else{for(l=s&&s.getFullYear()===i,h=n&&n.getFullYear()===i,y+="<select class='ui-datepicker-month' aria-label='"+_+"' data-handler='selectMonth' data-event='change'>",c=0;c<12;c++)(!l||c>=s.getMonth())&&(!h||c<=n.getMonth())&&(y+="<option value='"+c+"'"+(c===e?" selected='selected'":"")+">"+r[c]+"</option>");y+="</select>"}if(m||(b+=y+(!o&&f&&g?"":"&#xa0;")),!t.yearshtml)if(t.yearshtml="",o||!g)b+="<span class='ui-datepicker-year'>"+i+"</span>";else{for(a=this._get(t,"yearRange").split(":"),u=(new Date).getFullYear(),d=(_=function(t){t=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?u+parseInt(t,10):parseInt(t,10);return isNaN(t)?u:t})(a[0]),p=Math.max(d,_(a[1]||"")),d=s?Math.max(d,s.getFullYear()):d,p=n?Math.min(p,n.getFullYear()):p,t.yearshtml+="<select class='ui-datepicker-year' aria-label='"+v+"' data-handler='selectYear' data-event='change'>";d<=p;d++)t.yearshtml+="<option value='"+d+"'"+(d===i?" selected='selected'":"")+">"+d+"</option>";t.yearshtml+="</select>",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),m&&(b+=(!o&&f&&g?"":"&#xa0;")+y),b+="</div>"},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),e=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),e=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,e)));t.selectedDay=e.getDate(),t.drawMonth=t.selectedMonth=e.getMonth(),t.drawYear=t.selectedYear=e.getFullYear(),"M"!==i&&"Y"!==i||this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),t=this._getMinMaxDate(t,"max"),e=i&&e<i?i:e;return t&&t<e?t:e},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){t=this._get(t,"numberOfMonths");return null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),n=this._daylightSavingAdjust(new Date(i,s+(e<0?e:n[0]*n[1]),1));return e<0&&n.setDate(this._getDaysInMonth(n.getFullYear(),n.getMonth())),this._isInRange(t,n)},_isInRange:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=null,o=null,a=this._get(t,"yearRange");return a&&(t=a.split(":"),a=(new Date).getFullYear(),n=parseInt(t[0],10),o=parseInt(t[1],10),t[0].match(/[+\-].*/)&&(n+=a),t[1].match(/[+\-].*/)&&(o+=a)),(!i||e.getTime()>=i.getTime())&&(!s||e.getTime()<=s.getTime())&&(!n||e.getFullYear()>=n)&&(!o||e.getFullYear()<=o)},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return{shortYearCutoff:e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);e=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),e,this._getFormatConfig(t))}}),V.fn.datepicker=function(t){if(!this.length)return this;V.datepicker.initialized||(V(document).on("mousedown",V.datepicker._checkExternalClick),V.datepicker.initialized=!0),0===V("#"+V.datepicker._mainDivId).length&&V("body").append(V.datepicker.dpDiv);var e=Array.prototype.slice.call(arguments,1);return"string"==typeof t&&("isDisabled"===t||"getDate"===t||"widget"===t)||"option"===t&&2===arguments.length&&"string"==typeof arguments[1]?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this[0]].concat(e)):this.each(function(){"string"==typeof t?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this].concat(e)):V.datepicker._attachDatepicker(this,t)})},V.datepicker=new st,V.datepicker.initialized=!1,V.datepicker.uuid=(new Date).getTime(),V.datepicker.version="1.13.1";V.datepicker,V.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var rt=!1;V(document).on("mouseup",function(){rt=!1});V.widget("ui.mouse",{version:"1.13.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(t){if(!0===V.data(t.target,e.widgetName+".preventClickEvent"))return V.removeData(t.target,e.widgetName+".preventClickEvent"),t.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(!rt){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var e=this,i=1===t.which,s=!("string"!=typeof this.options.cancel||!t.target.nodeName)&&V(t.target).closest(this.options.cancel).length;return i&&!s&&this._mouseCapture(t)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(t),!this._mouseStarted)?(t.preventDefault(),!0):(!0===V.data(t.target,this.widgetName+".preventClickEvent")&&V.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return e._mouseMove(t)},this._mouseUpDelegate=function(t){return e._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),rt=!0)):!0}},_mouseMove:function(t){if(this._mouseMoved){if(V.ui.ie&&(!document.documentMode||document.documentMode<9)&&!t.button)return this._mouseUp(t);if(!t.which)if(t.originalEvent.altKey||t.originalEvent.ctrlKey||t.originalEvent.metaKey||t.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(t)}return(t.which||t.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,t),this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted)},_mouseUp:function(t){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&V.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,rt=!1,t.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),V.ui.plugin={add:function(t,e,i){var s,n=V.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n<o.length;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},V.ui.safeBlur=function(t){t&&"body"!==t.nodeName.toLowerCase()&&V(t).trigger("blur")};V.widget("ui.draggable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(".ui-draggable-dragging")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0<V(t.target).closest(".ui-resizable-handle").length)&&(this.handle=this._getHandle(t),!!this.handle&&(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?"iframe":e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=V(this);return V("<div>").css("position","absolute").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=V.ui.safeActiveElement(this.document[0]);V(t.target).closest(e).length||V.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),V.ui.ddmanager&&(V.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0<this.helper.parents().filter(function(){return"fixed"===V(this).css("position")}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger("start",t)?(this._clear(),!1):(this._cacheHelperProportions(),V.ui.ddmanager&&!e.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),V.ui.ddmanager&&V.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!e){e=this._uiHash();if(!1===this._trigger("drag",t,e))return this._mouseUp(new V.Event("mouseup",t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,i=!1;return V.ui.ddmanager&&!this.options.dropBehaviour&&(i=V.ui.ddmanager.drop(this,t)),this.dropped&&(i=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!i||"valid"===this.options.revert&&i||!0===this.options.revert||"function"==typeof this.options.revert&&this.options.revert.call(this.element,i)?V(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger("stop",t)&&e._clear()}):!1!==this._trigger("stop",t)&&this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),V.ui.ddmanager&&V.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&&this.element.trigger("focus"),V.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new V.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!V(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(t){var e=this.options,i="function"==typeof e.helper,t=i?V(e.helper.apply(this.element[0],[t])):"clone"===e.helper?this.element.clone().removeAttr("id"):this.element;return t.parents("body").length||t.appendTo("parent"===e.appendTo?this.element[0].parentNode:e.appendTo),i&&t[0]===this.element[0]&&this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css("position"))||t.css("position","absolute"),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==e&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i,s=this.options,n=this.document[0];this.relativeContainer=null,s.containment?"window"!==s.containment?"document"!==s.containment?s.containment.constructor!==Array?("parent"===s.containment&&(s.containment=this.helper[0].parentNode),(i=(e=V(s.containment))[0])&&(t=/(scroll|auto)/.test(e.css("overflow")),this.containment=[(parseInt(e.css("borderLeftWidth"),10)||0)+(parseInt(e.css("paddingLeft"),10)||0),(parseInt(e.css("borderTopWidth"),10)||0)+(parseInt(e.css("paddingTop"),10)||0),(t?Math.max(i.scrollWidth,i.offsetWidth):i.offsetWidth)-(parseInt(e.css("borderRightWidth"),10)||0)-(parseInt(e.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(i.scrollHeight,i.offsetHeight):i.offsetHeight)-(parseInt(e.css("borderBottomWidth"),10)||0)-(parseInt(e.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=e)):this.containment=s.containment:this.containment=[0,0,V(n).width()-this.helperProportions.width-this.margins.left,(V(n).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=[V(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,V(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,V(window).scrollLeft()+V(window).width()-this.helperProportions.width-this.margins.left,V(window).scrollTop()+(V(window).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,t=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:t?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:t?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s=this.options,n=this._isRootNode(this.scrollParent[0]),o=t.pageX,a=t.pageY;return n&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(i=this.relativeContainer?(i=this.relativeContainer.offset(),[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]):this.containment,t.pageX-this.offset.click.left<i[0]&&(o=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(a=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(o=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(a=i[3]+this.offset.click.top)),s.grid&&(t=s.grid[1]?this.originalPageY+Math.round((a-this.originalPageY)/s.grid[1])*s.grid[1]:this.originalPageY,a=!i||t-this.offset.click.top>=i[1]||t-this.offset.click.top>i[3]?t:t-this.offset.click.top>=i[1]?t-s.grid[1]:t+s.grid[1],t=s.grid[0]?this.originalPageX+Math.round((o-this.originalPageX)/s.grid[0])*s.grid[0]:this.originalPageX,o=!i||t-this.offset.click.left>=i[0]||t-this.offset.click.left>i[2]?t:t-this.offset.click.left>=i[0]?t-s.grid[0]:t+s.grid[0]),"y"===s.axis&&(o=this.originalPageX),"x"===s.axis&&(a=this.originalPageY)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:n?0:this.offset.scroll.top),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:n?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(t,e,i){return i=i||this._uiHash(),V.ui.plugin.call(this,t,[e,i,this],!0),/^(drag|start|stop)/.test(t)&&(this.positionAbs=this._convertPositionTo("absolute"),i.offset=this.positionAbs),V.Widget.prototype._trigger.call(this,t,e,i)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),V.ui.plugin.add("draggable","connectToSortable",{start:function(e,t,i){var s=V.extend({},t,{item:i.element});i.sortables=[],V(i.options.connectToSortable).each(function(){var t=V(this).sortable("instance");t&&!t.options.disabled&&(i.sortables.push(t),t.refreshPositions(),t._trigger("activate",e,s))})},stop:function(e,t,i){var s=V.extend({},t,{item:i.element});i.cancelHelperRemoval=!1,V.each(i.sortables,function(){var t=this;t.isOver?(t.isOver=0,i.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,s))})},drag:function(i,s,n){V.each(n.sortables,function(){var t=!1,e=this;e.positionAbs=n.positionAbs,e.helperProportions=n.helperProportions,e.offset.click=n.offset.click,e._intersectsWith(e.containerCache)&&(t=!0,V.each(n.sortables,function(){return this.positionAbs=n.positionAbs,this.helperProportions=n.helperProportions,this.offset.click=n.offset.click,t=this!==e&&this._intersectsWith(this.containerCache)&&V.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,n._parent=s.helper.parent(),e.currentItem=s.helper.appendTo(e.element).data("ui-sortable-item",!0),e.options._helper=e.options.helper,e.options.helper=function(){return s.helper[0]},i.target=e.currentItem[0],e._mouseCapture(i,!0),e._mouseStart(i,!0,!0),e.offset.click.top=n.offset.click.top,e.offset.click.left=n.offset.click.left,e.offset.parent.left-=n.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=n.offset.parent.top-e.offset.parent.top,n._trigger("toSortable",i),n.dropped=e.element,V.each(n.sortables,function(){this.refreshPositions()}),n.currentItem=n.element,e.fromOutside=n),e.currentItem&&(e._mouseDrag(i),s.position=e.position)):e.isOver&&(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger("out",i,e._uiHash(e)),e._mouseStop(i,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&&e.placeholder.remove(),s.helper.appendTo(n._parent),n._refreshOffsets(i),s.position=n._generatePosition(i,!0),n._trigger("fromSortable",i),n.dropped=!1,V.each(n.sortables,function(){this.refreshPositions()}))})}}),V.ui.plugin.add("draggable","cursor",{start:function(t,e,i){var s=V("body"),i=i.options;s.css("cursor")&&(i._cursor=s.css("cursor")),s.css("cursor",i.cursor)},stop:function(t,e,i){i=i.options;i._cursor&&V("body").css("cursor",i._cursor)}}),V.ui.plugin.add("draggable","opacity",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("opacity")&&(i._opacity=e.css("opacity")),e.css("opacity",i.opacity)},stop:function(t,e,i){i=i.options;i._opacity&&V(e.helper).css("opacity",i._opacity)}}),V.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(t,e,i){var s=i.options,n=!1,o=i.scrollParentNotHidden[0],a=i.document[0];o!==a&&"HTML"!==o.tagName?(s.axis&&"x"===s.axis||(i.overflowOffset.top+o.offsetHeight-t.pageY<s.scrollSensitivity?o.scrollTop=n=o.scrollTop+s.scrollSpeed:t.pageY-i.overflowOffset.top<s.scrollSensitivity&&(o.scrollTop=n=o.scrollTop-s.scrollSpeed)),s.axis&&"y"===s.axis||(i.overflowOffset.left+o.offsetWidth-t.pageX<s.scrollSensitivity?o.scrollLeft=n=o.scrollLeft+s.scrollSpeed:t.pageX-i.overflowOffset.left<s.scrollSensitivity&&(o.scrollLeft=n=o.scrollLeft-s.scrollSpeed))):(s.axis&&"x"===s.axis||(t.pageY-V(a).scrollTop()<s.scrollSensitivity?n=V(a).scrollTop(V(a).scrollTop()-s.scrollSpeed):V(window).height()-(t.pageY-V(a).scrollTop())<s.scrollSensitivity&&(n=V(a).scrollTop(V(a).scrollTop()+s.scrollSpeed))),s.axis&&"y"===s.axis||(t.pageX-V(a).scrollLeft()<s.scrollSensitivity?n=V(a).scrollLeft(V(a).scrollLeft()-s.scrollSpeed):V(window).width()-(t.pageX-V(a).scrollLeft())<s.scrollSensitivity&&(n=V(a).scrollLeft(V(a).scrollLeft()+s.scrollSpeed)))),!1!==n&&V.ui.ddmanager&&!s.dropBehaviour&&V.ui.ddmanager.prepareOffsets(i,t)}}),V.ui.plugin.add("draggable","snap",{start:function(t,e,i){var s=i.options;i.snapElements=[],V(s.snap.constructor!==String?s.snap.items||":data(ui-draggable)":s.snap).each(function(){var t=V(this),e=t.offset();this!==i.element[0]&&i.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,i){for(var s,n,o,a,r,l,h,c,u,d=i.options,p=d.snapTolerance,f=e.offset.left,g=f+i.helperProportions.width,m=e.offset.top,_=m+i.helperProportions.height,v=i.snapElements.length-1;0<=v;v--)l=(r=i.snapElements[v].left-i.margins.left)+i.snapElements[v].width,c=(h=i.snapElements[v].top-i.margins.top)+i.snapElements[v].height,g<r-p||l+p<f||_<h-p||c+p<m||!V.contains(i.snapElements[v].item.ownerDocument,i.snapElements[v].item)?(i.snapElements[v].snapping&&i.options.snap.release&&i.options.snap.release.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=!1):("inner"!==d.snapMode&&(s=Math.abs(h-_)<=p,n=Math.abs(c-m)<=p,o=Math.abs(r-g)<=p,a=Math.abs(l-f)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h-i.helperProportions.height,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r-i.helperProportions.width}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l}).left)),u=s||n||o||a,"outer"!==d.snapMode&&(s=Math.abs(h-m)<=p,n=Math.abs(c-_)<=p,o=Math.abs(r-f)<=p,a=Math.abs(l-g)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c-i.helperProportions.height,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l-i.helperProportions.width}).left)),!i.snapElements[v].snapping&&(s||n||o||a||u)&&i.options.snap.snap&&i.options.snap.snap.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=s||n||o||a||u)}}),V.ui.plugin.add("draggable","stack",{start:function(t,e,i){var s,i=i.options,i=V.makeArray(V(i.stack)).sort(function(t,e){return(parseInt(V(t).css("zIndex"),10)||0)-(parseInt(V(e).css("zIndex"),10)||0)});i.length&&(s=parseInt(V(i[0]).css("zIndex"),10)||0,V(i).each(function(t){V(this).css("zIndex",s+t)}),this.css("zIndex",s+i.length))}}),V.ui.plugin.add("draggable","zIndex",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("zIndex")&&(i._zIndex=e.css("zIndex")),e.css("zIndex",i.zIndex)},stop:function(t,e,i){i=i.options;i._zIndex&&V(e.helper).css("zIndex",i._zIndex)}});V.ui.draggable;V.widget("ui.resizable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(t,e){if("hidden"===V(t).css("overflow"))return!1;var i=e&&"left"===e?"scrollLeft":"scrollTop",e=!1;if(0<t[i])return!0;try{t[i]=1,e=0<t[i],t[i]=0}catch(t){}return e},_create:function(){var t,e=this.options,i=this;this._addClass("ui-resizable"),V.extend(this,{_aspectRatio:!!e.aspectRatio,aspectRatio:e.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:e.helper||e.ghost||e.animate?e.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(V("<div class='ui-wrapper'></div>").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&V(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){V(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,a=this;if(this.handles=o.handles||(V(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=V(),this._addedHandles=V(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e<i.length;e++)s="ui-resizable-"+(t=String.prototype.trim.call(i[e])),n=V("<div>"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=V(this.handles[e]),this._on(this.handles[e],{mousedown:a._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=V(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){a.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),a.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=V(this.handles[e])[0])!==t.target&&!V.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=V(s.containment).scrollLeft()||0,i+=V(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=V(".ui-resizable-"+this.axis).css("cursor"),V("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),V.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(V.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),V("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),s<n.maxWidth&&(n.maxWidth=s),t<n.maxHeight&&(n.maxHeight=t)),this._vBoundaries=n},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,l=this.originalPosition.top+this.originalSize.height,h=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&h&&(t.left=r-e.minWidth),s&&h&&(t.left=r-e.maxWidth),a&&i&&(t.top=l-e.minHeight),n&&i&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e<this._proportionallyResizeElements.length;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var t=this.element,e=this.options;this.elementOffset=t.offset(),this._helper?(this.helper=this.helper||V("<div></div>").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){V.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),V.ui.plugin.add("resizable","animate",{stop:function(e){var i=V(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,a=n?0:i.sizeDiff.width,n={width:i.size.width-a,height:i.size.height-o},a=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(V.extend(n,o&&a?{top:o,left:a}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&V(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),V.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=V(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,a=o instanceof V?o.get(0):/parent/.test(o)?e.parent().get(0):o;a&&(n.containerElement=V(a),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:V(document),left:0,top:0,width:V(document).width(),height:V(document).height()||document.body.parentNode.scrollHeight}):(i=V(a),s=[],V(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(a,"left")?a.scrollWidth:o,e=n._hasScroll(a)?a.scrollHeight:e,n.parentData={element:a,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=V(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,a={top:0,left:0},r=e.containerElement,t=!0;r[0]!==document&&/static/.test(r.css("position"))&&(a=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-a.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-a.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-a.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=V(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=V(t.helper),a=o.offset(),r=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o})}}),V.ui.plugin.add("resizable","alsoResize",{start:function(){var t=V(this).resizable("instance").options;V(t.alsoResize).each(function(){var t=V(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=V(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,a={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};V(s.alsoResize).each(function(){var t=V(this),s=V(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];V.each(e,function(t,e){var i=(s[e]||0)+(a[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){V(this).removeData("ui-resizable-alsoresize")}}),V.ui.plugin.add("resizable","ghost",{start:function(){var t=V(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==V.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=V(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=V(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),V.ui.plugin.add("resizable","grid",{resize:function(){var t,e=V(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,a=e.axis,r="number"==typeof i.grid?[i.grid,i.grid]:i.grid,l=r[0]||1,h=r[1]||1,c=Math.round((s.width-n.width)/l)*l,u=Math.round((s.height-n.height)/h)*h,d=n.width+c,p=n.height+u,f=i.maxWidth&&i.maxWidth<d,g=i.maxHeight&&i.maxHeight<p,m=i.minWidth&&i.minWidth>d,s=i.minHeight&&i.minHeight>p;i.grid=r,m&&(d+=l),s&&(p+=h),f&&(d-=l),g&&(p-=h),/^(se|s|e)$/.test(a)?(e.size.width=d,e.size.height=p):/^(ne)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.top=o.top-u):/^(sw)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.left=o.left-c):((p-h<=0||d-l<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0<p-h?(e.size.height=p,e.position.top=o.top-u):(p=h-t.height,e.size.height=p,e.position.top=o.top+n.height-p),0<d-l?(e.size.width=d,e.position.left=o.left-c):(d=l-t.width,e.size.width=d,e.position.left=o.left+n.width-d))}});V.ui.resizable;V.widget("ui.dialog",{version:"1.13.1",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var e=V(this).css(t).offset().top;e<0&&V(this).css("top",t.top-e)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&V.fn.draggable&&this._makeDraggable(),this.options.resizable&&V.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var t=this.options.appendTo;return t&&(t.jquery||t.nodeType)?V(t):this.document.find(t||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),(t=e.parent.children().eq(e.index)).length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:V.noop,enable:V.noop,close:function(t){var e=this;this._isOpen&&!1!==this._trigger("beforeClose",t)&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||V.ui.safeBlur(V.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){e._trigger("close",t)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,e){var i=!1,s=this.uiDialog.siblings(".ui-front:visible").map(function(){return+V(this).css("z-index")}).get(),s=Math.max.apply(null,s);return s>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",s+1),i=!0),i&&!e&&this._trigger("focus",t),i},open:function(){var t=this;this._isOpen?this._moveToTop()&&this._focusTabbable():(this._isOpen=!0,this.opener=V(V.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){t._focusTabbable(),t._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"))},_focusTabbable:function(){var t=this._focusedElement;(t=!(t=!(t=!(t=!(t=t||this.element.find("[autofocus]")).length?this.element.find(":tabbable"):t).length?this.uiDialogButtonPane.find(":tabbable"):t).length?this.uiDialogTitlebarClose.filter(":tabbable"):t).length?this.uiDialog:t).eq(0).trigger("focus")},_restoreTabbableFocus:function(){var t=V.ui.safeActiveElement(this.document[0]);this.uiDialog[0]===t||V.contains(this.uiDialog[0],t)||this._focusTabbable()},_keepFocus:function(t){t.preventDefault(),this._restoreTabbableFocus(),this._delay(this._restoreTabbableFocus)},_createWrapper:function(){this.uiDialog=V("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(t){if(this.options.closeOnEscape&&!t.isDefaultPrevented()&&t.keyCode&&t.keyCode===V.ui.keyCode.ESCAPE)return t.preventDefault(),void this.close(t);var e,i,s;t.keyCode!==V.ui.keyCode.TAB||t.isDefaultPrevented()||(e=this.uiDialog.find(":tabbable"),i=e.first(),s=e.last(),t.target!==s[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==i[0]&&t.target!==this.uiDialog[0]||!t.shiftKey||(this._delay(function(){s.trigger("focus")}),t.preventDefault()):(this._delay(function(){i.trigger("focus")}),t.preventDefault()))},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var t;this.uiDialogTitlebar=V("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(t){V(t.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=V("<button type='button'></button>").button({label:V("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),t=V("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(t,"ui-dialog-title"),this._title(t),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":t.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html("&#160;")},_createButtonPane:function(){this.uiDialogButtonPane=V("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=V("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var s=this,t=this.options.buttons;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),V.isEmptyObject(t)||Array.isArray(t)&&!t.length?this._removeClass(this.uiDialog,"ui-dialog-buttons"):(V.each(t,function(t,e){var i;e=V.extend({type:"button"},e="function"==typeof e?{click:e,text:t}:e),i=e.click,t={icon:e.icon,iconPosition:e.iconPosition,showLabel:e.showLabel,icons:e.icons,text:e.text},delete e.click,delete e.icon,delete e.iconPosition,delete e.showLabel,delete e.icons,"boolean"==typeof e.text&&delete e.text,V("<button></button>",e).button(t).appendTo(s.uiButtonSet).on("click",function(){i.apply(s.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog))},_makeDraggable:function(){var n=this,o=this.options;function a(t){return{position:t.position,offset:t.offset}}this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(t,e){n._addClass(V(this),"ui-dialog-dragging"),n._blockFrames(),n._trigger("dragStart",t,a(e))},drag:function(t,e){n._trigger("drag",t,a(e))},stop:function(t,e){var i=e.offset.left-n.document.scrollLeft(),s=e.offset.top-n.document.scrollTop();o.position={my:"left top",at:"left"+(0<=i?"+":"")+i+" top"+(0<=s?"+":"")+s,of:n.window},n._removeClass(V(this),"ui-dialog-dragging"),n._unblockFrames(),n._trigger("dragStop",t,a(e))}})},_makeResizable:function(){var n=this,o=this.options,t=o.resizable,e=this.uiDialog.css("position"),t="string"==typeof t?t:"n,e,s,w,se,sw,ne,nw";function a(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:o.maxWidth,maxHeight:o.maxHeight,minWidth:o.minWidth,minHeight:this._minHeight(),handles:t,start:function(t,e){n._addClass(V(this),"ui-dialog-resizing"),n._blockFrames(),n._trigger("resizeStart",t,a(e))},resize:function(t,e){n._trigger("resize",t,a(e))},stop:function(t,e){var i=n.uiDialog.offset(),s=i.left-n.document.scrollLeft(),i=i.top-n.document.scrollTop();o.height=n.uiDialog.height(),o.width=n.uiDialog.width(),o.position={my:"left top",at:"left"+(0<=s?"+":"")+s+" top"+(0<=i?"+":"")+i,of:n.window},n._removeClass(V(this),"ui-dialog-resizing"),n._unblockFrames(),n._trigger("resizeStop",t,a(e))}}).css("position",e)},_trackFocus:function(){this._on(this.widget(),{focusin:function(t){this._makeFocusTarget(),this._focusedElement=V(t.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var t=this._trackingInstances(),e=V.inArray(this,t);-1!==e&&t.splice(e,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||this.document.data("ui-dialog-instances",t=[]),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(t){var i=this,s=!1,n={};V.each(t,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(t,e){var i,s=this.uiDialog;"disabled"!==t&&(this._super(t,e),"appendTo"===t&&this.uiDialog.appendTo(this._appendTo()),"buttons"===t&&this._createButtons(),"closeText"===t&&this.uiDialogTitlebarClose.button({label:V("<a>").text(""+this.options.closeText).html()}),"draggable"===t&&((i=s.is(":data(ui-draggable)"))&&!e&&s.draggable("destroy"),!i&&e&&this._makeDraggable()),"position"===t&&this._position(),"resizable"===t&&((i=s.is(":data(ui-resizable)"))&&!e&&s.resizable("destroy"),i&&"string"==typeof e&&s.resizable("option","handles",e),i||!1===e||this._makeResizable()),"title"===t&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var t=V(this);return V("<div>").css({position:"absolute",width:t.outerWidth(),height:t.outerHeight()}).appendTo(t.parent()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(t){return!!V(t.target).closest(".ui-dialog").length||!!V(t.target).closest(".ui-datepicker").length},_createOverlay:function(){var i,s;this.options.modal&&(i=V.fn.jquery.substring(0,4),s=!0,this._delay(function(){s=!1}),this.document.data("ui-dialog-overlays")||this.document.on("focusin.ui-dialog",function(t){var e;s||((e=this._trackingInstances()[0])._allowInteraction(t)||(t.preventDefault(),e._focusTabbable(),"3.4."!==i&&"3.5."!==i||e._delay(e._restoreTabbableFocus)))}.bind(this)),this.overlay=V("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1))},_destroyOverlay:function(){var t;this.options.modal&&this.overlay&&((t=this.document.data("ui-dialog-overlays")-1)?this.document.data("ui-dialog-overlays",t):(this.document.off("focusin.ui-dialog"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null)}}),!1!==V.uiBackCompat&&V.widget("ui.dialog",V.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}});V.ui.dialog;function lt(t,e,i){return e<=t&&t<e+i}V.widget("ui.droppable",{version:"1.13.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var t,e=this.options,i=e.accept;this.isover=!1,this.isout=!0,this.accept="function"==typeof i?i:function(t){return t.is(i)},this.proportions=function(){if(!arguments.length)return t=t||{width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};t=arguments[0]},this._addToManager(e.scope),e.addClasses&&this._addClass("ui-droppable")},_addToManager:function(t){V.ui.ddmanager.droppables[t]=V.ui.ddmanager.droppables[t]||[],V.ui.ddmanager.droppables[t].push(this)},_splice:function(t){for(var e=0;e<t.length;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var t=V.ui.ddmanager.droppables[this.options.scope];this._splice(t)},_setOption:function(t,e){var i;"accept"===t?this.accept="function"==typeof e?e:function(t){return t.is(e)}:"scope"===t&&(i=V.ui.ddmanager.droppables[this.options.scope],this._splice(i),this._addToManager(e)),this._super(t,e)},_activate:function(t){var e=V.ui.ddmanager.current;this._addActiveClass(),e&&this._trigger("activate",t,this.ui(e))},_deactivate:function(t){var e=V.ui.ddmanager.current;this._removeActiveClass(),e&&this._trigger("deactivate",t,this.ui(e))},_over:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._addHoverClass(),this._trigger("over",t,this.ui(e)))},_out:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._removeHoverClass(),this._trigger("out",t,this.ui(e)))},_drop:function(e,t){var i=t||V.ui.ddmanager.current,s=!1;return!(!i||(i.currentItem||i.element)[0]===this.element[0])&&(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var t=V(this).droppable("instance");if(t.options.greedy&&!t.options.disabled&&t.options.scope===i.options.scope&&t.accept.call(t.element[0],i.currentItem||i.element)&&V.ui.intersect(i,V.extend(t,{offset:t.element.offset()}),t.options.tolerance,e))return!(s=!0)}),!s&&(!!this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(i)),this.element)))},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}}),V.ui.intersect=function(t,e,i,s){if(!e.offset)return!1;var n=(t.positionAbs||t.position.absolute).left+t.margins.left,o=(t.positionAbs||t.position.absolute).top+t.margins.top,a=n+t.helperProportions.width,r=o+t.helperProportions.height,l=e.offset.left,h=e.offset.top,c=l+e.proportions().width,u=h+e.proportions().height;switch(i){case"fit":return l<=n&&a<=c&&h<=o&&r<=u;case"intersect":return l<n+t.helperProportions.width/2&&a-t.helperProportions.width/2<c&&h<o+t.helperProportions.height/2&&r-t.helperProportions.height/2<u;case"pointer":return lt(s.pageY,h,e.proportions().height)&&lt(s.pageX,l,e.proportions().width);case"touch":return(h<=o&&o<=u||h<=r&&r<=u||o<h&&u<r)&&(l<=n&&n<=c||l<=a&&a<=c||n<l&&c<a);default:return!1}},!(V.ui.ddmanager={current:null,droppables:{default:[]},prepareOffsets:function(t,e){var i,s,n=V.ui.ddmanager.droppables[t.options.scope]||[],o=e?e.type:null,a=(t.currentItem||t.element).find(":data(ui-droppable)").addBack();t:for(i=0;i<n.length;i++)if(!(n[i].options.disabled||t&&!n[i].accept.call(n[i].element[0],t.currentItem||t.element))){for(s=0;s<a.length;s++)if(a[s]===n[i].element[0]){n[i].proportions().height=0;continue t}n[i].visible="none"!==n[i].element.css("display"),n[i].visible&&("mousedown"===o&&n[i]._activate.call(n[i],e),n[i].offset=n[i].element.offset(),n[i].proportions({width:n[i].element[0].offsetWidth,height:n[i].element[0].offsetHeight}))}},drop:function(t,e){var i=!1;return V.each((V.ui.ddmanager.droppables[t.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&V.ui.intersect(t,this,this.options.tolerance,e)&&(i=this._drop.call(this,e)||i),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,e)))}),i},dragStart:function(t,e){t.element.parentsUntil("body").on("scroll.droppable",function(){t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)})},drag:function(n,o){n.options.refreshPositions&&V.ui.ddmanager.prepareOffsets(n,o),V.each(V.ui.ddmanager.droppables[n.options.scope]||[],function(){var t,e,i,s;this.options.disabled||this.greedyChild||!this.visible||(s=!(i=V.ui.intersect(n,this,this.options.tolerance,o))&&this.isover?"isout":i&&!this.isover?"isover":null)&&(this.options.greedy&&(e=this.options.scope,(i=this.element.parents(":data(ui-droppable)").filter(function(){return V(this).droppable("instance").options.scope===e})).length&&((t=V(i[0]).droppable("instance")).greedyChild="isover"===s)),t&&"isover"===s&&(t.isover=!1,t.isout=!0,t._out.call(t,o)),this[s]=!0,this["isout"===s?"isover":"isout"]=!1,this["isover"===s?"_over":"_out"].call(this,o),t&&"isout"===s&&(t.isout=!1,t.isover=!0,t._over.call(t,o)))})},dragStop:function(t,e){t.element.parentsUntil("body").off("scroll.droppable"),t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)}})!==V.uiBackCompat&&V.widget("ui.droppable",V.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}});V.ui.droppable,V.widget("ui.progressbar",{version:"1.13.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=V("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){if(void 0===t)return this.options.value;this.options.value=this._constrainedValue(t),this._refreshValue()},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=!1===t,"number"!=typeof t&&(t=0),!this.indeterminate&&Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var t=this.options.value,e=this._percentage();this.valueDiv.toggle(this.indeterminate||t>this.min).width(e.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,t===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=V("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":t}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==t&&(this.oldValue=t,this._trigger("change")),t===this.options.max&&this._trigger("complete")}}),V.widget("ui.selectable",V.ui.mouse,{version:"1.13.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var i=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){i.elementPos=V(i.element[0]).offset(),i.selectees=V(i.options.filter,i.element[0]),i._addClass(i.selectees,"ui-selectee"),i.selectees.each(function(){var t=V(this),e=t.offset(),e={left:e.left-i.elementPos.left,top:e.top-i.elementPos.top};V.data(this,"selectable-item",{element:this,$element:t,left:e.left,top:e.top,right:e.left+t.outerWidth(),bottom:e.top+t.outerHeight(),startselected:!1,selected:t.hasClass("ui-selected"),selecting:t.hasClass("ui-selecting"),unselecting:t.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=V("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(i){var s=this,t=this.options;this.opos=[i.pageX,i.pageY],this.elementPos=V(this.element[0]).offset(),this.options.disabled||(this.selectees=V(t.filter,this.element[0]),this._trigger("start",i),V(t.appendTo).append(this.helper),this.helper.css({left:i.pageX,top:i.pageY,width:0,height:0}),t.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var t=V.data(this,"selectable-item");t.startselected=!0,i.metaKey||i.ctrlKey||(s._removeClass(t.$element,"ui-selected"),t.selected=!1,s._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,s._trigger("unselecting",i,{unselecting:t.element}))}),V(i.target).parents().addBack().each(function(){var t,e=V.data(this,"selectable-item");if(e)return t=!i.metaKey&&!i.ctrlKey||!e.$element.hasClass("ui-selected"),s._removeClass(e.$element,t?"ui-unselecting":"ui-selected")._addClass(e.$element,t?"ui-selecting":"ui-unselecting"),e.unselecting=!t,e.selecting=t,(e.selected=t)?s._trigger("selecting",i,{selecting:e.element}):s._trigger("unselecting",i,{unselecting:e.element}),!1}))},_mouseDrag:function(s){if(this.dragged=!0,!this.options.disabled){var t,n=this,o=this.options,a=this.opos[0],r=this.opos[1],l=s.pageX,h=s.pageY;return l<a&&(t=l,l=a,a=t),h<r&&(t=h,h=r,r=t),this.helper.css({left:a,top:r,width:l-a,height:h-r}),this.selectees.each(function(){var t=V.data(this,"selectable-item"),e=!1,i={};t&&t.element!==n.element[0]&&(i.left=t.left+n.elementPos.left,i.right=t.right+n.elementPos.left,i.top=t.top+n.elementPos.top,i.bottom=t.bottom+n.elementPos.top,"touch"===o.tolerance?e=!(i.left>l||i.right<a||i.top>h||i.bottom<r):"fit"===o.tolerance&&(e=i.left>a&&i.right<l&&i.top>r&&i.bottom<h),e?(t.selected&&(n._removeClass(t.$element,"ui-selected"),t.selected=!1),t.unselecting&&(n._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1),t.selecting||(n._addClass(t.$element,"ui-selecting"),t.selecting=!0,n._trigger("selecting",s,{selecting:t.element}))):(t.selecting&&((s.metaKey||s.ctrlKey)&&t.startselected?(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,n._addClass(t.$element,"ui-selected"),t.selected=!0):(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,t.startselected&&(n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0),n._trigger("unselecting",s,{unselecting:t.element}))),t.selected&&(s.metaKey||s.ctrlKey||t.startselected||(n._removeClass(t.$element,"ui-selected"),t.selected=!1,n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,n._trigger("unselecting",s,{unselecting:t.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,V(".ui-unselecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1,t.startselected=!1,i._trigger("unselected",e,{unselected:t.element})}),V(".ui-selecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-selecting")._addClass(t.$element,"ui-selected"),t.selecting=!1,t.selected=!0,t.startselected=!0,i._trigger("selected",e,{selected:t.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),V.widget("ui.selectmenu",[V.ui.formResetMixin,{version:"1.13.1",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var t=this.element.uniqueId().attr("id");this.ids={element:t,button:t+"-button",menu:t+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=V()},_drawButton:function(){var t,e=this,i=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.trigger("focus"),t.preventDefault()}}),this.element.hide(),this.button=V("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),t=V("<span>").appendTo(this.button),this._addClass(t,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(i).appendTo(this.button),!1!==this.options.width&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){e._rendered||e._refreshMenu()})},_drawMenu:function(){var i=this;this.menu=V("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=V("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,e){t.preventDefault(),i._setSelection(),i._select(e.item.data("ui-selectmenu-item"),t)},focus:function(t,e){e=e.item.data("ui-selectmenu-item");null!=i.focusIndex&&e.index!==i.focusIndex&&(i._trigger("focus",t,{item:e}),i.isOpen||i._select(e,t)),i.focusIndex=e.index,i.button.attr("aria-activedescendant",i.menuItems.eq(e.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t=this.element.find("option");this.menu.empty(),this._parseOptions(t),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,t.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(V.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(t){var e=V("<span>");return this._setText(e,t.label),this._addClass(e,"ui-selectmenu-text"),e},_renderMenu:function(s,t){var n=this,o="";V.each(t,function(t,e){var i;e.optgroup!==o&&(i=V("<li>",{text:e.optgroup}),n._addClass(i,"ui-selectmenu-optgroup","ui-menu-divider"+(e.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),i.appendTo(s),o=e.optgroup),n._renderItemData(s,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(t,e){var i=V("<li>"),s=V("<div>",{title:e.element.attr("title")});return e.disabled&&this._addClass(i,null,"ui-state-disabled"),this._setText(s,e.label),i.append(s).appendTo(t)},_setText:function(t,e){e?t.text(e):t.html("&#160;")},_move:function(t,e){var i,s=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),s+=":not(.ui-state-disabled)"),(s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](s).eq(-1):i[t+"All"](s).eq(0)).length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?((t=window.getSelection()).removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(t){this.isOpen&&(V(t.target).closest(".ui-selectmenu-menu, #"+V.escapeSelector(this.ids.button)).length||this.close(t))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection()).rangeCount&&(this.range=t.getRangeAt(0)):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(t){var e=!0;switch(t.keyCode){case V.ui.keyCode.TAB:case V.ui.keyCode.ESCAPE:this.close(t),e=!1;break;case V.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(t);break;case V.ui.keyCode.UP:t.altKey?this._toggle(t):this._move("prev",t);break;case V.ui.keyCode.DOWN:t.altKey?this._toggle(t):this._move("next",t);break;case V.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(t):this._toggle(t);break;case V.ui.keyCode.LEFT:this._move("prev",t);break;case V.ui.keyCode.RIGHT:this._move("next",t);break;case V.ui.keyCode.HOME:case V.ui.keyCode.PAGE_UP:this._move("first",t);break;case V.ui.keyCode.END:case V.ui.keyCode.PAGE_DOWN:this._move("last",t);break;default:this.menu.trigger(t),e=!1}e&&t.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){t=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":t,"aria-activedescendant":t}),this.menu.attr("aria-activedescendant",t)},_setOption:function(t,e){var i;"icons"===t&&(i=this.button.find("span.ui-icon"),this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)),this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;!1!==t?(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t)):this.button.css("width","")},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(t){var i=this,s=[];t.each(function(t,e){e.hidden||s.push(i._parseOption(V(e),t))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),V.widget("ui.slider",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var t,e=this.options,i=this.element.find(".ui-slider-handle"),s=[],n=e.values&&e.values.length||1;for(i.length>n&&(i.slice(n).remove(),i=i.slice(0,n)),t=i.length;t<n;t++)s.push("<span tabindex='0'></span>");this.handles=i.add(V(s.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(t){V(this).data("ui-slider-handle-index",t).attr("tabIndex",0)})},_createRange:function(){var t=this.options;t.range?(!0===t.range&&(t.values?t.values.length&&2!==t.values.length?t.values=[t.values[0],t.values[0]]:Array.isArray(t.values)&&(t.values=t.values.slice(0)):t.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=V("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),"min"!==t.range&&"max"!==t.range||this._addClass(this.range,"ui-slider-range-"+t.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(t){var i,s,n,o,e,a,r=this,l=this.options;return!l.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),a={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(a),s=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var e=Math.abs(i-r.values(t));(e<s||s===e&&(t===r._lastChangedValue||r.values(t)===l.min))&&(s=e,n=V(this),o=t)}),!1!==this._start(t,o)&&(this._mouseSliding=!0,this._handleIndex=o,this._addClass(n,null,"ui-state-active"),n.trigger("focus"),e=n.offset(),a=!V(t.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=a?{left:0,top:0}:{left:t.pageX-e.left-n.width()/2,top:t.pageY-e.top-n.height()/2-(parseInt(n.css("borderTopWidth"),10)||0)-(parseInt(n.css("borderBottomWidth"),10)||0)+(parseInt(n.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,i),this._animateOff=!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},e=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,e),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,t="horizontal"===this.orientation?(e=this.elementSize.width,t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),t=t/e;return(t=1<t?1:t)<0&&(t=0),"vertical"===this.orientation&&(t=1-t),e=this._valueMax()-this._valueMin(),e=this._valueMin()+t*e,this._trimAlignValue(e)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n=this.value(),o=this.values();this._hasMultipleValues()&&(s=this.values(e?0:1),n=this.values(e),2===this.options.values.length&&!0===this.options.range&&(i=0===e?Math.min(s,i):Math.max(s,i)),o[e]=i),i!==n&&!1!==this._trigger("slide",t,this._uiHash(e,i,o))&&(this._hasMultipleValues()?this.values(e,i):this.value(i))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),void this._change(null,0)):this._value()},values:function(t,e){var i,s,n;if(1<arguments.length)return this.options.values[t]=this._trimAlignValue(e),this._refreshValue(),void this._change(null,t);if(!arguments.length)return this._values();if(!Array.isArray(t))return this._hasMultipleValues()?this._values(t):this.value();for(i=this.options.values,s=t,n=0;n<i.length;n+=1)i[n]=this._trimAlignValue(s[n]),this._change(null,n);this._refreshValue()},_setOption:function(t,e){var i,s=0;switch("range"===t&&!0===this.options.range&&("min"===e?(this.options.value=this._values(0),this.options.values=null):"max"===e&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),Array.isArray(this.options.values)&&(s=this.options.values.length),this._super(t,e),t){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(e),this.handles.css("horizontal"===e?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),i=s-1;0<=i;i--)this._change(null,i);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i;if(arguments.length)return t=this.options.values[t],t=this._trimAlignValue(t);if(this._hasMultipleValues()){for(e=this.options.values.slice(),i=0;i<e.length;i+=1)e[i]=this._trimAlignValue(e[i]);return e}return[]},_trimAlignValue:function(t){if(t<=this._valueMin())return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=0<this.options.step?this.options.step:1,i=(t-this._valueMin())%e,t=t-i;return 2*Math.abs(i)>=e&&(t+=0<i?e:-e),parseFloat(t.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step;(t=Math.round((t-e)/i)*i+e)>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,t,s,n,o=this.options.range,a=this.options,r=this,l=!this._animateOff&&a.animate,h={};this._hasMultipleValues()?this.handles.each(function(t){i=(r.values(t)-r._valueMin())/(r._valueMax()-r._valueMin())*100,h["horizontal"===r.orientation?"left":"bottom"]=i+"%",V(this).stop(1,1)[l?"animate":"css"](h,a.animate),!0===r.options.range&&("horizontal"===r.orientation?(0===t&&r.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:a.animate})):(0===t&&r.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:a.animate}))),e=i}):(t=this.value(),s=this._valueMin(),n=this._valueMax(),i=n!==s?(t-s)/(n-s)*100:0,h["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](h,a.animate),"min"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},a.animate),"max"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},a.animate),"min"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},a.animate),"max"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},a.animate))},_handleEvents:{keydown:function(t){var e,i,s,n=V(t.target).data("ui-slider-handle-index");switch(t.keyCode){case V.ui.keyCode.HOME:case V.ui.keyCode.END:case V.ui.keyCode.PAGE_UP:case V.ui.keyCode.PAGE_DOWN:case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(t.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(V(t.target),null,"ui-state-active"),!1===this._start(t,n)))return}switch(s=this.options.step,e=i=this._hasMultipleValues()?this.values(n):this.value(),t.keyCode){case V.ui.keyCode.HOME:i=this._valueMin();break;case V.ui.keyCode.END:i=this._valueMax();break;case V.ui.keyCode.PAGE_UP:i=this._trimAlignValue(e+(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.PAGE_DOWN:i=this._trimAlignValue(e-(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:if(e===this._valueMax())return;i=this._trimAlignValue(e+s);break;case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(e===this._valueMin())return;i=this._trimAlignValue(e-s)}this._slide(t,n,i)},keyup:function(t){var e=V(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,e),this._change(t,e),this._removeClass(V(t.target),null,"ui-state-active"))}}}),V.widget("ui.sortable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return e<=t&&t<e+i},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var t=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),V.each(this.items,function(){t._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;0<=t;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(t,e){var i=null,s=!1,n=this;return!this.reverting&&(!this.options.disabled&&"static"!==this.options.type&&(this._refreshItems(t),V(t.target).parents().each(function(){if(V.data(this,n.widgetName+"-item")===n)return i=V(this),!1}),!!(i=V.data(t.target,n.widgetName+"-item")===n?V(t.target):i)&&(!(this.options.handle&&!e&&(V(this.options.handle,i).find("*").addBack().each(function(){this===t.target&&(s=!0)}),!s))&&(this.currentItem=i,this._removeCurrentsFromItems(),!0))))},_mouseStart:function(t,e,i){var s,n,o=this.options;if((this.currentContainer=this).refreshPositions(),this.appendTo=V("parent"!==o.appendTo?o.appendTo:this.currentItem.parent()),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},V.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),o.cursorAt&&this._adjustOffsetFromHelper(o.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),this.scrollParent=this.placeholder.scrollParent(),V.extend(this.offset,{parent:this._getParentOffset()}),o.containment&&this._setContainment(),o.cursor&&"auto"!==o.cursor&&(n=this.document.find("body"),this.storedCursor=n.css("cursor"),n.css("cursor",o.cursor),this.storedStylesheet=V("<style>*{ cursor: "+o.cursor+" !important; }</style>").appendTo(n)),o.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",o.zIndex)),o.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",o.opacity)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!i)for(s=this.containers.length-1;0<=s;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return V.ui.ddmanager&&(V.ui.ddmanager.current=this),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this.helper.parent().is(this.appendTo)||(this.helper.detach().appendTo(this.appendTo),this.offset.parent=this._getParentOffset()),this.position=this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,this.lastPositionAbs=this.positionAbs=this._convertPositionTo("absolute"),this._mouseDrag(t),!0},_scroll:function(t){var e=this.options,i=!1;return this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<e.scrollSensitivity?this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop+e.scrollSpeed:t.pageY-this.overflowOffset.top<e.scrollSensitivity&&(this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop-e.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<e.scrollSensitivity?this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft+e.scrollSpeed:t.pageX-this.overflowOffset.left<e.scrollSensitivity&&(this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft-e.scrollSpeed)):(t.pageY-this.document.scrollTop()<e.scrollSensitivity?i=this.document.scrollTop(this.document.scrollTop()-e.scrollSpeed):this.window.height()-(t.pageY-this.document.scrollTop())<e.scrollSensitivity&&(i=this.document.scrollTop(this.document.scrollTop()+e.scrollSpeed)),t.pageX-this.document.scrollLeft()<e.scrollSensitivity?i=this.document.scrollLeft(this.document.scrollLeft()-e.scrollSpeed):this.window.width()-(t.pageX-this.document.scrollLeft())<e.scrollSensitivity&&(i=this.document.scrollLeft(this.document.scrollLeft()+e.scrollSpeed))),i},_mouseDrag:function(t){var e,i,s,n,o=this.options;for(this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),o.scroll&&!1!==this._scroll(t)&&(this._refreshItemPositions(!0),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t)),this.dragDirection={vertical:this._getDragVerticalDirection(),horizontal:this._getDragHorizontalDirection()},e=this.items.length-1;0<=e;e--)if(s=(i=this.items[e]).item[0],(n=this._intersectsWithPointer(i))&&i.instance===this.currentContainer&&!(s===this.currentItem[0]||this.placeholder[1===n?"next":"prev"]()[0]===s||V.contains(this.placeholder[0],s)||"semi-dynamic"===this.options.type&&V.contains(this.element[0],s))){if(this.direction=1===n?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(i))break;this._rearrange(t,i),this._trigger("change",t,this._uiHash());break}return this._contactContainers(t),V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,e){var i,s,n,o;if(t)return V.ui.ddmanager&&!this.options.dropBehaviour&&V.ui.ddmanager.drop(this,t),this.options.revert?(s=(i=this).placeholder.offset(),o={},(n=this.options.axis)&&"x"!==n||(o.left=s.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),n&&"y"!==n||(o.top=s.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,V(this.helper).animate(o,parseInt(this.options.revert,10)||500,function(){i._clear(t)})):this._clear(t,e),!1},cancel:function(){if(this.dragging){this._mouseUp(new V.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var t=this.containers.length-1;0<=t;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),V.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?V(this.domPosition.prev).after(this.currentItem):V(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var t=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},V(t).each(function(){var t=(V(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);t&&i.push((e.key||t[1]+"[]")+"="+(e.key&&e.expression?t[1]:t[2]))}),!i.length&&e.key&&i.push(e.key+"="),i.join("&")},toArray:function(t){var e=this._getItemsAsjQuery(t&&t.connected),i=[];return t=t||{},e.each(function(){i.push(V(t.item||this).attr(t.attribute||"id")||"")}),i},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,l=r+t.height,h=this.offset.click.top,c=this.offset.click.left,h="x"===this.options.axis||r<s+h&&s+h<l,c="y"===this.options.axis||o<e+c&&e+c<a;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?h&&c:o<e+this.helperProportions.width/2&&i-this.helperProportions.width/2<a&&r<s+this.helperProportions.height/2&&n-this.helperProportions.height/2<l},_intersectsWithPointer:function(t){var e="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),t="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width);return!(!e||!t)&&(e=this.dragDirection.vertical,t=this.dragDirection.horizontal,this.floating?"right"===t||"down"===e?2:1:e&&("down"===e?2:1))},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this.dragDirection.vertical,t=this.dragDirection.horizontal;return this.floating&&t?"right"===t&&i||"left"===t&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!=t&&(0<t?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!=t&&(0<t?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(t){var e,i,s,n,o=[],a=[],r=this._connectWith();if(r&&t)for(e=r.length-1;0<=e;e--)for(i=(s=V(r[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&a.push(["function"==typeof n.options.items?n.options.items.call(n.element):V(n.options.items,n.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),n]);function l(){o.push(this)}for(a.push(["function"==typeof this.options.items?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):V(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),e=a.length-1;0<=e;e--)a[e][0].each(l);return V(o)},_removeCurrentsFromItems:function(){var i=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=V.grep(this.items,function(t){for(var e=0;e<i.length;e++)if(i[e]===t.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var e,i,s,n,o,a,r,l,h=this.items,c=[["function"==typeof this.options.items?this.options.items.call(this.element[0],t,{item:this.currentItem}):V(this.options.items,this.element),this]],u=this._connectWith();if(u&&this.ready)for(e=u.length-1;0<=e;e--)for(i=(s=V(u[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&(c.push(["function"==typeof n.options.items?n.options.items.call(n.element[0],t,{item:this.currentItem}):V(n.options.items,n.element),n]),this.containers.push(n));for(e=c.length-1;0<=e;e--)for(o=c[e][1],l=(a=c[e][i=0]).length;i<l;i++)(r=V(a[i])).data(this.widgetName+"-item",o),h.push({item:r,instance:o,width:0,height:0,left:0,top:0})},_refreshItemPositions:function(t){for(var e,i,s=this.items.length-1;0<=s;s--)e=this.items[s],this.currentContainer&&e.instance!==this.currentContainer&&e.item[0]!==this.currentItem[0]||(i=this.options.toleranceElement?V(this.options.toleranceElement,e.item):e.item,t||(e.width=i.outerWidth(),e.height=i.outerHeight()),i=i.offset(),e.left=i.left,e.top=i.top)},refreshPositions:function(t){var e,i;if(this.floating=!!this.items.length&&("x"===this.options.axis||this._isFloating(this.items[0].item)),this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset()),this._refreshItemPositions(t),this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(e=this.containers.length-1;0<=e;e--)i=this.containers[e].element.offset(),this.containers[e].containerCache.left=i.left,this.containers[e].containerCache.top=i.top,this.containers[e].containerCache.width=this.containers[e].element.outerWidth(),this.containers[e].containerCache.height=this.containers[e].element.outerHeight();return this},_createPlaceholder:function(i){var s,n,o=(i=i||this).options;o.placeholder&&o.placeholder.constructor!==String||(s=o.placeholder,n=i.currentItem[0].nodeName.toLowerCase(),o.placeholder={element:function(){var t=V("<"+n+">",i.document[0]);return i._addClass(t,"ui-sortable-placeholder",s||i.currentItem[0].className)._removeClass(t,"ui-sortable-helper"),"tbody"===n?i._createTrPlaceholder(i.currentItem.find("tr").eq(0),V("<tr>",i.document[0]).appendTo(t)):"tr"===n?i._createTrPlaceholder(i.currentItem,t):"img"===n&&t.attr("src",i.currentItem.attr("src")),s||t.css("visibility","hidden"),t},update:function(t,e){s&&!o.forcePlaceholderSize||(e.height()&&(!o.forcePlaceholderSize||"tbody"!==n&&"tr"!==n)||e.height(i.currentItem.innerHeight()-parseInt(i.currentItem.css("paddingTop")||0,10)-parseInt(i.currentItem.css("paddingBottom")||0,10)),e.width()||e.width(i.currentItem.innerWidth()-parseInt(i.currentItem.css("paddingLeft")||0,10)-parseInt(i.currentItem.css("paddingRight")||0,10)))}}),i.placeholder=V(o.placeholder.element.call(i.element,i.currentItem)),i.currentItem.after(i.placeholder),o.placeholder.update(i,i.placeholder)},_createTrPlaceholder:function(t,e){var i=this;t.children().each(function(){V("<td>&#160;</td>",i.document[0]).attr("colspan",V(this).attr("colspan")||1).appendTo(e)})},_contactContainers:function(t){for(var e,i,s,n,o,a,r,l,h,c=null,u=null,d=this.containers.length-1;0<=d;d--)V.contains(this.currentItem[0],this.containers[d].element[0])||(this._intersectsWith(this.containers[d].containerCache)?c&&V.contains(this.containers[d].element[0],c.element[0])||(c=this.containers[d],u=d):this.containers[d].containerCache.over&&(this.containers[d]._trigger("out",t,this._uiHash(this)),this.containers[d].containerCache.over=0));if(c)if(1===this.containers.length)this.containers[u].containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1);else{for(i=1e4,s=null,n=(l=c.floating||this._isFloating(this.currentItem))?"left":"top",o=l?"width":"height",h=l?"pageX":"pageY",e=this.items.length-1;0<=e;e--)V.contains(this.containers[u].element[0],this.items[e].item[0])&&this.items[e].item[0]!==this.currentItem[0]&&(a=this.items[e].item.offset()[n],r=!1,t[h]-a>this.items[e][o]/2&&(r=!0),Math.abs(t[h]-a)<i&&(i=Math.abs(t[h]-a),s=this.items[e],this.direction=r?"up":"down"));(s||this.options.dropOnEmpty)&&(this.currentContainer!==this.containers[u]?(s?this._rearrange(t,s,null,!0):this._rearrange(t,null,this.containers[u].element,!0),this._trigger("change",t,this._uiHash()),this.containers[u]._trigger("change",t,this._uiHash(this)),this.currentContainer=this.containers[u],this.options.placeholder.update(this.currentContainer,this.placeholder),this.scrollParent=this.placeholder.scrollParent(),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1):this.currentContainer.containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash()),this.currentContainer.containerCache.over=1))}},_createHelper:function(t){var e=this.options,t="function"==typeof e.helper?V(e.helper.apply(this.element[0],[t,this.currentItem])):"clone"===e.helper?this.currentItem.clone():this.currentItem;return t.parents("body").length||this.appendTo[0].appendChild(t[0]),t[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),t[0].style.width&&!e.forceHelperSize||t.width(this.currentItem.width()),t[0].style.height&&!e.forceHelperSize||t.height(this.currentItem.height()),t},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&V.ui.ie?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i=this.options;"parent"===i.containment&&(i.containment=this.helper[0].parentNode),"document"!==i.containment&&"window"!==i.containment||(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===i.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===i.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(i.containment)||(t=V(i.containment)[0],e=V(i.containment).offset(),i="hidden"!==V(t).css("overflow"),this.containment=[e.left+(parseInt(V(t).css("borderLeftWidth"),10)||0)+(parseInt(V(t).css("paddingLeft"),10)||0)-this.margins.left,e.top+(parseInt(V(t).css("borderTopWidth"),10)||0)+(parseInt(V(t).css("paddingTop"),10)||0)-this.margins.top,e.left+(i?Math.max(t.scrollWidth,t.offsetWidth):t.offsetWidth)-(parseInt(V(t).css("borderLeftWidth"),10)||0)-(parseInt(V(t).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,e.top+(i?Math.max(t.scrollHeight,t.offsetHeight):t.offsetHeight)-(parseInt(V(t).css("borderTopWidth"),10)||0)-(parseInt(V(t).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,s="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,t=/(html|body)/i.test(s[0].tagName);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():t?0:s.scrollTop())*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():t?0:s.scrollLeft())*i}},_generatePosition:function(t){var e=this.options,i=t.pageX,s=t.pageY,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(i=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(s=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(i=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(s=this.containment[3]+this.offset.click.top)),e.grid&&(t=this.originalPageY+Math.round((s-this.originalPageY)/e.grid[1])*e.grid[1],s=!this.containment||t-this.offset.click.top>=this.containment[1]&&t-this.offset.click.top<=this.containment[3]?t:t-this.offset.click.top>=this.containment[1]?t-e.grid[1]:t+e.grid[1],t=this.originalPageX+Math.round((i-this.originalPageX)/e.grid[0])*e.grid[0],i=!this.containment||t-this.offset.click.left>=this.containment[0]&&t-this.offset.click.left<=this.containment[2]?t:t-this.offset.click.left>=this.containment[0]?t-e.grid[0]:t+e.grid[0])),{top:s-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop()),left:i-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){this.reverting=!1;var i,s=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(i in this._storedCSS)"auto"!==this._storedCSS[i]&&"static"!==this._storedCSS[i]||(this._storedCSS[i]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();function n(e,i,s){return function(t){s._trigger(e,t,i._uiHash(i))}}for(this.fromOutside&&!e&&s.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||s.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(s.push(function(t){this._trigger("remove",t,this._uiHash())}),s.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),s.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer)))),i=this.containers.length-1;0<=i;i--)e||s.push(n("deactivate",this,this.containers[i])),this.containers[i].containerCache.over&&(s.push(n("out",this,this.containers[i])),this.containers[i].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(i=0;i<s.length;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){!1===V.Widget.prototype._trigger.apply(this,arguments)&&this.cancel()},_uiHash:function(t){var e=t||this;return{helper:e.helper,placeholder:e.placeholder||V([]),position:e.position,originalPosition:e.originalPosition,offset:e.positionAbs,item:e.currentItem,sender:t?t.element:null}}});function ht(e){return function(){var t=this.element.val();e.apply(this,arguments),this._refresh(),t!==this.element.val()&&this._trigger("change")}}V.widget("ui.spinner",{version:"1.13.1",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var s=this._super(),n=this.element;return V.each(["min","max","step"],function(t,e){var i=n.attr(e);null!=i&&i.length&&(s[e]=i)}),s},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){this.cancelBlur?delete this.cancelBlur:(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t))},mousewheel:function(t,e){var i=V.ui.safeActiveElement(this.document[0]);if(this.element[0]===i&&e){if(!this.spinning&&!this._start(t))return!1;this._spin((0<e?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(t){var e;function i(){this.element[0]===V.ui.safeActiveElement(this.document[0])||(this.element.trigger("focus"),this.previous=e,this._delay(function(){this.previous=e}))}e=this.element[0]===V.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),t.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),!1!==this._start(t)&&this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(t){if(V(t.currentTarget).hasClass("ui-state-active"))return!1!==this._start(t)&&void this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&0<this.uiSpinner.height()&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(t){var e=this.options,i=V.ui.keyCode;switch(t.keyCode){case i.UP:return this._repeat(null,1,t),!0;case i.DOWN:return this._repeat(null,-1,t),!0;case i.PAGE_UP:return this._repeat(null,e.page,t),!0;case i.PAGE_DOWN:return this._repeat(null,-e.page,t),!0}return!1},_start:function(t){return!(!this.spinning&&!1===this._trigger("start",t))&&(this.counter||(this.counter=1),this.spinning=!0)},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&!1===this._trigger("spin",e,{value:i})||(this._value(i),this.counter++)},_increment:function(t){var e=this.options.incremental;return e?"function"==typeof e?e(t):Math.floor(t*t*t/5e4-t*t/500+17*t/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_adjustValue:function(t){var e=this.options,i=null!==e.min?e.min:0,s=t-i;return t=i+Math.round(s/e.step)*e.step,t=parseFloat(t.toFixed(this._precision())),null!==e.max&&t>e.max?e.max:null!==e.min&&t<e.min?e.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i;if("culture"===t||"numberFormat"===t)return i=this._parse(this.element.val()),this.options[t]=e,void this.element.val(this._format(i));"max"!==t&&"min"!==t&&"step"!==t||"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(i=this.buttons.first().find(".ui-icon"),this._removeClass(i,null,this.options.icons.up),this._addClass(i,null,e.up),i=this.buttons.last().find(".ui-icon"),this._removeClass(i,null,this.options.icons.down),this._addClass(i,null,e.down)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:ht(function(t){this._super(t)}),_parse:function(t){return""===(t="string"==typeof t&&""!==t?window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t:t)||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null!==t&&t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&null!==(i=this._parse(t))&&(e||(i=this._adjustValue(i)),t=this._format(i)),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:ht(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:ht(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:ht(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:ht(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){if(!arguments.length)return this._parse(this.element.val());ht(this._value).call(this,t)},widget:function(){return this.uiSpinner}}),!1!==V.uiBackCompat&&V.widget("ui.spinner",V.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}});var ct;V.ui.spinner;V.widget("ui.tabs",{version:"1.13.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:(ct=/#.*$/,function(t){var e=t.href.replace(ct,""),i=location.href.replace(ct,"");try{e=decodeURIComponent(e)}catch(t){}try{i=decodeURIComponent(i)}catch(t){}return 1<t.hash.length&&e===i}),_create:function(){var e=this,t=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,t.collapsible),this._processTabs(),t.active=this._initialActive(),Array.isArray(t.disabled)&&(t.disabled=V.uniqueSort(t.disabled.concat(V.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),!1!==this.options.active&&this.anchors.length?this.active=this._findActive(t.active):this.active=V(),this._refresh(),this.active.length&&this.load(t.active)},_initialActive:function(){var i=this.options.active,t=this.options.collapsible,s=location.hash.substring(1);return null===i&&(s&&this.tabs.each(function(t,e){if(V(e).attr("aria-controls")===s)return i=t,!1}),null!==(i=null===i?this.tabs.index(this.tabs.filter(".ui-tabs-active")):i)&&-1!==i||(i=!!this.tabs.length&&0)),!1!==i&&-1===(i=this.tabs.index(this.tabs.eq(i)))&&(i=!t&&0),i=!t&&!1===i&&this.anchors.length?0:i},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):V()}},_tabKeydown:function(t){var e=V(V.ui.safeActiveElement(this.document[0])).closest("li"),i=this.tabs.index(e),s=!0;if(!this._handlePageNav(t)){switch(t.keyCode){case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:i++;break;case V.ui.keyCode.UP:case V.ui.keyCode.LEFT:s=!1,i--;break;case V.ui.keyCode.END:i=this.anchors.length-1;break;case V.ui.keyCode.HOME:i=0;break;case V.ui.keyCode.SPACE:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i);case V.ui.keyCode.ENTER:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i!==this.options.active&&i);default:return}t.preventDefault(),clearTimeout(this.activating),i=this._focusNextTab(i,s),t.ctrlKey||t.metaKey||(e.attr("aria-selected","false"),this.tabs.eq(i).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",i)},this.delay))}},_panelKeydown:function(t){this._handlePageNav(t)||t.ctrlKey&&t.keyCode===V.ui.keyCode.UP&&(t.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(t){return t.altKey&&t.keyCode===V.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):t.altKey&&t.keyCode===V.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(t,e){var i=this.tabs.length-1;for(;-1!==V.inArray(t=(t=i<t?0:t)<0?i:t,this.options.disabled);)t=e?t+1:t-1;return t},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){"active"!==t?(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||!1!==this.options.active||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e)):this._activate(e)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,e=this.tablist.children(":has(a[href])");t.disabled=V.map(e.filter(".ui-state-disabled"),function(t){return e.index(t)}),this._processTabs(),!1!==t.active&&this.anchors.length?this.active.length&&!V.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=V()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active):(t.active=!1,this.active=V()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var l=this,t=this.tabs,e=this.anchors,i=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(t){V(this).is(".ui-state-disabled")&&t.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){V(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return V("a",this)[0]}).attr({tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=V(),this.anchors.each(function(t,e){var i,s,n,o=V(e).uniqueId().attr("id"),a=V(e).closest("li"),r=a.attr("aria-controls");l._isLocal(e)?(n=(i=e.hash).substring(1),s=l.element.find(l._sanitizeSelector(i))):(n=a.attr("aria-controls")||V({}).uniqueId()[0].id,(s=l.element.find(i="#"+n)).length||(s=l._createPanel(n)).insertAfter(l.panels[t-1]||l.tablist),s.attr("aria-live","polite")),s.length&&(l.panels=l.panels.add(s)),r&&a.data("ui-tabs-aria-controls",r),a.attr({"aria-controls":n,"aria-labelledby":o}),s.attr("aria-labelledby",o)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),t&&(this._off(t.not(this.tabs)),this._off(e.not(this.anchors)),this._off(i.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(t){return V("<div>").attr("id",t).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(t){var e,i;for(Array.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1),i=0;e=this.tabs[i];i++)e=V(e),!0===t||-1!==V.inArray(i,t)?(e.attr("aria-disabled","true"),this._addClass(e,null,"ui-state-disabled")):(e.removeAttr("aria-disabled"),this._removeClass(e,null,"ui-state-disabled"));this.options.disabled=t,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!0===t)},_setupEvents:function(t){var i={};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var i,e=this.element.parent();"fill"===t?(i=e.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=V(this).outerHeight(!0)}),this.panels.each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===t&&(i=0,this.panels.each(function(){i=Math.max(i,V(this).height("").height())}).height(i))},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget).closest("li"),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():this._getPanelForTab(s),r=i.length?this._getPanelForTab(i):V(),i={oldTab:i,oldPanel:r,newTab:o?V():s,newPanel:a};t.preventDefault(),s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||n&&!e.collapsible||!1===this._trigger("beforeActivate",t,i)||(e.active=!o&&this.tabs.index(s),this.active=n?V():s,this.xhr&&this.xhr.abort(),r.length||a.length||V.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,i))},_toggle:function(t,e){var i=this,s=e.newPanel,n=e.oldPanel;function o(){i.running=!1,i._trigger("activate",t,e)}function a(){i._addClass(e.newTab.closest("li"),"ui-tabs-active","ui-state-active"),s.length&&i.options.show?i._show(s,i.options.show,o):(s.show(),o())}this.running=!0,n.length&&this.options.hide?this._hide(n,this.options.hide,function(){i._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),a()}):(this._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n.hide(),a()),n.attr("aria-hidden","true"),e.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),s.length&&n.length?e.oldTab.attr("tabIndex",-1):s.length&&this.tabs.filter(function(){return 0===V(this).attr("tabIndex")}).attr("tabIndex",-1),s.attr("aria-hidden","false"),e.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(t){var t=this._findActive(t);t[0]!==this.active[0]&&(t=(t=!t.length?this.active:t).find(".ui-tabs-anchor")[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return!1===t?V():this.tabs.eq(t)},_getIndex:function(t){return t="string"==typeof t?this.anchors.index(this.anchors.filter("[href$='"+V.escapeSelector(t)+"']")):t},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){V.data(this,"ui-tabs-destroy")?V(this).remove():V(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var t=V(this),e=t.data("ui-tabs-aria-controls");e?t.attr("aria-controls",e).removeData("ui-tabs-aria-controls"):t.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(i){var t=this.options.disabled;!1!==t&&(t=void 0!==i&&(i=this._getIndex(i),Array.isArray(t)?V.map(t,function(t){return t!==i?t:null}):V.map(this.tabs,function(t,e){return e!==i?e:null})),this._setOptionDisabled(t))},disable:function(t){var e=this.options.disabled;if(!0!==e){if(void 0===t)e=!0;else{if(t=this._getIndex(t),-1!==V.inArray(t,e))return;e=Array.isArray(e)?V.merge([t],e).sort():[t]}this._setOptionDisabled(e)}},load:function(t,s){t=this._getIndex(t);function n(t,e){"abort"===e&&o.panels.stop(!1,!0),o._removeClass(i,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===o.xhr&&delete o.xhr}var o=this,i=this.tabs.eq(t),t=i.find(".ui-tabs-anchor"),a=this._getPanelForTab(i),r={tab:i,panel:a};this._isLocal(t[0])||(this.xhr=V.ajax(this._ajaxSettings(t,s,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(i,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,i){setTimeout(function(){a.html(t),o._trigger("load",s,r),n(i,e)},1)}).fail(function(t,e){setTimeout(function(){n(t,e)},1)})))},_ajaxSettings:function(t,i,s){var n=this;return{url:t.attr("href").replace(/#.*$/,""),beforeSend:function(t,e){return n._trigger("beforeLoad",i,V.extend({jqXHR:t,ajaxSettings:e},s))}}},_getPanelForTab:function(t){t=V(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+t))}}),!1!==V.uiBackCompat&&V.widget("ui.tabs",V.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}});V.ui.tabs;V.widget("ui.tooltip",{version:"1.13.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var t=V(this).attr("title");return V("<a>").text(t).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(t,e){var i=(t.attr("aria-describedby")||"").split(/\s+/);i.push(e),t.data("ui-tooltip-id",e).attr("aria-describedby",String.prototype.trim.call(i.join(" ")))},_removeDescribedBy:function(t){var e=t.data("ui-tooltip-id"),i=(t.attr("aria-describedby")||"").split(/\s+/),e=V.inArray(e,i);-1!==e&&i.splice(e,1),t.removeData("ui-tooltip-id"),(i=String.prototype.trim.call(i.join(" ")))?t.attr("aria-describedby",i):t.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=V("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=V([])},_setOption:function(t,e){var i=this;this._super(t,e),"content"===t&&V.each(this.tooltips,function(t,e){i._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur");i.target=i.currentTarget=e.element[0],s.close(i,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var t=V(this);if(t.is("[title]"))return t.data("ui-tooltip-title",t.attr("title")).removeAttr("title")}))},_enable:function(){this.disabledTitles.each(function(){var t=V(this);t.data("ui-tooltip-title")&&t.attr("title",t.data("ui-tooltip-title"))}),this.disabledTitles=V([])},open:function(t){var i=this,e=V(t?t.target:this.element).closest(this.options.items);e.length&&!e.data("ui-tooltip-id")&&(e.attr("title")&&e.data("ui-tooltip-title",e.attr("title")),e.data("ui-tooltip-open",!0),t&&"mouseover"===t.type&&e.parents().each(function(){var t,e=V(this);e.data("ui-tooltip-open")&&((t=V.Event("blur")).target=t.currentTarget=this,i.close(t,!0)),e.attr("title")&&(e.uniqueId(),i.parents[this.id]={element:this,title:e.attr("title")},e.attr("title",""))}),this._registerCloseHandlers(t,e),this._updateContent(e,t))},_updateContent:function(e,i){var t=this.options.content,s=this,n=i?i.type:null;if("string"==typeof t||t.nodeType||t.jquery)return this._open(i,e,t);(t=t.call(e[0],function(t){s._delay(function(){e.data("ui-tooltip-open")&&(i&&(i.type=n),this._open(i,e,t))})}))&&this._open(i,e,t)},_open:function(t,e,i){var s,n,o,a=V.extend({},this.options.position);function r(t){a.of=t,n.is(":hidden")||n.position(a)}i&&((s=this._find(e))?s.tooltip.find(".ui-tooltip-content").html(i):(e.is("[title]")&&(t&&"mouseover"===t.type?e.attr("title",""):e.removeAttr("title")),s=this._tooltip(e),n=s.tooltip,this._addDescribedBy(e,n.attr("id")),n.find(".ui-tooltip-content").html(i),this.liveRegion.children().hide(),(i=V("<div>").html(n.find(".ui-tooltip-content").html())).removeAttr("name").find("[name]").removeAttr("name"),i.removeAttr("id").find("[id]").removeAttr("id"),i.appendTo(this.liveRegion),this.options.track&&t&&/^mouse/.test(t.type)?(this._on(this.document,{mousemove:r}),r(t)):n.position(V.extend({of:e},this.options.position)),n.hide(),this._show(n,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(o=this.delayedShow=setInterval(function(){n.is(":visible")&&(r(a.of),clearInterval(o))},13)),this._trigger("open",t,{tooltip:n})))},_registerCloseHandlers:function(t,e){var i={keyup:function(t){t.keyCode===V.ui.keyCode.ESCAPE&&((t=V.Event(t)).currentTarget=e[0],this.close(t,!0))}};e[0]!==this.element[0]&&(i.remove=function(){var t=this._find(e);t&&this._removeTooltip(t.tooltip)}),t&&"mouseover"!==t.type||(i.mouseleave="close"),t&&"focusin"!==t.type||(i.focusout="close"),this._on(!0,e,i)},close:function(t){var e,i=this,s=V(t?t.currentTarget:this.element),n=this._find(s);n?(e=n.tooltip,n.closing||(clearInterval(this.delayedShow),s.data("ui-tooltip-title")&&!s.attr("title")&&s.attr("title",s.data("ui-tooltip-title")),this._removeDescribedBy(s),n.hiding=!0,e.stop(!0),this._hide(e,this.options.hide,function(){i._removeTooltip(V(this))}),s.removeData("ui-tooltip-open"),this._off(s,"mouseleave focusout keyup"),s[0]!==this.element[0]&&this._off(s,"remove"),this._off(this.document,"mousemove"),t&&"mouseleave"===t.type&&V.each(this.parents,function(t,e){V(e.element).attr("title",e.title),delete i.parents[t]}),n.closing=!0,this._trigger("close",t,{tooltip:e}),n.hiding||(n.closing=!1))):s.removeData("ui-tooltip-open")},_tooltip:function(t){var e=V("<div>").attr("role","tooltip"),i=V("<div>").appendTo(e),s=e.uniqueId().attr("id");return this._addClass(i,"ui-tooltip-content"),this._addClass(e,"ui-tooltip","ui-widget ui-widget-content"),e.appendTo(this._appendTo(t)),this.tooltips[s]={element:t,tooltip:e}},_find:function(t){t=t.data("ui-tooltip-id");return t?this.tooltips[t]:null},_removeTooltip:function(t){clearInterval(this.delayedShow),t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){t=t.closest(".ui-front, dialog");return t=!t.length?this.document[0].body:t},_destroy:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur"),e=e.element;i.target=i.currentTarget=e[0],s.close(i,!0),V("#"+t).remove(),e.data("ui-tooltip-title")&&(e.attr("title")||e.attr("title",e.data("ui-tooltip-title")),e.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),!1!==V.uiBackCompat&&V.widget("ui.tooltip",V.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}});V.ui.tooltip});
\ No newline at end of file
+!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(V){"use strict";V.ui=V.ui||{};V.ui.version="1.13.2";var n,i=0,a=Array.prototype.hasOwnProperty,r=Array.prototype.slice;V.cleanData=(n=V.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)}),V.widget=function(t,i,e){var s,n,o,a={},r=t.split(".")[0],l=r+"-"+(t=t.split(".")[1]);return e||(e=i,i=V.Widget),Array.isArray(e)&&(e=V.extend.apply(null,[{}].concat(e))),V.expr.pseudos[l.toLowerCase()]=function(t){return!!V.data(t,l)},V[r]=V[r]||{},s=V[r][t],n=V[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},V.extend(n,s,{version:e.version,_proto:V.extend({},e),_childConstructors:[]}),(o=new i).options=V.widget.extend({},o.options),V.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=V.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(V.each(s._childConstructors,function(t,e){var i=e.prototype;V.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),V.widget.bridge(t,n),n},V.widget.extend=function(t){for(var e,i,s=r.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],a.call(s[n],e)&&void 0!==i&&(V.isPlainObject(i)?t[e]=V.isPlainObject(t[e])?V.widget.extend({},t[e],i):V.widget.extend({},i):t[e]=i);return t},V.widget.bridge=function(o,e){var a=e.prototype.widgetFullName||o;V.fn[o]=function(i){var t="string"==typeof i,s=r.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=V.data(this,a);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V.data(this,a);t?(t.option(i||{}),t._init&&t._init()):V.data(this,a,new e(i,this))})),n}},V.Widget=function(){},V.Widget._childConstructors=[],V.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=V(e||this.defaultElement||this)[0],this.element=V(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=V(),this.hoverable=V(),this.focusable=V(),this.classesElementLookup={},e!==this&&(V.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=V(e.style?e.ownerDocument:e.document||e),this.window=V(this.document[0].defaultView||this.document[0].parentWindow)),this.options=V.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:V.noop,_create:V.noop,_init:V.noop,destroy:function(){var i=this;this._destroy(),V.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:V.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return V.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=V.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=V(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],a=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=a.classesElementLookup[t[s]]||V(),i=n.add?(function(){var i=[];n.element.each(function(t,e){V.map(a.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),a._on(V(i),{remove:"_untrackClassesElement"})}(),V(V.uniqueSort(i.get().concat(n.element.get())))):V(i.not(n.element).get()),a.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=V.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;V.each(s.classesElementLookup,function(t,e){-1!==V.inArray(i.target,e)&&(s.classesElementLookup[t]=V(e.not(i.target).get()))}),this._off(V(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var a,r=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=a=V(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,a=this.widget()),V.each(t,function(t,e){function i(){if(n||!0!==r.options.disabled&&!V(this).hasClass("ui-state-disabled"))return("string"==typeof e?r[e]:e).apply(r,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||V.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+r.eventNamespace,s=s[2];s?a.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=V(this.bindings.not(t).get()),this.focusable=V(this.focusable.not(t).get()),this.hoverable=V(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(V(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(V(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=V.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},V.each({show:"fadeIn",hide:"fadeOut"},function(o,a){V.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||a:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!V.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&V.effects&&V.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){V(this)[o](),i&&i.call(e[0]),t()})}});var s,x,k,o,l,h,c,u,C;V.widget;function D(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function I(t,e){return parseInt(V.css(t,e),10)||0}function T(t){return null!=t&&t===t.window}x=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,C=V.fn.position,V.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=V("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return V("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?V.position.scrollbarWidth():0,height:e?V.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=V(t||window),i=T(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?V(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},V.fn.position=function(u){if(!u||!u.of)return C.apply(this,arguments);var d,p,f,g,m,t,_="string"==typeof(u=V.extend({},u)).of?V(document).find(u.of):V(u.of),v=V.position.getWithinInfo(u.within),b=V.position.getScrollInfo(v),y=(u.collision||"flip").split(" "),w={},e=9===(t=(e=_)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:T(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return _[0].preventDefault&&(u.at="left top"),p=e.width,f=e.height,m=V.extend({},g=e.offset),V.each(["my","at"],function(){var t,e,i=(u[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):l.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=l.test(i[1])?i[1]:"center",t=h.exec(i[0]),e=h.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],u[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===y.length&&(y[1]=y[0]),"right"===u.at[0]?m.left+=p:"center"===u.at[0]&&(m.left+=p/2),"bottom"===u.at[1]?m.top+=f:"center"===u.at[1]&&(m.top+=f/2),d=D(w.at,p,f),m.left+=d[0],m.top+=d[1],this.each(function(){var i,t,a=V(this),r=a.outerWidth(),l=a.outerHeight(),e=I(this,"marginLeft"),s=I(this,"marginTop"),n=r+e+I(this,"marginRight")+b.width,o=l+s+I(this,"marginBottom")+b.height,h=V.extend({},m),c=D(w.my,a.outerWidth(),a.outerHeight());"right"===u.my[0]?h.left-=r:"center"===u.my[0]&&(h.left-=r/2),"bottom"===u.my[1]?h.top-=l:"center"===u.my[1]&&(h.top-=l/2),h.left+=c[0],h.top+=c[1],i={marginLeft:e,marginTop:s},V.each(["left","top"],function(t,e){V.ui.position[y[t]]&&V.ui.position[y[t]][e](h,{targetWidth:p,targetHeight:f,elemWidth:r,elemHeight:l,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+c[0],d[1]+c[1]],my:u.my,at:u.at,within:v,elem:a})}),u.using&&(t=function(t){var e=g.left-h.left,i=e+p-r,s=g.top-h.top,n=s+f-l,o={target:{element:_,left:g.left,top:g.top,width:p,height:f},element:{element:a,left:h.left,top:h.top,width:r,height:l},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};p<r&&k(e+i)<p&&(o.horizontal="center"),f<l&&k(s+n)<f&&(o.vertical="middle"),x(k(e),k(i))>x(k(s),k(n))?o.important="horizontal":o.important="vertical",u.using.call(this,t,o)}),a.offset(V.extend(h,{using:t}))})},V.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,a=s-o,r=o+e.collisionWidth-n-s;e.collisionWidth>n?0<a&&r<=0?(i=t.left+a+e.collisionWidth-n-s,t.left+=a-i):t.left=!(0<r&&a<=0)&&r<a?s+n-e.collisionWidth:s:0<a?t.left+=a:0<r?t.left-=r:t.left=x(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,a=s-o,r=o+e.collisionHeight-n-s;e.collisionHeight>n?0<a&&r<=0?(i=t.top+a+e.collisionHeight-n-s,t.top+=a-i):t.top=!(0<r&&a<=0)&&r<a?s+n-e.collisionHeight:s:0<a?t.top+=a:0<r?t.top-=r:t.top=x(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,a=t.left-e.collisionPosition.marginLeft,r=a-o,l=a+e.collisionWidth-n-o,h="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,a=-2*e.offset[0];r<0?((s=t.left+h+i+a+e.collisionWidth-n-s)<0||s<k(r))&&(t.left+=h+i+a):0<l&&(0<(o=t.left-e.collisionPosition.marginLeft+h+i+a-o)||k(o)<l)&&(t.left+=h+i+a)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,a=t.top-e.collisionPosition.marginTop,r=a-o,l=a+e.collisionHeight-n-o,h="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,a=-2*e.offset[1];r<0?((s=t.top+h+i+a+e.collisionHeight-n-s)<0||s<k(r))&&(t.top+=h+i+a):0<l&&(0<(o=t.top-e.collisionPosition.marginTop+h+i+a-o)||k(o)<l)&&(t.top+=h+i+a)}},flipfit:{left:function(){V.ui.position.flip.left.apply(this,arguments),V.ui.position.fit.left.apply(this,arguments)},top:function(){V.ui.position.flip.top.apply(this,arguments),V.ui.position.fit.top.apply(this,arguments)}}};V.ui.position,V.extend(V.expr.pseudos,{data:V.expr.createPseudo?V.expr.createPseudo(function(e){return function(t){return!!V.data(t,e)}}):function(t,e,i){return!!V.data(t,i[3])}}),V.fn.extend({disableSelection:(t="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}),enableSelection:function(){return this.off(".ui-disableSelection")}});var t,d=V,p={},e=p.toString,f=/^([\-+])=\s*(\d+\.?\d*)/,g=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})?/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16),t[4]?(parseInt(t[4],16)/255).toFixed(2):1]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])([a-f0-9])?/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16),t[4]?(parseInt(t[4]+t[4],16)/255).toFixed(2):1]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],m=d.Color=function(t,e,i,s){return new d.Color.fn.parse(t,e,i,s)},_={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},v={byte:{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},b=m.support={},y=d("<p>")[0],w=d.each;function P(t){return null==t?t+"":"object"==typeof t?p[e.call(t)]||"object":typeof t}function M(t,e,i){var s=v[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:Math.min(s.max,Math.max(0,t)))}function S(s){var n=m(),o=n._rgba=[];return s=s.toLowerCase(),w(g,function(t,e){var i=e.re.exec(s),i=i&&e.parse(i),e=e.space||"rgba";if(i)return i=n[e](i),n[_[e].cache]=i[_[e].cache],o=n._rgba=i._rgba,!1}),o.length?("0,0,0,0"===o.join()&&d.extend(o,B.transparent),n):B[s]}function H(t,e,i){return 6*(i=(i+1)%1)<1?t+(e-t)*i*6:2*i<1?e:3*i<2?t+(e-t)*(2/3-i)*6:t}y.style.cssText="background-color:rgba(1,1,1,.5)",b.rgba=-1<y.style.backgroundColor.indexOf("rgba"),w(_,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),d.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(t,e){p["[object "+e+"]"]=e.toLowerCase()}),(m.fn=d.extend(m.prototype,{parse:function(n,t,e,i){if(void 0===n)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=d(n).css(t),t=void 0);var o=this,s=P(n),a=this._rgba=[];return void 0!==t&&(n=[n,t,e,i],s="array"),"string"===s?this.parse(S(n)||B._default):"array"===s?(w(_.rgba.props,function(t,e){a[e.idx]=M(n[e.idx],e)}),this):"object"===s?(w(_,n instanceof m?function(t,e){n[e.cache]&&(o[e.cache]=n[e.cache].slice())}:function(t,i){var s=i.cache;w(i.props,function(t,e){if(!o[s]&&i.to){if("alpha"===t||null==n[t])return;o[s]=i.to(o._rgba)}o[s][e.idx]=M(n[t],e,!0)}),o[s]&&d.inArray(null,o[s].slice(0,3))<0&&(null==o[s][3]&&(o[s][3]=1),i.from&&(o._rgba=i.from(o[s])))}),this):void 0},is:function(t){var n=m(t),o=!0,a=this;return w(_,function(t,e){var i,s=n[e.cache];return s&&(i=a[e.cache]||e.to&&e.to(a._rgba)||[],w(e.props,function(t,e){if(null!=s[e.idx])return o=s[e.idx]===i[e.idx]})),o}),o},_space:function(){var i=[],s=this;return w(_,function(t,e){s[e.cache]&&i.push(t)}),i.pop()},transition:function(t,a){var e=(h=m(t))._space(),i=_[e],t=0===this.alpha()?m("transparent"):this,r=t[i.cache]||i.to(t._rgba),l=r.slice(),h=h[i.cache];return w(i.props,function(t,e){var i=e.idx,s=r[i],n=h[i],o=v[e.type]||{};null!==n&&(null===s?l[i]=n:(o.mod&&(n-s>o.mod/2?s+=o.mod:s-n>o.mod/2&&(s-=o.mod)),l[i]=M((n-s)*a+s,e)))}),this[e](l)},blend:function(t){if(1===this._rgba[3])return this;var e=this._rgba.slice(),i=e.pop(),s=m(t)._rgba;return m(d.map(e,function(t,e){return(1-i)*s[e]+i*t}))},toRgbaString:function(){var t="rgba(",e=d.map(this._rgba,function(t,e){return null!=t?t:2<e?1:0});return 1===e[3]&&(e.pop(),t="rgb("),t+e.join()+")"},toHslaString:function(){var t="hsla(",e=d.map(this.hsla(),function(t,e){return null==t&&(t=2<e?1:0),t=e&&e<3?Math.round(100*t)+"%":t});return 1===e[3]&&(e.pop(),t="hsl("),t+e.join()+")"},toHexString:function(t){var e=this._rgba.slice(),i=e.pop();return t&&e.push(~~(255*i)),"#"+d.map(e,function(t){return 1===(t=(t||0).toString(16)).length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}})).parse.prototype=m.fn,_.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/255,i=t[1]/255,s=t[2]/255,n=t[3],o=Math.max(e,i,s),a=Math.min(e,i,s),r=o-a,l=o+a,t=.5*l,i=a===o?0:e===o?60*(i-s)/r+360:i===o?60*(s-e)/r+120:60*(e-i)/r+240,l=0==r?0:t<=.5?r/l:r/(2-l);return[Math.round(i)%360,l,t,null==n?1:n]},_.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],t=t[3],i=s<=.5?s*(1+i):s+i-s*i,s=2*s-i;return[Math.round(255*H(s,i,e+1/3)),Math.round(255*H(s,i,e)),Math.round(255*H(s,i,e-1/3)),t]},w(_,function(l,t){var e=t.props,o=t.cache,a=t.to,r=t.from;m.fn[l]=function(t){if(a&&!this[o]&&(this[o]=a(this._rgba)),void 0===t)return this[o].slice();var i=P(t),s="array"===i||"object"===i?t:arguments,n=this[o].slice();return w(e,function(t,e){t=s["object"===i?t:e.idx];null==t&&(t=n[e.idx]),n[e.idx]=M(t,e)}),r?((t=m(r(n)))[o]=n,t):m(n)},w(e,function(a,r){m.fn[a]||(m.fn[a]=function(t){var e,i=P(t),s="alpha"===a?this._hsla?"hsla":"rgba":l,n=this[s](),o=n[r.idx];return"undefined"===i?o:("function"===i&&(i=P(t=t.call(this,o))),null==t&&r.empty?this:("string"===i&&(e=f.exec(t))&&(t=o+parseFloat(e[2])*("+"===e[1]?1:-1)),n[r.idx]=t,this[s](n)))})})}),(m.hook=function(t){t=t.split(" ");w(t,function(t,o){d.cssHooks[o]={set:function(t,e){var i,s,n="";if("transparent"!==e&&("string"!==P(e)||(i=S(e)))){if(e=m(i||e),!b.rgba&&1!==e._rgba[3]){for(s="backgroundColor"===o?t.parentNode:t;(""===n||"transparent"===n)&&s&&s.style;)try{n=d.css(s,"backgroundColor"),s=s.parentNode}catch(t){}e=e.blend(n&&"transparent"!==n?n:"_default")}e=e.toRgbaString()}try{t.style[o]=e}catch(t){}}},d.fx.step[o]=function(t){t.colorInit||(t.start=m(t.elem,o),t.end=m(t.end),t.colorInit=!0),d.cssHooks[o].set(t.elem,t.start.transition(t.end,t.pos))}})})("backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor"),d.cssHooks.borderColor={expand:function(i){var s={};return w(["Top","Right","Bottom","Left"],function(t,e){s["border"+e+"Color"]=i}),s}};var z,A,O,N,E,W,F,L,R,Y,B=d.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"},j="ui-effects-",q="ui-effects-style",K="ui-effects-animated";function U(t){var e,i,s=t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,null):t.currentStyle,n={};if(s&&s.length&&s[0]&&s[s[0]])for(i=s.length;i--;)"string"==typeof s[e=s[i]]&&(n[e.replace(/-([\da-z])/gi,function(t,e){return e.toUpperCase()})]=s[e]);else for(e in s)"string"==typeof s[e]&&(n[e]=s[e]);return n}function X(t,e,i,s){return t={effect:t=V.isPlainObject(t)?(e=t).effect:t},"function"==typeof(e=null==e?{}:e)&&(s=e,i=null,e={}),"number"!=typeof e&&!V.fx.speeds[e]||(s=i,i=e,e={}),"function"==typeof i&&(s=i,i=null),e&&V.extend(t,e),i=i||e.duration,t.duration=V.fx.off?0:"number"==typeof i?i:i in V.fx.speeds?V.fx.speeds[i]:V.fx.speeds._default,t.complete=s||e.complete,t}function $(t){return!t||"number"==typeof t||V.fx.speeds[t]||("string"==typeof t&&!V.effects.effect[t]||("function"==typeof t||"object"==typeof t&&!t.effect))}function G(t,e){var i=e.outerWidth(),e=e.outerHeight(),t=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/.exec(t)||["",0,i,e,0];return{top:parseFloat(t[1])||0,right:"auto"===t[2]?i:parseFloat(t[2]),bottom:"auto"===t[3]?e:parseFloat(t[3]),left:parseFloat(t[4])||0}}V.effects={effect:{}},N=["add","remove","toggle"],E={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1},V.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,e){V.fx.step[e]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(d.style(t.elem,e,t.end),t.setAttr=!0)}}),V.fn.addBack||(V.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),V.effects.animateClass=function(n,t,e,i){var o=V.speed(t,e,i);return this.queue(function(){var i=V(this),t=i.attr("class")||"",e=(e=o.children?i.find("*").addBack():i).map(function(){return{el:V(this),start:U(this)}}),s=function(){V.each(N,function(t,e){n[e]&&i[e+"Class"](n[e])})};s(),e=e.map(function(){return this.end=U(this.el[0]),this.diff=function(t,e){var i,s,n={};for(i in e)s=e[i],t[i]!==s&&(E[i]||!V.fx.step[i]&&isNaN(parseFloat(s))||(n[i]=s));return n}(this.start,this.end),this}),i.attr("class",t),e=e.map(function(){var t=this,e=V.Deferred(),i=V.extend({},o,{queue:!1,complete:function(){e.resolve(t)}});return this.el.animate(this.diff,i),e.promise()}),V.when.apply(V,e.get()).done(function(){s(),V.each(arguments,function(){var e=this.el;V.each(this.diff,function(t){e.css(t,"")})}),o.complete.call(i[0])})})},V.fn.extend({addClass:(O=V.fn.addClass,function(t,e,i,s){return e?V.effects.animateClass.call(this,{add:t},e,i,s):O.apply(this,arguments)}),removeClass:(A=V.fn.removeClass,function(t,e,i,s){return 1<arguments.length?V.effects.animateClass.call(this,{remove:t},e,i,s):A.apply(this,arguments)}),toggleClass:(z=V.fn.toggleClass,function(t,e,i,s,n){return"boolean"==typeof e||void 0===e?i?V.effects.animateClass.call(this,e?{add:t}:{remove:t},i,s,n):z.apply(this,arguments):V.effects.animateClass.call(this,{toggle:t},e,i,s)}),switchClass:function(t,e,i,s,n){return V.effects.animateClass.call(this,{add:e,remove:t},i,s,n)}}),V.expr&&V.expr.pseudos&&V.expr.pseudos.animated&&(V.expr.pseudos.animated=(W=V.expr.pseudos.animated,function(t){return!!V(t).data(K)||W(t)})),!1!==V.uiBackCompat&&V.extend(V.effects,{save:function(t,e){for(var i=0,s=e.length;i<s;i++)null!==e[i]&&t.data(j+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;s<n;s++)null!==e[s]&&(i=t.data(j+e[s]),t.css(e[s],i))},setMode:function(t,e){return e="toggle"===e?t.is(":hidden")?"show":"hide":e},createWrapper:function(i){if(i.parent().is(".ui-effects-wrapper"))return i.parent();var s={width:i.outerWidth(!0),height:i.outerHeight(!0),float:i.css("float")},t=V("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e={width:i.width(),height:i.height()},n=document.activeElement;try{n.id}catch(t){n=document.body}return i.wrap(t),i[0]!==n&&!V.contains(i[0],n)||V(n).trigger("focus"),t=i.parent(),"static"===i.css("position")?(t.css({position:"relative"}),i.css({position:"relative"})):(V.extend(s,{position:i.css("position"),zIndex:i.css("z-index")}),V.each(["top","left","bottom","right"],function(t,e){s[e]=i.css(e),isNaN(parseInt(s[e],10))&&(s[e]="auto")}),i.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),i.css(e),t.css(s).show()},removeWrapper:function(t){var e=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),t[0]!==e&&!V.contains(t[0],e)||V(e).trigger("focus")),t}}),V.extend(V.effects,{version:"1.13.2",define:function(t,e,i){return i||(i=e,e="effect"),V.effects.effect[t]=i,V.effects.effect[t].mode=e,i},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,e="vertical"!==i?(e||100)/100:1;return{height:t.height()*e,width:t.width()*s,outerHeight:t.outerHeight()*e,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();1<e&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(q,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(q)||"",t.removeData(q)},mode:function(t,e){t=t.is(":hidden");return"toggle"===e&&(e=t?"show":"hide"),e=(t?"hide"===e:"show"===e)?"none":e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(t){var e,i=t.css("position"),s=t.position();return t.css({marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()),/^(static|relative)/.test(i)&&(i="absolute",e=V("<"+t[0].nodeName+">").insertAfter(t).css({display:/^(inline|ruby)/.test(t.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight"),float:t.css("float")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).addClass("ui-effects-placeholder"),t.data(j+"placeholder",e)),t.css({position:i,left:s.left,top:s.top}),e},removePlaceholder:function(t){var e=j+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(t){V.effects.restoreStyle(t),V.effects.removePlaceholder(t)},setTransition:function(s,t,n,o){return o=o||{},V.each(t,function(t,e){var i=s.cssUnit(e);0<i[0]&&(o[e]=i[0]*n+i[1])}),o}}),V.fn.extend({effect:function(){function t(t){var e=V(this),i=V.effects.mode(e,r)||o;e.data(K,!0),l.push(i),o&&("show"===i||i===o&&"hide"===i)&&e.show(),o&&"none"===i||V.effects.saveStyle(e),"function"==typeof t&&t()}var s=X.apply(this,arguments),n=V.effects.effect[s.effect],o=n.mode,e=s.queue,i=e||"fx",a=s.complete,r=s.mode,l=[];return V.fx.off||!n?r?this[r](s.duration,a):this.each(function(){a&&a.call(this)}):!1===e?this.each(t).each(h):this.queue(i,t).queue(i,h);function h(t){var e=V(this);function i(){"function"==typeof a&&a.call(e[0]),"function"==typeof t&&t()}s.mode=l.shift(),!1===V.uiBackCompat||o?"none"===s.mode?(e[r](),i()):n.call(e[0],s,function(){e.removeData(K),V.effects.cleanUp(e),"hide"===s.mode&&e.hide(),i()}):(e.is(":hidden")?"hide"===r:"show"===r)?(e[r](),i()):n.call(e[0],s,i)}},show:(R=V.fn.show,function(t){if($(t))return R.apply(this,arguments);t=X.apply(this,arguments);return t.mode="show",this.effect.call(this,t)}),hide:(L=V.fn.hide,function(t){if($(t))return L.apply(this,arguments);t=X.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)}),toggle:(F=V.fn.toggle,function(t){if($(t)||"boolean"==typeof t)return F.apply(this,arguments);t=X.apply(this,arguments);return t.mode="toggle",this.effect.call(this,t)}),cssUnit:function(t){var i=this.css(t),s=[];return V.each(["em","px","%","pt"],function(t,e){0<i.indexOf(e)&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):G(this.css("clip"),this)},transfer:function(t,e){var i=V(this),s=V(t.to),n="fixed"===s.css("position"),o=V("body"),a=n?o.scrollTop():0,r=n?o.scrollLeft():0,o=s.offset(),o={top:o.top-a,left:o.left-r,height:s.innerHeight(),width:s.innerWidth()},s=i.offset(),l=V("<div class='ui-effects-transfer'></div>");l.appendTo("body").addClass(t.className).css({top:s.top-a,left:s.left-r,height:i.innerHeight(),width:i.innerWidth(),position:n?"fixed":"absolute"}).animate(o,t.duration,t.easing,function(){l.remove(),"function"==typeof e&&e()})}}),V.fx.step.clip=function(t){t.clipInit||(t.start=V(t.elem).cssClip(),"string"==typeof t.end&&(t.end=G(t.end,t.elem)),t.clipInit=!0),V(t.elem).cssClip({top:t.pos*(t.end.top-t.start.top)+t.start.top,right:t.pos*(t.end.right-t.start.right)+t.start.right,bottom:t.pos*(t.end.bottom-t.start.bottom)+t.start.bottom,left:t.pos*(t.end.left-t.start.left)+t.start.left})},Y={},V.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,t){Y[t]=function(t){return Math.pow(t,e+2)}}),V.extend(Y,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;t<((e=Math.pow(2,--i))-1)/11;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),V.each(Y,function(t,e){V.easing["easeIn"+t]=e,V.easing["easeOut"+t]=function(t){return 1-e(1-t)},V.easing["easeInOut"+t]=function(t){return t<.5?e(2*t)/2:1-e(-2*t+2)/2}});y=V.effects,V.effects.define("blind","hide",function(t,e){var i={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},s=V(this),n=t.direction||"up",o=s.cssClip(),a={clip:V.extend({},o)},r=V.effects.createPlaceholder(s);a.clip[i[n][0]]=a.clip[i[n][1]],"show"===t.mode&&(s.cssClip(a.clip),r&&r.css(V.effects.clipToBox(a)),a.clip=o),r&&r.animate(V.effects.clipToBox(a),t.duration,t.easing),s.animate(a,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("bounce",function(t,e){var i,s,n=V(this),o=t.mode,a="hide"===o,r="show"===o,l=t.direction||"up",h=t.distance,c=t.times||5,o=2*c+(r||a?1:0),u=t.duration/o,d=t.easing,p="up"===l||"down"===l?"top":"left",f="up"===l||"left"===l,g=0,t=n.queue().length;for(V.effects.createPlaceholder(n),l=n.css(p),h=h||n["top"==p?"outerHeight":"outerWidth"]()/3,r&&((s={opacity:1})[p]=l,n.css("opacity",0).css(p,f?2*-h:2*h).animate(s,u,d)),a&&(h/=Math.pow(2,c-1)),(s={})[p]=l;g<c;g++)(i={})[p]=(f?"-=":"+=")+h,n.animate(i,u,d).animate(s,u,d),h=a?2*h:h/2;a&&((i={opacity:0})[p]=(f?"-=":"+=")+h,n.animate(i,u,d)),n.queue(e),V.effects.unshift(n,t,1+o)}),V.effects.define("clip","hide",function(t,e){var i={},s=V(this),n=t.direction||"vertical",o="both"===n,a=o||"horizontal"===n,o=o||"vertical"===n,n=s.cssClip();i.clip={top:o?(n.bottom-n.top)/2:n.top,right:a?(n.right-n.left)/2:n.right,bottom:o?(n.bottom-n.top)/2:n.bottom,left:a?(n.right-n.left)/2:n.left},V.effects.createPlaceholder(s),"show"===t.mode&&(s.cssClip(i.clip),i.clip=n),s.animate(i,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("drop","hide",function(t,e){var i=V(this),s="show"===t.mode,n=t.direction||"left",o="up"===n||"down"===n?"top":"left",a="up"===n||"left"===n?"-=":"+=",r="+="==a?"-=":"+=",l={opacity:0};V.effects.createPlaceholder(i),n=t.distance||i["top"==o?"outerHeight":"outerWidth"](!0)/2,l[o]=a+n,s&&(i.css(l),l[o]=r+n,l.opacity=1),i.animate(l,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("explode","hide",function(t,e){var i,s,n,o,a,r,l=t.pieces?Math.round(Math.sqrt(t.pieces)):3,h=l,c=V(this),u="show"===t.mode,d=c.show().css("visibility","hidden").offset(),p=Math.ceil(c.outerWidth()/h),f=Math.ceil(c.outerHeight()/l),g=[];function m(){g.push(this),g.length===l*h&&(c.css({visibility:"visible"}),V(g).remove(),e())}for(i=0;i<l;i++)for(o=d.top+i*f,r=i-(l-1)/2,s=0;s<h;s++)n=d.left+s*p,a=s-(h-1)/2,c.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-s*p,top:-i*f}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:p,height:f,left:n+(u?a*p:0),top:o+(u?r*f:0),opacity:u?0:1}).animate({left:n+(u?0:a*p),top:o+(u?0:r*f),opacity:u?1:0},t.duration||500,t.easing,m)}),V.effects.define("fade","toggle",function(t,e){var i="show"===t.mode;V(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("fold","hide",function(e,t){var i=V(this),s=e.mode,n="show"===s,o="hide"===s,a=e.size||15,r=/([0-9]+)%/.exec(a),l=!!e.horizFirst?["right","bottom"]:["bottom","right"],h=e.duration/2,c=V.effects.createPlaceholder(i),u=i.cssClip(),d={clip:V.extend({},u)},p={clip:V.extend({},u)},f=[u[l[0]],u[l[1]]],s=i.queue().length;r&&(a=parseInt(r[1],10)/100*f[o?0:1]),d.clip[l[0]]=a,p.clip[l[0]]=a,p.clip[l[1]]=0,n&&(i.cssClip(p.clip),c&&c.css(V.effects.clipToBox(p)),p.clip=u),i.queue(function(t){c&&c.animate(V.effects.clipToBox(d),h,e.easing).animate(V.effects.clipToBox(p),h,e.easing),t()}).animate(d,h,e.easing).animate(p,h,e.easing).queue(t),V.effects.unshift(i,s,4)}),V.effects.define("highlight","show",function(t,e){var i=V(this),s={backgroundColor:i.css("backgroundColor")};"hide"===t.mode&&(s.opacity=0),V.effects.saveStyle(i),i.css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(s,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("size",function(s,e){var n,i=V(this),t=["fontSize"],o=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],a=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=s.mode,l="effect"!==r,h=s.scale||"both",c=s.origin||["middle","center"],u=i.css("position"),d=i.position(),p=V.effects.scaledDimensions(i),f=s.from||p,g=s.to||V.effects.scaledDimensions(i,0);V.effects.createPlaceholder(i),"show"===r&&(r=f,f=g,g=r),n={from:{y:f.height/p.height,x:f.width/p.width},to:{y:g.height/p.height,x:g.width/p.width}},"box"!==h&&"both"!==h||(n.from.y!==n.to.y&&(f=V.effects.setTransition(i,o,n.from.y,f),g=V.effects.setTransition(i,o,n.to.y,g)),n.from.x!==n.to.x&&(f=V.effects.setTransition(i,a,n.from.x,f),g=V.effects.setTransition(i,a,n.to.x,g))),"content"!==h&&"both"!==h||n.from.y!==n.to.y&&(f=V.effects.setTransition(i,t,n.from.y,f),g=V.effects.setTransition(i,t,n.to.y,g)),c&&(c=V.effects.getBaseline(c,p),f.top=(p.outerHeight-f.outerHeight)*c.y+d.top,f.left=(p.outerWidth-f.outerWidth)*c.x+d.left,g.top=(p.outerHeight-g.outerHeight)*c.y+d.top,g.left=(p.outerWidth-g.outerWidth)*c.x+d.left),delete f.outerHeight,delete f.outerWidth,i.css(f),"content"!==h&&"both"!==h||(o=o.concat(["marginTop","marginBottom"]).concat(t),a=a.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=V(this),e=V.effects.scaledDimensions(t),i={height:e.height*n.from.y,width:e.width*n.from.x,outerHeight:e.outerHeight*n.from.y,outerWidth:e.outerWidth*n.from.x},e={height:e.height*n.to.y,width:e.width*n.to.x,outerHeight:e.height*n.to.y,outerWidth:e.width*n.to.x};n.from.y!==n.to.y&&(i=V.effects.setTransition(t,o,n.from.y,i),e=V.effects.setTransition(t,o,n.to.y,e)),n.from.x!==n.to.x&&(i=V.effects.setTransition(t,a,n.from.x,i),e=V.effects.setTransition(t,a,n.to.x,e)),l&&V.effects.saveStyle(t),t.css(i),t.animate(e,s.duration,s.easing,function(){l&&V.effects.restoreStyle(t)})})),i.animate(g,{queue:!1,duration:s.duration,easing:s.easing,complete:function(){var t=i.offset();0===g.opacity&&i.css("opacity",f.opacity),l||(i.css("position","static"===u?"relative":u).offset(t),V.effects.saveStyle(i)),e()}})}),V.effects.define("scale",function(t,e){var i=V(this),s=t.mode,s=parseInt(t.percent,10)||(0===parseInt(t.percent,10)||"effect"!==s?0:100),s=V.extend(!0,{from:V.effects.scaledDimensions(i),to:V.effects.scaledDimensions(i,s,t.direction||"both"),origin:t.origin||["middle","center"]},t);t.fade&&(s.from.opacity=1,s.to.opacity=0),V.effects.effect.size.call(this,s,e)}),V.effects.define("puff","hide",function(t,e){t=V.extend(!0,{},t,{fade:!0,percent:parseInt(t.percent,10)||150});V.effects.effect.scale.call(this,t,e)}),V.effects.define("pulsate","show",function(t,e){var i=V(this),s=t.mode,n="show"===s,o=2*(t.times||5)+(n||"hide"===s?1:0),a=t.duration/o,r=0,l=1,s=i.queue().length;for(!n&&i.is(":visible")||(i.css("opacity",0).show(),r=1);l<o;l++)i.animate({opacity:r},a,t.easing),r=1-r;i.animate({opacity:r},a,t.easing),i.queue(e),V.effects.unshift(i,s,1+o)}),V.effects.define("shake",function(t,e){var i=1,s=V(this),n=t.direction||"left",o=t.distance||20,a=t.times||3,r=2*a+1,l=Math.round(t.duration/r),h="up"===n||"down"===n?"top":"left",c="up"===n||"left"===n,u={},d={},p={},n=s.queue().length;for(V.effects.createPlaceholder(s),u[h]=(c?"-=":"+=")+o,d[h]=(c?"+=":"-=")+2*o,p[h]=(c?"-=":"+=")+2*o,s.animate(u,l,t.easing);i<a;i++)s.animate(d,l,t.easing).animate(p,l,t.easing);s.animate(d,l,t.easing).animate(u,l/2,t.easing).queue(e),V.effects.unshift(s,n,1+r)}),V.effects.define("slide","show",function(t,e){var i,s,n=V(this),o={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},a=t.mode,r=t.direction||"left",l="up"===r||"down"===r?"top":"left",h="up"===r||"left"===r,c=t.distance||n["top"==l?"outerHeight":"outerWidth"](!0),u={};V.effects.createPlaceholder(n),i=n.cssClip(),s=n.position()[l],u[l]=(h?-1:1)*c+s,u.clip=n.cssClip(),u.clip[o[r][1]]=u.clip[o[r][0]],"show"===a&&(n.cssClip(u.clip),n.css(l,u[l]),u.clip=i,u[l]=s),n.animate(u,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),y=!1!==V.uiBackCompat?V.effects.define("transfer",function(t,e){V(this).transfer(t,e)}):y;V.ui.focusable=function(t,e){var i,s,n,o,a=t.nodeName.toLowerCase();return"area"===a?(s=(i=t.parentNode).name,!(!t.href||!s||"map"!==i.nodeName.toLowerCase())&&(0<(s=V("img[usemap='#"+s+"']")).length&&s.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(a)?(n=!t.disabled)&&(o=V(t).closest("fieldset")[0])&&(n=!o.disabled):n="a"===a&&t.href||e,n&&V(t).is(":visible")&&function(t){var e=t.css("visibility");for(;"inherit"===e;)t=t.parent(),e=t.css("visibility");return"visible"===e}(V(t)))},V.extend(V.expr.pseudos,{focusable:function(t){return V.ui.focusable(t,null!=V.attr(t,"tabindex"))}});var Q,J;V.ui.focusable,V.fn._form=function(){return"string"==typeof this[0].form?this.closest("form"):V(this[0].form)},V.ui.formResetMixin={_formResetHandler:function(){var e=V(this);setTimeout(function(){var t=e.data("ui-form-reset-instances");V.each(t,function(){this.refresh()})})},_bindFormResetHandler:function(){var t;this.form=this.element._form(),this.form.length&&((t=this.form.data("ui-form-reset-instances")||[]).length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t))},_unbindFormResetHandler:function(){var t;this.form.length&&((t=this.form.data("ui-form-reset-instances")).splice(V.inArray(this,t),1),t.length?this.form.data("ui-form-reset-instances",t):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset"))}};V.expr.pseudos||(V.expr.pseudos=V.expr[":"]),V.uniqueSort||(V.uniqueSort=V.unique),V.escapeSelector||(Q=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,J=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},V.escapeSelector=function(t){return(t+"").replace(Q,J)}),V.fn.even&&V.fn.odd||V.fn.extend({even:function(){return this.filter(function(t){return t%2==0})},odd:function(){return this.filter(function(t){return t%2==1})}});var Z;V.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},V.fn.labels=function(){var t,e,i;return this.length?this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).siblings()),t="label[for='"+V.escapeSelector(t)+"']",e=e.add(i.find(t).addBack(t))),this.pushStack(e)):this.pushStack([])},V.fn.scrollParent=function(t){var e=this.css("position"),i="absolute"===e,s=t?/(auto|scroll|hidden)/:/(auto|scroll)/,t=this.parents().filter(function(){var t=V(this);return(!i||"static"!==t.css("position"))&&s.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==e&&t.length?t:V(this[0].ownerDocument||document)},V.extend(V.expr.pseudos,{tabbable:function(t){var e=V.attr(t,"tabindex"),i=null!=e;return(!i||0<=e)&&V.ui.focusable(t,i)}}),V.fn.extend({uniqueId:(Z=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++Z)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&V(this).removeAttr("id")})}}),V.widget("ui.accordion",{version:"1.13.2",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:function(t){return t.find("> li > :first-child").add(t.find("> :not(li)").even())},heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=V(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),t.collapsible||!1!==t.active&&null!=t.active||(t.active=0),this._processPanels(),t.active<0&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():V()}},_createIcons:function(){var t,e=this.options.icons;e&&(t=V("<span>"),this._addClass(t,"ui-accordion-header-icon","ui-icon "+e.header),t.prependTo(this.headers),t=this.active.children(".ui-accordion-header-icon"),this._removeClass(t,e.header)._addClass(t,null,e.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){"active"!==t?("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||!1!==this.options.active||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons())):this._activate(e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var e=V.ui.keyCode,i=this.headers.length,s=this.headers.index(t.target),n=!1;switch(t.keyCode){case e.RIGHT:case e.DOWN:n=this.headers[(s+1)%i];break;case e.LEFT:case e.UP:n=this.headers[(s-1+i)%i];break;case e.SPACE:case e.ENTER:this._eventHandler(t);break;case e.HOME:n=this.headers[0];break;case e.END:n=this.headers[i-1]}n&&(V(t.target).attr("tabIndex",-1),V(n).attr("tabIndex",0),V(n).trigger("focus"),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===V.ui.keyCode.UP&&t.ctrlKey&&V(t.currentTarget).prev().trigger("focus")},refresh:function(){var t=this.options;this._processPanels(),!1===t.active&&!0===t.collapsible||!this.headers.length?(t.active=!1,this.active=V()):!1===t.active?this._activate(0):this.active.length&&!V.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=V()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;"function"==typeof this.options.header?this.headers=this.options.header(this.element):this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var i,t=this.options,e=t.heightStyle,s=this.element.parent();this.active=this._findActive(t.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var t=V(this),e=t.uniqueId().attr("id"),i=t.next(),s=i.uniqueId().attr("id");t.attr("aria-controls",s),i.attr("aria-labelledby",e)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(t.event),"fill"===e?(i=s.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.headers.each(function(){i-=V(this).outerHeight(!0)}),this.headers.next().each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.headers.next().each(function(){var t=V(this).is(":visible");t||V(this).show(),i=Math.max(i,V(this).css("height","").height()),t||V(this).hide()}).height(i))},_activate:function(t){t=this._findActive(t)[0];t!==this.active[0]&&(t=t||this.active[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):V()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():s.next(),r=i.next(),a={oldHeader:i,oldPanel:r,newHeader:o?V():s,newPanel:a};t.preventDefault(),n&&!e.collapsible||!1===this._trigger("beforeActivate",t,a)||(e.active=!o&&this.headers.index(s),this.active=n?V():s,this._toggle(a),this._removeClass(i,"ui-accordion-header-active","ui-state-active"),e.icons&&(i=i.children(".ui-accordion-header-icon"),this._removeClass(i,null,e.icons.activeHeader)._addClass(i,null,e.icons.header)),n||(this._removeClass(s,"ui-accordion-header-collapsed")._addClass(s,"ui-accordion-header-active","ui-state-active"),e.icons&&(n=s.children(".ui-accordion-header-icon"),this._removeClass(n,null,e.icons.header)._addClass(n,null,e.icons.activeHeader)),this._addClass(s.next(),"ui-accordion-content-active")))},_toggle:function(t){var e=t.newPanel,i=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=e,this.prevHide=i,this.options.animate?this._animate(e,i,t):(i.hide(),e.show(),this._toggleComplete(t)),i.attr({"aria-hidden":"true"}),i.prev().attr({"aria-selected":"false","aria-expanded":"false"}),e.length&&i.length?i.prev().attr({tabIndex:-1,"aria-expanded":"false"}):e.length&&this.headers.filter(function(){return 0===parseInt(V(this).attr("tabIndex"),10)}).attr("tabIndex",-1),e.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,i,e){var s,n,o,a=this,r=0,l=t.css("box-sizing"),h=t.length&&(!i.length||t.index()<i.index()),c=this.options.animate||{},u=h&&c.down||c,h=function(){a._toggleComplete(e)};return n=(n="string"==typeof u?u:n)||u.easing||c.easing,o=(o="number"==typeof u?u:o)||u.duration||c.duration,i.length?t.length?(s=t.show().outerHeight(),i.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),void t.hide().animate(this.showProps,{duration:o,easing:n,complete:h,step:function(t,e){e.now=Math.round(t),"height"!==e.prop?"content-box"===l&&(r+=e.now):"content"!==a.options.heightStyle&&(e.now=Math.round(s-i.outerHeight()-r),r=0)}})):i.animate(this.hideProps,o,n,h):t.animate(this.showProps,o,n,h)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),V.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},V.widget("ui.menu",{version:"1.13.2",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=V(t.target),i=V(V.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){V.contains(this.element[0],V.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=V(t.target).closest(".ui-menu-item"),i=V(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=V(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case V.ui.keyCode.PAGE_UP:this.previousPage(t);break;case V.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case V.ui.keyCode.HOME:this._move("first","first",t);break;case V.ui.keyCode.END:this._move("last","last",t);break;case V.ui.keyCode.UP:this.previous(t);break;case V.ui.keyCode.DOWN:this.next(t);break;case V.ui.keyCode.LEFT:this.collapse(t);break;case V.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case V.ui.keyCode.ENTER:case V.ui.keyCode.SPACE:this._activate(t);break;case V.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=V(this),e=t.prev(),i=V("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=V(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!V.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(V.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(V.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=V.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:V(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!V(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=V(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=V(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||V(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(V(this).children(".ui-menu-item-wrapper").text()))})}});V.widget("ui.autocomplete",{version:"1.13.2",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=V("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){V(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==V.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=V("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||V.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(V.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=V.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:V.map(t,function(t){return"string"==typeof t?{label:t,value:t}:V.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(V.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;V.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return V("<li>").append(V("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),V.extend(V.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(V.ui.autocomplete.escapeRegex(e),"i");return V.grep(t,function(t){return i.test(t.label||t.value||t)})}}),V.widget("ui.autocomplete",V.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(e))},100))}});V.ui.autocomplete;var tt=/ui-corner-([a-z]){2,6}/g;V.widget("ui.controlgroup",{version:"1.13.2",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var o=this,a=[];V.each(this.options.items,function(s,t){var e,n={};if(t)return"controlgroupLabel"===s?((e=o.element.find(t)).each(function(){var t=V(this);t.children(".ui-controlgroup-label-contents").length||t.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),o._addClass(e,null,"ui-widget ui-widget-content ui-state-default"),void(a=a.concat(e.get()))):void(V.fn[s]&&(n=o["_"+s+"Options"]?o["_"+s+"Options"]("middle"):{classes:{}},o.element.find(t).each(function(){var t=V(this),e=t[s]("instance"),i=V.widget.extend({},n);"button"===s&&t.parent(".ui-spinner").length||((e=e||t[s]()[s]("instance"))&&(i.classes=o._resolveClassesValues(i.classes,e)),t[s](i),i=t[s]("widget"),V.data(i[0],"ui-controlgroup-data",e||t[s]("instance")),a.push(i[0]))})))}),this.childWidgets=V(V.uniqueSort(a)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var t=V(this).data("ui-controlgroup-data");t&&t[e]&&t[e]()})},_updateCornerClass:function(t,e){e=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,"ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all"),this._addClass(t,null,e)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){t=this._buildSimpleOptions(t,"ui-spinner");return t.classes["ui-spinner-up"]="",t.classes["ui-spinner-down"]="",t},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e&&"auto",classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(i,s){var n={};return V.each(i,function(t){var e=s.options.classes[t]||"",e=String.prototype.trim.call(e.replace(tt,""));n[t]=(e+" "+i[t]).replace(/\s+/g," ")}),n},_setOption:function(t,e){"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"!==t?this.refresh():this._callChildMethod(e?"disable":"enable")},refresh:function(){var n,o=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),n=this.childWidgets,(n=this.options.onlyVisible?n.filter(":visible"):n).length&&(V.each(["first","last"],function(t,e){var i,s=n[e]().data("ui-controlgroup-data");s&&o["_"+s.widgetName+"Options"]?((i=o["_"+s.widgetName+"Options"](1===n.length?"only":e)).classes=o._resolveClassesValues(i.classes,s),s.element[s.widgetName](i)):o._updateCornerClass(n[e](),e)}),this._callChildMethod("refresh"))}});V.widget("ui.checkboxradio",[V.ui.formResetMixin,{version:"1.13.2",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var t,e=this._super()||{};return this._readType(),t=this.element.labels(),this.label=V(t[t.length-1]),this.label.length||V.error("No label found for checkboxradio widget"),this.originalLabel="",(t=this.label.contents().not(this.element[0])).length&&(this.originalLabel+=t.clone().wrapAll("<div></div>").parent().html()),this.originalLabel&&(e.label=this.originalLabel),null!=(t=this.element[0].disabled)&&(e.disabled=t),e},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var t=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===t&&/radio|checkbox/.test(this.type)||V.error("Can't create checkboxradio on element.nodeName="+t+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var t=this.element[0].name,e="input[name='"+V.escapeSelector(t)+"']";return t?(this.form.length?V(this.form[0].elements).filter(e):V(e).filter(function(){return 0===V(this)._form().length})).not(this.element):V([])},_toggleClasses:function(){var t=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",t)._toggleClass(this.icon,null,"ui-icon-blank",!t),"radio"===this.type&&this._getRadioGroup().each(function(){var t=V(this).checkboxradio("instance");t&&t._removeClass(t.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){if("label"!==t||e){if(this._super(t,e),"disabled"===t)return this._toggleClass(this.label,null,"ui-state-disabled",e),void(this.element[0].disabled=e);this.refresh()}},_updateIcon:function(t){var e="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=V("<span>"),this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(e+=t?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,t?"ui-icon-blank":"ui-icon-check")):e+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",e),t||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),(t=this.iconSpace?t.not(this.iconSpace[0]):t).remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]);var et;V.ui.checkboxradio;V.widget("ui.button",{version:"1.13.2",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),null!=(t=this.element[0].disabled)&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(t){t.keyCode===V.ui.keyCode.SPACE&&(t.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(t,e){var i="iconPosition"!==t,s=i?this.options.iconPosition:e,t="top"===s||"bottom"===s;this.icon?i&&this._removeClass(this.icon,null,this.options.icon):(this.icon=V("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),i&&this._addClass(this.icon,null,e),this._attachIcon(s),t?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(s))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=(void 0===t.showLabel?this.options:t).showLabel,i=(void 0===t.icon?this.options:t).icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),(this.element[0].disabled=e)&&this.element.trigger("blur"))},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),!1!==V.uiBackCompat&&(V.widget("ui.button",V.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){"text"!==t?("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments)):this._super("showLabel",e)}}),V.fn.button=(et=V.fn.button,function(i){var t="string"==typeof i,s=Array.prototype.slice.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t=V(this).attr("type"),e=V.data(this,"ui-"+("checkbox"!==t&&"radio"!==t?"button":"checkboxradio"));return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for button widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on button prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V(this).attr("type"),e="checkbox"!==t&&"radio"!==t?"button":"checkboxradio",t=V.data(this,"ui-"+e);t?(t.option(i||{}),t._init&&t._init()):"button"!=e?V(this).checkboxradio(V.extend({icon:!1},i)):et.call(V(this),i)})),n}),V.fn.buttonset=function(){return V.ui.controlgroup||V.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))});var it;V.ui.button;function st(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:"",selectMonthLabel:"Select month",selectYearLabel:"Select year"},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,onUpdateDatepicker:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},V.extend(this._defaults,this.regional[""]),this.regional.en=V.extend(!0,{},this.regional[""]),this.regional["en-US"]=V.extend(!0,{},this.regional.en),this.dpDiv=nt(V("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function nt(t){var e="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return t.on("mouseout",e,function(){V(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",e,ot)}function ot(){V.datepicker._isDisabledDatepicker((it.inline?it.dpDiv.parent():it.input)[0])||(V(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),V(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).addClass("ui-datepicker-next-hover"))}function at(t,e){for(var i in V.extend(t,e),e)null==e[i]&&(t[i]=e[i]);return t}V.extend(V.ui,{datepicker:{version:"1.13.2"}}),V.extend(st.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return at(this._defaults,t||{}),this},_attachDatepicker:function(t,e){var i,s=t.nodeName.toLowerCase(),n="div"===s||"span"===s;t.id||(this.uuid+=1,t.id="dp"+this.uuid),(i=this._newInst(V(t),n)).settings=V.extend({},e||{}),"input"===s?this._connectDatepicker(t,i):n&&this._inlineDatepicker(t,i)},_newInst:function(t,e){return{id:t[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1"),input:t,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:e,dpDiv:e?nt(V("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(t,e){var i=V(t);e.append=V([]),e.trigger=V([]),i.hasClass(this.markerClassName)||(this._attachments(i,e),i.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(e),V.data(t,"datepicker",e),e.settings.disabled&&this._disableDatepicker(t))},_attachments:function(t,e){var i,s=this._get(e,"appendText"),n=this._get(e,"isRTL");e.append&&e.append.remove(),s&&(e.append=V("<span>").addClass(this._appendClass).text(s),t[n?"before":"after"](e.append)),t.off("focus",this._showDatepicker),e.trigger&&e.trigger.remove(),"focus"!==(i=this._get(e,"showOn"))&&"both"!==i||t.on("focus",this._showDatepicker),"button"!==i&&"both"!==i||(s=this._get(e,"buttonText"),i=this._get(e,"buttonImage"),this._get(e,"buttonImageOnly")?e.trigger=V("<img>").addClass(this._triggerClass).attr({src:i,alt:s,title:s}):(e.trigger=V("<button type='button'>").addClass(this._triggerClass),i?e.trigger.html(V("<img>").attr({src:i,alt:s,title:s})):e.trigger.text(s)),t[n?"before":"after"](e.trigger),e.trigger.on("click",function(){return V.datepicker._datepickerShowing&&V.datepicker._lastInput===t[0]?V.datepicker._hideDatepicker():(V.datepicker._datepickerShowing&&V.datepicker._lastInput!==t[0]&&V.datepicker._hideDatepicker(),V.datepicker._showDatepicker(t[0])),!1}))},_autoSize:function(t){var e,i,s,n,o,a;this._get(t,"autoSize")&&!t.inline&&(o=new Date(2009,11,20),(a=this._get(t,"dateFormat")).match(/[DM]/)&&(e=function(t){for(n=s=i=0;n<t.length;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length))},_inlineDatepicker:function(t,e){var i=V(t);i.hasClass(this.markerClassName)||(i.addClass(this.markerClassName).append(e.dpDiv),V.data(t,"datepicker",e),this._setDate(e,this._getDefaultDate(e),!0),this._updateDatepicker(e),this._updateAlternate(e),e.settings.disabled&&this._disableDatepicker(t),e.dpDiv.css("display","block"))},_dialogDatepicker:function(t,e,i,s,n){var o,a=this._dialogInst;return a||(this.uuid+=1,o="dp"+this.uuid,this._dialogInput=V("<input type='text' id='"+o+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),V("body").append(this._dialogInput),(a=this._dialogInst=this._newInst(this._dialogInput,!1)).settings={},V.data(this._dialogInput[0],"datepicker",a)),at(a.settings,s||{}),e=e&&e.constructor===Date?this._formatDate(a,e):e,this._dialogInput.val(e),this._pos=n?n.length?n:[n.pageX,n.pageY]:null,this._pos||(o=document.documentElement.clientWidth,s=document.documentElement.clientHeight,e=document.documentElement.scrollLeft||document.body.scrollLeft,n=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[o/2-100+e,s/2-150+n]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),a.settings.onSelect=i,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),V.blockUI&&V.blockUI(this.dpDiv),V.data(this._dialogInput[0],"datepicker",a),this},_destroyDatepicker:function(t){var e,i=V(t),s=V.data(t,"datepicker");i.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),V.removeData(t,"datepicker"),"input"===e?(s.append.remove(),s.trigger.remove(),i.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):"div"!==e&&"span"!==e||i.removeClass(this.markerClassName).empty(),it===s&&(it=null,this._curInst=null))},_enableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!1,s.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!0,s.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;e<this._disabledInputs.length;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(t){try{return V.data(t,"datepicker")}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(t,e,i){var s,n,o=this._getInst(t);if(2===arguments.length&&"string"==typeof e)return"defaults"===e?V.extend({},V.datepicker._defaults):o?"all"===e?V.extend({},o.settings):this._get(o,e):null;s=e||{},"string"==typeof e&&((s={})[e]=i),o&&(this._curInst===o&&this._hideDatepicker(),n=this._getDateDatepicker(t,!0),e=this._getMinMaxDate(o,"min"),i=this._getMinMaxDate(o,"max"),at(o.settings,s),null!==e&&void 0!==s.dateFormat&&void 0===s.minDate&&(o.settings.minDate=this._formatDate(o,e)),null!==i&&void 0!==s.dateFormat&&void 0===s.maxDate&&(o.settings.maxDate=this._formatDate(o,i)),"disabled"in s&&(s.disabled?this._disableDatepicker(t):this._enableDatepicker(t)),this._attachments(V(t),o),this._autoSize(o),this._setDate(o,n),this._updateAlternate(o),this._updateDatepicker(o))},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){t=this._getInst(t);t&&this._updateDatepicker(t)},_setDateDatepicker:function(t,e){t=this._getInst(t);t&&(this._setDate(t,e),this._updateDatepicker(t),this._updateAlternate(t))},_getDateDatepicker:function(t,e){t=this._getInst(t);return t&&!t.inline&&this._setDateFromField(t,e),t?this._getDate(t):null},_doKeyDown:function(t){var e,i,s=V.datepicker._getInst(t.target),n=!0,o=s.dpDiv.is(".ui-datepicker-rtl");if(s._keyEvent=!0,V.datepicker._datepickerShowing)switch(t.keyCode){case 9:V.datepicker._hideDatepicker(),n=!1;break;case 13:return(i=V("td."+V.datepicker._dayOverClass+":not(."+V.datepicker._currentClass+")",s.dpDiv))[0]&&V.datepicker._selectDay(t.target,s.selectedMonth,s.selectedYear,i[0]),(e=V.datepicker._get(s,"onSelect"))?(i=V.datepicker._formatDate(s),e.apply(s.input?s.input[0]:null,[i,s])):V.datepicker._hideDatepicker(),!1;case 27:V.datepicker._hideDatepicker();break;case 33:V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 34:V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 35:(t.ctrlKey||t.metaKey)&&V.datepicker._clearDate(t.target),n=t.ctrlKey||t.metaKey;break;case 36:(t.ctrlKey||t.metaKey)&&V.datepicker._gotoToday(t.target),n=t.ctrlKey||t.metaKey;break;case 37:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?1:-1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 38:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,-7,"D"),n=t.ctrlKey||t.metaKey;break;case 39:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?-1:1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 40:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,7,"D"),n=t.ctrlKey||t.metaKey;break;default:n=!1}else 36===t.keyCode&&t.ctrlKey?V.datepicker._showDatepicker(this):n=!1;n&&(t.preventDefault(),t.stopPropagation())},_doKeyPress:function(t){var e,i=V.datepicker._getInst(t.target);if(V.datepicker._get(i,"constrainInput"))return e=V.datepicker._possibleChars(V.datepicker._get(i,"dateFormat")),i=String.fromCharCode(null==t.charCode?t.keyCode:t.charCode),t.ctrlKey||t.metaKey||i<" "||!e||-1<e.indexOf(i)},_doKeyUp:function(t){t=V.datepicker._getInst(t.target);if(t.input.val()!==t.lastVal)try{V.datepicker.parseDate(V.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,V.datepicker._getFormatConfig(t))&&(V.datepicker._setDateFromField(t),V.datepicker._updateAlternate(t),V.datepicker._updateDatepicker(t))}catch(t){}return!0},_showDatepicker:function(t){var e,i,s,n;"input"!==(t=t.target||t).nodeName.toLowerCase()&&(t=V("input",t.parentNode)[0]),V.datepicker._isDisabledDatepicker(t)||V.datepicker._lastInput===t||(n=V.datepicker._getInst(t),V.datepicker._curInst&&V.datepicker._curInst!==n&&(V.datepicker._curInst.dpDiv.stop(!0,!0),n&&V.datepicker._datepickerShowing&&V.datepicker._hideDatepicker(V.datepicker._curInst.input[0])),!1!==(i=(s=V.datepicker._get(n,"beforeShow"))?s.apply(t,[t,n]):{})&&(at(n.settings,i),n.lastVal=null,V.datepicker._lastInput=t,V.datepicker._setDateFromField(n),V.datepicker._inDialog&&(t.value=""),V.datepicker._pos||(V.datepicker._pos=V.datepicker._findPos(t),V.datepicker._pos[1]+=t.offsetHeight),e=!1,V(t).parents().each(function(){return!(e|="fixed"===V(this).css("position"))}),s={left:V.datepicker._pos[0],top:V.datepicker._pos[1]},V.datepicker._pos=null,n.dpDiv.empty(),n.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),V.datepicker._updateDatepicker(n),s=V.datepicker._checkOffset(n,s,e),n.dpDiv.css({position:V.datepicker._inDialog&&V.blockUI?"static":e?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"}),n.inline||(i=V.datepicker._get(n,"showAnim"),s=V.datepicker._get(n,"duration"),n.dpDiv.css("z-index",function(t){for(var e,i;t.length&&t[0]!==document;){if(("absolute"===(e=t.css("position"))||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}(V(t))+1),V.datepicker._datepickerShowing=!0,V.effects&&V.effects.effect[i]?n.dpDiv.show(i,V.datepicker._get(n,"showOptions"),s):n.dpDiv[i||"show"](i?s:null),V.datepicker._shouldFocusInput(n)&&n.input.trigger("focus"),V.datepicker._curInst=n)))},_updateDatepicker:function(t){this.maxRows=4,(it=t).dpDiv.empty().append(this._generateHTML(t)),this._attachHandlers(t);var e,i=this._getNumberOfMonths(t),s=i[1],n=t.dpDiv.find("."+this._dayOverClass+" a"),o=V.datepicker._get(t,"onUpdateDatepicker");0<n.length&&ot.apply(n.get(0)),t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),1<s&&t.dpDiv.addClass("ui-datepicker-multi-"+s).css("width",17*s+"em"),t.dpDiv[(1!==i[0]||1!==i[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),t===V.datepicker._curInst&&V.datepicker._datepickerShowing&&V.datepicker._shouldFocusInput(t)&&t.input.trigger("focus"),t.yearshtml&&(e=t.yearshtml,setTimeout(function(){e===t.yearshtml&&t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year").first().replaceWith(t.yearshtml),e=t.yearshtml=null},0)),o&&o.apply(t.input?t.input[0]:null,[t])},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(t,e,i){var s=t.dpDiv.outerWidth(),n=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,a=t.input?t.input.outerHeight():0,r=document.documentElement.clientWidth+(i?0:V(document).scrollLeft()),l=document.documentElement.clientHeight+(i?0:V(document).scrollTop());return e.left-=this._get(t,"isRTL")?s-o:0,e.left-=i&&e.left===t.input.offset().left?V(document).scrollLeft():0,e.top-=i&&e.top===t.input.offset().top+a?V(document).scrollTop():0,e.left-=Math.min(e.left,e.left+s>r&&s<r?Math.abs(e.left+s-r):0),e.top-=Math.min(e.top,e.top+n>l&&n<l?Math.abs(n+a):0),e},_findPos:function(t){for(var e=this._getInst(t),i=this._get(e,"isRTL");t&&("hidden"===t.type||1!==t.nodeType||V.expr.pseudos.hidden(t));)t=t[i?"previousSibling":"nextSibling"];return[(e=V(t).offset()).left,e.top]},_hideDatepicker:function(t){var e,i,s=this._curInst;!s||t&&s!==V.data(t,"datepicker")||this._datepickerShowing&&(e=this._get(s,"showAnim"),i=this._get(s,"duration"),t=function(){V.datepicker._tidyDialog(s)},V.effects&&(V.effects.effect[e]||V.effects[e])?s.dpDiv.hide(e,V.datepicker._get(s,"showOptions"),i,t):s.dpDiv["slideDown"===e?"slideUp":"fadeIn"===e?"fadeOut":"hide"](e?i:null,t),e||t(),this._datepickerShowing=!1,(t=this._get(s,"onClose"))&&t.apply(s.input?s.input[0]:null,[s.input?s.input.val():"",s]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),V.blockUI&&(V.unblockUI(),V("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(t){var e;V.datepicker._curInst&&(e=V(t.target),t=V.datepicker._getInst(e[0]),(e[0].id===V.datepicker._mainDivId||0!==e.parents("#"+V.datepicker._mainDivId).length||e.hasClass(V.datepicker.markerClassName)||e.closest("."+V.datepicker._triggerClass).length||!V.datepicker._datepickerShowing||V.datepicker._inDialog&&V.blockUI)&&(!e.hasClass(V.datepicker.markerClassName)||V.datepicker._curInst===t)||V.datepicker._hideDatepicker())},_adjustDate:function(t,e,i){var s=V(t),t=this._getInst(s[0]);this._isDisabledDatepicker(s[0])||(this._adjustInstDate(t,e,i),this._updateDatepicker(t))},_gotoToday:function(t){var e=V(t),i=this._getInst(e[0]);this._get(i,"gotoCurrent")&&i.currentDay?(i.selectedDay=i.currentDay,i.drawMonth=i.selectedMonth=i.currentMonth,i.drawYear=i.selectedYear=i.currentYear):(t=new Date,i.selectedDay=t.getDate(),i.drawMonth=i.selectedMonth=t.getMonth(),i.drawYear=i.selectedYear=t.getFullYear()),this._notifyChange(i),this._adjustDate(e)},_selectMonthYear:function(t,e,i){var s=V(t),t=this._getInst(s[0]);t["selected"+("M"===i?"Month":"Year")]=t["draw"+("M"===i?"Month":"Year")]=parseInt(e.options[e.selectedIndex].value,10),this._notifyChange(t),this._adjustDate(s)},_selectDay:function(t,e,i,s){var n=V(t);V(s).hasClass(this._unselectableClass)||this._isDisabledDatepicker(n[0])||((n=this._getInst(n[0])).selectedDay=n.currentDay=parseInt(V("a",s).attr("data-date")),n.selectedMonth=n.currentMonth=e,n.selectedYear=n.currentYear=i,this._selectDate(t,this._formatDate(n,n.currentDay,n.currentMonth,n.currentYear)))},_clearDate:function(t){t=V(t);this._selectDate(t,"")},_selectDate:function(t,e){var i=V(t),t=this._getInst(i[0]);e=null!=e?e:this._formatDate(t),t.input&&t.input.val(e),this._updateAlternate(t),(i=this._get(t,"onSelect"))?i.apply(t.input?t.input[0]:null,[e,t]):t.input&&t.input.trigger("change"),t.inline?this._updateDatepicker(t):(this._hideDatepicker(),this._lastInput=t.input[0],"object"!=typeof t.input[0]&&t.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(t){var e,i,s=this._get(t,"altField");s&&(e=this._get(t,"altFormat")||this._get(t,"dateFormat"),i=this._getDate(t),t=this.formatDate(e,i,this._getFormatConfig(t)),V(document).find(s).val(t))},noWeekends:function(t){t=t.getDay();return[0<t&&t<6,""]},iso8601Week:function(t){var e=new Date(t.getTime());return e.setDate(e.getDate()+4-(e.getDay()||7)),t=e.getTime(),e.setMonth(0),e.setDate(1),Math.floor(Math.round((t-e)/864e5)/7)+1},parseDate:function(e,n,t){if(null==e||null==n)throw"Invalid arguments";if(""===(n="object"==typeof n?n.toString():n+""))return null;for(var i,s,o,a=0,r=(t?t.shortYearCutoff:null)||this._defaults.shortYearCutoff,r="string"!=typeof r?r:(new Date).getFullYear()%100+parseInt(r,10),l=(t?t.dayNamesShort:null)||this._defaults.dayNamesShort,h=(t?t.dayNames:null)||this._defaults.dayNames,c=(t?t.monthNamesShort:null)||this._defaults.monthNamesShort,u=(t?t.monthNames:null)||this._defaults.monthNames,d=-1,p=-1,f=-1,g=-1,m=!1,_=function(t){t=w+1<e.length&&e.charAt(w+1)===t;return t&&w++,t},v=function(t){var e=_(t),e="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,e=new RegExp("^\\d{"+("y"===t?e:1)+","+e+"}"),e=n.substring(a).match(e);if(!e)throw"Missing number at position "+a;return a+=e[0].length,parseInt(e[0],10)},b=function(t,e,i){var s=-1,e=V.map(_(t)?i:e,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(V.each(e,function(t,e){var i=e[1];if(n.substr(a,i.length).toLowerCase()===i.toLowerCase())return s=e[0],a+=i.length,!1}),-1!==s)return s+1;throw"Unknown name at position "+a},y=function(){if(n.charAt(a)!==e.charAt(w))throw"Unexpected literal at position "+a;a++},w=0;w<e.length;w++)if(m)"'"!==e.charAt(w)||_("'")?y():m=!1;else switch(e.charAt(w)){case"d":f=v("d");break;case"D":b("D",l,h);break;case"o":g=v("o");break;case"m":p=v("m");break;case"M":p=b("M",c,u);break;case"y":d=v("y");break;case"@":d=(o=new Date(v("@"))).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"!":d=(o=new Date((v("!")-this._ticksTo1970)/1e4)).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"'":_("'")?y():m=!0;break;default:y()}if(a<n.length&&(s=n.substr(a),!/^\s+/.test(s)))throw"Extra/unparsed characters found in date: "+s;if(-1===d?d=(new Date).getFullYear():d<100&&(d+=(new Date).getFullYear()-(new Date).getFullYear()%100+(d<=r?0:-100)),-1<g)for(p=1,f=g;;){if(f<=(i=this._getDaysInMonth(d,p-1)))break;p++,f-=i}if((o=this._daylightSavingAdjust(new Date(d,p-1,f))).getFullYear()!==d||o.getMonth()+1!==p||o.getDate()!==f)throw"Invalid date";return o},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*60*60*1e7,formatDate:function(e,t,i){if(!t)return"";function s(t,e,i){var s=""+e;if(c(t))for(;s.length<i;)s="0"+s;return s}function n(t,e,i,s){return(c(t)?s:i)[e]}var o,a=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,r=(i?i.dayNames:null)||this._defaults.dayNames,l=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,h=(i?i.monthNames:null)||this._defaults.monthNames,c=function(t){t=o+1<e.length&&e.charAt(o+1)===t;return t&&o++,t},u="",d=!1;if(t)for(o=0;o<e.length;o++)if(d)"'"!==e.charAt(o)||c("'")?u+=e.charAt(o):d=!1;else switch(e.charAt(o)){case"d":u+=s("d",t.getDate(),2);break;case"D":u+=n("D",t.getDay(),a,r);break;case"o":u+=s("o",Math.round((new Date(t.getFullYear(),t.getMonth(),t.getDate()).getTime()-new Date(t.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=s("m",t.getMonth()+1,2);break;case"M":u+=n("M",t.getMonth(),l,h);break;case"y":u+=c("y")?t.getFullYear():(t.getFullYear()%100<10?"0":"")+t.getFullYear()%100;break;case"@":u+=t.getTime();break;case"!":u+=1e4*t.getTime()+this._ticksTo1970;break;case"'":c("'")?u+="'":d=!0;break;default:u+=e.charAt(o)}return u},_possibleChars:function(e){for(var t="",i=!1,s=function(t){t=n+1<e.length&&e.charAt(n+1)===t;return t&&n++,t},n=0;n<e.length;n++)if(i)"'"!==e.charAt(n)||s("'")?t+=e.charAt(n):i=!1;else switch(e.charAt(n)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":s("'")?t+="'":i=!0;break;default:t+=e.charAt(n)}return t},_get:function(t,e){return(void 0!==t.settings[e]?t.settings:this._defaults)[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(t){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(r,t,e){var i,s,t=null==t||""===t?e:"string"==typeof t?function(t){try{return V.datepicker.parseDate(V.datepicker._get(r,"dateFormat"),t,V.datepicker._getFormatConfig(r))}catch(t){}for(var e=(t.toLowerCase().match(/^c/)?V.datepicker._getDate(r):null)||new Date,i=e.getFullYear(),s=e.getMonth(),n=e.getDate(),o=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=o.exec(t);a;){switch(a[2]||"d"){case"d":case"D":n+=parseInt(a[1],10);break;case"w":case"W":n+=7*parseInt(a[1],10);break;case"m":case"M":s+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s))}a=o.exec(t)}return new Date(i,s,n)}(t):"number"==typeof t?isNaN(t)?e:(i=t,(s=new Date).setDate(s.getDate()+i),s):new Date(t.getTime());return(t=t&&"Invalid Date"===t.toString()?e:t)&&(t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)),this._daylightSavingAdjust(t)},_daylightSavingAdjust:function(t){return t?(t.setHours(12<t.getHours()?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,e=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=e.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=e.getMonth(),t.drawYear=t.selectedYear=t.currentYear=e.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){return!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay))},_attachHandlers:function(t){var e=this._get(t,"stepMonths"),i="#"+t.id.replace(/\\\\/g,"\\");t.dpDiv.find("[data-handler]").map(function(){var t={prev:function(){V.datepicker._adjustDate(i,-e,"M")},next:function(){V.datepicker._adjustDate(i,+e,"M")},hide:function(){V.datepicker._hideDatepicker()},today:function(){V.datepicker._gotoToday(i)},selectDay:function(){return V.datepicker._selectDay(i,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return V.datepicker._selectMonthYear(i,this,"M"),!1},selectYear:function(){return V.datepicker._selectMonthYear(i,this,"Y"),!1}};V(this).on(this.getAttribute("data-event"),t[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,l,h,c,u,d,p,f,g,m,_,v,b,y,w,x,k,C,D,I,T,P,M,S,H,z,A=new Date,O=this._daylightSavingAdjust(new Date(A.getFullYear(),A.getMonth(),A.getDate())),N=this._get(t,"isRTL"),E=this._get(t,"showButtonPanel"),W=this._get(t,"hideIfNoPrevNext"),F=this._get(t,"navigationAsDateFormat"),L=this._getNumberOfMonths(t),R=this._get(t,"showCurrentAtPos"),A=this._get(t,"stepMonths"),Y=1!==L[0]||1!==L[1],B=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),j=this._getMinMaxDate(t,"min"),q=this._getMinMaxDate(t,"max"),K=t.drawMonth-R,U=t.drawYear;if(K<0&&(K+=12,U--),q)for(e=this._daylightSavingAdjust(new Date(q.getFullYear(),q.getMonth()-L[0]*L[1]+1,q.getDate())),e=j&&e<j?j:e;this._daylightSavingAdjust(new Date(U,K,1))>e;)--K<0&&(K=11,U--);for(t.drawMonth=K,t.drawYear=U,R=this._get(t,"prevText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K-A,1)),this._getFormatConfig(t)):R,i=this._canAdjustMonth(t,-1,U,K)?V("<a>").attr({class:"ui-datepicker-prev ui-corner-all","data-handler":"prev","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-prev ui-corner-all ui-state-disabled",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML,R=this._get(t,"nextText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K+A,1)),this._getFormatConfig(t)):R,s=this._canAdjustMonth(t,1,U,K)?V("<a>").attr({class:"ui-datepicker-next ui-corner-all","data-handler":"next","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-next ui-corner-all ui-state-disabled",title:R}).append(V("<span>").attr("class","ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML,A=this._get(t,"currentText"),W=this._get(t,"gotoCurrent")&&t.currentDay?B:O,A=F?this.formatDate(A,W,this._getFormatConfig(t)):A,R="",t.inline||(R=V("<button>").attr({type:"button",class:"ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all","data-handler":"hide","data-event":"click"}).text(this._get(t,"closeText"))[0].outerHTML),F="",E&&(F=V("<div class='ui-datepicker-buttonpane ui-widget-content'>").append(N?R:"").append(this._isInRange(t,W)?V("<button>").attr({type:"button",class:"ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all","data-handler":"today","data-event":"click"}).text(A):"").append(N?"":R)[0].outerHTML),n=parseInt(this._get(t,"firstDay"),10),n=isNaN(n)?0:n,o=this._get(t,"showWeek"),a=this._get(t,"dayNames"),r=this._get(t,"dayNamesMin"),l=this._get(t,"monthNames"),h=this._get(t,"monthNamesShort"),c=this._get(t,"beforeShowDay"),u=this._get(t,"showOtherMonths"),d=this._get(t,"selectOtherMonths"),p=this._getDefaultDate(t),f="",m=0;m<L[0];m++){for(_="",this.maxRows=4,v=0;v<L[1];v++){if(b=this._daylightSavingAdjust(new Date(U,K,t.selectedDay)),y=" ui-corner-all",w="",Y){if(w+="<div class='ui-datepicker-group",1<L[1])switch(v){case 0:w+=" ui-datepicker-group-first",y=" ui-corner-"+(N?"right":"left");break;case L[1]-1:w+=" ui-datepicker-group-last",y=" ui-corner-"+(N?"left":"right");break;default:w+=" ui-datepicker-group-middle",y=""}w+="'>"}for(w+="<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix"+y+"'>"+(/all|left/.test(y)&&0===m?N?s:i:"")+(/all|right/.test(y)&&0===m?N?i:s:"")+this._generateMonthYearHeader(t,K,U,j,q,0<m||0<v,l,h)+"</div><table class='ui-datepicker-calendar'><thead><tr>",x=o?"<th class='ui-datepicker-week-col'>"+this._get(t,"weekHeader")+"</th>":"",g=0;g<7;g++)x+="<th scope='col'"+(5<=(g+n+6)%7?" class='ui-datepicker-week-end'":"")+"><span title='"+a[k=(g+n)%7]+"'>"+r[k]+"</span></th>";for(w+=x+"</tr></thead><tbody>",D=this._getDaysInMonth(U,K),U===t.selectedYear&&K===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,D)),C=(this._getFirstDayOfMonth(U,K)-n+7)%7,D=Math.ceil((C+D)/7),I=Y&&this.maxRows>D?this.maxRows:D,this.maxRows=I,T=this._daylightSavingAdjust(new Date(U,K,1-C)),P=0;P<I;P++){for(w+="<tr>",M=o?"<td class='ui-datepicker-week-col'>"+this._get(t,"calculateWeek")(T)+"</td>":"",g=0;g<7;g++)S=c?c.apply(t.input?t.input[0]:null,[T]):[!0,""],z=(H=T.getMonth()!==K)&&!d||!S[0]||j&&T<j||q&&q<T,M+="<td class='"+(5<=(g+n+6)%7?" ui-datepicker-week-end":"")+(H?" ui-datepicker-other-month":"")+(T.getTime()===b.getTime()&&K===t.selectedMonth&&t._keyEvent||p.getTime()===T.getTime()&&p.getTime()===b.getTime()?" "+this._dayOverClass:"")+(z?" "+this._unselectableClass+" ui-state-disabled":"")+(H&&!u?"":" "+S[1]+(T.getTime()===B.getTime()?" "+this._currentClass:"")+(T.getTime()===O.getTime()?" ui-datepicker-today":""))+"'"+(H&&!u||!S[2]?"":" title='"+S[2].replace(/'/g,"&#39;")+"'")+(z?"":" data-handler='selectDay' data-event='click' data-month='"+T.getMonth()+"' data-year='"+T.getFullYear()+"'")+">"+(H&&!u?"&#xa0;":z?"<span class='ui-state-default'>"+T.getDate()+"</span>":"<a class='ui-state-default"+(T.getTime()===O.getTime()?" ui-state-highlight":"")+(T.getTime()===B.getTime()?" ui-state-active":"")+(H?" ui-priority-secondary":"")+"' href='#' aria-current='"+(T.getTime()===B.getTime()?"true":"false")+"' data-date='"+T.getDate()+"'>"+T.getDate()+"</a>")+"</td>",T.setDate(T.getDate()+1),T=this._daylightSavingAdjust(T);w+=M+"</tr>"}11<++K&&(K=0,U++),_+=w+="</tbody></table>"+(Y?"</div>"+(0<L[0]&&v===L[1]-1?"<div class='ui-datepicker-row-break'></div>":""):"")}f+=_}return f+=F,t._keyEvent=!1,f},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var l,h,c,u,d,p,f=this._get(t,"changeMonth"),g=this._get(t,"changeYear"),m=this._get(t,"showMonthAfterYear"),_=this._get(t,"selectMonthLabel"),v=this._get(t,"selectYearLabel"),b="<div class='ui-datepicker-title'>",y="";if(o||!f)y+="<span class='ui-datepicker-month'>"+a[e]+"</span>";else{for(l=s&&s.getFullYear()===i,h=n&&n.getFullYear()===i,y+="<select class='ui-datepicker-month' aria-label='"+_+"' data-handler='selectMonth' data-event='change'>",c=0;c<12;c++)(!l||c>=s.getMonth())&&(!h||c<=n.getMonth())&&(y+="<option value='"+c+"'"+(c===e?" selected='selected'":"")+">"+r[c]+"</option>");y+="</select>"}if(m||(b+=y+(!o&&f&&g?"":"&#xa0;")),!t.yearshtml)if(t.yearshtml="",o||!g)b+="<span class='ui-datepicker-year'>"+i+"</span>";else{for(a=this._get(t,"yearRange").split(":"),u=(new Date).getFullYear(),d=(_=function(t){t=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?u+parseInt(t,10):parseInt(t,10);return isNaN(t)?u:t})(a[0]),p=Math.max(d,_(a[1]||"")),d=s?Math.max(d,s.getFullYear()):d,p=n?Math.min(p,n.getFullYear()):p,t.yearshtml+="<select class='ui-datepicker-year' aria-label='"+v+"' data-handler='selectYear' data-event='change'>";d<=p;d++)t.yearshtml+="<option value='"+d+"'"+(d===i?" selected='selected'":"")+">"+d+"</option>";t.yearshtml+="</select>",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),m&&(b+=(!o&&f&&g?"":"&#xa0;")+y),b+="</div>"},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),e=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),e=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,e)));t.selectedDay=e.getDate(),t.drawMonth=t.selectedMonth=e.getMonth(),t.drawYear=t.selectedYear=e.getFullYear(),"M"!==i&&"Y"!==i||this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),t=this._getMinMaxDate(t,"max"),e=i&&e<i?i:e;return t&&t<e?t:e},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){t=this._get(t,"numberOfMonths");return null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),n=this._daylightSavingAdjust(new Date(i,s+(e<0?e:n[0]*n[1]),1));return e<0&&n.setDate(this._getDaysInMonth(n.getFullYear(),n.getMonth())),this._isInRange(t,n)},_isInRange:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=null,o=null,a=this._get(t,"yearRange");return a&&(t=a.split(":"),a=(new Date).getFullYear(),n=parseInt(t[0],10),o=parseInt(t[1],10),t[0].match(/[+\-].*/)&&(n+=a),t[1].match(/[+\-].*/)&&(o+=a)),(!i||e.getTime()>=i.getTime())&&(!s||e.getTime()<=s.getTime())&&(!n||e.getFullYear()>=n)&&(!o||e.getFullYear()<=o)},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return{shortYearCutoff:e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);e=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),e,this._getFormatConfig(t))}}),V.fn.datepicker=function(t){if(!this.length)return this;V.datepicker.initialized||(V(document).on("mousedown",V.datepicker._checkExternalClick),V.datepicker.initialized=!0),0===V("#"+V.datepicker._mainDivId).length&&V("body").append(V.datepicker.dpDiv);var e=Array.prototype.slice.call(arguments,1);return"string"==typeof t&&("isDisabled"===t||"getDate"===t||"widget"===t)||"option"===t&&2===arguments.length&&"string"==typeof arguments[1]?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this[0]].concat(e)):this.each(function(){"string"==typeof t?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this].concat(e)):V.datepicker._attachDatepicker(this,t)})},V.datepicker=new st,V.datepicker.initialized=!1,V.datepicker.uuid=(new Date).getTime(),V.datepicker.version="1.13.2";V.datepicker,V.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var rt=!1;V(document).on("mouseup",function(){rt=!1});V.widget("ui.mouse",{version:"1.13.2",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(t){if(!0===V.data(t.target,e.widgetName+".preventClickEvent"))return V.removeData(t.target,e.widgetName+".preventClickEvent"),t.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(!rt){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var e=this,i=1===t.which,s=!("string"!=typeof this.options.cancel||!t.target.nodeName)&&V(t.target).closest(this.options.cancel).length;return i&&!s&&this._mouseCapture(t)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(t),!this._mouseStarted)?(t.preventDefault(),!0):(!0===V.data(t.target,this.widgetName+".preventClickEvent")&&V.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return e._mouseMove(t)},this._mouseUpDelegate=function(t){return e._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),rt=!0)):!0}},_mouseMove:function(t){if(this._mouseMoved){if(V.ui.ie&&(!document.documentMode||document.documentMode<9)&&!t.button)return this._mouseUp(t);if(!t.which)if(t.originalEvent.altKey||t.originalEvent.ctrlKey||t.originalEvent.metaKey||t.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(t)}return(t.which||t.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,t),this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted)},_mouseUp:function(t){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&V.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,rt=!1,t.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),V.ui.plugin={add:function(t,e,i){var s,n=V.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n<o.length;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},V.ui.safeBlur=function(t){t&&"body"!==t.nodeName.toLowerCase()&&V(t).trigger("blur")};V.widget("ui.draggable",V.ui.mouse,{version:"1.13.2",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(".ui-draggable-dragging")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0<V(t.target).closest(".ui-resizable-handle").length)&&(this.handle=this._getHandle(t),!!this.handle&&(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?"iframe":e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=V(this);return V("<div>").css("position","absolute").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=V.ui.safeActiveElement(this.document[0]);V(t.target).closest(e).length||V.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),V.ui.ddmanager&&(V.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0<this.helper.parents().filter(function(){return"fixed"===V(this).css("position")}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger("start",t)?(this._clear(),!1):(this._cacheHelperProportions(),V.ui.ddmanager&&!e.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),V.ui.ddmanager&&V.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!e){e=this._uiHash();if(!1===this._trigger("drag",t,e))return this._mouseUp(new V.Event("mouseup",t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,i=!1;return V.ui.ddmanager&&!this.options.dropBehaviour&&(i=V.ui.ddmanager.drop(this,t)),this.dropped&&(i=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!i||"valid"===this.options.revert&&i||!0===this.options.revert||"function"==typeof this.options.revert&&this.options.revert.call(this.element,i)?V(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger("stop",t)&&e._clear()}):!1!==this._trigger("stop",t)&&this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),V.ui.ddmanager&&V.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&&this.element.trigger("focus"),V.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new V.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!V(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(t){var e=this.options,i="function"==typeof e.helper,t=i?V(e.helper.apply(this.element[0],[t])):"clone"===e.helper?this.element.clone().removeAttr("id"):this.element;return t.parents("body").length||t.appendTo("parent"===e.appendTo?this.element[0].parentNode:e.appendTo),i&&t[0]===this.element[0]&&this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css("position"))||t.css("position","absolute"),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==e&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i,s=this.options,n=this.document[0];this.relativeContainer=null,s.containment?"window"!==s.containment?"document"!==s.containment?s.containment.constructor!==Array?("parent"===s.containment&&(s.containment=this.helper[0].parentNode),(i=(e=V(s.containment))[0])&&(t=/(scroll|auto)/.test(e.css("overflow")),this.containment=[(parseInt(e.css("borderLeftWidth"),10)||0)+(parseInt(e.css("paddingLeft"),10)||0),(parseInt(e.css("borderTopWidth"),10)||0)+(parseInt(e.css("paddingTop"),10)||0),(t?Math.max(i.scrollWidth,i.offsetWidth):i.offsetWidth)-(parseInt(e.css("borderRightWidth"),10)||0)-(parseInt(e.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(i.scrollHeight,i.offsetHeight):i.offsetHeight)-(parseInt(e.css("borderBottomWidth"),10)||0)-(parseInt(e.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=e)):this.containment=s.containment:this.containment=[0,0,V(n).width()-this.helperProportions.width-this.margins.left,(V(n).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=[V(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,V(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,V(window).scrollLeft()+V(window).width()-this.helperProportions.width-this.margins.left,V(window).scrollTop()+(V(window).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,t=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:t?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:t?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s=this.options,n=this._isRootNode(this.scrollParent[0]),o=t.pageX,a=t.pageY;return n&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(i=this.relativeContainer?(i=this.relativeContainer.offset(),[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]):this.containment,t.pageX-this.offset.click.left<i[0]&&(o=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(a=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(o=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(a=i[3]+this.offset.click.top)),s.grid&&(t=s.grid[1]?this.originalPageY+Math.round((a-this.originalPageY)/s.grid[1])*s.grid[1]:this.originalPageY,a=!i||t-this.offset.click.top>=i[1]||t-this.offset.click.top>i[3]?t:t-this.offset.click.top>=i[1]?t-s.grid[1]:t+s.grid[1],t=s.grid[0]?this.originalPageX+Math.round((o-this.originalPageX)/s.grid[0])*s.grid[0]:this.originalPageX,o=!i||t-this.offset.click.left>=i[0]||t-this.offset.click.left>i[2]?t:t-this.offset.click.left>=i[0]?t-s.grid[0]:t+s.grid[0]),"y"===s.axis&&(o=this.originalPageX),"x"===s.axis&&(a=this.originalPageY)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:n?0:this.offset.scroll.top),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:n?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(t,e,i){return i=i||this._uiHash(),V.ui.plugin.call(this,t,[e,i,this],!0),/^(drag|start|stop)/.test(t)&&(this.positionAbs=this._convertPositionTo("absolute"),i.offset=this.positionAbs),V.Widget.prototype._trigger.call(this,t,e,i)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),V.ui.plugin.add("draggable","connectToSortable",{start:function(e,t,i){var s=V.extend({},t,{item:i.element});i.sortables=[],V(i.options.connectToSortable).each(function(){var t=V(this).sortable("instance");t&&!t.options.disabled&&(i.sortables.push(t),t.refreshPositions(),t._trigger("activate",e,s))})},stop:function(e,t,i){var s=V.extend({},t,{item:i.element});i.cancelHelperRemoval=!1,V.each(i.sortables,function(){var t=this;t.isOver?(t.isOver=0,i.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,s))})},drag:function(i,s,n){V.each(n.sortables,function(){var t=!1,e=this;e.positionAbs=n.positionAbs,e.helperProportions=n.helperProportions,e.offset.click=n.offset.click,e._intersectsWith(e.containerCache)&&(t=!0,V.each(n.sortables,function(){return this.positionAbs=n.positionAbs,this.helperProportions=n.helperProportions,this.offset.click=n.offset.click,t=this!==e&&this._intersectsWith(this.containerCache)&&V.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,n._parent=s.helper.parent(),e.currentItem=s.helper.appendTo(e.element).data("ui-sortable-item",!0),e.options._helper=e.options.helper,e.options.helper=function(){return s.helper[0]},i.target=e.currentItem[0],e._mouseCapture(i,!0),e._mouseStart(i,!0,!0),e.offset.click.top=n.offset.click.top,e.offset.click.left=n.offset.click.left,e.offset.parent.left-=n.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=n.offset.parent.top-e.offset.parent.top,n._trigger("toSortable",i),n.dropped=e.element,V.each(n.sortables,function(){this.refreshPositions()}),n.currentItem=n.element,e.fromOutside=n),e.currentItem&&(e._mouseDrag(i),s.position=e.position)):e.isOver&&(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger("out",i,e._uiHash(e)),e._mouseStop(i,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&&e.placeholder.remove(),s.helper.appendTo(n._parent),n._refreshOffsets(i),s.position=n._generatePosition(i,!0),n._trigger("fromSortable",i),n.dropped=!1,V.each(n.sortables,function(){this.refreshPositions()}))})}}),V.ui.plugin.add("draggable","cursor",{start:function(t,e,i){var s=V("body"),i=i.options;s.css("cursor")&&(i._cursor=s.css("cursor")),s.css("cursor",i.cursor)},stop:function(t,e,i){i=i.options;i._cursor&&V("body").css("cursor",i._cursor)}}),V.ui.plugin.add("draggable","opacity",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("opacity")&&(i._opacity=e.css("opacity")),e.css("opacity",i.opacity)},stop:function(t,e,i){i=i.options;i._opacity&&V(e.helper).css("opacity",i._opacity)}}),V.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(t,e,i){var s=i.options,n=!1,o=i.scrollParentNotHidden[0],a=i.document[0];o!==a&&"HTML"!==o.tagName?(s.axis&&"x"===s.axis||(i.overflowOffset.top+o.offsetHeight-t.pageY<s.scrollSensitivity?o.scrollTop=n=o.scrollTop+s.scrollSpeed:t.pageY-i.overflowOffset.top<s.scrollSensitivity&&(o.scrollTop=n=o.scrollTop-s.scrollSpeed)),s.axis&&"y"===s.axis||(i.overflowOffset.left+o.offsetWidth-t.pageX<s.scrollSensitivity?o.scrollLeft=n=o.scrollLeft+s.scrollSpeed:t.pageX-i.overflowOffset.left<s.scrollSensitivity&&(o.scrollLeft=n=o.scrollLeft-s.scrollSpeed))):(s.axis&&"x"===s.axis||(t.pageY-V(a).scrollTop()<s.scrollSensitivity?n=V(a).scrollTop(V(a).scrollTop()-s.scrollSpeed):V(window).height()-(t.pageY-V(a).scrollTop())<s.scrollSensitivity&&(n=V(a).scrollTop(V(a).scrollTop()+s.scrollSpeed))),s.axis&&"y"===s.axis||(t.pageX-V(a).scrollLeft()<s.scrollSensitivity?n=V(a).scrollLeft(V(a).scrollLeft()-s.scrollSpeed):V(window).width()-(t.pageX-V(a).scrollLeft())<s.scrollSensitivity&&(n=V(a).scrollLeft(V(a).scrollLeft()+s.scrollSpeed)))),!1!==n&&V.ui.ddmanager&&!s.dropBehaviour&&V.ui.ddmanager.prepareOffsets(i,t)}}),V.ui.plugin.add("draggable","snap",{start:function(t,e,i){var s=i.options;i.snapElements=[],V(s.snap.constructor!==String?s.snap.items||":data(ui-draggable)":s.snap).each(function(){var t=V(this),e=t.offset();this!==i.element[0]&&i.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,i){for(var s,n,o,a,r,l,h,c,u,d=i.options,p=d.snapTolerance,f=e.offset.left,g=f+i.helperProportions.width,m=e.offset.top,_=m+i.helperProportions.height,v=i.snapElements.length-1;0<=v;v--)l=(r=i.snapElements[v].left-i.margins.left)+i.snapElements[v].width,c=(h=i.snapElements[v].top-i.margins.top)+i.snapElements[v].height,g<r-p||l+p<f||_<h-p||c+p<m||!V.contains(i.snapElements[v].item.ownerDocument,i.snapElements[v].item)?(i.snapElements[v].snapping&&i.options.snap.release&&i.options.snap.release.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=!1):("inner"!==d.snapMode&&(s=Math.abs(h-_)<=p,n=Math.abs(c-m)<=p,o=Math.abs(r-g)<=p,a=Math.abs(l-f)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h-i.helperProportions.height,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r-i.helperProportions.width}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l}).left)),u=s||n||o||a,"outer"!==d.snapMode&&(s=Math.abs(h-m)<=p,n=Math.abs(c-_)<=p,o=Math.abs(r-f)<=p,a=Math.abs(l-g)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c-i.helperProportions.height,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l-i.helperProportions.width}).left)),!i.snapElements[v].snapping&&(s||n||o||a||u)&&i.options.snap.snap&&i.options.snap.snap.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=s||n||o||a||u)}}),V.ui.plugin.add("draggable","stack",{start:function(t,e,i){var s,i=i.options,i=V.makeArray(V(i.stack)).sort(function(t,e){return(parseInt(V(t).css("zIndex"),10)||0)-(parseInt(V(e).css("zIndex"),10)||0)});i.length&&(s=parseInt(V(i[0]).css("zIndex"),10)||0,V(i).each(function(t){V(this).css("zIndex",s+t)}),this.css("zIndex",s+i.length))}}),V.ui.plugin.add("draggable","zIndex",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("zIndex")&&(i._zIndex=e.css("zIndex")),e.css("zIndex",i.zIndex)},stop:function(t,e,i){i=i.options;i._zIndex&&V(e.helper).css("zIndex",i._zIndex)}});V.ui.draggable;V.widget("ui.resizable",V.ui.mouse,{version:"1.13.2",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(t,e){if("hidden"===V(t).css("overflow"))return!1;var i=e&&"left"===e?"scrollLeft":"scrollTop",e=!1;if(0<t[i])return!0;try{t[i]=1,e=0<t[i],t[i]=0}catch(t){}return e},_create:function(){var t,e=this.options,i=this;this._addClass("ui-resizable"),V.extend(this,{_aspectRatio:!!e.aspectRatio,aspectRatio:e.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:e.helper||e.ghost||e.animate?e.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(V("<div class='ui-wrapper'></div>").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&V(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){V(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,a=this;if(this.handles=o.handles||(V(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=V(),this._addedHandles=V(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e<i.length;e++)s="ui-resizable-"+(t=String.prototype.trim.call(i[e])),n=V("<div>"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=V(this.handles[e]),this._on(this.handles[e],{mousedown:a._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=V(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){a.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),a.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=V(this.handles[e])[0])!==t.target&&!V.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=V(s.containment).scrollLeft()||0,i+=V(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=V(".ui-resizable-"+this.axis).css("cursor"),V("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),V.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(V.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),V("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),s<n.maxWidth&&(n.maxWidth=s),t<n.maxHeight&&(n.maxHeight=t)),this._vBoundaries=n},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,l=this.originalPosition.top+this.originalSize.height,h=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&h&&(t.left=r-e.minWidth),s&&h&&(t.left=r-e.maxWidth),a&&i&&(t.top=l-e.minHeight),n&&i&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e<this._proportionallyResizeElements.length;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var t=this.element,e=this.options;this.elementOffset=t.offset(),this._helper?(this.helper=this.helper||V("<div></div>").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){V.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),V.ui.plugin.add("resizable","animate",{stop:function(e){var i=V(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,a=n?0:i.sizeDiff.width,n={width:i.size.width-a,height:i.size.height-o},a=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(V.extend(n,o&&a?{top:o,left:a}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&V(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),V.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=V(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,a=o instanceof V?o.get(0):/parent/.test(o)?e.parent().get(0):o;a&&(n.containerElement=V(a),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:V(document),left:0,top:0,width:V(document).width(),height:V(document).height()||document.body.parentNode.scrollHeight}):(i=V(a),s=[],V(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(a,"left")?a.scrollWidth:o,e=n._hasScroll(a)?a.scrollHeight:e,n.parentData={element:a,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=V(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,a={top:0,left:0},r=e.containerElement,t=!0;r[0]!==document&&/static/.test(r.css("position"))&&(a=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-a.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-a.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-a.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=V(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=V(t.helper),a=o.offset(),r=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o})}}),V.ui.plugin.add("resizable","alsoResize",{start:function(){var t=V(this).resizable("instance").options;V(t.alsoResize).each(function(){var t=V(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=V(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,a={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};V(s.alsoResize).each(function(){var t=V(this),s=V(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];V.each(e,function(t,e){var i=(s[e]||0)+(a[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){V(this).removeData("ui-resizable-alsoresize")}}),V.ui.plugin.add("resizable","ghost",{start:function(){var t=V(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==V.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=V(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=V(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),V.ui.plugin.add("resizable","grid",{resize:function(){var t,e=V(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,a=e.axis,r="number"==typeof i.grid?[i.grid,i.grid]:i.grid,l=r[0]||1,h=r[1]||1,c=Math.round((s.width-n.width)/l)*l,u=Math.round((s.height-n.height)/h)*h,d=n.width+c,p=n.height+u,f=i.maxWidth&&i.maxWidth<d,g=i.maxHeight&&i.maxHeight<p,m=i.minWidth&&i.minWidth>d,s=i.minHeight&&i.minHeight>p;i.grid=r,m&&(d+=l),s&&(p+=h),f&&(d-=l),g&&(p-=h),/^(se|s|e)$/.test(a)?(e.size.width=d,e.size.height=p):/^(ne)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.top=o.top-u):/^(sw)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.left=o.left-c):((p-h<=0||d-l<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0<p-h?(e.size.height=p,e.position.top=o.top-u):(p=h-t.height,e.size.height=p,e.position.top=o.top+n.height-p),0<d-l?(e.size.width=d,e.position.left=o.left-c):(d=l-t.width,e.size.width=d,e.position.left=o.left+n.width-d))}});V.ui.resizable;V.widget("ui.dialog",{version:"1.13.2",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var e=V(this).css(t).offset().top;e<0&&V(this).css("top",t.top-e)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&V.fn.draggable&&this._makeDraggable(),this.options.resizable&&V.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var t=this.options.appendTo;return t&&(t.jquery||t.nodeType)?V(t):this.document.find(t||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),(t=e.parent.children().eq(e.index)).length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:V.noop,enable:V.noop,close:function(t){var e=this;this._isOpen&&!1!==this._trigger("beforeClose",t)&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||V.ui.safeBlur(V.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){e._trigger("close",t)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,e){var i=!1,s=this.uiDialog.siblings(".ui-front:visible").map(function(){return+V(this).css("z-index")}).get(),s=Math.max.apply(null,s);return s>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",s+1),i=!0),i&&!e&&this._trigger("focus",t),i},open:function(){var t=this;this._isOpen?this._moveToTop()&&this._focusTabbable():(this._isOpen=!0,this.opener=V(V.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){t._focusTabbable(),t._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"))},_focusTabbable:function(){var t=this._focusedElement;(t=!(t=!(t=!(t=!(t=t||this.element.find("[autofocus]")).length?this.element.find(":tabbable"):t).length?this.uiDialogButtonPane.find(":tabbable"):t).length?this.uiDialogTitlebarClose.filter(":tabbable"):t).length?this.uiDialog:t).eq(0).trigger("focus")},_restoreTabbableFocus:function(){var t=V.ui.safeActiveElement(this.document[0]);this.uiDialog[0]===t||V.contains(this.uiDialog[0],t)||this._focusTabbable()},_keepFocus:function(t){t.preventDefault(),this._restoreTabbableFocus(),this._delay(this._restoreTabbableFocus)},_createWrapper:function(){this.uiDialog=V("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(t){if(this.options.closeOnEscape&&!t.isDefaultPrevented()&&t.keyCode&&t.keyCode===V.ui.keyCode.ESCAPE)return t.preventDefault(),void this.close(t);var e,i,s;t.keyCode!==V.ui.keyCode.TAB||t.isDefaultPrevented()||(e=this.uiDialog.find(":tabbable"),i=e.first(),s=e.last(),t.target!==s[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==i[0]&&t.target!==this.uiDialog[0]||!t.shiftKey||(this._delay(function(){s.trigger("focus")}),t.preventDefault()):(this._delay(function(){i.trigger("focus")}),t.preventDefault()))},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var t;this.uiDialogTitlebar=V("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(t){V(t.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=V("<button type='button'></button>").button({label:V("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),t=V("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(t,"ui-dialog-title"),this._title(t),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":t.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html("&#160;")},_createButtonPane:function(){this.uiDialogButtonPane=V("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=V("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var s=this,t=this.options.buttons;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),V.isEmptyObject(t)||Array.isArray(t)&&!t.length?this._removeClass(this.uiDialog,"ui-dialog-buttons"):(V.each(t,function(t,e){var i;e=V.extend({type:"button"},e="function"==typeof e?{click:e,text:t}:e),i=e.click,t={icon:e.icon,iconPosition:e.iconPosition,showLabel:e.showLabel,icons:e.icons,text:e.text},delete e.click,delete e.icon,delete e.iconPosition,delete e.showLabel,delete e.icons,"boolean"==typeof e.text&&delete e.text,V("<button></button>",e).button(t).appendTo(s.uiButtonSet).on("click",function(){i.apply(s.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog))},_makeDraggable:function(){var n=this,o=this.options;function a(t){return{position:t.position,offset:t.offset}}this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(t,e){n._addClass(V(this),"ui-dialog-dragging"),n._blockFrames(),n._trigger("dragStart",t,a(e))},drag:function(t,e){n._trigger("drag",t,a(e))},stop:function(t,e){var i=e.offset.left-n.document.scrollLeft(),s=e.offset.top-n.document.scrollTop();o.position={my:"left top",at:"left"+(0<=i?"+":"")+i+" top"+(0<=s?"+":"")+s,of:n.window},n._removeClass(V(this),"ui-dialog-dragging"),n._unblockFrames(),n._trigger("dragStop",t,a(e))}})},_makeResizable:function(){var n=this,o=this.options,t=o.resizable,e=this.uiDialog.css("position"),t="string"==typeof t?t:"n,e,s,w,se,sw,ne,nw";function a(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:o.maxWidth,maxHeight:o.maxHeight,minWidth:o.minWidth,minHeight:this._minHeight(),handles:t,start:function(t,e){n._addClass(V(this),"ui-dialog-resizing"),n._blockFrames(),n._trigger("resizeStart",t,a(e))},resize:function(t,e){n._trigger("resize",t,a(e))},stop:function(t,e){var i=n.uiDialog.offset(),s=i.left-n.document.scrollLeft(),i=i.top-n.document.scrollTop();o.height=n.uiDialog.height(),o.width=n.uiDialog.width(),o.position={my:"left top",at:"left"+(0<=s?"+":"")+s+" top"+(0<=i?"+":"")+i,of:n.window},n._removeClass(V(this),"ui-dialog-resizing"),n._unblockFrames(),n._trigger("resizeStop",t,a(e))}}).css("position",e)},_trackFocus:function(){this._on(this.widget(),{focusin:function(t){this._makeFocusTarget(),this._focusedElement=V(t.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var t=this._trackingInstances(),e=V.inArray(this,t);-1!==e&&t.splice(e,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||this.document.data("ui-dialog-instances",t=[]),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(t){var i=this,s=!1,n={};V.each(t,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(t,e){var i,s=this.uiDialog;"disabled"!==t&&(this._super(t,e),"appendTo"===t&&this.uiDialog.appendTo(this._appendTo()),"buttons"===t&&this._createButtons(),"closeText"===t&&this.uiDialogTitlebarClose.button({label:V("<a>").text(""+this.options.closeText).html()}),"draggable"===t&&((i=s.is(":data(ui-draggable)"))&&!e&&s.draggable("destroy"),!i&&e&&this._makeDraggable()),"position"===t&&this._position(),"resizable"===t&&((i=s.is(":data(ui-resizable)"))&&!e&&s.resizable("destroy"),i&&"string"==typeof e&&s.resizable("option","handles",e),i||!1===e||this._makeResizable()),"title"===t&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var t=V(this);return V("<div>").css({position:"absolute",width:t.outerWidth(),height:t.outerHeight()}).appendTo(t.parent()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(t){return!!V(t.target).closest(".ui-dialog").length||!!V(t.target).closest(".ui-datepicker").length},_createOverlay:function(){var i,s;this.options.modal&&(i=V.fn.jquery.substring(0,4),s=!0,this._delay(function(){s=!1}),this.document.data("ui-dialog-overlays")||this.document.on("focusin.ui-dialog",function(t){var e;s||((e=this._trackingInstances()[0])._allowInteraction(t)||(t.preventDefault(),e._focusTabbable(),"3.4."!==i&&"3.5."!==i||e._delay(e._restoreTabbableFocus)))}.bind(this)),this.overlay=V("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1))},_destroyOverlay:function(){var t;this.options.modal&&this.overlay&&((t=this.document.data("ui-dialog-overlays")-1)?this.document.data("ui-dialog-overlays",t):(this.document.off("focusin.ui-dialog"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null)}}),!1!==V.uiBackCompat&&V.widget("ui.dialog",V.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}});V.ui.dialog;function lt(t,e,i){return e<=t&&t<e+i}V.widget("ui.droppable",{version:"1.13.2",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var t,e=this.options,i=e.accept;this.isover=!1,this.isout=!0,this.accept="function"==typeof i?i:function(t){return t.is(i)},this.proportions=function(){if(!arguments.length)return t=t||{width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};t=arguments[0]},this._addToManager(e.scope),e.addClasses&&this._addClass("ui-droppable")},_addToManager:function(t){V.ui.ddmanager.droppables[t]=V.ui.ddmanager.droppables[t]||[],V.ui.ddmanager.droppables[t].push(this)},_splice:function(t){for(var e=0;e<t.length;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var t=V.ui.ddmanager.droppables[this.options.scope];this._splice(t)},_setOption:function(t,e){var i;"accept"===t?this.accept="function"==typeof e?e:function(t){return t.is(e)}:"scope"===t&&(i=V.ui.ddmanager.droppables[this.options.scope],this._splice(i),this._addToManager(e)),this._super(t,e)},_activate:function(t){var e=V.ui.ddmanager.current;this._addActiveClass(),e&&this._trigger("activate",t,this.ui(e))},_deactivate:function(t){var e=V.ui.ddmanager.current;this._removeActiveClass(),e&&this._trigger("deactivate",t,this.ui(e))},_over:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._addHoverClass(),this._trigger("over",t,this.ui(e)))},_out:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._removeHoverClass(),this._trigger("out",t,this.ui(e)))},_drop:function(e,t){var i=t||V.ui.ddmanager.current,s=!1;return!(!i||(i.currentItem||i.element)[0]===this.element[0])&&(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var t=V(this).droppable("instance");if(t.options.greedy&&!t.options.disabled&&t.options.scope===i.options.scope&&t.accept.call(t.element[0],i.currentItem||i.element)&&V.ui.intersect(i,V.extend(t,{offset:t.element.offset()}),t.options.tolerance,e))return!(s=!0)}),!s&&(!!this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(i)),this.element)))},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}}),V.ui.intersect=function(t,e,i,s){if(!e.offset)return!1;var n=(t.positionAbs||t.position.absolute).left+t.margins.left,o=(t.positionAbs||t.position.absolute).top+t.margins.top,a=n+t.helperProportions.width,r=o+t.helperProportions.height,l=e.offset.left,h=e.offset.top,c=l+e.proportions().width,u=h+e.proportions().height;switch(i){case"fit":return l<=n&&a<=c&&h<=o&&r<=u;case"intersect":return l<n+t.helperProportions.width/2&&a-t.helperProportions.width/2<c&&h<o+t.helperProportions.height/2&&r-t.helperProportions.height/2<u;case"pointer":return lt(s.pageY,h,e.proportions().height)&&lt(s.pageX,l,e.proportions().width);case"touch":return(h<=o&&o<=u||h<=r&&r<=u||o<h&&u<r)&&(l<=n&&n<=c||l<=a&&a<=c||n<l&&c<a);default:return!1}},!(V.ui.ddmanager={current:null,droppables:{default:[]},prepareOffsets:function(t,e){var i,s,n=V.ui.ddmanager.droppables[t.options.scope]||[],o=e?e.type:null,a=(t.currentItem||t.element).find(":data(ui-droppable)").addBack();t:for(i=0;i<n.length;i++)if(!(n[i].options.disabled||t&&!n[i].accept.call(n[i].element[0],t.currentItem||t.element))){for(s=0;s<a.length;s++)if(a[s]===n[i].element[0]){n[i].proportions().height=0;continue t}n[i].visible="none"!==n[i].element.css("display"),n[i].visible&&("mousedown"===o&&n[i]._activate.call(n[i],e),n[i].offset=n[i].element.offset(),n[i].proportions({width:n[i].element[0].offsetWidth,height:n[i].element[0].offsetHeight}))}},drop:function(t,e){var i=!1;return V.each((V.ui.ddmanager.droppables[t.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&V.ui.intersect(t,this,this.options.tolerance,e)&&(i=this._drop.call(this,e)||i),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,e)))}),i},dragStart:function(t,e){t.element.parentsUntil("body").on("scroll.droppable",function(){t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)})},drag:function(n,o){n.options.refreshPositions&&V.ui.ddmanager.prepareOffsets(n,o),V.each(V.ui.ddmanager.droppables[n.options.scope]||[],function(){var t,e,i,s;this.options.disabled||this.greedyChild||!this.visible||(s=!(i=V.ui.intersect(n,this,this.options.tolerance,o))&&this.isover?"isout":i&&!this.isover?"isover":null)&&(this.options.greedy&&(e=this.options.scope,(i=this.element.parents(":data(ui-droppable)").filter(function(){return V(this).droppable("instance").options.scope===e})).length&&((t=V(i[0]).droppable("instance")).greedyChild="isover"===s)),t&&"isover"===s&&(t.isover=!1,t.isout=!0,t._out.call(t,o)),this[s]=!0,this["isout"===s?"isover":"isout"]=!1,this["isover"===s?"_over":"_out"].call(this,o),t&&"isout"===s&&(t.isout=!1,t.isover=!0,t._over.call(t,o)))})},dragStop:function(t,e){t.element.parentsUntil("body").off("scroll.droppable"),t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)}})!==V.uiBackCompat&&V.widget("ui.droppable",V.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}});V.ui.droppable,V.widget("ui.progressbar",{version:"1.13.2",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=V("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){if(void 0===t)return this.options.value;this.options.value=this._constrainedValue(t),this._refreshValue()},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=!1===t,"number"!=typeof t&&(t=0),!this.indeterminate&&Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var t=this.options.value,e=this._percentage();this.valueDiv.toggle(this.indeterminate||t>this.min).width(e.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,t===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=V("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":t}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==t&&(this.oldValue=t,this._trigger("change")),t===this.options.max&&this._trigger("complete")}}),V.widget("ui.selectable",V.ui.mouse,{version:"1.13.2",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var i=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){i.elementPos=V(i.element[0]).offset(),i.selectees=V(i.options.filter,i.element[0]),i._addClass(i.selectees,"ui-selectee"),i.selectees.each(function(){var t=V(this),e=t.offset(),e={left:e.left-i.elementPos.left,top:e.top-i.elementPos.top};V.data(this,"selectable-item",{element:this,$element:t,left:e.left,top:e.top,right:e.left+t.outerWidth(),bottom:e.top+t.outerHeight(),startselected:!1,selected:t.hasClass("ui-selected"),selecting:t.hasClass("ui-selecting"),unselecting:t.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=V("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(i){var s=this,t=this.options;this.opos=[i.pageX,i.pageY],this.elementPos=V(this.element[0]).offset(),this.options.disabled||(this.selectees=V(t.filter,this.element[0]),this._trigger("start",i),V(t.appendTo).append(this.helper),this.helper.css({left:i.pageX,top:i.pageY,width:0,height:0}),t.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var t=V.data(this,"selectable-item");t.startselected=!0,i.metaKey||i.ctrlKey||(s._removeClass(t.$element,"ui-selected"),t.selected=!1,s._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,s._trigger("unselecting",i,{unselecting:t.element}))}),V(i.target).parents().addBack().each(function(){var t,e=V.data(this,"selectable-item");if(e)return t=!i.metaKey&&!i.ctrlKey||!e.$element.hasClass("ui-selected"),s._removeClass(e.$element,t?"ui-unselecting":"ui-selected")._addClass(e.$element,t?"ui-selecting":"ui-unselecting"),e.unselecting=!t,e.selecting=t,(e.selected=t)?s._trigger("selecting",i,{selecting:e.element}):s._trigger("unselecting",i,{unselecting:e.element}),!1}))},_mouseDrag:function(s){if(this.dragged=!0,!this.options.disabled){var t,n=this,o=this.options,a=this.opos[0],r=this.opos[1],l=s.pageX,h=s.pageY;return l<a&&(t=l,l=a,a=t),h<r&&(t=h,h=r,r=t),this.helper.css({left:a,top:r,width:l-a,height:h-r}),this.selectees.each(function(){var t=V.data(this,"selectable-item"),e=!1,i={};t&&t.element!==n.element[0]&&(i.left=t.left+n.elementPos.left,i.right=t.right+n.elementPos.left,i.top=t.top+n.elementPos.top,i.bottom=t.bottom+n.elementPos.top,"touch"===o.tolerance?e=!(i.left>l||i.right<a||i.top>h||i.bottom<r):"fit"===o.tolerance&&(e=i.left>a&&i.right<l&&i.top>r&&i.bottom<h),e?(t.selected&&(n._removeClass(t.$element,"ui-selected"),t.selected=!1),t.unselecting&&(n._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1),t.selecting||(n._addClass(t.$element,"ui-selecting"),t.selecting=!0,n._trigger("selecting",s,{selecting:t.element}))):(t.selecting&&((s.metaKey||s.ctrlKey)&&t.startselected?(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,n._addClass(t.$element,"ui-selected"),t.selected=!0):(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,t.startselected&&(n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0),n._trigger("unselecting",s,{unselecting:t.element}))),t.selected&&(s.metaKey||s.ctrlKey||t.startselected||(n._removeClass(t.$element,"ui-selected"),t.selected=!1,n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,n._trigger("unselecting",s,{unselecting:t.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,V(".ui-unselecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1,t.startselected=!1,i._trigger("unselected",e,{unselected:t.element})}),V(".ui-selecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-selecting")._addClass(t.$element,"ui-selected"),t.selecting=!1,t.selected=!0,t.startselected=!0,i._trigger("selected",e,{selected:t.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),V.widget("ui.selectmenu",[V.ui.formResetMixin,{version:"1.13.2",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var t=this.element.uniqueId().attr("id");this.ids={element:t,button:t+"-button",menu:t+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=V()},_drawButton:function(){var t,e=this,i=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.trigger("focus"),t.preventDefault()}}),this.element.hide(),this.button=V("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),t=V("<span>").appendTo(this.button),this._addClass(t,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(i).appendTo(this.button),!1!==this.options.width&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){e._rendered||e._refreshMenu()})},_drawMenu:function(){var i=this;this.menu=V("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=V("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,e){t.preventDefault(),i._setSelection(),i._select(e.item.data("ui-selectmenu-item"),t)},focus:function(t,e){e=e.item.data("ui-selectmenu-item");null!=i.focusIndex&&e.index!==i.focusIndex&&(i._trigger("focus",t,{item:e}),i.isOpen||i._select(e,t)),i.focusIndex=e.index,i.button.attr("aria-activedescendant",i.menuItems.eq(e.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t=this.element.find("option");this.menu.empty(),this._parseOptions(t),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,t.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(V.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(t){var e=V("<span>");return this._setText(e,t.label),this._addClass(e,"ui-selectmenu-text"),e},_renderMenu:function(s,t){var n=this,o="";V.each(t,function(t,e){var i;e.optgroup!==o&&(i=V("<li>",{text:e.optgroup}),n._addClass(i,"ui-selectmenu-optgroup","ui-menu-divider"+(e.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),i.appendTo(s),o=e.optgroup),n._renderItemData(s,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(t,e){var i=V("<li>"),s=V("<div>",{title:e.element.attr("title")});return e.disabled&&this._addClass(i,null,"ui-state-disabled"),this._setText(s,e.label),i.append(s).appendTo(t)},_setText:function(t,e){e?t.text(e):t.html("&#160;")},_move:function(t,e){var i,s=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),s+=":not(.ui-state-disabled)"),(s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](s).eq(-1):i[t+"All"](s).eq(0)).length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?((t=window.getSelection()).removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.trigger("focus"))},_documentClick:{mousedown:function(t){this.isOpen&&(V(t.target).closest(".ui-selectmenu-menu, #"+V.escapeSelector(this.ids.button)).length||this.close(t))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection()).rangeCount&&(this.range=t.getRangeAt(0)):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(t){var e=!0;switch(t.keyCode){case V.ui.keyCode.TAB:case V.ui.keyCode.ESCAPE:this.close(t),e=!1;break;case V.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(t);break;case V.ui.keyCode.UP:t.altKey?this._toggle(t):this._move("prev",t);break;case V.ui.keyCode.DOWN:t.altKey?this._toggle(t):this._move("next",t);break;case V.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(t):this._toggle(t);break;case V.ui.keyCode.LEFT:this._move("prev",t);break;case V.ui.keyCode.RIGHT:this._move("next",t);break;case V.ui.keyCode.HOME:case V.ui.keyCode.PAGE_UP:this._move("first",t);break;case V.ui.keyCode.END:case V.ui.keyCode.PAGE_DOWN:this._move("last",t);break;default:this.menu.trigger(t),e=!1}e&&t.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){t=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":t,"aria-activedescendant":t}),this.menu.attr("aria-activedescendant",t)},_setOption:function(t,e){var i;"icons"===t&&(i=this.button.find("span.ui-icon"),this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)),this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;!1!==t?(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t)):this.button.css("width","")},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(t){var i=this,s=[];t.each(function(t,e){e.hidden||s.push(i._parseOption(V(e),t))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),V.widget("ui.slider",V.ui.mouse,{version:"1.13.2",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var t,e=this.options,i=this.element.find(".ui-slider-handle"),s=[],n=e.values&&e.values.length||1;for(i.length>n&&(i.slice(n).remove(),i=i.slice(0,n)),t=i.length;t<n;t++)s.push("<span tabindex='0'></span>");this.handles=i.add(V(s.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(t){V(this).data("ui-slider-handle-index",t).attr("tabIndex",0)})},_createRange:function(){var t=this.options;t.range?(!0===t.range&&(t.values?t.values.length&&2!==t.values.length?t.values=[t.values[0],t.values[0]]:Array.isArray(t.values)&&(t.values=t.values.slice(0)):t.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=V("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),"min"!==t.range&&"max"!==t.range||this._addClass(this.range,"ui-slider-range-"+t.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(t){var i,s,n,o,e,a,r=this,l=this.options;return!l.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),a={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(a),s=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var e=Math.abs(i-r.values(t));(e<s||s===e&&(t===r._lastChangedValue||r.values(t)===l.min))&&(s=e,n=V(this),o=t)}),!1!==this._start(t,o)&&(this._mouseSliding=!0,this._handleIndex=o,this._addClass(n,null,"ui-state-active"),n.trigger("focus"),e=n.offset(),a=!V(t.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=a?{left:0,top:0}:{left:t.pageX-e.left-n.width()/2,top:t.pageY-e.top-n.height()/2-(parseInt(n.css("borderTopWidth"),10)||0)-(parseInt(n.css("borderBottomWidth"),10)||0)+(parseInt(n.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,i),this._animateOff=!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},e=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,e),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,t="horizontal"===this.orientation?(e=this.elementSize.width,t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),t=t/e;return(t=1<t?1:t)<0&&(t=0),"vertical"===this.orientation&&(t=1-t),e=this._valueMax()-this._valueMin(),e=this._valueMin()+t*e,this._trimAlignValue(e)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n=this.value(),o=this.values();this._hasMultipleValues()&&(s=this.values(e?0:1),n=this.values(e),2===this.options.values.length&&!0===this.options.range&&(i=0===e?Math.min(s,i):Math.max(s,i)),o[e]=i),i!==n&&!1!==this._trigger("slide",t,this._uiHash(e,i,o))&&(this._hasMultipleValues()?this.values(e,i):this.value(i))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),void this._change(null,0)):this._value()},values:function(t,e){var i,s,n;if(1<arguments.length)return this.options.values[t]=this._trimAlignValue(e),this._refreshValue(),void this._change(null,t);if(!arguments.length)return this._values();if(!Array.isArray(t))return this._hasMultipleValues()?this._values(t):this.value();for(i=this.options.values,s=t,n=0;n<i.length;n+=1)i[n]=this._trimAlignValue(s[n]),this._change(null,n);this._refreshValue()},_setOption:function(t,e){var i,s=0;switch("range"===t&&!0===this.options.range&&("min"===e?(this.options.value=this._values(0),this.options.values=null):"max"===e&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),Array.isArray(this.options.values)&&(s=this.options.values.length),this._super(t,e),t){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(e),this.handles.css("horizontal"===e?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),i=s-1;0<=i;i--)this._change(null,i);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i;if(arguments.length)return t=this.options.values[t],t=this._trimAlignValue(t);if(this._hasMultipleValues()){for(e=this.options.values.slice(),i=0;i<e.length;i+=1)e[i]=this._trimAlignValue(e[i]);return e}return[]},_trimAlignValue:function(t){if(t<=this._valueMin())return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=0<this.options.step?this.options.step:1,i=(t-this._valueMin())%e,t=t-i;return 2*Math.abs(i)>=e&&(t+=0<i?e:-e),parseFloat(t.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step;(t=Math.round((t-e)/i)*i+e)>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,t,s,n,o=this.options.range,a=this.options,r=this,l=!this._animateOff&&a.animate,h={};this._hasMultipleValues()?this.handles.each(function(t){i=(r.values(t)-r._valueMin())/(r._valueMax()-r._valueMin())*100,h["horizontal"===r.orientation?"left":"bottom"]=i+"%",V(this).stop(1,1)[l?"animate":"css"](h,a.animate),!0===r.options.range&&("horizontal"===r.orientation?(0===t&&r.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:a.animate})):(0===t&&r.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:a.animate}))),e=i}):(t=this.value(),s=this._valueMin(),n=this._valueMax(),i=n!==s?(t-s)/(n-s)*100:0,h["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](h,a.animate),"min"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},a.animate),"max"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},a.animate),"min"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},a.animate),"max"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},a.animate))},_handleEvents:{keydown:function(t){var e,i,s,n=V(t.target).data("ui-slider-handle-index");switch(t.keyCode){case V.ui.keyCode.HOME:case V.ui.keyCode.END:case V.ui.keyCode.PAGE_UP:case V.ui.keyCode.PAGE_DOWN:case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(t.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(V(t.target),null,"ui-state-active"),!1===this._start(t,n)))return}switch(s=this.options.step,e=i=this._hasMultipleValues()?this.values(n):this.value(),t.keyCode){case V.ui.keyCode.HOME:i=this._valueMin();break;case V.ui.keyCode.END:i=this._valueMax();break;case V.ui.keyCode.PAGE_UP:i=this._trimAlignValue(e+(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.PAGE_DOWN:i=this._trimAlignValue(e-(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:if(e===this._valueMax())return;i=this._trimAlignValue(e+s);break;case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(e===this._valueMin())return;i=this._trimAlignValue(e-s)}this._slide(t,n,i)},keyup:function(t){var e=V(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,e),this._change(t,e),this._removeClass(V(t.target),null,"ui-state-active"))}}}),V.widget("ui.sortable",V.ui.mouse,{version:"1.13.2",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return e<=t&&t<e+i},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var t=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),V.each(this.items,function(){t._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;0<=t;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(t,e){var i=null,s=!1,n=this;return!this.reverting&&(!this.options.disabled&&"static"!==this.options.type&&(this._refreshItems(t),V(t.target).parents().each(function(){if(V.data(this,n.widgetName+"-item")===n)return i=V(this),!1}),!!(i=V.data(t.target,n.widgetName+"-item")===n?V(t.target):i)&&(!(this.options.handle&&!e&&(V(this.options.handle,i).find("*").addBack().each(function(){this===t.target&&(s=!0)}),!s))&&(this.currentItem=i,this._removeCurrentsFromItems(),!0))))},_mouseStart:function(t,e,i){var s,n,o=this.options;if((this.currentContainer=this).refreshPositions(),this.appendTo=V("parent"!==o.appendTo?o.appendTo:this.currentItem.parent()),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},V.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),o.cursorAt&&this._adjustOffsetFromHelper(o.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),this.scrollParent=this.placeholder.scrollParent(),V.extend(this.offset,{parent:this._getParentOffset()}),o.containment&&this._setContainment(),o.cursor&&"auto"!==o.cursor&&(n=this.document.find("body"),this.storedCursor=n.css("cursor"),n.css("cursor",o.cursor),this.storedStylesheet=V("<style>*{ cursor: "+o.cursor+" !important; }</style>").appendTo(n)),o.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",o.zIndex)),o.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",o.opacity)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!i)for(s=this.containers.length-1;0<=s;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return V.ui.ddmanager&&(V.ui.ddmanager.current=this),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this.helper.parent().is(this.appendTo)||(this.helper.detach().appendTo(this.appendTo),this.offset.parent=this._getParentOffset()),this.position=this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,this.lastPositionAbs=this.positionAbs=this._convertPositionTo("absolute"),this._mouseDrag(t),!0},_scroll:function(t){var e=this.options,i=!1;return this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<e.scrollSensitivity?this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop+e.scrollSpeed:t.pageY-this.overflowOffset.top<e.scrollSensitivity&&(this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop-e.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<e.scrollSensitivity?this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft+e.scrollSpeed:t.pageX-this.overflowOffset.left<e.scrollSensitivity&&(this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft-e.scrollSpeed)):(t.pageY-this.document.scrollTop()<e.scrollSensitivity?i=this.document.scrollTop(this.document.scrollTop()-e.scrollSpeed):this.window.height()-(t.pageY-this.document.scrollTop())<e.scrollSensitivity&&(i=this.document.scrollTop(this.document.scrollTop()+e.scrollSpeed)),t.pageX-this.document.scrollLeft()<e.scrollSensitivity?i=this.document.scrollLeft(this.document.scrollLeft()-e.scrollSpeed):this.window.width()-(t.pageX-this.document.scrollLeft())<e.scrollSensitivity&&(i=this.document.scrollLeft(this.document.scrollLeft()+e.scrollSpeed))),i},_mouseDrag:function(t){var e,i,s,n,o=this.options;for(this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),o.scroll&&!1!==this._scroll(t)&&(this._refreshItemPositions(!0),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t)),this.dragDirection={vertical:this._getDragVerticalDirection(),horizontal:this._getDragHorizontalDirection()},e=this.items.length-1;0<=e;e--)if(s=(i=this.items[e]).item[0],(n=this._intersectsWithPointer(i))&&i.instance===this.currentContainer&&!(s===this.currentItem[0]||this.placeholder[1===n?"next":"prev"]()[0]===s||V.contains(this.placeholder[0],s)||"semi-dynamic"===this.options.type&&V.contains(this.element[0],s))){if(this.direction=1===n?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(i))break;this._rearrange(t,i),this._trigger("change",t,this._uiHash());break}return this._contactContainers(t),V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,e){var i,s,n,o;if(t)return V.ui.ddmanager&&!this.options.dropBehaviour&&V.ui.ddmanager.drop(this,t),this.options.revert?(s=(i=this).placeholder.offset(),o={},(n=this.options.axis)&&"x"!==n||(o.left=s.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),n&&"y"!==n||(o.top=s.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,V(this.helper).animate(o,parseInt(this.options.revert,10)||500,function(){i._clear(t)})):this._clear(t,e),!1},cancel:function(){if(this.dragging){this._mouseUp(new V.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var t=this.containers.length-1;0<=t;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),V.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?V(this.domPosition.prev).after(this.currentItem):V(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var t=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},V(t).each(function(){var t=(V(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);t&&i.push((e.key||t[1]+"[]")+"="+(e.key&&e.expression?t[1]:t[2]))}),!i.length&&e.key&&i.push(e.key+"="),i.join("&")},toArray:function(t){var e=this._getItemsAsjQuery(t&&t.connected),i=[];return t=t||{},e.each(function(){i.push(V(t.item||this).attr(t.attribute||"id")||"")}),i},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,l=r+t.height,h=this.offset.click.top,c=this.offset.click.left,h="x"===this.options.axis||r<s+h&&s+h<l,c="y"===this.options.axis||o<e+c&&e+c<a;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?h&&c:o<e+this.helperProportions.width/2&&i-this.helperProportions.width/2<a&&r<s+this.helperProportions.height/2&&n-this.helperProportions.height/2<l},_intersectsWithPointer:function(t){var e="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),t="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width);return!(!e||!t)&&(e=this.dragDirection.vertical,t=this.dragDirection.horizontal,this.floating?"right"===t||"down"===e?2:1:e&&("down"===e?2:1))},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this.dragDirection.vertical,t=this.dragDirection.horizontal;return this.floating&&t?"right"===t&&i||"left"===t&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!=t&&(0<t?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!=t&&(0<t?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(t){var e,i,s,n,o=[],a=[],r=this._connectWith();if(r&&t)for(e=r.length-1;0<=e;e--)for(i=(s=V(r[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&a.push(["function"==typeof n.options.items?n.options.items.call(n.element):V(n.options.items,n.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),n]);function l(){o.push(this)}for(a.push(["function"==typeof this.options.items?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):V(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),e=a.length-1;0<=e;e--)a[e][0].each(l);return V(o)},_removeCurrentsFromItems:function(){var i=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=V.grep(this.items,function(t){for(var e=0;e<i.length;e++)if(i[e]===t.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var e,i,s,n,o,a,r,l,h=this.items,c=[["function"==typeof this.options.items?this.options.items.call(this.element[0],t,{item:this.currentItem}):V(this.options.items,this.element),this]],u=this._connectWith();if(u&&this.ready)for(e=u.length-1;0<=e;e--)for(i=(s=V(u[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&(c.push(["function"==typeof n.options.items?n.options.items.call(n.element[0],t,{item:this.currentItem}):V(n.options.items,n.element),n]),this.containers.push(n));for(e=c.length-1;0<=e;e--)for(o=c[e][1],l=(a=c[e][i=0]).length;i<l;i++)(r=V(a[i])).data(this.widgetName+"-item",o),h.push({item:r,instance:o,width:0,height:0,left:0,top:0})},_refreshItemPositions:function(t){for(var e,i,s=this.items.length-1;0<=s;s--)e=this.items[s],this.currentContainer&&e.instance!==this.currentContainer&&e.item[0]!==this.currentItem[0]||(i=this.options.toleranceElement?V(this.options.toleranceElement,e.item):e.item,t||(e.width=i.outerWidth(),e.height=i.outerHeight()),i=i.offset(),e.left=i.left,e.top=i.top)},refreshPositions:function(t){var e,i;if(this.floating=!!this.items.length&&("x"===this.options.axis||this._isFloating(this.items[0].item)),this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset()),this._refreshItemPositions(t),this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(e=this.containers.length-1;0<=e;e--)i=this.containers[e].element.offset(),this.containers[e].containerCache.left=i.left,this.containers[e].containerCache.top=i.top,this.containers[e].containerCache.width=this.containers[e].element.outerWidth(),this.containers[e].containerCache.height=this.containers[e].element.outerHeight();return this},_createPlaceholder:function(i){var s,n,o=(i=i||this).options;o.placeholder&&o.placeholder.constructor!==String||(s=o.placeholder,n=i.currentItem[0].nodeName.toLowerCase(),o.placeholder={element:function(){var t=V("<"+n+">",i.document[0]);return i._addClass(t,"ui-sortable-placeholder",s||i.currentItem[0].className)._removeClass(t,"ui-sortable-helper"),"tbody"===n?i._createTrPlaceholder(i.currentItem.find("tr").eq(0),V("<tr>",i.document[0]).appendTo(t)):"tr"===n?i._createTrPlaceholder(i.currentItem,t):"img"===n&&t.attr("src",i.currentItem.attr("src")),s||t.css("visibility","hidden"),t},update:function(t,e){s&&!o.forcePlaceholderSize||(e.height()&&(!o.forcePlaceholderSize||"tbody"!==n&&"tr"!==n)||e.height(i.currentItem.innerHeight()-parseInt(i.currentItem.css("paddingTop")||0,10)-parseInt(i.currentItem.css("paddingBottom")||0,10)),e.width()||e.width(i.currentItem.innerWidth()-parseInt(i.currentItem.css("paddingLeft")||0,10)-parseInt(i.currentItem.css("paddingRight")||0,10)))}}),i.placeholder=V(o.placeholder.element.call(i.element,i.currentItem)),i.currentItem.after(i.placeholder),o.placeholder.update(i,i.placeholder)},_createTrPlaceholder:function(t,e){var i=this;t.children().each(function(){V("<td>&#160;</td>",i.document[0]).attr("colspan",V(this).attr("colspan")||1).appendTo(e)})},_contactContainers:function(t){for(var e,i,s,n,o,a,r,l,h,c=null,u=null,d=this.containers.length-1;0<=d;d--)V.contains(this.currentItem[0],this.containers[d].element[0])||(this._intersectsWith(this.containers[d].containerCache)?c&&V.contains(this.containers[d].element[0],c.element[0])||(c=this.containers[d],u=d):this.containers[d].containerCache.over&&(this.containers[d]._trigger("out",t,this._uiHash(this)),this.containers[d].containerCache.over=0));if(c)if(1===this.containers.length)this.containers[u].containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1);else{for(i=1e4,s=null,n=(l=c.floating||this._isFloating(this.currentItem))?"left":"top",o=l?"width":"height",h=l?"pageX":"pageY",e=this.items.length-1;0<=e;e--)V.contains(this.containers[u].element[0],this.items[e].item[0])&&this.items[e].item[0]!==this.currentItem[0]&&(a=this.items[e].item.offset()[n],r=!1,t[h]-a>this.items[e][o]/2&&(r=!0),Math.abs(t[h]-a)<i&&(i=Math.abs(t[h]-a),s=this.items[e],this.direction=r?"up":"down"));(s||this.options.dropOnEmpty)&&(this.currentContainer!==this.containers[u]?(s?this._rearrange(t,s,null,!0):this._rearrange(t,null,this.containers[u].element,!0),this._trigger("change",t,this._uiHash()),this.containers[u]._trigger("change",t,this._uiHash(this)),this.currentContainer=this.containers[u],this.options.placeholder.update(this.currentContainer,this.placeholder),this.scrollParent=this.placeholder.scrollParent(),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1):this.currentContainer.containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash()),this.currentContainer.containerCache.over=1))}},_createHelper:function(t){var e=this.options,t="function"==typeof e.helper?V(e.helper.apply(this.element[0],[t,this.currentItem])):"clone"===e.helper?this.currentItem.clone():this.currentItem;return t.parents("body").length||this.appendTo[0].appendChild(t[0]),t[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),t[0].style.width&&!e.forceHelperSize||t.width(this.currentItem.width()),t[0].style.height&&!e.forceHelperSize||t.height(this.currentItem.height()),t},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&V.ui.ie?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i=this.options;"parent"===i.containment&&(i.containment=this.helper[0].parentNode),"document"!==i.containment&&"window"!==i.containment||(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===i.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===i.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(i.containment)||(t=V(i.containment)[0],e=V(i.containment).offset(),i="hidden"!==V(t).css("overflow"),this.containment=[e.left+(parseInt(V(t).css("borderLeftWidth"),10)||0)+(parseInt(V(t).css("paddingLeft"),10)||0)-this.margins.left,e.top+(parseInt(V(t).css("borderTopWidth"),10)||0)+(parseInt(V(t).css("paddingTop"),10)||0)-this.margins.top,e.left+(i?Math.max(t.scrollWidth,t.offsetWidth):t.offsetWidth)-(parseInt(V(t).css("borderLeftWidth"),10)||0)-(parseInt(V(t).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,e.top+(i?Math.max(t.scrollHeight,t.offsetHeight):t.offsetHeight)-(parseInt(V(t).css("borderTopWidth"),10)||0)-(parseInt(V(t).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,s="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,t=/(html|body)/i.test(s[0].tagName);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():t?0:s.scrollTop())*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():t?0:s.scrollLeft())*i}},_generatePosition:function(t){var e=this.options,i=t.pageX,s=t.pageY,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(i=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(s=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(i=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(s=this.containment[3]+this.offset.click.top)),e.grid&&(t=this.originalPageY+Math.round((s-this.originalPageY)/e.grid[1])*e.grid[1],s=!this.containment||t-this.offset.click.top>=this.containment[1]&&t-this.offset.click.top<=this.containment[3]?t:t-this.offset.click.top>=this.containment[1]?t-e.grid[1]:t+e.grid[1],t=this.originalPageX+Math.round((i-this.originalPageX)/e.grid[0])*e.grid[0],i=!this.containment||t-this.offset.click.left>=this.containment[0]&&t-this.offset.click.left<=this.containment[2]?t:t-this.offset.click.left>=this.containment[0]?t-e.grid[0]:t+e.grid[0])),{top:s-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop()),left:i-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){this.reverting=!1;var i,s=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(i in this._storedCSS)"auto"!==this._storedCSS[i]&&"static"!==this._storedCSS[i]||(this._storedCSS[i]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();function n(e,i,s){return function(t){s._trigger(e,t,i._uiHash(i))}}for(this.fromOutside&&!e&&s.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||s.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(s.push(function(t){this._trigger("remove",t,this._uiHash())}),s.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),s.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer)))),i=this.containers.length-1;0<=i;i--)e||s.push(n("deactivate",this,this.containers[i])),this.containers[i].containerCache.over&&(s.push(n("out",this,this.containers[i])),this.containers[i].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(i=0;i<s.length;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){!1===V.Widget.prototype._trigger.apply(this,arguments)&&this.cancel()},_uiHash:function(t){var e=t||this;return{helper:e.helper,placeholder:e.placeholder||V([]),position:e.position,originalPosition:e.originalPosition,offset:e.positionAbs,item:e.currentItem,sender:t?t.element:null}}});function ht(e){return function(){var t=this.element.val();e.apply(this,arguments),this._refresh(),t!==this.element.val()&&this._trigger("change")}}V.widget("ui.spinner",{version:"1.13.2",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var s=this._super(),n=this.element;return V.each(["min","max","step"],function(t,e){var i=n.attr(e);null!=i&&i.length&&(s[e]=i)}),s},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){this.cancelBlur?delete this.cancelBlur:(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t))},mousewheel:function(t,e){var i=V.ui.safeActiveElement(this.document[0]);if(this.element[0]===i&&e){if(!this.spinning&&!this._start(t))return!1;this._spin((0<e?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(t){var e;function i(){this.element[0]===V.ui.safeActiveElement(this.document[0])||(this.element.trigger("focus"),this.previous=e,this._delay(function(){this.previous=e}))}e=this.element[0]===V.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),t.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),!1!==this._start(t)&&this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(t){if(V(t.currentTarget).hasClass("ui-state-active"))return!1!==this._start(t)&&void this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&0<this.uiSpinner.height()&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(t){var e=this.options,i=V.ui.keyCode;switch(t.keyCode){case i.UP:return this._repeat(null,1,t),!0;case i.DOWN:return this._repeat(null,-1,t),!0;case i.PAGE_UP:return this._repeat(null,e.page,t),!0;case i.PAGE_DOWN:return this._repeat(null,-e.page,t),!0}return!1},_start:function(t){return!(!this.spinning&&!1===this._trigger("start",t))&&(this.counter||(this.counter=1),this.spinning=!0)},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&!1===this._trigger("spin",e,{value:i})||(this._value(i),this.counter++)},_increment:function(t){var e=this.options.incremental;return e?"function"==typeof e?e(t):Math.floor(t*t*t/5e4-t*t/500+17*t/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_adjustValue:function(t){var e=this.options,i=null!==e.min?e.min:0,s=t-i;return t=i+Math.round(s/e.step)*e.step,t=parseFloat(t.toFixed(this._precision())),null!==e.max&&t>e.max?e.max:null!==e.min&&t<e.min?e.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i;if("culture"===t||"numberFormat"===t)return i=this._parse(this.element.val()),this.options[t]=e,void this.element.val(this._format(i));"max"!==t&&"min"!==t&&"step"!==t||"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(i=this.buttons.first().find(".ui-icon"),this._removeClass(i,null,this.options.icons.up),this._addClass(i,null,e.up),i=this.buttons.last().find(".ui-icon"),this._removeClass(i,null,this.options.icons.down),this._addClass(i,null,e.down)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:ht(function(t){this._super(t)}),_parse:function(t){return""===(t="string"==typeof t&&""!==t?window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t:t)||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null!==t&&t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&null!==(i=this._parse(t))&&(e||(i=this._adjustValue(i)),t=this._format(i)),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:ht(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:ht(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:ht(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:ht(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){if(!arguments.length)return this._parse(this.element.val());ht(this._value).call(this,t)},widget:function(){return this.uiSpinner}}),!1!==V.uiBackCompat&&V.widget("ui.spinner",V.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}});var ct;V.ui.spinner;V.widget("ui.tabs",{version:"1.13.2",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:(ct=/#.*$/,function(t){var e=t.href.replace(ct,""),i=location.href.replace(ct,"");try{e=decodeURIComponent(e)}catch(t){}try{i=decodeURIComponent(i)}catch(t){}return 1<t.hash.length&&e===i}),_create:function(){var e=this,t=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,t.collapsible),this._processTabs(),t.active=this._initialActive(),Array.isArray(t.disabled)&&(t.disabled=V.uniqueSort(t.disabled.concat(V.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),!1!==this.options.active&&this.anchors.length?this.active=this._findActive(t.active):this.active=V(),this._refresh(),this.active.length&&this.load(t.active)},_initialActive:function(){var i=this.options.active,t=this.options.collapsible,s=location.hash.substring(1);return null===i&&(s&&this.tabs.each(function(t,e){if(V(e).attr("aria-controls")===s)return i=t,!1}),null!==(i=null===i?this.tabs.index(this.tabs.filter(".ui-tabs-active")):i)&&-1!==i||(i=!!this.tabs.length&&0)),!1!==i&&-1===(i=this.tabs.index(this.tabs.eq(i)))&&(i=!t&&0),i=!t&&!1===i&&this.anchors.length?0:i},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):V()}},_tabKeydown:function(t){var e=V(V.ui.safeActiveElement(this.document[0])).closest("li"),i=this.tabs.index(e),s=!0;if(!this._handlePageNav(t)){switch(t.keyCode){case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:i++;break;case V.ui.keyCode.UP:case V.ui.keyCode.LEFT:s=!1,i--;break;case V.ui.keyCode.END:i=this.anchors.length-1;break;case V.ui.keyCode.HOME:i=0;break;case V.ui.keyCode.SPACE:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i);case V.ui.keyCode.ENTER:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i!==this.options.active&&i);default:return}t.preventDefault(),clearTimeout(this.activating),i=this._focusNextTab(i,s),t.ctrlKey||t.metaKey||(e.attr("aria-selected","false"),this.tabs.eq(i).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",i)},this.delay))}},_panelKeydown:function(t){this._handlePageNav(t)||t.ctrlKey&&t.keyCode===V.ui.keyCode.UP&&(t.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(t){return t.altKey&&t.keyCode===V.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):t.altKey&&t.keyCode===V.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(t,e){var i=this.tabs.length-1;for(;-1!==V.inArray(t=(t=i<t?0:t)<0?i:t,this.options.disabled);)t=e?t+1:t-1;return t},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){"active"!==t?(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||!1!==this.options.active||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e)):this._activate(e)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,e=this.tablist.children(":has(a[href])");t.disabled=V.map(e.filter(".ui-state-disabled"),function(t){return e.index(t)}),this._processTabs(),!1!==t.active&&this.anchors.length?this.active.length&&!V.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=V()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active):(t.active=!1,this.active=V()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var l=this,t=this.tabs,e=this.anchors,i=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(t){V(this).is(".ui-state-disabled")&&t.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){V(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return V("a",this)[0]}).attr({tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=V(),this.anchors.each(function(t,e){var i,s,n,o=V(e).uniqueId().attr("id"),a=V(e).closest("li"),r=a.attr("aria-controls");l._isLocal(e)?(n=(i=e.hash).substring(1),s=l.element.find(l._sanitizeSelector(i))):(n=a.attr("aria-controls")||V({}).uniqueId()[0].id,(s=l.element.find(i="#"+n)).length||(s=l._createPanel(n)).insertAfter(l.panels[t-1]||l.tablist),s.attr("aria-live","polite")),s.length&&(l.panels=l.panels.add(s)),r&&a.data("ui-tabs-aria-controls",r),a.attr({"aria-controls":n,"aria-labelledby":o}),s.attr("aria-labelledby",o)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),t&&(this._off(t.not(this.tabs)),this._off(e.not(this.anchors)),this._off(i.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(t){return V("<div>").attr("id",t).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(t){var e,i;for(Array.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1),i=0;e=this.tabs[i];i++)e=V(e),!0===t||-1!==V.inArray(i,t)?(e.attr("aria-disabled","true"),this._addClass(e,null,"ui-state-disabled")):(e.removeAttr("aria-disabled"),this._removeClass(e,null,"ui-state-disabled"));this.options.disabled=t,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!0===t)},_setupEvents:function(t){var i={};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var i,e=this.element.parent();"fill"===t?(i=e.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=V(this).outerHeight(!0)}),this.panels.each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===t&&(i=0,this.panels.each(function(){i=Math.max(i,V(this).height("").height())}).height(i))},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget).closest("li"),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():this._getPanelForTab(s),r=i.length?this._getPanelForTab(i):V(),i={oldTab:i,oldPanel:r,newTab:o?V():s,newPanel:a};t.preventDefault(),s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||n&&!e.collapsible||!1===this._trigger("beforeActivate",t,i)||(e.active=!o&&this.tabs.index(s),this.active=n?V():s,this.xhr&&this.xhr.abort(),r.length||a.length||V.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,i))},_toggle:function(t,e){var i=this,s=e.newPanel,n=e.oldPanel;function o(){i.running=!1,i._trigger("activate",t,e)}function a(){i._addClass(e.newTab.closest("li"),"ui-tabs-active","ui-state-active"),s.length&&i.options.show?i._show(s,i.options.show,o):(s.show(),o())}this.running=!0,n.length&&this.options.hide?this._hide(n,this.options.hide,function(){i._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),a()}):(this._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n.hide(),a()),n.attr("aria-hidden","true"),e.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),s.length&&n.length?e.oldTab.attr("tabIndex",-1):s.length&&this.tabs.filter(function(){return 0===V(this).attr("tabIndex")}).attr("tabIndex",-1),s.attr("aria-hidden","false"),e.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(t){var t=this._findActive(t);t[0]!==this.active[0]&&(t=(t=!t.length?this.active:t).find(".ui-tabs-anchor")[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return!1===t?V():this.tabs.eq(t)},_getIndex:function(t){return t="string"==typeof t?this.anchors.index(this.anchors.filter("[href$='"+V.escapeSelector(t)+"']")):t},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){V.data(this,"ui-tabs-destroy")?V(this).remove():V(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var t=V(this),e=t.data("ui-tabs-aria-controls");e?t.attr("aria-controls",e).removeData("ui-tabs-aria-controls"):t.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(i){var t=this.options.disabled;!1!==t&&(t=void 0!==i&&(i=this._getIndex(i),Array.isArray(t)?V.map(t,function(t){return t!==i?t:null}):V.map(this.tabs,function(t,e){return e!==i?e:null})),this._setOptionDisabled(t))},disable:function(t){var e=this.options.disabled;if(!0!==e){if(void 0===t)e=!0;else{if(t=this._getIndex(t),-1!==V.inArray(t,e))return;e=Array.isArray(e)?V.merge([t],e).sort():[t]}this._setOptionDisabled(e)}},load:function(t,s){t=this._getIndex(t);function n(t,e){"abort"===e&&o.panels.stop(!1,!0),o._removeClass(i,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===o.xhr&&delete o.xhr}var o=this,i=this.tabs.eq(t),t=i.find(".ui-tabs-anchor"),a=this._getPanelForTab(i),r={tab:i,panel:a};this._isLocal(t[0])||(this.xhr=V.ajax(this._ajaxSettings(t,s,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(i,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,i){setTimeout(function(){a.html(t),o._trigger("load",s,r),n(i,e)},1)}).fail(function(t,e){setTimeout(function(){n(t,e)},1)})))},_ajaxSettings:function(t,i,s){var n=this;return{url:t.attr("href").replace(/#.*$/,""),beforeSend:function(t,e){return n._trigger("beforeLoad",i,V.extend({jqXHR:t,ajaxSettings:e},s))}}},_getPanelForTab:function(t){t=V(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+t))}}),!1!==V.uiBackCompat&&V.widget("ui.tabs",V.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}});V.ui.tabs;V.widget("ui.tooltip",{version:"1.13.2",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var t=V(this).attr("title");return V("<a>").text(t).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(t,e){var i=(t.attr("aria-describedby")||"").split(/\s+/);i.push(e),t.data("ui-tooltip-id",e).attr("aria-describedby",String.prototype.trim.call(i.join(" ")))},_removeDescribedBy:function(t){var e=t.data("ui-tooltip-id"),i=(t.attr("aria-describedby")||"").split(/\s+/),e=V.inArray(e,i);-1!==e&&i.splice(e,1),t.removeData("ui-tooltip-id"),(i=String.prototype.trim.call(i.join(" ")))?t.attr("aria-describedby",i):t.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=V("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=V([])},_setOption:function(t,e){var i=this;this._super(t,e),"content"===t&&V.each(this.tooltips,function(t,e){i._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur");i.target=i.currentTarget=e.element[0],s.close(i,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var t=V(this);if(t.is("[title]"))return t.data("ui-tooltip-title",t.attr("title")).removeAttr("title")}))},_enable:function(){this.disabledTitles.each(function(){var t=V(this);t.data("ui-tooltip-title")&&t.attr("title",t.data("ui-tooltip-title"))}),this.disabledTitles=V([])},open:function(t){var i=this,e=V(t?t.target:this.element).closest(this.options.items);e.length&&!e.data("ui-tooltip-id")&&(e.attr("title")&&e.data("ui-tooltip-title",e.attr("title")),e.data("ui-tooltip-open",!0),t&&"mouseover"===t.type&&e.parents().each(function(){var t,e=V(this);e.data("ui-tooltip-open")&&((t=V.Event("blur")).target=t.currentTarget=this,i.close(t,!0)),e.attr("title")&&(e.uniqueId(),i.parents[this.id]={element:this,title:e.attr("title")},e.attr("title",""))}),this._registerCloseHandlers(t,e),this._updateContent(e,t))},_updateContent:function(e,i){var t=this.options.content,s=this,n=i?i.type:null;if("string"==typeof t||t.nodeType||t.jquery)return this._open(i,e,t);(t=t.call(e[0],function(t){s._delay(function(){e.data("ui-tooltip-open")&&(i&&(i.type=n),this._open(i,e,t))})}))&&this._open(i,e,t)},_open:function(t,e,i){var s,n,o,a=V.extend({},this.options.position);function r(t){a.of=t,n.is(":hidden")||n.position(a)}i&&((s=this._find(e))?s.tooltip.find(".ui-tooltip-content").html(i):(e.is("[title]")&&(t&&"mouseover"===t.type?e.attr("title",""):e.removeAttr("title")),s=this._tooltip(e),n=s.tooltip,this._addDescribedBy(e,n.attr("id")),n.find(".ui-tooltip-content").html(i),this.liveRegion.children().hide(),(i=V("<div>").html(n.find(".ui-tooltip-content").html())).removeAttr("name").find("[name]").removeAttr("name"),i.removeAttr("id").find("[id]").removeAttr("id"),i.appendTo(this.liveRegion),this.options.track&&t&&/^mouse/.test(t.type)?(this._on(this.document,{mousemove:r}),r(t)):n.position(V.extend({of:e},this.options.position)),n.hide(),this._show(n,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(o=this.delayedShow=setInterval(function(){n.is(":visible")&&(r(a.of),clearInterval(o))},13)),this._trigger("open",t,{tooltip:n})))},_registerCloseHandlers:function(t,e){var i={keyup:function(t){t.keyCode===V.ui.keyCode.ESCAPE&&((t=V.Event(t)).currentTarget=e[0],this.close(t,!0))}};e[0]!==this.element[0]&&(i.remove=function(){var t=this._find(e);t&&this._removeTooltip(t.tooltip)}),t&&"mouseover"!==t.type||(i.mouseleave="close"),t&&"focusin"!==t.type||(i.focusout="close"),this._on(!0,e,i)},close:function(t){var e,i=this,s=V(t?t.currentTarget:this.element),n=this._find(s);n?(e=n.tooltip,n.closing||(clearInterval(this.delayedShow),s.data("ui-tooltip-title")&&!s.attr("title")&&s.attr("title",s.data("ui-tooltip-title")),this._removeDescribedBy(s),n.hiding=!0,e.stop(!0),this._hide(e,this.options.hide,function(){i._removeTooltip(V(this))}),s.removeData("ui-tooltip-open"),this._off(s,"mouseleave focusout keyup"),s[0]!==this.element[0]&&this._off(s,"remove"),this._off(this.document,"mousemove"),t&&"mouseleave"===t.type&&V.each(this.parents,function(t,e){V(e.element).attr("title",e.title),delete i.parents[t]}),n.closing=!0,this._trigger("close",t,{tooltip:e}),n.hiding||(n.closing=!1))):s.removeData("ui-tooltip-open")},_tooltip:function(t){var e=V("<div>").attr("role","tooltip"),i=V("<div>").appendTo(e),s=e.uniqueId().attr("id");return this._addClass(i,"ui-tooltip-content"),this._addClass(e,"ui-tooltip","ui-widget ui-widget-content"),e.appendTo(this._appendTo(t)),this.tooltips[s]={element:t,tooltip:e}},_find:function(t){t=t.data("ui-tooltip-id");return t?this.tooltips[t]:null},_removeTooltip:function(t){clearInterval(this.delayedShow),t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){t=t.closest(".ui-front, dialog");return t=!t.length?this.document[0].body:t},_destroy:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur"),e=e.element;i.target=i.currentTarget=e[0],s.close(i,!0),V("#"+t).remove(),e.data("ui-tooltip-title")&&(e.attr("title")||e.attr("title",e.data("ui-tooltip-title")),e.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),!1!==V.uiBackCompat&&V.widget("ui.tooltip",V.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}});V.ui.tooltip});
\ No newline at end of file
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_444444_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_444444_256x240.png
index 168e6ea8320a65b8d3af2fd443ca52a0fea0ac76..cd20b1b715c2dd293c2de46b239530f8508c0586 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_444444_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_444444_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_555555_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_555555_256x240.png
index 23e1ba02bad3c775b13485b93289462d280017c5..cb9b1b965107b8c69a360793d1a4964dd4112eab 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_555555_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_555555_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777620_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777620_256x240.png
index 5fb0ee12bb8e7092ff3a9e930d934d610d6171d3..931036979ab244bbaa928cb5fb0f5f6ce6754f41 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777620_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777620_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777777_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777777_256x240.png
index b9e5f92f72019de2dfa5a7a44f4606d54eceed0f..36d3bc90a7cb00437cfb5db989be7a7f30e56e25 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777777_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_777777_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png
index 954605b9255663c8b67aedea7ea9beed0bf44504..803d263a126b9b92ea79decb5c9db87403e70f3c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png
index b6f29b3f01058637fa4fef1c2e3429fbc7381776..cd4a00b175402fefbac83c6e87a909bef1e1f45a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.css
index 83777f83eb3b436c465e1fc01233a1c52ac2aa36..acc2cdd45f879ddb3a1f140f28af62955becd785 100644
--- a/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.min.css
index e41f9b6b58466a422192b96201bb445a9b6c468a..cf977e2790c993ae926f6d56cbcca1b83b449050 100644
--- a/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/base/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/base/theme.css b/civicrm/bower_components/jquery-ui/themes/base/theme.css
index 411002e3f909b4cd78daf3d1ce6194ab07450245..e9dd4603a6265c2730a0bf3d9319266e1e422e98 100644
--- a/civicrm/bower_components/jquery-ui/themes/base/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/base/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png
index d03587130b4ffeb7176a0043441a26a174bc2f9c..27e64801d2416a001141e20066909b947fa7bd5b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png
index 5f42a0215f9c34e4f6976caa86fed7fcdeb4f339..b99325429ae922417e181d076f148833fe6b38a4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png
index c5d8c98e2a6cb94f3dbf93a28301522c5462f9da..d87c95d7f80f35ec903a48369d0b52485b076655 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
index a78ee42e3b31e36b8dbbbdb999b174d3e5a8a2c1..b30e9d68e942366d33338673fd62fb32b030ad68 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png
index 0faa090589c6718755e0596431a014c77650e41d..15fc8a1d1c38bdd87c9c366d1be4333b93f58e27 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png
index 32099617ec7a18842203eef669604f2fdb885852..c715578865532cd047b403458b6b2f42d23793fc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png
index ed0379b166e3c68f7b16a0e812b6c8681f575c3f..f0681889da1e48a34cb53b5d80e401bb76bfe6e4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
index 833882ca7f59d05c3d85d66f27ef08a0e27bfacd..c31c4452390940249e26540a0b30a307ff450417 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png
index b8997ddf7e41907c3119fcefe89ac26d6182056c..ea671ac2df406e441ab0088d6721f88e4167571e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png
index 95927fd9f9fe91e74a48ea18ff1643f94d0bbf22..6f8cfdbf8777bb30cadd8e12c07d3115d2db8d8e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png
index f48c8845a4510cbb6595b70650eeccec1e8f66ee..ac28e359f2b82080670f66888f647ab3f2de7758 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png
index bd897baf9fd258fba197d8aa2b89e32ef95dca7e..4d5c183c3143743b677017bbc9b0c0ef1fc0fe33 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png
index 95ecf07e61c05aaebcecec90b36857fe270eafab..d9bca5c850078adead75c7020db67dcb37a256a6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png
index 9d5c435742b8ff6a62738b32c541a5802b77e81c..3ca2d0bc7ece2fe3849879f6d7535554d7e7ee98 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.css
index b07e86b4364bc50ad021c7a26e4e49ab40f17554..31ad914096e5e17fd6e7797fe6384da51b31f187 100644
--- a/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=333333&bgTextureHeader=diagonals_thick&bgImgOpacityHeader=8&borderColorHeader=a3a3a3&fcHeader=eeeeee&iconColorHeader=bbbbbb&bgColorContent=f9f9f9&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=cccccc&fcContent=222222&iconColorContent=222222&bgColorDefault=111111&bgTextureDefault=glass&bgImgOpacityDefault=40&borderColorDefault=777777&fcDefault=e3e3e3&iconColorDefault=ededed&bgColorHover=1c1c1c&bgTextureHover=glass&bgImgOpacityHover=55&borderColorHover=000000&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=flat&bgImgOpacityActive=65&borderColorActive=cccccc&fcActive=222222&iconColorActive=222222&bgColorHighlight=ffeb80&bgTextureHighlight=inset_hard&bgImgOpacityHighlight=55&borderColorHighlight=ffde2e&fcHighlight=363636&iconColorHighlight=4ca300&bgColorError=cd0a0a&bgTextureError=inset_hard&bgImgOpacityError=45&borderColorError=9e0505&fcError=ffffff&iconColorError=ffcf29&bgColorOverlay=aaaaaa&bgTextureOverlay=highlight_hard&bgImgOpacityOverlay=40&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=highlight_soft&bgImgOpacityShadow=50&opacityShadow=20&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.min.css
index 827961b72e0077d67c97f1cdb8a6a86def2b181d..af243fb24466430bea8d1f52124af935af93d0e1 100644
--- a/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/black-tie/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=333333&bgTextureHeader=diagonals_thick&bgImgOpacityHeader=8&borderColorHeader=a3a3a3&fcHeader=eeeeee&iconColorHeader=bbbbbb&bgColorContent=f9f9f9&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=cccccc&fcContent=222222&iconColorContent=222222&bgColorDefault=111111&bgTextureDefault=glass&bgImgOpacityDefault=40&borderColorDefault=777777&fcDefault=e3e3e3&iconColorDefault=ededed&bgColorHover=1c1c1c&bgTextureHover=glass&bgImgOpacityHover=55&borderColorHover=000000&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=flat&bgImgOpacityActive=65&borderColorActive=cccccc&fcActive=222222&iconColorActive=222222&bgColorHighlight=ffeb80&bgTextureHighlight=inset_hard&bgImgOpacityHighlight=55&borderColorHighlight=ffde2e&fcHighlight=363636&iconColorHighlight=4ca300&bgColorError=cd0a0a&bgTextureError=inset_hard&bgImgOpacityError=45&borderColorError=9e0505&fcError=ffffff&iconColorError=ffcf29&bgColorOverlay=aaaaaa&bgTextureOverlay=highlight_hard&bgImgOpacityOverlay=40&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=highlight_soft&bgImgOpacityShadow=50&opacityShadow=20&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/black-tie/theme.css b/civicrm/bower_components/jquery-ui/themes/black-tie/theme.css
index 4429c4dd9b7f780672a7e1942c54fd34704bb025..6eb15fccf9daef6488261487f00fb5ed135a105e 100644
--- a/civicrm/bower_components/jquery-ui/themes/black-tie/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/black-tie/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png
index 3f57d56af798f442ca1eb40dfe9f8f4de9f54285..886552a01447b90fff7c0fd626177a85ec1d42d5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png
index a4286e76431f220682e36802209bc79134df2d19..bfa71d2cff58dcf5815da0e9bff5ca3c0f44b368 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png
index 13a6c14000e08e4863afcfcadacd22256f813699..de56659b94261c3454dc83391d2aaf0b6a4083d1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png
index 68bb4b7cb384ffca33b2b47851d47e6a7d9eccb1..1152be1c16f74a0a0a7b51953379aaa609b449a3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png
index 088b3080f4e40f07b9d68c0854a585855f948a7c..4ceabeac800be4224ce5ddb8861507940eede023 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png
index d3856deee2b756398f85f2a9583057670db3012e..0f2f925fb43db4765e86cb42f8268a7769d0516c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png
index b1c8b2a2e117581eb14daf4d896ab965d0bd5afa..7ff3260004c69ad464ac9111fab6884caf44c852 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png
index e4c402c99d697305059ed3a08df832f579576a8f..e48ae63c89accc84e4de50fdc3be1c91283b7a5e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..abd0a87947867a3ec43007a645534efc54fb722d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.css
index 20241237b179f02fb616483408da3e8958393d57..6ce146bbf21c9151916ec13d2b650ad0fb9875cb 100644
--- a/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=cc0000&bgTextureHeader=highlight_soft&bgImgOpacityHeader=15&borderColorHeader=e3a1a1&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=eeeeee&fcContent=333333&iconColorContent=cc0000&bgColorDefault=eeeeee&bgTextureDefault=highlight_hard&bgImgOpacityDefault=100&borderColorDefault=d8dcdf&fcDefault=004276&iconColorDefault=cc0000&bgColorHover=f6f6f6&bgTextureHover=highlight_hard&bgImgOpacityHover=100&borderColorHover=cdd5da&fcHover=111111&iconColorHover=cc0000&bgColorActive=ffffff&bgTextureActive=flat&bgImgOpacityActive=65&borderColorActive=eeeeee&fcActive=cc0000&iconColorActive=cc0000&bgColorHighlight=fbf8ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcd3a1&fcHighlight=444444&iconColorHighlight=004276&bgColorError=f3d8d8&bgTextureError=diagonals_thick&bgImgOpacityError=75&borderColorError=cc0000&fcError=2e2e2e&iconColorError=cc0000&bgColorOverlay=a6a6a6&bgTextureOverlay=dots_small&bgImgOpacityOverlay=65&opacityOverlay=40&bgColorShadow=333333&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=10&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.min.css
index cf1fd1c227bf8cc9dbfcfc1ca2a93dcb9851b62f..b78c474baeea040a1f530a052646c73c2a9f4901 100644
--- a/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/blitzer/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=cc0000&bgTextureHeader=highlight_soft&bgImgOpacityHeader=15&borderColorHeader=e3a1a1&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=eeeeee&fcContent=333333&iconColorContent=cc0000&bgColorDefault=eeeeee&bgTextureDefault=highlight_hard&bgImgOpacityDefault=100&borderColorDefault=d8dcdf&fcDefault=004276&iconColorDefault=cc0000&bgColorHover=f6f6f6&bgTextureHover=highlight_hard&bgImgOpacityHover=100&borderColorHover=cdd5da&fcHover=111111&iconColorHover=cc0000&bgColorActive=ffffff&bgTextureActive=flat&bgImgOpacityActive=65&borderColorActive=eeeeee&fcActive=cc0000&iconColorActive=cc0000&bgColorHighlight=fbf8ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcd3a1&fcHighlight=444444&iconColorHighlight=004276&bgColorError=f3d8d8&bgTextureError=diagonals_thick&bgImgOpacityError=75&borderColorError=cc0000&fcError=2e2e2e&iconColorError=cc0000&bgColorOverlay=a6a6a6&bgTextureOverlay=dots_small&bgImgOpacityOverlay=65&opacityOverlay=40&bgColorShadow=333333&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=10&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/blitzer/theme.css b/civicrm/bower_components/jquery-ui/themes/blitzer/theme.css
index ab53f210bce174e17cf76a2679355269f96022e4..155d3f00b1a727f5c118c7a6c040df2eb6381a07 100644
--- a/civicrm/bower_components/jquery-ui/themes/blitzer/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/blitzer/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png
index 1bea78024a363be390c5d7cd200f160759e9ba49..d5b07621529502ba40456391b23f4f273bbd9bf8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png
index 8719505a580281cc87800c03e370aa00a9b3a31a..58a2bd2845953356d15b2bd756ed619820c9c161 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png
index a0aed4081d58417f4baa3935b3548624c46c9fd8..5c5df447d26649a8b337bb1a59989b1e90a705ae 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png
index b71206d373dd403fe026fc6c463e250541648f6a..e98e1437ecb3d8b64b7b12357ce5946c864b3647 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png
index a46a4deba1cc950079c0f6942d6f92389025b85b..36988541df00928f31504fccb404dc10801a1d54 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png
index b427f0e4daa7125636f8428b259531e0021a5231..92f82999d0ce2849a1b3511e0f7d226150c197d8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png
index d21d64543036dfebe140bea06acb1d507f03f3fb..1dbc492ef53f67b89ff67c23aa5a124ecbf1239a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png
index b5965730229dd3aa6f01085703a9fdfdbaccd79f..e422731715a169e1081bdf3ba51192aedd0277c8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png
index 573db18fca03a7c98f4be4e9b95cbdf07089d4b2..f792d9e8dfe280c1c9ff9d0395c9f0df156d8ac0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png
index e5c87ce3d016b4c05e5f734f161b86bee1db814a..8bdf53dbba5566c41539d30e024579d007690fc3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png
index 82adb29bce82a39f2ec348fa2f0c7ce62111f544..f6beb92827e08da02621400879a5d86ecc71c8b2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png
index 14240785af48cbefd515182620ff67a921dc2f5f..36f0e8aafa9277baf4e0f163f9d92cde18d722f7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..3ffe626abe08104c9461d05116cc805564d5125d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.css
index facefba1fd565810429c2eafb4cecb43884f6614..58148b93610e3c074b8ae7c8f6daaea101fe49d0 100644
--- a/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=deedf7&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=aed0ea&fcHeader=222222&iconColorHeader=72a7cf&bgColorContent=f2f5f7&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=362b36&iconColorContent=72a7cf&bgColorDefault=d7ebf9&bgTextureDefault=glass&bgImgOpacityDefault=80&borderColorDefault=aed0ea&fcDefault=2779aa&iconColorDefault=3d80b3&bgColorHover=e4f1fb&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=74b2e2&fcHover=0070a3&iconColorHover=2694e8&bgColorActive=3baae3&bgTextureActive=glass&bgImgOpacityActive=50&borderColorActive=2694e8&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffef8f&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=25&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=cd0a0a&bgTextureError=flat&bgImgOpacityError=15&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=eeeeee&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=90&opacityOverlay=80&bgColorShadow=000000&bgTextureShadow=highlight_hard&bgImgOpacityShadow=70&opacityShadow=30&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.min.css
index e8022b37726d39c4f8b6b4b559293a9d9ed3c859..b18d19e57c5b9abc31d31178e94695674256db41 100644
--- a/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/cupertino/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=deedf7&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=aed0ea&fcHeader=222222&iconColorHeader=72a7cf&bgColorContent=f2f5f7&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=362b36&iconColorContent=72a7cf&bgColorDefault=d7ebf9&bgTextureDefault=glass&bgImgOpacityDefault=80&borderColorDefault=aed0ea&fcDefault=2779aa&iconColorDefault=3d80b3&bgColorHover=e4f1fb&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=74b2e2&fcHover=0070a3&iconColorHover=2694e8&bgColorActive=3baae3&bgTextureActive=glass&bgImgOpacityActive=50&borderColorActive=2694e8&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffef8f&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=25&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=cd0a0a&bgTextureError=flat&bgImgOpacityError=15&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=eeeeee&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=90&opacityOverlay=80&bgColorShadow=000000&bgTextureShadow=highlight_hard&bgImgOpacityShadow=70&opacityShadow=30&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/cupertino/theme.css b/civicrm/bower_components/jquery-ui/themes/cupertino/theme.css
index d3b9c4d821d2778f8b4d3ac80218f8f367f6b7ec..2fc5c7448c7d5302c49e45eed7ac6f03568c2187 100644
--- a/civicrm/bower_components/jquery-ui/themes/cupertino/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/cupertino/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png
index 12828293e4d2bb9bcc7a3b3c4fa1ee60fee40d4a..0d9efab887c9a878cbd328af76469686c8735353 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png
index 218866d9c6d1e916ec53c1788dbc81a1b3b7352e..1d3ba0ac88fe27feba15106d1ec5dc9818a8a110 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png
index bb4be616fe56ff1f45943ed9b71edb6d393cdec1..3d02e3abf6aec70306ddad01a465f9e9c330a13f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png
index 90a70bed2e3802d829e4a6fc341b0c2235974f8a..151e08cdad64da13f2a59d019eb92cb58b3938ed 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png
index d3e0c2375247757620fcd8da20dc29a2f0284d23..a6e2ae5b1bee0d9e8488d7179820949d3d515bfb 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
index ee09468ec8845bd5f8da54fe93e2d0a7e500ef4b..c2483a5e1ecddfbe82d15a30e9d571fa1d07c9e0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png
index 159e579f4a8437be28840f0e65adab59b1382fbe..505751fc08cab9688a9f1c3a7eb792a0e4313e66 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png
index e52e2a9117d2da9f8804ab1de1f8f893c452c883..c65bb56bedbf2ad0902e82ff0f0161a49c7721f6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png
index d44d88a216781f8061343001ee4e52eb6cc22202..8498f8a7cfcccbdf660046d55b2a946c1ee78871 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png
index 91ec9bfe0b41cb45c3d97600f29357c8cb85b854..dbfbb5d55abdf325f04e98b194b92dc34956437c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png
index 85af6c6204bf42a12c0d40ab5d17a6926a1644df..45dfe7b424e74e9e52aa5d52f76149b7e5fbdb9d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..3ffe626abe08104c9461d05116cc805564d5125d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.css
index 99e8e8ad70083fe5b71b6fc3ffcc73093ac4bf50..ac69ba3f8a1f358de2b9b7e7e985ffe93a4c6201 100644
--- a/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=444444&bgTextureHeader=highlight_soft&bgImgOpacityHeader=44&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=loop&bgImgOpacityContent=25&borderColorContent=555555&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=222222&bgTextureDefault=highlight_soft&bgImgOpacityDefault=35&borderColorDefault=444444&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=003147&bgTextureHover=highlight_soft&bgImgOpacityHover=33&borderColorHover=0b93d5&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=0972a5&bgTextureActive=highlight_hard&bgImgOpacityActive=20&borderColorActive=26b3f7&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=glass&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.min.css
index f3f9189e3d7fb1ec47ad54c831f7feca4c16169d..7b15fde62aac5529c5bed2cf7636f6dea9d46a19 100644
--- a/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/dark-hive/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=444444&bgTextureHeader=highlight_soft&bgImgOpacityHeader=44&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=loop&bgImgOpacityContent=25&borderColorContent=555555&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=222222&bgTextureDefault=highlight_soft&bgImgOpacityDefault=35&borderColorDefault=444444&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=003147&bgTextureHover=highlight_soft&bgImgOpacityHover=33&borderColorHover=0b93d5&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=0972a5&bgTextureActive=highlight_hard&bgImgOpacityActive=20&borderColorActive=26b3f7&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=glass&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/dark-hive/theme.css b/civicrm/bower_components/jquery-ui/themes/dark-hive/theme.css
index f6d15693a6a2b1b6a281e1222a4ea814a5ea2630..7f0a73a00cca9588c90a874426447725884a9307 100644
--- a/civicrm/bower_components/jquery-ui/themes/dark-hive/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/dark-hive/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png
index 0b7822a4133d25179e7ff90061026c6d447d002e..5cddef4f6b5adf4a34788d0eeafd382f6de5eaef 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png
index e6ff5256a6eb2a30830c593e3a0b8535de31a721..d9b8c7b2b3421cda3c88b98b89dedbcff7a36f85 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png
index cd9c7e2db376decd00ad790b1857857db364b2e5..f2f9b368ac4eb108bee8b9124a9d614f256c71b2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png
index ba9ac182fe208f417888c22f526e42441560f7bc..b379266e01e8415404762b2edb633e6d95f0dde4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png
index 4660e58b4635234bcc0dffd724bc54df5d0083e9..28a6a736e6dc4b7f0c911939d5b44c182f51b1ee 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png
index 8ff0fc48b676cb54f046255461a7a0c0f180a961..a7b609a6de25e7eb265d899fe82353d9516e3daa 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png
index 00ac3c0d0a11a62dbc0280cd2f36a73643979ee9..38f6d774dba9d7db60fd8bf657d21dfbcf00b097 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png
index fd8bb3d71b8f7ac29a755b175833abde06c79e7d..218ca0622368fab509b640c6a5a200d8844a1a94 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png
index 38c3395f51ca9751d1415fffd85aca42e91bdaad..3416df13d8b69a413aa4cb61428d1a4dd9522ab8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..3ca2d0bc7ece2fe3849879f6d7535554d7e7ee98 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.css
index 00da818a79f111aac9ff5490a7e086060c5ae4a6..7e8ede7e235c595e813b0ed3e62bf63990368d51 100644
--- a/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2Csans-serif&fwDefault=bold&fsDefault=1.3em&cornerRadius=4px&bgColorHeader=0b3e6f&bgTextureHeader=diagonals_thick&bgImgOpacityHeader=15&borderColorHeader=0b3e6f&fcHeader=f6f6f6&iconColorHeader=98d2fb&bgColorContent=111111&bgTextureContent=gloss_wave&bgImgOpacityContent=20&borderColorContent=000000&fcContent=d9d9d9&iconColorContent=9ccdfc&bgColorDefault=333333&bgTextureDefault=dots_small&bgImgOpacityDefault=20&borderColorDefault=333333&fcDefault=ffffff&iconColorDefault=9ccdfc&bgColorHover=00498f&bgTextureHover=dots_small&bgImgOpacityHover=40&borderColorHover=222222&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=292929&bgTextureActive=flat&bgImgOpacityActive=40&borderColorActive=096ac8&fcActive=75abff&iconColorActive=00498f&bgColorHighlight=0b58a2&bgTextureHighlight=dots_medium&bgImgOpacityHighlight=30&borderColorHighlight=052f57&fcHighlight=ffffff&iconColorHighlight=ffffff&bgColorError=a32d00&bgTextureError=dots_small&bgImgOpacityError=30&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.min.css
index e4fbca0aaa9e50b13dc7d2a3b559726c05dd25b1..e868a046b71df79cdd01cb24a5a8b7f0af94dcc5 100644
--- a/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/dot-luv/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2Csans-serif&fwDefault=bold&fsDefault=1.3em&cornerRadius=4px&bgColorHeader=0b3e6f&bgTextureHeader=diagonals_thick&bgImgOpacityHeader=15&borderColorHeader=0b3e6f&fcHeader=f6f6f6&iconColorHeader=98d2fb&bgColorContent=111111&bgTextureContent=gloss_wave&bgImgOpacityContent=20&borderColorContent=000000&fcContent=d9d9d9&iconColorContent=9ccdfc&bgColorDefault=333333&bgTextureDefault=dots_small&bgImgOpacityDefault=20&borderColorDefault=333333&fcDefault=ffffff&iconColorDefault=9ccdfc&bgColorHover=00498f&bgTextureHover=dots_small&bgImgOpacityHover=40&borderColorHover=222222&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=292929&bgTextureActive=flat&bgImgOpacityActive=40&borderColorActive=096ac8&fcActive=75abff&iconColorActive=00498f&bgColorHighlight=0b58a2&bgTextureHighlight=dots_medium&bgImgOpacityHighlight=30&borderColorHighlight=052f57&fcHighlight=ffffff&iconColorHighlight=ffffff&bgColorError=a32d00&bgTextureError=dots_small&bgImgOpacityError=30&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/dot-luv/theme.css b/civicrm/bower_components/jquery-ui/themes/dot-luv/theme.css
index bb8eb63f3733d25feb56d40e919043d196abebd8..b7e00d1f9d24c4afa4075ddd190b39fb3c55eebc 100644
--- a/civicrm/bower_components/jquery-ui/themes/dot-luv/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/dot-luv/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png
index 6c053de4edc7c9fa4057f75100d48de2159a3291..11a87c4ce5f839085c779c1399c5f13dec272617 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png
index 2e837e61f13debd9491adcb58b236e694e950b99..fd673c8b7f68e2a99362578beff9637349cc0e74 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png
index 5d771db427e9d28cd64b417951dfa7c6bfdf8df4..fb92fb77a162a55e3df2b7d9dee9522c8f195471 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png
index c2cb70feedabd72009c85cbd7258d9f07b2d3d9c..571497546ac60266ec75180cea94c0be735d520e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png
index c0277c85551a4952d946d5485e1842b04de46b6b..7177f3a2027f66718aacaebd54b0a799fc3e5dfb 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png
index 68ff24bc8e3b07bfe6f8d39a38322057090a9979..1288544dca597cff2f586fec8146b86addce967f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png
index 4e3b6ccbcff5d165a7b044e2491dd3e39d57940c..843ccfe5b8b4f06033384800fe84a10bb2d2e6fa 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png
index 81f502921ebff28c36c3541caa009f8950bd51ce..66ce6dd1e8194e03811d9c0e498861fea6ad0f4a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png
index 8ba9d8810a8bb0704d507f44d2715c7d73d8a258..fa7bb6d3b5b771a1628b349b672474aedb5fb5d6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png
index d87cebacc53c6396db5727ab016f8740fb3b8779..fc0defb4a07487ed5ed443a7571695064237ca45 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..3ffe626abe08104c9461d05116cc805564d5125d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.css
index e9bbb5a6d987d04e7c01a52cd4fa1849bb840ea5..6f3156e7c5f044db70470f5c4bfcf27c0297c815 100644
--- a/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=30273a&bgTextureHeader=highlight_soft&bgImgOpacityHeader=25&borderColorHeader=231d2b&fcHeader=ffffff&iconColorHeader=a8a3ae&bgColorContent=3d3644&bgTextureContent=gloss_wave&bgImgOpacityContent=30&borderColorContent=7e7783&fcContent=ffffff&iconColorContent=ffffff&bgColorDefault=dcd9de&bgTextureDefault=highlight_soft&bgImgOpacityDefault=100&borderColorDefault=dcd9de&fcDefault=665874&iconColorDefault=8d78a5&bgColorHover=eae6ea&bgTextureHover=highlight_soft&bgImgOpacityHover=100&borderColorHover=d1c5d8&fcHover=734d99&iconColorHover=734d99&bgColorActive=5f5964&bgTextureActive=highlight_soft&bgImgOpacityActive=45&borderColorActive=7e7783&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=fafafa&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=ffdb1f&fcHighlight=333333&iconColorHighlight=8d78a5&bgColorError=994d53&bgTextureError=flat&bgImgOpacityError=55&borderColorError=994d53&fcError=ffffff&iconColorError=ebccce&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.min.css
index 4dfa89243d9c1e7f5c48ff0874e75793215b3e00..c85ed9c396946e95fee2579d8d27fb313ae0c482 100644
--- a/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/eggplant/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=30273a&bgTextureHeader=highlight_soft&bgImgOpacityHeader=25&borderColorHeader=231d2b&fcHeader=ffffff&iconColorHeader=a8a3ae&bgColorContent=3d3644&bgTextureContent=gloss_wave&bgImgOpacityContent=30&borderColorContent=7e7783&fcContent=ffffff&iconColorContent=ffffff&bgColorDefault=dcd9de&bgTextureDefault=highlight_soft&bgImgOpacityDefault=100&borderColorDefault=dcd9de&fcDefault=665874&iconColorDefault=8d78a5&bgColorHover=eae6ea&bgTextureHover=highlight_soft&bgImgOpacityHover=100&borderColorHover=d1c5d8&fcHover=734d99&iconColorHover=734d99&bgColorActive=5f5964&bgTextureActive=highlight_soft&bgImgOpacityActive=45&borderColorActive=7e7783&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=fafafa&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=ffdb1f&fcHighlight=333333&iconColorHighlight=8d78a5&bgColorError=994d53&bgTextureError=flat&bgImgOpacityError=55&borderColorError=994d53&fcError=ffffff&iconColorError=ebccce&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/eggplant/theme.css b/civicrm/bower_components/jquery-ui/themes/eggplant/theme.css
index 22301c82d6d0d12431ed69af0a4a5b528902e718..b0c284e90b97f938ae4b66dc42e01f9f3d311142 100644
--- a/civicrm/bower_components/jquery-ui/themes/eggplant/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/eggplant/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png
index 4c51e8c70ef15e07ed2b77cd166c57c03dfea838..920d9ed17798acfc32499768de2395b7f1b38c9b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png
index 5a0d033adf48d7918d805e3878a929899e8b68e4..47b4913b3201b6bcc5630091cd3e40523d47e18e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png
index 4cc8263c71a8776ba9bfe512b3607b7130dbcee0..4ca6bb65a3ccd29d43773af97becf63845fc8c7c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png
index b15188fda749636d6d2dc3ec02a15221b6f062fc..fab1234f1794f729bbf61114e4265afd2a3a5039 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png
index f0b456c112583c1197b2d9072be7569e334b1405..3a172100a93146953895abe169fd4bdaf8a0f476 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png
index e19e6ce8fabff11ce0b8b5cc815e4227e8cf219c..bccd22b78cb678b1d782d47eda26511e37edee67 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png
index 9b6cd13ef99ad7eb84728b3b6e61a8b5bccc96a5..003ed7bc2c9ad8fcc2283bf1602c5ffb506ce2bc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png
index 3d7a25ccbf24d118b1d6edf1f9fbb3ff6561c5f4..8d1b3c8a339402fd02d916dbce0fa1632978f831 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png
index 7efa8d5d2d4d0b91edd8a87f96469a5a4c78d52f..16323eaec48850aeea760f820afe55bde7ebbab5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png
index 78bf758cc097a324182c319fa66baae83f518cf6..1d654f3ebded5f6e88df24a9dbf30911543aae8b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..abd0a87947867a3ec43007a645534efc54fb722d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.css
index 21ab92c84f2bf5e353e2dacded7d8fd9027079d7..325d5b5e826c19118e5a93d2104e1c7cb523a5d9 100644
--- a/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=segoe%20ui%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=3px&bgColorHeader=f9f9f9&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=cccccc&fcHeader=e69700&iconColorHeader=5fa5e3&bgColorContent=eeeeee&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=0a82eb&bgColorDefault=1484e6&bgTextureDefault=diagonals_thick&bgImgOpacityDefault=22&borderColorDefault=ffffff&fcDefault=ffffff&iconColorDefault=fcdd4a&bgColorHover=2293f7&bgTextureHover=diagonals_thick&bgImgOpacityHover=26&borderColorHover=2293f7&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=e69700&bgTextureActive=diagonals_thick&bgImgOpacityActive=20&borderColorActive=e69700&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=c5ddfc&bgTextureHighlight=diagonals_small&bgImgOpacityHighlight=25&borderColorHighlight=ffffff&fcHighlight=333333&iconColorHighlight=0b54d5&bgColorError=e69700&bgTextureError=diagonals_thick&bgImgOpacityError=20&borderColorError=e69700&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=e6b900&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=e69700&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=20&thicknessShadow=0px&offsetTopShadow=6px&offsetLeftShadow=6px&cornerRadiusShadow=3px
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.min.css
index bb75788b6f9ff2398db13a808efbd7db1b2aad9e..4de008f2dc226485f4974d44639f3511886f3358 100644
--- a/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/excite-bike/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=segoe%20ui%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=3px&bgColorHeader=f9f9f9&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=cccccc&fcHeader=e69700&iconColorHeader=5fa5e3&bgColorContent=eeeeee&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=0a82eb&bgColorDefault=1484e6&bgTextureDefault=diagonals_thick&bgImgOpacityDefault=22&borderColorDefault=ffffff&fcDefault=ffffff&iconColorDefault=fcdd4a&bgColorHover=2293f7&bgTextureHover=diagonals_thick&bgImgOpacityHover=26&borderColorHover=2293f7&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=e69700&bgTextureActive=diagonals_thick&bgImgOpacityActive=20&borderColorActive=e69700&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=c5ddfc&bgTextureHighlight=diagonals_small&bgImgOpacityHighlight=25&borderColorHighlight=ffffff&fcHighlight=333333&iconColorHighlight=0b54d5&bgColorError=e69700&bgTextureError=diagonals_thick&bgImgOpacityError=20&borderColorError=e69700&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=e6b900&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=e69700&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=20&thicknessShadow=0px&offsetTopShadow=6px&offsetLeftShadow=6px&cornerRadiusShadow=3px
diff --git a/civicrm/bower_components/jquery-ui/themes/excite-bike/theme.css b/civicrm/bower_components/jquery-ui/themes/excite-bike/theme.css
index a733a15603281accdaded5470c54c08aeeb7e7aa..1c7a8cfb85c1ceeb865b3bbb561779133c4632d9 100644
--- a/civicrm/bower_components/jquery-ui/themes/excite-bike/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/excite-bike/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png
index 747740ab500407484768fb79901dccabe2c7e1a9..7b5e9c453df717a990fc2a1ca2ff48d362af45ee 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png
index 02b07b3b51a8a6c9fe88af0b689f7fc5068eee6d..769dd0f6a9076274b69b0b49ec65be578ebeaadd 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png
index 322c483ca199e4876961b4f56938a1fa3e98f9ba..89dedd657dd086025cc99f841d704087e88422c5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png
index d290c58ad63b0af1fc47ec08fe1c07fa5d7a1361..3f57bbb8886826ca2b6306ff23c29fb4cc0f172c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png
index 656b1327b73cda04cf0fde094e31c0c6fedec556..de31ee50e1bc9aca4f72fa6ec1769eb7bdcc7244 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png
index 68ff24bc8e3b07bfe6f8d39a38322057090a9979..1288544dca597cff2f586fec8146b86addce967f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png
index 37eaf59b6c08cae47e62fc5aa18e78a11da97a92..a3088e3553d5291b6a62586d594053bd9f37cf10 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png
index ce5e0fec704952fae71272ae226128ab05d93d5c..a408441d70955c23180bffdeab5e460e1ffb5020 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..3ffe626abe08104c9461d05116cc805564d5125d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.css
index 7b42784717b9c4f63d541189b16889d0431e4aa3..f36af3687ee07b24ce70222872f252b63cee6b0c 100644
--- a/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=2px&bgColorHeader=dddddd&bgTextureHeader=highlight_soft&bgImgOpacityHeader=50&borderColorHeader=dddddd&fcHeader=444444&iconColorHeader=0073ea&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=dddddd&fcContent=444444&iconColorContent=ff0084&bgColorDefault=f6f6f6&bgTextureDefault=highlight_soft&bgImgOpacityDefault=100&borderColorDefault=dddddd&fcDefault=0073ea&iconColorDefault=666666&bgColorHover=0073ea&bgTextureHover=highlight_soft&bgImgOpacityHover=25&borderColorHover=0073ea&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=dddddd&fcActive=ff0084&iconColorActive=454545&bgColorHighlight=ffffff&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=cccccc&fcHighlight=444444&iconColorHighlight=0073ea&bgColorError=ffffff&bgTextureError=flat&bgImgOpacityError=55&borderColorError=ff0084&fcError=222222&iconColorError=ff0084&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.min.css
index 9e5d3e5e23102075b8788103279dd6dd33f3127b..021557608e78c920011db4bdf9f00b856285a8d8 100644
--- a/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/flick/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=2px&bgColorHeader=dddddd&bgTextureHeader=highlight_soft&bgImgOpacityHeader=50&borderColorHeader=dddddd&fcHeader=444444&iconColorHeader=0073ea&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=dddddd&fcContent=444444&iconColorContent=ff0084&bgColorDefault=f6f6f6&bgTextureDefault=highlight_soft&bgImgOpacityDefault=100&borderColorDefault=dddddd&fcDefault=0073ea&iconColorDefault=666666&bgColorHover=0073ea&bgTextureHover=highlight_soft&bgImgOpacityHover=25&borderColorHover=0073ea&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=dddddd&fcActive=ff0084&iconColorActive=454545&bgColorHighlight=ffffff&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=cccccc&fcHighlight=444444&iconColorHighlight=0073ea&bgColorError=ffffff&bgTextureError=flat&bgImgOpacityError=55&borderColorError=ff0084&fcError=222222&iconColorError=ff0084&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/flick/theme.css b/civicrm/bower_components/jquery-ui/themes/flick/theme.css
index 2ca4392ace7ac193226a892a0431f1613e46e0ee..f971454287c2cb597746ef5067c92491543ed252 100644
--- a/civicrm/bower_components/jquery-ui/themes/flick/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/flick/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png
index 950e9ecf5ac97cb69f5de85499c08ef36b10d8a9..b05c6a9f9ebeac722fec6c94cccf0e5d21326f96 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png
index bd4ad852baf616ee9132a6750e8cfcef04616140..f91a0b3a489d827a4f03e14d02b1c9f1ad45b82c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png
index 31d131310fb440ff5379c4040c24b3a529b65636..5fe289e9c8288ac9c8f82abf2c9be72759c6d2a3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png
index b17212e18130e5a005fc6767f399acb1f21daaee..b9698273207d67731504c433178ecd48bb25b3c6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png
index 2d0f1570c28a06a9ef4acd5e1871badef2b7e7f6..b7495f5aabb8c3bb89452c7f355560ffd52fdeca 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png
index d488483fedfbe8330ea87b1fd8d37f20118280ce..3e8dad4929dc16e4f6db0f2c75cb9888293a6dc6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png
index 1f2f0a723791d8731d214e53363c9dcf45c9041a..ef581203b8c5bc8eb19d8f75752040d628f658c7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png
index d7fb5870955e673e686d5bbdf09bcc7fde7724e9..e2686f680e6fba3aaf74ad96646dd490a13225f9 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png
index ea9790551d81d0f4cb3cd1215adc725c871966c8..03eacf6caa35c757f939a98639faf294932ba912 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png
index 57ef02a21447e6e3cc0973d218094ead539f775c..6ddf199307d6569bea5174b18ba74b5a7cab241f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png
index 36e275a1db54e0c70c23dbe77082ed2c984cec44..637bb81e6ed131820f3a57fb0d7b3d2e51850391 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png
index 7817818232905c8c6860e205ced666a0f7f0458e..4c8a9a6ff8e4b90c738f96f849633bc271706696 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..abd0a87947867a3ec43007a645534efc54fb722d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.css
index 38ed9fb44894bb498087389eeb4777c26f0678c6..7e327ab8a7c9bcb2c58da365fb67417bf426a8b7 100644
--- a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Gill%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.2em&cornerRadius=4px&bgColorHeader=35414f&bgTextureHeader=dots_small&bgImgOpacityHeader=35&borderColorHeader=2c4359&fcHeader=e1e463&iconColorHeader=e1e463&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=2c4359&iconColorContent=c02669&bgColorDefault=93c3cd&bgTextureDefault=diagonals_small&bgImgOpacityDefault=50&borderColorDefault=93c3cd&fcDefault=333333&iconColorDefault=ffffff&bgColorHover=ccd232&bgTextureHover=diagonals_small&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=db4865&bgTextureActive=diagonals_small&bgImgOpacityActive=40&borderColorActive=ff6b7f&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffff38&bgTextureHighlight=dots_medium&bgImgOpacityHighlight=80&borderColorHighlight=b4d100&fcHighlight=363636&iconColorHighlight=88a206&bgColorError=ff3853&bgTextureError=diagonals_small&bgImgOpacityError=50&borderColorError=ff6b7f&fcError=ffffff&iconColorError=ffeb33&bgColorOverlay=f7f7ba&bgTextureOverlay=white_lines&bgImgOpacityOverlay=85&opacityOverlay=80&bgColorShadow=ba9217&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=20&thicknessShadow=10px&offsetTopShadow=8px&offsetLeftShadow=8px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.min.css
index 236d5c5a4650d2488c2d4834e7ee22adb7578c03..7b370a21a9409a50a068d6e88811cea3f4839482 100644
--- a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Gill%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.2em&cornerRadius=4px&bgColorHeader=35414f&bgTextureHeader=dots_small&bgImgOpacityHeader=35&borderColorHeader=2c4359&fcHeader=e1e463&iconColorHeader=e1e463&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=2c4359&iconColorContent=c02669&bgColorDefault=93c3cd&bgTextureDefault=diagonals_small&bgImgOpacityDefault=50&borderColorDefault=93c3cd&fcDefault=333333&iconColorDefault=ffffff&bgColorHover=ccd232&bgTextureHover=diagonals_small&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=db4865&bgTextureActive=diagonals_small&bgImgOpacityActive=40&borderColorActive=ff6b7f&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffff38&bgTextureHighlight=dots_medium&bgImgOpacityHighlight=80&borderColorHighlight=b4d100&fcHighlight=363636&iconColorHighlight=88a206&bgColorError=ff3853&bgTextureError=diagonals_small&bgImgOpacityError=50&borderColorError=ff6b7f&fcError=ffffff&iconColorError=ffeb33&bgColorOverlay=f7f7ba&bgTextureOverlay=white_lines&bgImgOpacityOverlay=85&opacityOverlay=80&bgColorShadow=ba9217&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=20&thicknessShadow=10px&offsetTopShadow=8px&offsetLeftShadow=8px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/theme.css b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/theme.css
index 56f3cbd1d74dbaf661c812ccf3ccec43379dc7bf..259ba57dd8d69b167ad31be2da55b9ef7f644606 100644
--- a/civicrm/bower_components/jquery-ui/themes/hot-sneaks/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/hot-sneaks/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png
index 9f1173f0710076f3b2995d311ea2eb4eacd42cfc..fbfebda333c73ef72ca7d1e1e6c96490f01de8fc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png
index c64f32641171f87bedd4f81a5a10c7d9e03c0b71..dea3723ce32f659c284b9efbe84b57a2eced6475 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png
index 832227084360c32cc17c6a55de81dd7207362267..9ebb347eae36e20801bfc14c3333c42bdc5b7714 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png
index b310651f8fb96a33d6ef103c792b67d2439ab205..cd4e8972c33e35c89c72f7c2c0601f852dd62bb3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
index 0e13ca6cb7d0ce5c3d1017e9701d4f930a4a8836..6433bba1155dcb5aa1ad08f0f3d2ce43cb8006a8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png
index b1fe5aeb720c150df149df1690513cdc1a3c7d04..4702668d03b51f8fe1bce91946df106c0e6b75d3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png
index 6f4a37daa5871a5e454ab13c07021e4ea72fe6b0..5f6208254235e752a35adb811930356182b3e27f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png
index bda23aad5fa3c215cd366f13733e0c5d6a64a40c..f9c2a285b7ef87e6025998bf9a29073955128050 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png
index 0eea347c2bac76a076d97bece880e4198617364d..a1c91b7781d07ed474bc19e36c6e40c17a762c26 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png
index 76e7bf9ec655fabd2860359e3e8921f8e488a9e1..ced9ace0091a4c81774629c26cd38a7be7e4957e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png
index 3091203b171349b502cb8510f77ed5be11235c13..8e4fe1f4dbb9102cb9b61c554338f1e2d0c85992 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png
index 50e38bb9a1fd12faec3ed8587bfd7e35b061d54b..c5d5212335ec9769591229fe885cefa9a52548d3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..abd0a87947867a3ec43007a645534efc54fb722d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.css
index 2604e8e9524f7a73c51634527faf8656a91e2f76..104a9bbe536d212e0e3a2e3c571f7621fb3dc862 100644
--- a/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=cb842e&bgTextureHeader=glass&bgImgOpacityHeader=25&borderColorHeader=d49768&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=f4f0ec&bgTextureContent=inset_soft&bgImgOpacityContent=100&borderColorContent=e0cfc2&fcContent=1e1b1d&iconColorContent=c47a23&bgColorDefault=ede4d4&bgTextureDefault=glass&bgImgOpacityDefault=70&borderColorDefault=cdc3b7&fcDefault=3f3731&iconColorDefault=f08000&bgColorHover=f5f0e5&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=f5ad66&fcHover=a46313&iconColorHover=f08000&bgColorActive=f4f0ec&bgTextureActive=highlight_hard&bgImgOpacityActive=100&borderColorActive=e0cfc2&fcActive=b85700&iconColorActive=f35f07&bgColorHighlight=f5f5b5&bgTextureHighlight=highlight_hard&bgImgOpacityHighlight=75&borderColorHighlight=d9bb73&fcHighlight=060200&iconColorHighlight=cb672b&bgColorError=fee4bd&bgTextureError=highlight_hard&bgImgOpacityError=65&borderColorError=f8893f&fcError=592003&iconColorError=ff7519&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=75&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.min.css
index eef6eff99aef3022f9bd694c9347d65f3b4df7a0..741779ba1b8111e3f5d5dc828adf0e55afd245a2 100644
--- a/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/humanity/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=cb842e&bgTextureHeader=glass&bgImgOpacityHeader=25&borderColorHeader=d49768&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=f4f0ec&bgTextureContent=inset_soft&bgImgOpacityContent=100&borderColorContent=e0cfc2&fcContent=1e1b1d&iconColorContent=c47a23&bgColorDefault=ede4d4&bgTextureDefault=glass&bgImgOpacityDefault=70&borderColorDefault=cdc3b7&fcDefault=3f3731&iconColorDefault=f08000&bgColorHover=f5f0e5&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=f5ad66&fcHover=a46313&iconColorHover=f08000&bgColorActive=f4f0ec&bgTextureActive=highlight_hard&bgImgOpacityActive=100&borderColorActive=e0cfc2&fcActive=b85700&iconColorActive=f35f07&bgColorHighlight=f5f5b5&bgTextureHighlight=highlight_hard&bgImgOpacityHighlight=75&borderColorHighlight=d9bb73&fcHighlight=060200&iconColorHighlight=cb672b&bgColorError=fee4bd&bgTextureError=highlight_hard&bgImgOpacityError=65&borderColorError=f8893f&fcError=592003&iconColorError=ff7519&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=75&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/humanity/theme.css b/civicrm/bower_components/jquery-ui/themes/humanity/theme.css
index 42069caf3babc9bd1ebc763a53b89f013352577f..b8a17be260ed25113a6057ffd3d93ddfbc983d04 100644
--- a/civicrm/bower_components/jquery-ui/themes/humanity/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/humanity/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
index df1912bfb03f11f0c0815748ba78ae6684cf4c57..508ad6992ae053253af4e609533ff070139069b4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png
index 0dd93d1e51a786ae550e99c3c0ecb1bad1d06495..e86101e7711f94ac076c237eb627012084f1f8f5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png
index e4153f8f94520b09b690494de3964c5ba3c226d1..5c5cdd55164e151a98bc264422673a0a6f0f2705 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png
index d6376a40f03461b49f0d42d3f4df061b2d9a87cf..333a64d006d19355e2cca5daeeebc1a3f340f71e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png
index 83051571ffb976ca286cfb4204334646b4c4ea36..0401313427251df3c94cce5a809b9a764b81eff7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png
index 7585147550e689248b4ccac3c65e9339879b4bb3..2ba244668455e1a702a852de8b293282918d3386 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png
index 57f03d5bf4d1b769a0d0cdabba7aeda8f6d4b652..c97aaac5c95ed2d5ea89f1e6f6664f3d6d1956b8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png
index fcf3143dd000db09d6d766bfe5464b5f8d389ece..76218de0bc69b7e012dfd3b4f896d090fb3f385c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png
index f629d9d7d2b7a23411a6d5141ff69e759f86a4f7..dfabdc06d334f00e2a4ed08aad838b02c832ebd3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png
index 91a6bf8c46e577304e5ea0ca3272f83fbc577612..0a74961b63d6b094a695b8a6bd6264d50a249b70 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png
index ab40ebf2b04078b8dee108b1fe27a67429e886ea..9da3513e48f4ef739de68145797d18ba8fe42257 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png
index 92dd1d23730e11e0c16d33accdd3931ab77dfaf6..9cbb979971502021b5c7c5e61392c637268f3bd0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..f4e692c66dcf6c5aa36cbc4e9802df1d468df5e0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.css
index 48c27b24cf80727540c16d9e23251ccddb7d6dab..581af61f90e84b211cf9c9379910c169e2a2bcab 100644
--- a/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=10px&bgColorHeader=3a8104&bgTextureHeader=highlight_soft&bgImgOpacityHeader=33&borderColorHeader=3f7506&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=285c00&bgTextureContent=inset_soft&bgImgOpacityContent=10&borderColorContent=72b42d&fcContent=ffffff&iconColorContent=72b42d&bgColorDefault=4ca20b&bgTextureDefault=highlight_soft&bgImgOpacityDefault=60&borderColorDefault=45930b&fcDefault=ffffff&iconColorDefault=ffffff&bgColorHover=4eb305&bgTextureHover=highlight_soft&bgImgOpacityHover=50&borderColorHover=8bd83b&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=285c00&bgTextureActive=highlight_hard&bgImgOpacityActive=30&borderColorActive=72b42d&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fbf5d0&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=4eb305&bgColorError=ffdc2e&bgTextureError=diagonals_thick&bgImgOpacityError=95&borderColorError=fad000&fcError=2b2b2b&iconColorError=cd0a0a&bgColorOverlay=444444&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=15&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=diagonals_small&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=0px&offsetTopShadow=4px&offsetLeftShadow=4px&cornerRadiusShadow=4px
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.min.css
index 397bae8a36b9b1de89d59f6cca38c0c7f7e95316..ef519919ed18bc7bc4ae557ef4af3789e3aa87fd 100644
--- a/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/le-frog/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=10px&bgColorHeader=3a8104&bgTextureHeader=highlight_soft&bgImgOpacityHeader=33&borderColorHeader=3f7506&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=285c00&bgTextureContent=inset_soft&bgImgOpacityContent=10&borderColorContent=72b42d&fcContent=ffffff&iconColorContent=72b42d&bgColorDefault=4ca20b&bgTextureDefault=highlight_soft&bgImgOpacityDefault=60&borderColorDefault=45930b&fcDefault=ffffff&iconColorDefault=ffffff&bgColorHover=4eb305&bgTextureHover=highlight_soft&bgImgOpacityHover=50&borderColorHover=8bd83b&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=285c00&bgTextureActive=highlight_hard&bgImgOpacityActive=30&borderColorActive=72b42d&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fbf5d0&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=4eb305&bgColorError=ffdc2e&bgTextureError=diagonals_thick&bgImgOpacityError=95&borderColorError=fad000&fcError=2b2b2b&iconColorError=cd0a0a&bgColorOverlay=444444&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=15&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=diagonals_small&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=0px&offsetTopShadow=4px&offsetLeftShadow=4px&cornerRadiusShadow=4px
diff --git a/civicrm/bower_components/jquery-ui/themes/le-frog/theme.css b/civicrm/bower_components/jquery-ui/themes/le-frog/theme.css
index 45c196d13c679d115a9271b346da31fd66326ac4..d31337becdd3082961e93f09fd384f0a775ed204 100644
--- a/civicrm/bower_components/jquery-ui/themes/le-frog/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/le-frog/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png
index e909e71c20a92838bde22984276c33c8d1ae62a0..2d198902adb2b7620be6c5594ab853145ef5f140 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png
index f160558dcb4f27ad0897bef4836c014f5066e7f9..5ce8f5a8766ac8a3e89ea2677a91d8c24c83e01d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png
index 44958a9639ec454eed91710c503b559e073f656e..12b49db4bf960a32c8b100cd4853d94eba181502 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png
index 71eeaae8d2d7065eabd6cc8cd37080fb32507ac2..14900d5436e91963c32af6223438a69024fb0fec 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png
index 356def85a82ac8eebdbdfea25e7ea512d463cdde..30326429f9fdbf8e15d7ca9956dd71a5dc060ca2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png
index ccd7b883e41c80cf784ca2a9e28c35058c5c6a12..f4ff535a561277c263bba828290faaa299e14896 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png
index 61cd7a1cb00a9dc70bb4d653311864baea8e3958..e4ba91ef2feb84bf8ef8a6b28dc1ad40d5a3f842 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png
index b8997ddf7e41907c3119fcefe89ac26d6182056c..ea671ac2df406e441ab0088d6721f88e4167571e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png
index 8079162a8c614a221dc8a69140ac222ffb94d7ca..74fb700cb1e3e9c45bd01ed61f381d376b23c7af 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png
index 482428f9680206ffaf0e2479c12ee74ca97247a1..54266a7910790cec6c212ed017c5013d3962c604 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png
index 09fb21c1619c5bc5ba9656a5d343426cb0947da4..4bd63d5eca5376232e7d9d732c98edd02426fa19 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png
index 5fd3f86a0f9d52bf55b1704b6f9f649caa24d6b6..df6025c36410dd8f08f1bfbf4e208c9f88706b8a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png
index 9d5c435742b8ff6a62738b32c541a5802b77e81c..3ca2d0bc7ece2fe3849879f6d7535554d7e7ee98 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.css
index 79c4285aeb4e70cb6132e3be8ee4b6cec7ee592a..71ea2b5f7caea74d7ef8567312b353fdf5f3850c 100644
--- a/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=453326&bgTextureHeader=gloss_wave&bgImgOpacityHeader=25&borderColorHeader=695649&fcHeader=e3ddc9&iconColorHeader=e3ddc9&bgColorContent=201913&bgTextureContent=inset_soft&bgImgOpacityContent=10&borderColorContent=9c947c&fcContent=ffffff&iconColorContent=222222&bgColorDefault=1c160d&bgTextureDefault=gloss_wave&bgImgOpacityDefault=20&borderColorDefault=695444&fcDefault=9bcc60&iconColorDefault=9bcc60&bgColorHover=44372c&bgTextureHover=gloss_wave&bgImgOpacityHover=30&borderColorHover=9c947c&fcHover=baec7e&iconColorHover=add978&bgColorActive=201913&bgTextureActive=highlight_soft&bgImgOpacityActive=20&borderColorActive=9c947c&fcActive=e3ddc9&iconColorActive=e3ddc9&bgColorHighlight=619226&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=20&borderColorHighlight=add978&fcHighlight=ffffff&iconColorHighlight=ffffff&bgColorError=5f391b&bgTextureError=glass&bgImgOpacityError=15&borderColorError=5f391b&fcError=ffffff&iconColorError=f1fd86&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.min.css
index 282861a531761296c6a40ac6318740eccb7bd09a..ffc3c38e0145b074497caf989b64e0fa7e27e975 100644
--- a/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/mint-choc/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=453326&bgTextureHeader=gloss_wave&bgImgOpacityHeader=25&borderColorHeader=695649&fcHeader=e3ddc9&iconColorHeader=e3ddc9&bgColorContent=201913&bgTextureContent=inset_soft&bgImgOpacityContent=10&borderColorContent=9c947c&fcContent=ffffff&iconColorContent=222222&bgColorDefault=1c160d&bgTextureDefault=gloss_wave&bgImgOpacityDefault=20&borderColorDefault=695444&fcDefault=9bcc60&iconColorDefault=9bcc60&bgColorHover=44372c&bgTextureHover=gloss_wave&bgImgOpacityHover=30&borderColorHover=9c947c&fcHover=baec7e&iconColorHover=add978&bgColorActive=201913&bgTextureActive=highlight_soft&bgImgOpacityActive=20&borderColorActive=9c947c&fcActive=e3ddc9&iconColorActive=e3ddc9&bgColorHighlight=619226&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=20&borderColorHighlight=add978&fcHighlight=ffffff&iconColorHighlight=ffffff&bgColorError=5f391b&bgTextureError=glass&bgImgOpacityError=15&borderColorError=5f391b&fcError=ffffff&iconColorError=f1fd86&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/mint-choc/theme.css b/civicrm/bower_components/jquery-ui/themes/mint-choc/theme.css
index f6aff87a3facdd50d4e5f27e3402bc90923d7dea..4cffbec3c8d8af8917da3bb1dfa69ef33f17b340 100644
--- a/civicrm/bower_components/jquery-ui/themes/mint-choc/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/mint-choc/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png
index 10cc8888895f31e0c12496272b270c814619ccc3..cea59bfa0643169ae6f048b2d2903f746bbe3496 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png
index 5fcb640fc23ff5329f5132c3fc0c1225b096a392..66467f19022c343cb48716684d73b7107fcc761e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png
index a04a5abd0cc8d3fab1d3b860a9c4e23f02604049..8dc98483cee63e0e1f5c4523b095de401b2696a9 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png
index da57944a17f08981b1e2cdd6b5184a7c9a8d4ccc..84d9a66c7173eb9cb96416c7b8386c09803d61c4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png
index 80eb2761ef0f60cd3f89d0514e50ae7fa8a32ce3..395319f979ea5124b8bfc49f9588fb329bb1bdd5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png
index 366aa0c53b8bdb8935f7f76acfedef5e8117f3a7..d403260188b1665069a3b7defdb74e8a4b64ed90 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png
index 33bc29498941aade1ad8d54f29f53e5547074b4f..558b8752fcd3287ff71562cdfca21072367548c8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png
index 14a30c4446db05ae4909fcfc199c53919031aa48..2e3be1717a8002b68702b99c6b6e52fb9db570de 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png
index 3e4a533ed6c4e4e0941d52e17971b4aecbec3a80..4c4558da58335ae1346a202c5ad17b84c5319423 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png
index e965b0852ea2189db783408215a3eac3eacfefa9..0384d6b833a69d2604c09f780e937f277f220a61 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png and b/civicrm/bower_components/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.css
index da314a7dfffac2fa4d1ecb645c6bbe450fdebef0..e908fbad3091359adcbc843291ed7e649b69bc52 100644
--- a/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=dddddd&bgTextureHeader=glass&bgImgOpacityHeader=35&borderColorHeader=bbbbbb&fcHeader=444444&iconColorHeader=999999&bgColorContent=c9c9c9&bgTextureContent=inset_soft&bgImgOpacityContent=50&borderColorContent=aaaaaa&fcContent=333333&iconColorContent=999999&bgColorDefault=eeeeee&bgTextureDefault=glass&bgImgOpacityDefault=60&borderColorDefault=cccccc&fcDefault=3383bb&iconColorDefault=70b2e1&bgColorHover=f8f8f8&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=bbbbbb&fcHover=599fcf&iconColorHover=3383bb&bgColorActive=999999&bgTextureActive=inset_hard&bgImgOpacityActive=75&borderColorActive=999999&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=eeeeee&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=ffffff&fcHighlight=444444&iconColorHighlight=3383bb&bgColorError=c0402a&bgTextureError=flat&bgImgOpacityError=55&borderColorError=c0402a&fcError=ffffff&iconColorError=fbc856&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.min.css
index 2a930ccdaedbb043858f4a0436104c730bae2176..9e05a28c8bd938d7e33e796b3aae6ce9bd016575 100644
--- a/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/overcast/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=dddddd&bgTextureHeader=glass&bgImgOpacityHeader=35&borderColorHeader=bbbbbb&fcHeader=444444&iconColorHeader=999999&bgColorContent=c9c9c9&bgTextureContent=inset_soft&bgImgOpacityContent=50&borderColorContent=aaaaaa&fcContent=333333&iconColorContent=999999&bgColorDefault=eeeeee&bgTextureDefault=glass&bgImgOpacityDefault=60&borderColorDefault=cccccc&fcDefault=3383bb&iconColorDefault=70b2e1&bgColorHover=f8f8f8&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=bbbbbb&fcHover=599fcf&iconColorHover=3383bb&bgColorActive=999999&bgTextureActive=inset_hard&bgImgOpacityActive=75&borderColorActive=999999&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=eeeeee&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=ffffff&fcHighlight=444444&iconColorHighlight=3383bb&bgColorError=c0402a&bgTextureError=flat&bgImgOpacityError=55&borderColorError=c0402a&fcError=ffffff&iconColorError=fbc856&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px
diff --git a/civicrm/bower_components/jquery-ui/themes/overcast/theme.css b/civicrm/bower_components/jquery-ui/themes/overcast/theme.css
index e39dfb1b97afbb8898e9b654f377c4298e383b42..38312de93f3b55e30c91e5e6b8a6515fecd07b0e 100644
--- a/civicrm/bower_components/jquery-ui/themes/overcast/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/overcast/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png
index e4d408fadfd9e9ce6be125e3e1c334eaf5c44bd4..80b79dce1a387d1a322d0fd308c0e897a47150ad 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png
index ccbd5e8f5674ef76ed0ab3e735ac3d334cc8ef32..97d33cb7cce5c4a9ea2ad44b5fe454a3162558bd 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png
index 641cbdaf8dbb37dd86cc2d037342e7b76b01fa30..9090686d6d2fd828b506ec3706f44d03178d3868 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png
index 8b4e68f7dd8b1ec799e532a0aa1119b158365706..260534849eeafc6dfda1ff36949ee973b57643ce 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png
index f07d4997e30ce1b68bfe3e20c011dc664199fa49..80852168f44eeee3a8909e6aa1cd9d89dc58077a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png
index c740d66e23c9ea3b1247e6446195a7fd95dd752c..577cbb3bb0d68d48fdafb26297eeb8ba9fcb132d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png
index c11533ab17ecd5ff3332054365c6cc73f939a194..d7f866c65f9de5fc39589e38bec423a0cc391704 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png
index ecf50c6d0ed90c54c60e95974cc239db872f48b3..25cc8df7b2b37f7b43d8e2040d2d304b6ccac927 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png
index f27aa342071e767714010c6994f62aaddbcf435d..fd42ea889ecd9436d81319b6963ec76b248b303a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png
index e52e2a9117d2da9f8804ab1de1f8f893c452c883..c65bb56bedbf2ad0902e82ff0f0161a49c7721f6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png
index 1dcf4343c58783450660b322226376f14d2533f9..ab2b63928faf394c42bcd007bf02f0c69f6a5dad 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png
index 25731326fecb2fa3ba384d9fdbdb388405d6c485..dff8000091e47d419d9127469091a9ad91a2cc56 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png
index d7dc2ed5a6be97e59e0f368581e6370645b5749a..809e29d5d8651a7391c4eeea084e20749e956549 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png
index eb064fe2d3ccb53367a64530251af51b74cf4d7e..f9570f30b8daa55e7deabf546b6fa62b7204e0e0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png
index 4ab698798ba36842fbb4651a8906b571d2b44036..3ffe626abe08104c9461d05116cc805564d5125d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.css
index fc4e4d49e96529ffaa2d11e00618543c0f227b37..c4c23d16628a83587fcb37c08af5cdcdb3cf9269 100644
--- a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=ffffff&bgTextureHeader=fine_grain&bgImgOpacityHeader=15&borderColorHeader=d4d1bf&fcHeader=453821&iconColorHeader=b83400&bgColorContent=eceadf&bgTextureContent=fine_grain&bgImgOpacityContent=10&borderColorContent=d9d6c4&fcContent=1f1f1f&iconColorContent=222222&bgColorDefault=f8f7f6&bgTextureDefault=fine_grain&bgImgOpacityDefault=10&borderColorDefault=cbc7bd&fcDefault=654b24&iconColorDefault=b83400&bgColorHover=654b24&bgTextureHover=fine_grain&bgImgOpacityHover=65&borderColorHover=654b24&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=eceadf&bgTextureActive=fine_grain&bgImgOpacityActive=15&borderColorActive=d9d6c4&fcActive=140f06&iconColorActive=8c291d&bgColorHighlight=f7f3de&bgTextureHighlight=fine_grain&bgImgOpacityHighlight=15&borderColorHighlight=b2a266&fcHighlight=3a3427&iconColorHighlight=3572ac&bgColorError=b83400&bgTextureError=fine_grain&bgImgOpacityError=68&borderColorError=681818&fcError=ffffff&iconColorError=fbdb93&bgColorOverlay=6e4f1c&bgTextureOverlay=diagonal_maze&bgImgOpacityOverlay=20&opacityOverlay=60&bgColorShadow=000000&bgTextureShadow=diagonal_maze&bgImgOpacityShadow=40&opacityShadow=60&thicknessShadow=5px&offsetTopShadow=0&offsetLeftShadow=-10px&cornerRadiusShadow=18px
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.min.css
index 8a413105dc4878727ecfc3724f512346470680c9..777cc334f0eb6b888aa05563ec0c2bdce53d9151 100644
--- a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=ffffff&bgTextureHeader=fine_grain&bgImgOpacityHeader=15&borderColorHeader=d4d1bf&fcHeader=453821&iconColorHeader=b83400&bgColorContent=eceadf&bgTextureContent=fine_grain&bgImgOpacityContent=10&borderColorContent=d9d6c4&fcContent=1f1f1f&iconColorContent=222222&bgColorDefault=f8f7f6&bgTextureDefault=fine_grain&bgImgOpacityDefault=10&borderColorDefault=cbc7bd&fcDefault=654b24&iconColorDefault=b83400&bgColorHover=654b24&bgTextureHover=fine_grain&bgImgOpacityHover=65&borderColorHover=654b24&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=eceadf&bgTextureActive=fine_grain&bgImgOpacityActive=15&borderColorActive=d9d6c4&fcActive=140f06&iconColorActive=8c291d&bgColorHighlight=f7f3de&bgTextureHighlight=fine_grain&bgImgOpacityHighlight=15&borderColorHighlight=b2a266&fcHighlight=3a3427&iconColorHighlight=3572ac&bgColorError=b83400&bgTextureError=fine_grain&bgImgOpacityError=68&borderColorError=681818&fcError=ffffff&iconColorError=fbdb93&bgColorOverlay=6e4f1c&bgTextureOverlay=diagonal_maze&bgImgOpacityOverlay=20&opacityOverlay=60&bgColorShadow=000000&bgTextureShadow=diagonal_maze&bgImgOpacityShadow=40&opacityShadow=60&thicknessShadow=5px&offsetTopShadow=0&offsetLeftShadow=-10px&cornerRadiusShadow=18px
diff --git a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/theme.css b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/theme.css
index 56a66b271a558b2e67849728092dc27de6303e1f..36118870742e4c52261192d128a866aec9584e94 100644
--- a/civicrm/bower_components/jquery-ui/themes/pepper-grinder/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/pepper-grinder/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
index bcb2abbe25df609c8618c24f3405d9e4b3b8c875..548cb99a9dc23aee05972c695d15cf6ba24c4e33 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
index 5431952be4f8bae6cc7f0beaa87eeb3c9da98fe4..a339c9f9f54bdf8a789abba70366991a0a5c0053 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
index 85369ec3ff23f2c32439459a7b2654aa7f6142fd..198220dc86d9d98ef0636ad29dd87241892880c0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
index b337c64e30e28aba712f0535f6c9c92aa9eccfc3..f9de7e2e61446f29b3589145ae1321cadb32b908 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
index 1fa6ccbcc2d51d24bc66ca45acfe6dbd9edf3796..040e518622862932a2b3109868eb483146e2bf49 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
index 12969b88233930523f594e5a38f5105623df948e..7030b126c133654e6cb69290855d7522e71c5a98 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png
index b689ead379218628fdd1cd046f7db1a0bbddf2ec..c45762cc220b8a23850568db783f18e48aafdab0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png
index ae501f9ecdbe7073dfa468cee8e69a4bbf092a96..03940e0335ec2ce693a2b3c5d5ff9525eb5fb290 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png
index a7f701d6aa76453299c8027d98c8f760a9410fb5..ec301bf6750ffc09f04944cbba72141d6c11c434 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png
index de47e535ca554677b0470e5a6417dd2fec3d67cb..eb0685beccd01e830a8eccce723457edf64f90c2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png
index 0219376c4874cfb09a0cda86eb9bfbe2928466a3..9cbb979971502021b5c7c5e61392c637268f3bd0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png
index 800031e756f28a78f2a54d25b63a551c74bb3ae1..134a7547d2723e570154972190383616e002a1a7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png
index 7eca5cfc759c237f2032ea700f4c9ddde1ed1e67..537324f651c8a01c3631999d0f36fd9482c42eaf 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png and b/civicrm/bower_components/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.css
index 7798ec31d22c74abeab61c080e1c1bd727409979..8ff8d9e764e3350759811b050c43379663ea363d 100644
--- a/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.min.css
index 1d9e5eb3b6808df9fb049b08eabc4ec875978948..f91a7b292e375aa0e3d3eac0af78ae1617eab23e 100644
--- a/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/redmond/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/redmond/theme.css b/civicrm/bower_components/jquery-ui/themes/redmond/theme.css
index 32596ffc19047568d75705e53f89729bde83854e..b14827b298f6cc620c9196399958a899de4b4ac8 100644
--- a/civicrm/bower_components/jquery-ui/themes/redmond/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/redmond/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
index c273a1d722cb2c192f098beae8bf50eae8eb305e..6a64237116e53ba54b2762eb4f913ebc95248494 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
index 54ba48ad33e229318889e603621ddfe062b0241b..62f0a1e754fa426f8837b7dd523865bfbec7842a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
index abc178e01955af9960d600c6900e1e5ab4e6b97f..e3455bf5f01636abf053468853a85434caaa2028 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
index f230444c69fc41d74b1a8cf7e24a3d675236feb8..68aeb9dca595fddd7e9f128cbaf3208863969dc2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
index 85369ec3ff23f2c32439459a7b2654aa7f6142fd..3b0594e76d0aa6c847ae107007b49bf87968d68a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
index daea59fa1aca731c3b59545e2e3fd2054a0cefbe..496f48a7206c18a9ae8885b0bc22d257b189d8be 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
index a2098e567c47f32380259bae13cf05dfa9375fec..c44f1f8b1ff1b9930cc456b8201ff0cf9ac6043f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
index ae501f9ecdbe7073dfa468cee8e69a4bbf092a96..1cf962044c8297854cb1775c6c0bb7f462c1337d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
index 33bc29498941aade1ad8d54f29f53e5547074b4f..8ffbb773464d5250b3f3cf09ef05357832d86d18 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
index c2e7d00229418e4b7c1e4b66ff2d1a8bd37b8d21..fba448d54a0cd1f05314f631a50d9588acab63de 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
index 0219376c4874cfb09a0cda86eb9bfbe2928466a3..3bfef5bed7484c615dc616ee9765899ea8369679 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.css
index cc86f7c44ebb93dee92fb2b3db4dad85cc6cd404..68c8be02b9c3a2c223ce28616845a82c4e01bd47 100644
--- a/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css
index c912d529d56b0cf9f0409f0dd2d7fc88b10ee83f..3cad40996fcd463ed3f033a004b4dd40376f33aa 100644
--- a/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/smoothness/theme.css b/civicrm/bower_components/jquery-ui/themes/smoothness/theme.css
index ff529a844f8b040cf74ab07548ff2aa67f0208bd..f07fd4d93a6892106a5e8e4bcd8e2454a250cd21 100644
--- a/civicrm/bower_components/jquery-ui/themes/smoothness/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/smoothness/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png
index 7c63497d090e5f669a7026a94dcd1c3c46c8efeb..7e28a048f100678b24904ee6ed8301fbd0cea3f7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png
index 938913e2a7e4b5e2dea8fa4b52c1655a726828ff..1b3eb3ca5d9099c5e7f070daef4e7cb362563b99 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png
index a91f3865c0ecb9fd8d90f862efdabf851641c4a2..57c6732ab2e389e3a4892bddea83e419bdb6b4f4 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png
index 4f4bc4b71d7206881ecf2d2c5032ca42456d59b8..2116c97e6bb0db793b1edd75d9ecbb79486c5eb6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png
index 60ada75f36dcb6d598f643416a05e4168777f8ac..d34bf04c899ec1987f7d6c231b582e461b00e807 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png
index 415acb02d5845c4f3431cab7ab84a36613d9aa3d..6d5ffbc1729f5a67ee8a2638847840f479f45ace 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png
index d5d9fdf322d04b944a60216fafdb088fa60bde32..aca3112e9dbc54049771a17d4d7e2a38caa09bd7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png
index d19cdde0c6389b06504d2ee90b546c5a973b836a..1e61d5283bdf6e0d98a72a596fb7b9548c844a40 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png
index 1496afb151cd652c22c031a7424b6bb4e12da4db..61f96ecf8f3fb9420a07ef2c2bbb0963d227c425 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png
index 9e38f4a9ab639c08c022a3e1467d5fc7c5db3473..ceb7f89192309975446d5e368ef6794016ca759c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png
index 2fa95933a70fefaa3e610ec2de0dc1c574e3bc42..80099b2d6ed515d030a6bb10669b7b00b736b87c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png
index 53a0612de48f933be0107d2d19df745ec324e260..06628060b45c7b5eeb90f3277644f31e5d56cac1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png
index 643c3a558697f9bf6ba085999ccd55d89d4a80d7..49f394f73ee756af8c2c2cfa708b7afe36024ff8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png
index 8d4023cd31b9ade02120dcf98ac1cca5208df0c9..a77986632a66b32cba1b8a947c2e8499f8756357 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png
index 9117fbe70f3c424730d1048e31fed25f0753709b..abd0a87947867a3ec43007a645534efc54fb722d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.css
index dcd5d90f9dac2ddb89c972c1f1382740f2807ca1..5c76f6e0e06308a37534f48cf24b6d8c06581ad5 100644
--- a/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=segoe%20ui%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=ece8da&bgTextureHeader=gloss_wave&bgImgOpacityHeader=100&borderColorHeader=d4ccb0&fcHeader=433f38&iconColorHeader=847e71&bgColorContent=f5f3e5&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dfd9c3&fcContent=312e25&iconColorContent=808080&bgColorDefault=459e00&bgTextureDefault=highlight_hard&bgImgOpacityDefault=15&borderColorDefault=327E04&fcDefault=ffffff&iconColorDefault=eeeeee&bgColorHover=67b021&bgTextureHover=highlight_soft&bgImgOpacityHover=25&borderColorHover=327E04&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=fafaf4&bgTextureActive=highlight_hard&bgImgOpacityActive=100&borderColorActive=d4ccb0&fcActive=459e00&iconColorActive=8DC262&bgColorHighlight=fcf0ba&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=e8e1b5&fcHighlight=363636&iconColorHighlight=8DC262&bgColorError=ffedad&bgTextureError=highlight_soft&bgImgOpacityError=95&borderColorError=e3a345&fcError=cd5c0a&iconColorError=cd0a0a&bgColorOverlay=2b2922&bgTextureOverlay=inset_soft&bgImgOpacityOverlay=15&opacityOverlay=90&bgColorShadow=cccccc&bgTextureShadow=highlight_hard&bgImgOpacityShadow=95&opacityShadow=20&thicknessShadow=12px&offsetTopShadow=-12px&offsetLeftShadow=-12px&cornerRadiusShadow=10px
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.min.css
index debc77e750e6392d4f11fbbec0929a4bb375e3d0..93a1b357bf5706584e23da43dcb545d3ed8fdd67 100644
--- a/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/south-street/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=segoe%20ui%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=ece8da&bgTextureHeader=gloss_wave&bgImgOpacityHeader=100&borderColorHeader=d4ccb0&fcHeader=433f38&iconColorHeader=847e71&bgColorContent=f5f3e5&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dfd9c3&fcContent=312e25&iconColorContent=808080&bgColorDefault=459e00&bgTextureDefault=highlight_hard&bgImgOpacityDefault=15&borderColorDefault=327E04&fcDefault=ffffff&iconColorDefault=eeeeee&bgColorHover=67b021&bgTextureHover=highlight_soft&bgImgOpacityHover=25&borderColorHover=327E04&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=fafaf4&bgTextureActive=highlight_hard&bgImgOpacityActive=100&borderColorActive=d4ccb0&fcActive=459e00&iconColorActive=8DC262&bgColorHighlight=fcf0ba&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=e8e1b5&fcHighlight=363636&iconColorHighlight=8DC262&bgColorError=ffedad&bgTextureError=highlight_soft&bgImgOpacityError=95&borderColorError=e3a345&fcError=cd5c0a&iconColorError=cd0a0a&bgColorOverlay=2b2922&bgTextureOverlay=inset_soft&bgImgOpacityOverlay=15&opacityOverlay=90&bgColorShadow=cccccc&bgTextureShadow=highlight_hard&bgImgOpacityShadow=95&opacityShadow=20&thicknessShadow=12px&offsetTopShadow=-12px&offsetLeftShadow=-12px&cornerRadiusShadow=10px
diff --git a/civicrm/bower_components/jquery-ui/themes/south-street/theme.css b/civicrm/bower_components/jquery-ui/themes/south-street/theme.css
index b0ce5227d677c25b115b6cb0ffca92b1ec38309e..4ca10c7dd9c96836199dae2d947bcf181100e388 100644
--- a/civicrm/bower_components/jquery-ui/themes/south-street/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/south-street/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png
index f7cf531a27e2af23fca0643f76158e41cde00a83..7496095290c4b3d0707ba33f2246da08f7989cf9 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png
index b37554956a6677297506b1599d6b9e5e504cd6bb..883a5c027b96e63c23560a5f06e2aa192812f859 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png
index f99b18d727ec645df4512a32f81e36c924a66387..1ee7cfc111c6d7ee1db98e55a9ea39fd9c7adeaa 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png
index 2a141ea09f9c73d7162034ba5be55b70db807583..619c8a5128b6dc2315b6462f4b8523255fa7133c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png
index 3ac98034b549ea276a0a4469218cf5103b33d3f1..599d2fd6593785f850ecb82bf8a7d75eda1da18b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png
index 7a854857f8800ce1f4d9dd09d6e902bf4058ddd3..9ad79770a5f19781140f3a7e4c161eaf2ef1d15a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
index 12969b88233930523f594e5a38f5105623df948e..e00a51fee2f832c61dabba72f7c467a902e9c9d8 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png
index 46413c28e72c8a51389646fb4d247b1af3ef1a82..4a154ec9208c2389b7e1e77602422b0707e7974a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png
index 6d3575f994f8e5b946cb98a5d5846c11ef4084b2..74cd11fab9a46744c498f59c4b20ef0b692d7a94 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png
index 800031e756f28a78f2a54d25b63a551c74bb3ae1..134a7547d2723e570154972190383616e002a1a7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png
index 1122db755b653f90026d49aff2047dc633cb6626..d8c279fc22f0cef85a25553561eef4382f7d0661 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png
index e1dcf6c1e49005aac9f8ad0f19b442a7687ba638..ceee09b9be6f82b7e45778e3124ba7a65f39a2a1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png
index 3b1651d120e350544011a53119c50f78c86efbfd..6397f733ab0f919262ddff7b67f4bef889f2846a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png
index 985e106ba8ab6a55e5056541c7072bc3ff310e34..3f153286b50b9caa4c169f7bd3de3314f2137e8d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png and b/civicrm/bower_components/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.css
index 6a3402446398540b9a764a68e207869007370cd9..97a1addf922a22b789f1745184fd826778306ae1 100644
--- a/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=2191c0&bgTextureHeader=gloss_wave&bgImgOpacityHeader=75&borderColorHeader=4297d7&fcHeader=eaf5f7&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=0078ae&bgColorDefault=0078ae&bgTextureDefault=glass&bgImgOpacityDefault=45&borderColorDefault=77d5f7&fcDefault=ffffff&iconColorDefault=e0fdff&bgColorHover=79c9ec&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=448dae&fcHover=026890&iconColorHover=056b93&bgColorActive=6eac2c&bgTextureActive=gloss_wave&bgImgOpacityActive=50&borderColorActive=acdd4a&fcActive=ffffff&iconColorActive=f5e175&bgColorHighlight=f8da4e&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcd113&fcHighlight=915608&iconColorHighlight=f7a50d&bgColorError=e14f1c&bgTextureError=gloss_wave&bgImgOpacityError=45&borderColorError=cd0a0a&fcError=ffffff&iconColorError=fcd113&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=75&opacityOverlay=30&bgColorShadow=999999&bgTextureShadow=flat&bgImgOpacityShadow=55&opacityShadow=45&thicknessShadow=0px&offsetTopShadow=5px&offsetLeftShadow=5px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.min.css
index 2e5fb22781fb5dc34b94ed68363c4a257612998c..9e6ac8d739e335d1fadcaa7cbc664160fe180b0d 100644
--- a/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/start/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=2191c0&bgTextureHeader=gloss_wave&bgImgOpacityHeader=75&borderColorHeader=4297d7&fcHeader=eaf5f7&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=0078ae&bgColorDefault=0078ae&bgTextureDefault=glass&bgImgOpacityDefault=45&borderColorDefault=77d5f7&fcDefault=ffffff&iconColorDefault=e0fdff&bgColorHover=79c9ec&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=448dae&fcHover=026890&iconColorHover=056b93&bgColorActive=6eac2c&bgTextureActive=gloss_wave&bgImgOpacityActive=50&borderColorActive=acdd4a&fcActive=ffffff&iconColorActive=f5e175&bgColorHighlight=f8da4e&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcd113&fcHighlight=915608&iconColorHighlight=f7a50d&bgColorError=e14f1c&bgTextureError=gloss_wave&bgImgOpacityError=45&borderColorError=cd0a0a&fcError=ffffff&iconColorError=fcd113&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=75&opacityOverlay=30&bgColorShadow=999999&bgTextureShadow=flat&bgImgOpacityShadow=55&opacityShadow=45&thicknessShadow=0px&offsetTopShadow=5px&offsetLeftShadow=5px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/start/theme.css b/civicrm/bower_components/jquery-ui/themes/start/theme.css
index bb840f55532651ee99fba9c50f9ae6019df0067c..2fa94b3771c3074f695a019ecbfc890ebd977ae0 100644
--- a/civicrm/bower_components/jquery-ui/themes/start/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/start/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png
index 9cb1badbaa936265e26ffc8c86ed3db534ecf89c..7fad9d7ba6f4e26ff7df35dd3ec4cfaa52eeba75 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png
index 3cd12d0c2b97442024070d7136d1ee9c54e4dd23..0bc213faba5d9cd72ce8513385cb65aef34f2b57 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png
index d193e27665211a453b339547a88e99182ed37038..d2cf6cf87997b0a48016a98e9575a1c9fa89b4ed 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png
index 2420f7f599c8b7f30606eef66b8a4c34bb4e39e9..20df14481651e173bb23f0dfdd6b04f3a1d5d6d7 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png
index 8ecf968f6d9821f34e55922d8ac26ecd9fed80f6..6240e8af6349af3ed088629b151167db776bd067 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png
index 1560326b3b61af201b0f557f8e47ad9e2d4bc068..387d8ede597281d69215fa74db69c2b6d59e11c5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png
index e0788b6fd8c1467d2a15878a911ce831dd991cb7..0f1836ad85f382ad167d7b651dd70f80e01e2340 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png
index 0eeb4d52c432a3ed7bef3b2bb525984de8b80abb..d4c6ac79fc2dd92717e72c672c19fa1dce06c8a1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png
index 165e8bf623c485f44ce7ed9e28de66251cdd4572..9331994237380c4c51d6928617c81ae14dd7338e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png
index 237b55bdbba2f7b42f4529e362c5aa491430751c..399e5df8383ba6308117b4e28d2e60b36c2939d3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png
index 02c0bcf328ab699a743c7ba03326fef891d08c6d..26f81917dbc2335041f25a4b937e77f1b17846f1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png
index 4ab894439dee55dc912bc0d7f0947470e48db799..57d142f25e84f92b8cba3be7cdd39e868c9f71bf 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png
index 09214f923c022f0d959d1f870fd32c3f259460d1..e2aab1535cb59a767a394111dd4ee64519ca6101 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png
index 5e0659432d79db43fefc9277120f5706d5e3fce3..2e46bd9e04983f60d196e852d9d2a1ebb3493748 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png and b/civicrm/bower_components/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.css
index 1da1de5d49c4cb2fc53944fc68a4e1819df8b295..fad1ea04b1d106beeb1dab63897af93b1664e725 100644
--- a/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=8px&bgColorHeader=817865&bgTextureHeader=gloss_wave&bgImgOpacityHeader=45&borderColorHeader=494437&fcHeader=ffffff&iconColorHeader=fadc7a&bgColorContent=feeebd&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=8e846b&fcContent=383838&iconColorContent=d19405&bgColorDefault=fece2f&bgTextureDefault=gloss_wave&bgImgOpacityDefault=60&borderColorDefault=d19405&fcDefault=4c3000&iconColorDefault=3d3d3d&bgColorHover=ffdd57&bgTextureHover=gloss_wave&bgImgOpacityHover=70&borderColorHover=a45b13&fcHover=381f00&iconColorHover=bd7b00&bgColorActive=ffffff&bgTextureActive=inset_soft&bgImgOpacityActive=30&borderColorActive=655e4e&fcActive=0074c7&iconColorActive=eb990f&bgColorHighlight=fff9e5&bgTextureHighlight=gloss_wave&bgImgOpacityHighlight=90&borderColorHighlight=eeb420&fcHighlight=1f1f1f&iconColorHighlight=ed9f26&bgColorError=d34d17&bgTextureError=diagonals_medium&bgImgOpacityError=20&borderColorError=ffb73d&fcError=ffffff&iconColorError=ffe180&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.min.css
index 0c4af867bfbff3fa6c6c06cd395cf47d060fce15..909669b07edfb0d9e8fccbe071fe49e83480662f 100644
--- a/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/sunny/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=8px&bgColorHeader=817865&bgTextureHeader=gloss_wave&bgImgOpacityHeader=45&borderColorHeader=494437&fcHeader=ffffff&iconColorHeader=fadc7a&bgColorContent=feeebd&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=8e846b&fcContent=383838&iconColorContent=d19405&bgColorDefault=fece2f&bgTextureDefault=gloss_wave&bgImgOpacityDefault=60&borderColorDefault=d19405&fcDefault=4c3000&iconColorDefault=3d3d3d&bgColorHover=ffdd57&bgTextureHover=gloss_wave&bgImgOpacityHover=70&borderColorHover=a45b13&fcHover=381f00&iconColorHover=bd7b00&bgColorActive=ffffff&bgTextureActive=inset_soft&bgImgOpacityActive=30&borderColorActive=655e4e&fcActive=0074c7&iconColorActive=eb990f&bgColorHighlight=fff9e5&bgTextureHighlight=gloss_wave&bgImgOpacityHighlight=90&borderColorHighlight=eeb420&fcHighlight=1f1f1f&iconColorHighlight=ed9f26&bgColorError=d34d17&bgTextureError=diagonals_medium&bgImgOpacityError=20&borderColorError=ffb73d&fcError=ffffff&iconColorError=ffe180&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/sunny/theme.css b/civicrm/bower_components/jquery-ui/themes/sunny/theme.css
index 936f4d2f7155c81d93d118f1890c8f88cc0c49bf..3995277ef47d73e791981cc3f3fea86617737774 100644
--- a/civicrm/bower_components/jquery-ui/themes/sunny/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/sunny/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png
index 7dbc9449ac52ae14dc460076af2d72ff31437db7..66b6bd54337f1082be89c181f1fb8bc01b47b25b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png
index acb6c53a74b850cdbe27301d3086ce57c1dd778f..33cc86090936cfd1bcde1a79b94efa761301b45b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png
index a7747c8c8ad249f2bfa542411902ed0654da2127..1c7e875090d19421912ea1ef97a7cba541553f1f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png
index d6af3659c8c81538eb43d76ac386a6250fb3aa11..6dc2356d99fb1a4e15ac2e3208f58164df4252ae 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png
index 14dc14cdfb6f005a2f2ae321acfb5922347357de..0f0644b5ae937614d5436c16d8c37b47ec5256bc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png
index ee902ef2bb584940147b75b513618bc83ee0c832..85305dc3844bc9dafa9b92a0aabf25bd21510cc9 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
index ee41815ed7c4d8b686492886dac649ed9dd74cac..90e22c7932f092d6f3c1dbcd419a0f4a620105a3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png
index 9d539f428cd7eae41eeaf026e684a3b67f6513bb..a955dfd58ce2568093048e73f8c6f54bb645b92a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png
index d46788e96a61ae3cf0e5fcefc9730be90f058c80..04899980c9b78ad9355f9cfa4436103aa460e780 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png
index dbe94c4e7c7c98165226b45c5c895a3108b17a93..8e205ad7ebc2a60704bf694ae0084b53298e164e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png
index 839377efdf6e941c667ed8491ccb556890b79322..cee43523c964d512d5aae8c52c0a00e3c97ec181 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png
index aa4d0f835970cd6c7257ea6dc9a3aefe6470a5de..1446e065e9c985e383cb547cd902a5a2f9c89e1e 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png
index beed0916816450dc20534e27ce434a9e8261ba75..4f0d9c2381bc6ca75f6e068807fe7ab58666e82d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png
index efec50d596a543d7b4a091952f62deb43224a58a..17f1cb8daec76a1ffee838594701e29ad7a3f448 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png and b/civicrm/bower_components/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.css
index d812ab46e82fa961121b4eb103f877013320347e..f6d3333be4e8ad7132e3c2e1125b0f14e7c6147f 100644
--- a/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Georgia%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.2em&cornerRadius=5px&bgColorHeader=261803&bgTextureHeader=diamond&bgImgOpacityHeader=8&borderColorHeader=baaa5a&fcHeader=eacd86&iconColorHeader=e9cd86&bgColorContent=443113&bgTextureContent=diamond&bgImgOpacityContent=8&borderColorContent=efec9f&fcContent=efec9f&iconColorContent=efec9f&bgColorDefault=4f4221&bgTextureDefault=diamond&bgImgOpacityDefault=10&borderColorDefault=362917&fcDefault=f8eec9&iconColorDefault=e8e2b5&bgColorHover=675423&bgTextureHover=diamond&bgImgOpacityHover=25&borderColorHover=362917&fcHover=f8eec9&iconColorHover=f2ec64&bgColorActive=443113&bgTextureActive=diamond&bgImgOpacityActive=8&borderColorActive=efec9f&fcActive=f9f2bd&iconColorActive=f9f2bd&bgColorHighlight=d5ac5d&bgTextureHighlight=diamond&bgImgOpacityHighlight=25&borderColorHighlight=362917&fcHighlight=060200&iconColorHighlight=070603&bgColorError=fee4bd&bgTextureError=highlight_hard&bgImgOpacityError=65&borderColorError=c26629&fcError=803f1e&iconColorError=ff7519&bgColorOverlay=372806&bgTextureOverlay=diamond&bgImgOpacityOverlay=20&opacityOverlay=80&bgColorShadow=ddd4b0&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=12px
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.min.css
index ee5067d46fc49b18aa209cc4316f43aa743369b5..f3edc908eef0218aa3bcbb074132bb3948d6dfa2 100644
--- a/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/swanky-purse/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Georgia%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.2em&cornerRadius=5px&bgColorHeader=261803&bgTextureHeader=diamond&bgImgOpacityHeader=8&borderColorHeader=baaa5a&fcHeader=eacd86&iconColorHeader=e9cd86&bgColorContent=443113&bgTextureContent=diamond&bgImgOpacityContent=8&borderColorContent=efec9f&fcContent=efec9f&iconColorContent=efec9f&bgColorDefault=4f4221&bgTextureDefault=diamond&bgImgOpacityDefault=10&borderColorDefault=362917&fcDefault=f8eec9&iconColorDefault=e8e2b5&bgColorHover=675423&bgTextureHover=diamond&bgImgOpacityHover=25&borderColorHover=362917&fcHover=f8eec9&iconColorHover=f2ec64&bgColorActive=443113&bgTextureActive=diamond&bgImgOpacityActive=8&borderColorActive=efec9f&fcActive=f9f2bd&iconColorActive=f9f2bd&bgColorHighlight=d5ac5d&bgTextureHighlight=diamond&bgImgOpacityHighlight=25&borderColorHighlight=362917&fcHighlight=060200&iconColorHighlight=070603&bgColorError=fee4bd&bgTextureError=highlight_hard&bgImgOpacityError=65&borderColorError=c26629&fcError=803f1e&iconColorError=ff7519&bgColorOverlay=372806&bgTextureOverlay=diamond&bgImgOpacityOverlay=20&opacityOverlay=80&bgColorShadow=ddd4b0&bgTextureShadow=flat&bgImgOpacityShadow=75&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=12px
diff --git a/civicrm/bower_components/jquery-ui/themes/swanky-purse/theme.css b/civicrm/bower_components/jquery-ui/themes/swanky-purse/theme.css
index a5f10b0b8f2c8c301beace42462304dfd0a1cd48..472f9fabac032feacf2ccd4eb2b78c8b177a5123 100644
--- a/civicrm/bower_components/jquery-ui/themes/swanky-purse/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/swanky-purse/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png
index 2717abde7493647b53e04ce2a510530b09b2a844..2c304b60fa4fb816727b636f9b597fbb08e75328 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png
index f9deaa7f02bd55b6e5b6e706e0e3f89bc4ec2262..8f0ec3cacc021bdceb63cd7aaa54f7b5e6b6b877 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png
index 4babd4070499431326e644879e4558153d2caf23..441269a066feb8475d916a8f2b66491b7e08ed4f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png
index e5a9f3b0df53c668b7d05f5be0734cff6541ebda..7d188d63b7cdaf91c03b6b15e8631c6424aa6ac3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png
index 51700037ab66a151ce574dce75291acc98d76dbc..fb32db24d9b2972a6e71cb4467dde1996f73c23d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png
index 2976f49cddaf2f1a1e2c3a9c90080ac41c2dd1fc..24c388dc95ca541c6486e61cb03edab8e57ee0b1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png
index bef058cd36cf0e1a012b58e7af4316761f7e7a3d..2b85759a8b5462ea9323c724556d78fe1b3dad27 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png
index 1eaf616272e7139209e6ef071c66604797e2652f..ff15dee0b730404512ca420544cc4088e80fa507 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png
index f5b5f0b2f5ee3d082dfe80226128136582b971bd..78f4fc65efdd599540e566de80e206fba4601ac6 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png
index dd09daf74837ca881010fb6283603e785fc64d35..e9a1bd3b47cd5e586d6afc77e524aedb85dfeccc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png
index 64c45a277458d5174c7c92fa3fd13195ecf98cd8..1d6bee9c6059a60b9f566b5857e671a7d6894b4c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png
index 3f001151b73e3c0304d161b3f3551ebcf9ecf70e..cd3dfe08399e835082296e2f04955512c1deb6f1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png
index 9d5c435742b8ff6a62738b32c541a5802b77e81c..3ca2d0bc7ece2fe3849879f6d7535554d7e7ee98 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.css
index 3f561ad371526ed19fd2f29a8cb8143d01cf50fc..523fbd774982993c155d4e4bffd0bfb59c58c408 100644
--- a/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=9fda58&bgTextureHeader=gloss_wave&bgImgOpacityHeader=85&borderColorHeader=000000&fcHeader=222222&iconColorHeader=1f1f1f&bgColorContent=000000&bgTextureContent=gloss_wave&bgImgOpacityContent=55&borderColorContent=4a4a4a&fcContent=ffffff&iconColorContent=9fda58&bgColorDefault=0a0a0a&bgTextureDefault=glass&bgImgOpacityDefault=40&borderColorDefault=1b1613&fcDefault=b8ec79&iconColorDefault=b8ec79&bgColorHover=000000&bgTextureHover=glass&bgImgOpacityHover=60&borderColorHover=000000&fcHover=96f226&iconColorHover=b8ec79&bgColorActive=4c4c4c&bgTextureActive=flat&bgImgOpacityActive=0&borderColorActive=696969&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=f1fbe5&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=8cce3b&fcHighlight=030303&iconColorHighlight=000000&bgColorError=f6ecd5&bgTextureError=gloss_wave&bgImgOpacityError=95&borderColorError=f1ac88&fcError=74736d&iconColorError=cd0a0a&bgColorOverlay=262626&bgTextureOverlay=diagonals_small&bgImgOpacityOverlay=50&opacityOverlay=30&bgColorShadow=303030&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=50&thicknessShadow=6px&offsetTopShadow=-6px&offsetLeftShadow=-6px&cornerRadiusShadow=12px
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.min.css
index f2aa0b187bb34befb0264daa3cfe9e93f4dff0c1..868ca825b1a5568d6fe7828dcb22035a6ef6a099 100644
--- a/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/trontastic/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CHelvetica%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=9fda58&bgTextureHeader=gloss_wave&bgImgOpacityHeader=85&borderColorHeader=000000&fcHeader=222222&iconColorHeader=1f1f1f&bgColorContent=000000&bgTextureContent=gloss_wave&bgImgOpacityContent=55&borderColorContent=4a4a4a&fcContent=ffffff&iconColorContent=9fda58&bgColorDefault=0a0a0a&bgTextureDefault=glass&bgImgOpacityDefault=40&borderColorDefault=1b1613&fcDefault=b8ec79&iconColorDefault=b8ec79&bgColorHover=000000&bgTextureHover=glass&bgImgOpacityHover=60&borderColorHover=000000&fcHover=96f226&iconColorHover=b8ec79&bgColorActive=4c4c4c&bgTextureActive=flat&bgImgOpacityActive=0&borderColorActive=696969&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=f1fbe5&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=8cce3b&fcHighlight=030303&iconColorHighlight=000000&bgColorError=f6ecd5&bgTextureError=gloss_wave&bgImgOpacityError=95&borderColorError=f1ac88&fcError=74736d&iconColorError=cd0a0a&bgColorOverlay=262626&bgTextureOverlay=diagonals_small&bgImgOpacityOverlay=50&opacityOverlay=30&bgColorShadow=303030&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=50&thicknessShadow=6px&offsetTopShadow=-6px&offsetLeftShadow=-6px&cornerRadiusShadow=12px
diff --git a/civicrm/bower_components/jquery-ui/themes/trontastic/theme.css b/civicrm/bower_components/jquery-ui/themes/trontastic/theme.css
index 430182101468b31f514cf1cedbc252b40c81bf2f..40b0155937710da4d55bdb8238cfbb565a6f3985 100644
--- a/civicrm/bower_components/jquery-ui/themes/trontastic/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/trontastic/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png
index aa5fa64c6f840526805f01b5a973f70b2a0df265..c463e6f1e120448e5c1cdceab3b5c929570183b5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png
index 17aee88bb831da0969aa87b43e3587930cb77096..49fb39acb8a3b2246b6fd9ef89c464fe5257fb99 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png
index d127161c191bae9ee7b30c39ce9abfe3e78897fa..bda30dda53be36501fc5751122d6dff6a2fba828 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png
index 145f9a1c04c0253411942de275d33f4cd1254364..13e6c60f87bba49069075ff83e0cf4715b6e899b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
index ee49d2c025bd3eb5eee365ac66bc9306ac6d317b..b535dd0f8c070d46785d1e75c2d80cb7e87a8aa9 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png
index 12e023c0806c7b7ebec3a1e8bbf5c20302e5f4b1..9b84817ef36a12c2f802214f0f04d3de0d0ae345 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png
index ed0639978ebd6740ace9fcc725f466565cee7c2c..aa12d02366ad718c5c056a56325188b524251398 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png
index a2098e567c47f32380259bae13cf05dfa9375fec..c44f1f8b1ff1b9930cc456b8201ff0cf9ac6043f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png
index 8443a5722ccc4b66ebaae2906a8b4c27131297fb..cd0b7b86304f80790ddd47b6bb5b1b8b1efe315c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png
index 12ef2c85f14973c7b0a31e23d8d4dcbb239ad6ab..caa593bb5d7f0cf7d8d24549549d9f719175a1c3 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png
index 12d6df44446e3d90808d87b11f158ac4431339b3..d33a5da7c9bbc4065480745421a541a790530668 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png
index 04e11fc0423630bdd325a4097cee5326d779028a..cd4a00b175402fefbac83c6e87a909bef1e1f45a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.css
index 39cd890d1568319b9640409ade6b52858bb20842..7fe71769f8fbbad3c0e73622b0d57f3d553e6571 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=333333&bgTextureHeader=gloss_wave&bgImgOpacityHeader=25&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=inset_soft&bgImgOpacityContent=25&borderColorContent=666666&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=555555&bgTextureDefault=glass&bgImgOpacityDefault=20&borderColorDefault=666666&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=0078a3&bgTextureHover=glass&bgImgOpacityHover=40&borderColorHover=59b4d4&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=f58400&bgTextureActive=inset_soft&bgImgOpacityActive=30&borderColorActive=ffaf0f&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=glass&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.min.css
index 0a836e9d14cc4685e1c6e9924dd8974cd11fdb0f..2e4f9d86e9825ed59f37124c6ea30eaeacddb673 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=333333&bgTextureHeader=gloss_wave&bgImgOpacityHeader=25&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=inset_soft&bgImgOpacityContent=25&borderColorContent=666666&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=555555&bgTextureDefault=glass&bgImgOpacityDefault=20&borderColorDefault=666666&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=0078a3&bgTextureHover=glass&bgImgOpacityHover=40&borderColorHover=59b4d4&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=f58400&bgTextureActive=inset_soft&bgImgOpacityActive=30&borderColorActive=ffaf0f&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=glass&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-darkness/theme.css b/civicrm/bower_components/jquery-ui/themes/ui-darkness/theme.css
index 8dcc63f6be5af5080cd782d16534d1c43ffc251d..0df6d2f63757318b88faeacf282fed19ff598c94 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-darkness/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-darkness/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
index 2b6e0302359319f03b75a5952a8872a59df041d7..6cc55d2cc2d3b2d2419933e4750ca1dba23394f0 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
index 0cf829ff0762985c87fa1d659633a532b37156c8..6773837c609b9e8c97ad7e6a0e045d1f1f52aa27 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
index 2b5d4764dd53dfd6278fca1d2202e10b3a680046..8834427624333116213bd0806dcb59088362eaef 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
index b32f841afa1114da4eb933101c2bd0f8e30d85e6..c299669856d163065976b021fbf08ef410b7b87c 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
index 6cfcfd602e4aacdf8c9046a2168bf070d26e7cfc..62f0a1e754fa426f8837b7dd523865bfbec7842a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
index efd66ad430fb1c4bf985168f2702508877fe9e8e..6c8e195d95f6b6f24b0dbd9a29b6f70e4844f555 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
index 0d6abfc283d744e668fd712bea47bf37c9e2f787..460b402fb31015cdbcdb4a3f9bf472b16ff48190 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
index cb9724a3d2731490797b873c52a85b368e4d54f3..80ea38c5cdb46ffd04780d47cce75a8282ecee64 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png
index f877cac041ff15d42b9a482a3da0d528ae277e8d..c44f1f8b1ff1b9930cc456b8201ff0cf9ac6043f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png
index c436d23ebcc5e68301acd5fcfae1aa48c53e440c..bca195353c19c9c6111b35ac4c1d3049ffec349f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png
index 5ecb72ba7499d81dd9d6e20e612e7cb1641d8f13..57809382fa5211539ea0b84ccb54c724e4ed8bf5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png
index 5e37e2f83d0907dc9991c1d8f29a4e279012474d..16af61226f240754f9db657a74ff17389837a5dc 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png
index b6f29b3f01058637fa4fef1c2e3429fbc7381776..cd4a00b175402fefbac83c6e87a909bef1e1f45a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png and b/civicrm/bower_components/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.css
index 42e9b50163d504ac2fa3bc8b2ae405ac0b436492..142512c41b2c6f2ef03479347a6ca95a2c781509 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css
index 2deabd77148e98e0eeedd7da0e1a072c9c5d0d0c..9d34c0ebe2d174343131f6a02031602fcbf43447 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
diff --git a/civicrm/bower_components/jquery-ui/themes/ui-lightness/theme.css b/civicrm/bower_components/jquery-ui/themes/ui-lightness/theme.css
index 75f54e48522a788cc96429946c5ff8f9914c49c2..78d4a6e28248dc2d232824fc7920e90d512928ce 100644
--- a/civicrm/bower_components/jquery-ui/themes/ui-lightness/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/ui-lightness/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png
index dd3417e1e4ecaf98b6ac07eb037e1f22937a8179..5c26b2783add8b0eda44872055d4aa944aab65db 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png
index 9d1fd587fd908ea85570663c6186be39a1be9882..d96238801beab561d76b12b5d544ef1fae782aa2 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png
index 9f19982913b4da1c63e14b5ae32336224aed9f9d..43bfb0b53a07de00f703c49eb89b232ffac59242 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png
index 671731cb1eaeb9ee7f1348f75184c06e82269ce9..bf12db73084f54b7b167caf86c19abba42bcee8b 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png
index 2641a6f40c58473b57aff549e2323f6a3457a3aa..23dd5c3b45302898148b8c94f483d22430a62b7a 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png
index 7458ad8070e5a9ee9d37e24ea15f9e36d4d7a025..743f397b3f5f39cc2123868ec0f746218f859528 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png
index 176d5919a2adc0da9f191efaa43cc59029a68a0e..3fa289680b18dbb4e8404a00b0f8438ea01ca8fe 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png
index 1bb166b6b10a6a4d6041e8c63de31095ab09bf0b..8987859e0b5a42da91745f4cef1f4b22257ba38d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_777777_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_777777_256x240.png
index 1ef5bd723a56dbf90e9a8ba375d28550122cd662..747af8f0840b304135b73141c518dfd7e678f4e1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_777777_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_777777_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png
index 9008d83ff51f57d2bb12a4e047e801147fc0ce3e..7ee1120e7f53823a9d0e3f8cc2da51738bce631d 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png
index 7175b8ac9b55293baaec66cbd499644df4ba3461..6a946593fdc38cfe8389dbe5dde493ceef3bfb00 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png
index ab3aed2cd77bcc4b852b0bc15f8d45d75121cefb..4557a84293394ba41e8abaaaacd9987ec68578d5 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png
index 643c3a558697f9bf6ba085999ccd55d89d4a80d7..cd3dfe08399e835082296e2f04955512c1deb6f1 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png
index 4f6e702bcd12b067f525e7213eaf353e45428e23..5f2da8eb3d7ddf5cc5789e20fbff23cc0ca75f6f 100644
Binary files a/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png and b/civicrm/bower_components/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png differ
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.css b/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.css
index 82de6d5aca8d396213365b72e33cec2514b15bfc..f6c60c9245d4f8ebfa76a9359a55589067d5f208 100644
--- a/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.css
+++ b/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=888888&bgTextureHeader=highlight_hard&bgImgOpacityHeader=15&borderColorHeader=404040&fcHeader=ffffff&iconColorHeader=cccccc&bgColorContent=121212&bgTextureContent=gloss_wave&bgImgOpacityContent=16&borderColorContent=404040&fcContent=eeeeee&iconColorContent=777777&bgColorDefault=adadad&bgTextureDefault=highlight_soft&bgImgOpacityDefault=35&borderColorDefault=cccccc&fcDefault=333333&iconColorDefault=666666&bgColorHover=dddddd&bgTextureHover=highlight_soft&bgImgOpacityHover=60&borderColorHover=dddddd&fcHover=000000&iconColorHover=c98000&bgColorActive=121212&bgTextureActive=inset_soft&bgImgOpacityActive=15&borderColorActive=000000&fcActive=ffffff&iconColorActive=f29a00&bgColorHighlight=555555&bgTextureHighlight=highlight_hard&bgImgOpacityHighlight=55&borderColorHighlight=404040&fcHighlight=cccccc&iconColorHighlight=aaaaaa&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.min.css b/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.min.css
index 960b244fbd5d4427db76fe91b58dd33db4a9a3ba..284eada4b53b4575e81e31aae7f84aa6f979f78c 100644
--- a/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.min.css
+++ b/civicrm/bower_components/jquery-ui/themes/vader/jquery-ui.min.css
@@ -1,4 +1,4 @@
-/*! jQuery UI - v1.13.1 - 2022-01-20
+/*! jQuery UI - v1.13.2 - 2022-07-14
 * http://jqueryui.com
 * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=888888&bgTextureHeader=highlight_hard&bgImgOpacityHeader=15&borderColorHeader=404040&fcHeader=ffffff&iconColorHeader=cccccc&bgColorContent=121212&bgTextureContent=gloss_wave&bgImgOpacityContent=16&borderColorContent=404040&fcContent=eeeeee&iconColorContent=777777&bgColorDefault=adadad&bgTextureDefault=highlight_soft&bgImgOpacityDefault=35&borderColorDefault=cccccc&fcDefault=333333&iconColorDefault=666666&bgColorHover=dddddd&bgTextureHover=highlight_soft&bgImgOpacityHover=60&borderColorHover=dddddd&fcHover=000000&iconColorHover=c98000&bgColorActive=121212&bgTextureActive=inset_soft&bgImgOpacityActive=15&borderColorActive=000000&fcActive=ffffff&iconColorActive=f29a00&bgColorHighlight=555555&bgTextureHighlight=highlight_hard&bgImgOpacityHighlight=55&borderColorHighlight=404040&fcHighlight=cccccc&iconColorHighlight=aaaaaa&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
diff --git a/civicrm/bower_components/jquery-ui/themes/vader/theme.css b/civicrm/bower_components/jquery-ui/themes/vader/theme.css
index b59b2749cf95e20df819e0a569d9dedb4042696c..bba9c8a033bbff04fbafb0f61043cb7466d8b367 100644
--- a/civicrm/bower_components/jquery-ui/themes/vader/theme.css
+++ b/civicrm/bower_components/jquery-ui/themes/vader/theme.css
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI CSS Framework 1.13.1
+ * jQuery UI CSS Framework 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/data.js b/civicrm/bower_components/jquery-ui/ui/data.js
index c0fcedc7d5d1333f6a073fe2ce84f3eecb172aca..bdd0fa17ce80c4bfb6ce45c2a13d2c024c2868a3 100644
--- a/civicrm/bower_components/jquery-ui/ui/data.js
+++ b/civicrm/bower_components/jquery-ui/ui/data.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI :data 1.13.1
+ * jQuery UI :data 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/disable-selection.js b/civicrm/bower_components/jquery-ui/ui/disable-selection.js
index 9f6bf815c9f03abdd2f24ee7e7a0b18871e4dfeb..37bd672920cb091eea8a4cd87ae2f53905e34c6a 100644
--- a/civicrm/bower_components/jquery-ui/ui/disable-selection.js
+++ b/civicrm/bower_components/jquery-ui/ui/disable-selection.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Disable Selection 1.13.1
+ * jQuery UI Disable Selection 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effect.js b/civicrm/bower_components/jquery-ui/ui/effect.js
index f8acb728a92520088a027a8b7854dde3260f7662..8e857ff6a38b9149613ef6ccfba65199db8fea21 100644
--- a/civicrm/bower_components/jquery-ui/ui/effect.js
+++ b/civicrm/bower_components/jquery-ui/ui/effect.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects 1.13.1
+ * jQuery UI Effects 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -402,7 +402,7 @@ if ( $.uiBackCompat !== false ) {
 }
 
 $.extend( $.effects, {
-	version: "1.13.1",
+	version: "1.13.2",
 
 	define: function( name, mode, effect ) {
 		if ( !effect ) {
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-blind.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-blind.js
index fb682963cf21e475e1fce459ba83bf19617bedb0..2b9c4f9ea31110bbbb6bacb0265d057e33c20915 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-blind.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-blind.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Blind 1.13.1
+ * jQuery UI Effects Blind 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-bounce.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-bounce.js
index 0ac0e839acf1220b116e833434687f6012ee4e0e..2d2bdc93d519ba1b9c5a692f3db9fceb0fccb9d9 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-bounce.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-bounce.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Bounce 1.13.1
+ * jQuery UI Effects Bounce 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-clip.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-clip.js
index c8ace468ce0dd25672b52b7c4b3d5b31cb8ab29a..c3dfdd9a3c04ccfdbcdab78b0d39f21061e7cb75 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-clip.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-clip.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Clip 1.13.1
+ * jQuery UI Effects Clip 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-drop.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-drop.js
index fa891f3f21a3be3eaf17d43e4744513394f65ff3..b781123641c8c23f9cf0bce52a966c68e4e9bb90 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-drop.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-drop.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Drop 1.13.1
+ * jQuery UI Effects Drop 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-explode.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-explode.js
index e92a2fe3b47baad310ca209eef2f7266f5ce6581..9cec35fe53ca849c3b45b2eb4e5f061f6ea1daaf 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-explode.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-explode.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Explode 1.13.1
+ * jQuery UI Effects Explode 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-fade.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-fade.js
index 58ebf88df9913cb774e4f76a3be0dfec0178773d..099c4ffc5f5dd150cf416b4b877f5ff2c5821e79 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-fade.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-fade.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Fade 1.13.1
+ * jQuery UI Effects Fade 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-fold.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-fold.js
index b3243dbeb685572f210af8e4c6047fe55f09699d..73094e432452b74c252bbab7e4dc23f4dfd5be84 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-fold.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-fold.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Fold 1.13.1
+ * jQuery UI Effects Fold 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-highlight.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-highlight.js
index 50a1afa72d585155609092175106db8d17ad2f66..8bc5c474a9ebc812b75e1fdeb8fe9d9ecf8638a2 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-highlight.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-highlight.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Highlight 1.13.1
+ * jQuery UI Effects Highlight 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-puff.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-puff.js
index d1b9dd9d3da40f9b546f118bf312792ce5e7a40a..17b313fb95538aeda628187ba8adf9a06117302b 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-puff.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-puff.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Puff 1.13.1
+ * jQuery UI Effects Puff 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-pulsate.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-pulsate.js
index 0b40f1a07b56bf96d6ca50ce06e9ec4affe01289..d55195a312d9c738dcb627cdcc9a2d738a302fd8 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-pulsate.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-pulsate.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Pulsate 1.13.1
+ * jQuery UI Effects Pulsate 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-scale.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-scale.js
index 1da6358b6ee69fd55243ed9d0ec5be3bbf12b634..8da15e073ea9af95cc5978cb2826312b0e0e81a1 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-scale.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-scale.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Scale 1.13.1
+ * jQuery UI Effects Scale 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-shake.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-shake.js
index b37d52c3fc5fa88f68a7c54bce0469e215dc3c83..44c49be62c464d0c1d71f635aa4c7384ea3e5976 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-shake.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-shake.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Shake 1.13.1
+ * jQuery UI Effects Shake 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-size.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-size.js
index df6da07d10452db174fd8865d6a58305bf9734f7..03d122c50b2a6f9cf6a1f0c99d40c121585375ce 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-size.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-size.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Size 1.13.1
+ * jQuery UI Effects Size 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-slide.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-slide.js
index 7d93ac31c2d936a5552e91b99e7de1e078725021..a649399ae2d58d4a6c9d442287c3fac984fcd566 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-slide.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-slide.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Slide 1.13.1
+ * jQuery UI Effects Slide 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/effects/effect-transfer.js b/civicrm/bower_components/jquery-ui/ui/effects/effect-transfer.js
index 160848adaa57cf3ae3ae16d5abe58cd9fa834d53..65090a216e274b7585a4e9643334249f3decc20d 100644
--- a/civicrm/bower_components/jquery-ui/ui/effects/effect-transfer.js
+++ b/civicrm/bower_components/jquery-ui/ui/effects/effect-transfer.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Effects Transfer 1.13.1
+ * jQuery UI Effects Transfer 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/focusable.js b/civicrm/bower_components/jquery-ui/ui/focusable.js
index 9ed3f85c98a5c1849065bbf83ee37fdb3c033e33..8befb92ca7d2cab5a712ec404b3368928986bd55 100644
--- a/civicrm/bower_components/jquery-ui/ui/focusable.js
+++ b/civicrm/bower_components/jquery-ui/ui/focusable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Focusable 1.13.1
+ * jQuery UI Focusable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/form-reset-mixin.js b/civicrm/bower_components/jquery-ui/ui/form-reset-mixin.js
index 590a6c5ee697bd89e6085603d12ab2d873ff9f02..361af45a345d7462f5641caf7e2b3023e90b8df2 100644
--- a/civicrm/bower_components/jquery-ui/ui/form-reset-mixin.js
+++ b/civicrm/bower_components/jquery-ui/ui/form-reset-mixin.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Form Reset Mixin 1.13.1
+ * jQuery UI Form Reset Mixin 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar-DZ.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar-DZ.js
index 8dc805986f2942cce24c49cdd31cd7318cd6f3aa..2bcdf4784566af0761f15ec972ba5c3429cb0970 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar-DZ.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar-DZ.js
@@ -20,8 +20,8 @@
 
 datepicker.regional[ "ar-DZ" ] = {
 	closeText: "إغلاق",
-	prevText: "&#x3C;السابق",
-	nextText: "التالي&#x3E;",
+	prevText: "السابق",
+	nextText: "التالي",
 	currentText: "اليوم",
 	monthNames: [ "جانفي", "فيفري", "مارس", "أفريل", "ماي", "جوان",
 	"جويلية", "أوت", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar.js
index 31d7ee565ed34361c17b59ad2f0a9d8228f231ac..07768416e3067a40274ceeafbf8d9a7e5a3ac2e5 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ar.js
@@ -20,8 +20,8 @@
 
 datepicker.regional.ar = {
 	closeText: "إغلاق",
-	prevText: "&#x3C;السابق",
-	nextText: "التالي&#x3E;",
+	prevText: "السابق",
+	nextText: "التالي",
 	currentText: "اليوم",
 	monthNames: [ "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو",
 	"يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-az.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-az.js
index d02d3561f6f991aee8ad151a9d031255a12c46e0..8d59547e6e9547186b71d80c45048ac416731db2 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-az.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-az.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.az = {
 	closeText: "BaÄŸla",
-	prevText: "&#x3C;Geri",
-	nextText: "İrəli&#x3E;",
+	prevText: "Geri",
+	nextText: "İrəli",
 	currentText: "Bugün",
 	monthNames: [ "Yanvar", "Fevral", "Mart", "Aprel", "May", "Ä°yun",
 	"Ä°yul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-be.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-be.js
index 51ddd6e572241e81beb142f13e8b948359a9393a..125ed0f13554e84ceb158e6d9ce7352357347dbe 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-be.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-be.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.be = {
 	closeText: "Зачыніць",
-	prevText: "&larr;Папяр.",
-	nextText: "Наст.&rarr;",
+	prevText: "Папяр.",
+	nextText: "Наст.",
 	currentText: "Сёньня",
 	monthNames: [ "Студзень", "Люты", "Сакавік", "Красавік", "Травень", "Чэрвень",
 	"Ліпень", "Жнівень", "Верасень", "Кастрычнік", "Лістапад", "Сьнежань" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bg.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bg.js
index 0344de4fb0b394aeafc83f5269a8465bab3a3037..c771b3b52100799a233f1d8c51591348414fd841 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bg.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bg.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.bg = {
 	closeText: "затвори",
-	prevText: "&#x3C;назад",
-	nextText: "напред&#x3E;",
+	prevText: "назад",
+	nextText: "напред",
 	nextBigText: "&#x3E;&#x3E;",
 	currentText: "днес",
 	monthNames: [ "Януари", "Февруари", "Март", "Април", "Май", "Юни",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bs.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bs.js
index a5c145affc084dd812f60acf11e9dbc15ea246d5..3ee9db4c1dee8f071cb025941691274213083c8e 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bs.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-bs.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.bs = {
 	closeText: "Zatvori",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Prethodno",
+	nextText: "Sljedeći",
 	currentText: "Danas",
 	monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Juni",
 	"Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-cs.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-cs.js
index 201fac7b81facab904f4083bac9a115198f51733..6e5552c6ce7ed83a48d6ed32ec8080ed0408762f 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-cs.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-cs.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.cs = {
 	closeText: "Zavřít",
-	prevText: "&#x3C;Dříve",
-	nextText: "Později&#x3E;",
+	prevText: "Dříve",
+	nextText: "Později",
 	currentText: "Nyní",
 	monthNames: [ "leden", "únor", "březen", "duben", "květen", "červen",
 	"červenec", "srpen", "září", "říjen", "listopad", "prosinec" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-da.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-da.js
index 90409c06efd73f18b5ca309e107a009efe2b2d97..d2de7550d293468e912ac1b699a34fc5551d00ef 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-da.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-da.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.da = {
 	closeText: "Luk",
-	prevText: "&#x3C;Forrige",
-	nextText: "Næste&#x3E;",
+	prevText: "Forrige",
+	nextText: "Næste",
 	currentText: "I dag",
 	monthNames: [ "Januar", "Februar", "Marts", "April", "Maj", "Juni",
 	"Juli", "August", "September", "Oktober", "November", "December" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de-AT.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de-AT.js
index 814e74f3eac4570d649b58dd7b8e04dab2e44325..4a8b7811ac9cdfa37859dc38fadc8e5fb81cccd6 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de-AT.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de-AT.js
@@ -18,8 +18,8 @@
 
 datepicker.regional[ "de-AT" ] = {
 	closeText: "Schließen",
-	prevText: "&#x3C;Zurück",
-	nextText: "Vor&#x3E;",
+	prevText: "Zurück",
+	nextText: "Vor",
 	currentText: "Heute",
 	monthNames: [ "Jänner", "Februar", "März", "April", "Mai", "Juni",
 	"Juli", "August", "September", "Oktober", "November", "Dezember" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de.js
index 5baf6d1486ff74a77226368f84ce92b3c3f04a48..8a08ebf3382ba566cdc44c6b86e179603b1382c9 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-de.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.de = {
 	closeText: "Schließen",
-	prevText: "&#x3C;Zurück",
-	nextText: "Vor&#x3E;",
+	prevText: "Zurück",
+	nextText: "Vor",
 	currentText: "Heute",
 	monthNames: [ "Januar", "Februar", "März", "April", "Mai", "Juni",
 	"Juli", "August", "September", "Oktober", "November", "Dezember" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eo.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eo.js
index 3867a6214f603f4cea5fcbbbeb87c50bf9172023..08aa96e76840b1d117029a70358d10e1ddb77265 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eo.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eo.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.eo = {
 	closeText: "Fermi",
-	prevText: "&#x3C;Anta",
-	nextText: "Sekv&#x3E;",
+	prevText: "Anta",
+	nextText: "Sekv",
 	currentText: "Nuna",
 	monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio",
 	"Julio", "AÅ­gusto", "Septembro", "Oktobro", "Novembro", "Decembro" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-es.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-es.js
index 9a7457778c4931b5c711d8330e64598225716b6d..dbb1f0aa528db5cf7097638bcfa7c554a37b99a8 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-es.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-es.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.es = {
 	closeText: "Cerrar",
-	prevText: "&#x3C;Ant",
-	nextText: "Sig&#x3E;",
+	prevText: "Ant",
+	nextText: "Sig",
 	currentText: "Hoy",
 	monthNames: [ "enero", "febrero", "marzo", "abril", "mayo", "junio",
 	"julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eu.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eu.js
index 754a172df5a7ddfa25dace90e4a6f582ec122d49..0de057c5a4584f2b6bb4ea38e29417a91b6eb309 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eu.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-eu.js
@@ -16,8 +16,8 @@
 
 datepicker.regional.eu = {
 	closeText: "Egina",
-	prevText: "&#x3C;Aur",
-	nextText: "Hur&#x3E;",
+	prevText: "Aur",
+	nextText: "Hur",
 	currentText: "Gaur",
 	monthNames: [ "urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina",
 		"uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fa.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fa.js
index 193a3dcc1ed4045a7b076cca4415e5d3064f688e..ac30752b80f64a296f8f5b999eb4714ea6205c5a 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fa.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fa.js
@@ -18,8 +18,8 @@
 
 datepicker.regional.fa = {
 	closeText: "بستن",
-	prevText: "&#x3C;قبلی",
-	nextText: "بعدی&#x3E;",
+	prevText: "قبلی",
+	nextText: "بعدی",
 	currentText: "امروز",
 	monthNames: [
 		"ژانویه",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fi.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fi.js
index dd4ca5944a76f0e2c9a0fcdb864384fe3db7d7e8..d355e9ebbdcda4f889eab2a4f188d6ee3a6de1ca 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fi.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fi.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.fi = {
 	closeText: "Sulje",
-	prevText: "&#xAB;Edellinen",
-	nextText: "Seuraava&#xBB;",
+	prevText: "Edellinen",
+	nextText: "Seuraava",
 	currentText: "Tänään",
 	monthNames: [ "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kesäkuu",
 	"Heinäkuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fo.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fo.js
index f024ac674252569a04f4ed9cb29e90d67c2f1f55..d2ec9d7c486a29332e0a511e54ef322b5a516217 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fo.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fo.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.fo = {
 	closeText: "Lat aftur",
-	prevText: "&#x3C;Fyrra",
-	nextText: "Næsta&#x3E;",
+	prevText: "Fyrra",
+	nextText: "Næsta",
 	currentText: "Í dag",
 	monthNames: [ "Januar", "Februar", "Mars", "Apríl", "Mei", "Juni",
 	"Juli", "August", "September", "Oktober", "November", "Desember" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fr-CH.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fr-CH.js
index b75c683379a25af0ad13a2e6c14c2ea5f4733310..7221d14ed1be019b7c850623bada7921658efed8 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fr-CH.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-fr-CH.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "fr-CH" ] = {
 	closeText: "Fermer",
-	prevText: "&#x3C;Préc",
-	nextText: "Suiv&#x3E;",
+	prevText: "Préc",
+	nextText: "Suiv",
 	currentText: "Courant",
 	monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin",
 		"juillet", "août", "septembre", "octobre", "novembre", "décembre" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-gl.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-gl.js
index f3ebc46651e94d615265a31480a34396585666cc..27abb0214f11403579893f5e03ab4128a14e5152 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-gl.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-gl.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.gl = {
 	closeText: "Pechar",
-	prevText: "&#x3C;Ant",
-	nextText: "Seg&#x3E;",
+	prevText: "Ant",
+	nextText: "Seg",
 	currentText: "Hoxe",
 	monthNames: [ "Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño",
 	"Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-he.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-he.js
index c487e78f70b46af5fe20a368cb53063208c07121..fbe3c40cd936fb8779f7c4b01cd608356ac699b4 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-he.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-he.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.he = {
 	closeText: "סגור",
-	prevText: "&#x3C;הקודם",
-	nextText: "הבא&#x3E;",
+	prevText: "הקודם",
+	nextText: "הבא",
 	currentText: "היום",
 	monthNames: [ "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני",
 	"יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hr.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hr.js
index 23ea41446ed9353703168c0c005e14cfec82aae0..2898d5cb8fd4c115f02dd71730c578228b500163 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hr.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hr.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.hr = {
 	closeText: "Zatvori",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Prethodno",
+	nextText: "Sljedeći",
 	currentText: "Danas",
 	monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj",
 	"Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hy.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hy.js
index 2cc74da734cc8ac441b5552a5fc6298c283a662c..7d4da5abf56ff89de8f33b011853846e02d252b0 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hy.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-hy.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.hy = {
 	closeText: "Õ“Õ¡Õ¯Õ¥Õ¬",
-	prevText: "&#x3C;Õ†Õ¡Õ­.",
-	nextText: "Õ€Õ¡Õ».&#x3E;",
+	prevText: "Õ†Õ¡Õ­.",
+	nextText: "Õ€Õ¡Õ».",
 	currentText: "Ô±ÕµÕ½Ö…Ö€",
 	monthNames: [ "Õ€Õ¸Ö‚Õ¶Õ¾Õ¡Ö€", "Õ“Õ¥Õ¿Ö€Õ¾Õ¡Ö€", "Õ„Õ¡Ö€Õ¿", "Ô±ÕºÖ€Õ«Õ¬", "Õ„Õ¡ÕµÕ«Õ½", "Õ€Õ¸Ö‚Õ¶Õ«Õ½",
 	"Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-id.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-id.js
index 52f709caa5bb7d8226a97a32419ce559b60b363f..17082e9b933dc597fc4162b705a4ff0a41085dfe 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-id.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-id.js
@@ -1,5 +1,6 @@
 /* Indonesian initialisation for the jQuery UI date picker plugin. */
 /* Written by Deden Fathurahman (dedenf@gmail.com). */
+/* Fixed by Denny Septian Panggabean (xamidimura@gmail.com) */
 ( function( factory ) {
 	"use strict";
 
@@ -17,16 +18,16 @@
 
 datepicker.regional.id = {
 	closeText: "Tutup",
-	prevText: "&#x3C;mundur",
-	nextText: "maju&#x3E;",
-	currentText: "hari ini",
+	prevText: "Mundur",
+	nextText: "Maju",
+	currentText: "Hari ini",
 	monthNames: [ "Januari", "Februari", "Maret", "April", "Mei", "Juni",
 	"Juli", "Agustus", "September", "Oktober", "Nopember", "Desember" ],
 	monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun",
 	"Jul", "Agus", "Sep", "Okt", "Nop", "Des" ],
 	dayNames: [ "Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu" ],
-	dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "kam", "Jum", "Sab" ],
-	dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "jm", "Sb" ],
+	dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab" ],
+	dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "Jm", "Sb" ],
 	weekHeader: "Mg",
 	dateFormat: "dd/mm/yy",
 	firstDay: 0,
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-is.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-is.js
index 0ebffd35541b7cb46bc5994bf757a984f42eebb3..c453fa4af2b475a313f4c94b6bd4f55db2fd7e6e 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-is.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-is.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.is = {
 	closeText: "Loka",
-	prevText: "&#x3C; Fyrri",
-	nextText: "Næsti &#x3E;",
+	prevText: "Fyrri",
+	nextText: "Næsti ",
 	currentText: "Í dag",
 	monthNames: [ "Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní",
 	"Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it-CH.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it-CH.js
index 8c6d1058010b1ce96c735ed9236798ef10c17bac..73b791894b2d3a9577f67bd05eded1db7819821f 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it-CH.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it-CH.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "it-CH" ] = {
 	closeText: "Chiudi",
-	prevText: "&#x3C;Prec",
-	nextText: "Succ&#x3E;",
+	prevText: "Prec",
+	nextText: "Succ",
 	currentText: "Oggi",
 	monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno",
 		"Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it.js
index 0210e41c49cb67a8f684492e7e3795974c1368b1..d1d498057d2901fb06f8980e56dcdc0f3c1635bd 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-it.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.it = {
 	closeText: "Chiudi",
-	prevText: "&#x3C;Prec",
-	nextText: "Succ&#x3E;",
+	prevText: "Prec",
+	nextText: "Succ",
 	currentText: "Oggi",
 	monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno",
 		"Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ja.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ja.js
index 404bbfd64b62894ffde77912327a5e4b9d26714a..95fa6fdbc45661aa0e46c56861ed95a5cb5a9d68 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ja.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ja.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.ja = {
 	closeText: "閉じる",
-	prevText: "&#x3C;前",
-	nextText: "次&#x3E;",
+	prevText: "前",
+	nextText: "次",
 	currentText: "今日",
 	monthNames: [ "1月", "2月", "3月", "4月", "5月", "6月",
 	"7月", "8月", "9月", "10月", "11月", "12月" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ka.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ka.js
index fd740dadea700c1ee78d7c51c652e376d1aae74d..d347de8f5f74a9f7738b40e859f880d850b54c73 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ka.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ka.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.ka = {
 	closeText: "დახურვა",
-	prevText: "&#x3c; წინა",
-	nextText: "შემდეგი &#x3e;",
+	prevText: "წინა",
+	nextText: "შემდეგი ",
 	currentText: "დღეს",
 	monthNames: [
 		"იანვარი",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-kk.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-kk.js
index c40391d11a696e5df4d1a66e50d68c8cd60563d2..20a8486179db5c181ccef9e63c8170588c41cf8a 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-kk.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-kk.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.kk = {
 	closeText: "Жабу",
-	prevText: "&#x3C;Алдыңғы",
-	nextText: "Келесі&#x3E;",
+	prevText: "Алдыңғы",
+	nextText: "Келесі",
 	currentText: "Бүгін",
 	monthNames: [ "Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым",
 	"Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ky.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ky.js
index e74c92740400e1945082222304b9296b8407440b..05dc5dd16fce2e3186297b0859c7ee7370a6bef3 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ky.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ky.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.ky = {
 	closeText: "Жабуу",
-	prevText: "&#x3c;Мур",
-	nextText: "Кий&#x3e;",
+	prevText: "Мур",
+	nextText: "Кий",
 	currentText: "Бүгүн",
 	monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь",
 	"Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-lt.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-lt.js
index 279af0cf7a950088c83c45a5d8f44bd8b1b2533f..5f45734be6535b62f90fe3f3762484fcecc1ccab 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-lt.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-lt.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.lt = {
 	closeText: "Uždaryti",
-	prevText: "&#x3C;Atgal",
-	nextText: "Pirmyn&#x3E;",
+	prevText: "Atgal",
+	nextText: "Pirmyn",
 	currentText: "Å iandien",
 	monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis",
 	"Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-mk.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-mk.js
index f7999baec8c9a85299a573fee33b903f4a21040b..6f430e905d72085bc9739d22add9c762cb4c0b2b 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-mk.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-mk.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.mk = {
 	closeText: "Затвори",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Претходна",
+	nextText: "Следно",
 	currentText: "Денес",
 	monthNames: [ "Јануари", "Февруари", "Март", "Април", "Мај", "Јуни",
 	"Јули", "Август", "Септември", "Октомври", "Ноември", "Декември" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ms.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ms.js
index 344b7683e969a6c8328ab00dc1bf607e25b26a96..4170519bacba58904be258df2533f906b8281d07 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ms.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ms.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.ms = {
 	closeText: "Tutup",
-	prevText: "&#x3C;Sebelum",
-	nextText: "Selepas&#x3E;",
+	prevText: "Sebelum",
+	nextText: "Selepas",
 	currentText: "hari ini",
 	monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun",
 	"Julai", "Ogos", "September", "Oktober", "November", "Disember" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nb.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nb.js
index b4fd237b91d884b9ebaf09b7f1d2df746834ef96..19bb0bc2544134e2f24a2a607bf929fb75c981e0 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nb.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nb.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.nb = {
 	closeText: "Lukk",
-	prevText: "&#xAB;Forrige",
-	nextText: "Neste&#xBB;",
+	prevText: "Forrige",
+	nextText: "Neste",
 	currentText: "I dag",
 	monthNames: [
 		"januar",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl-BE.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl-BE.js
index ae574739e7f5e8cfc84d8f4b524588a0f250a0a0..1b37288bf9c5530be1ab4bd40027b49182c2a04b 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl-BE.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl-BE.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "nl-BE" ] = {
 	closeText: "Sluiten",
-	prevText: "←",
-	nextText: "→",
+	prevText: "Vorig",
+	nextText: "Volgende",
 	currentText: "Vandaag",
 	monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
 	"juli", "augustus", "september", "oktober", "november", "december" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl.js
index 19df79ca7141b37840405292b91482c16c8172d4..535d7fbdaa8d438a8d5d13fa38579b099993414c 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nl.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.nl = {
 	closeText: "Sluiten",
-	prevText: "←",
-	nextText: "→",
+	prevText: "Vorig",
+	nextText: "Volgende",
 	currentText: "Vandaag",
 	monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
 	"juli", "augustus", "september", "oktober", "november", "december" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nn.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nn.js
index 967351c95bc3b564d7ad8f5aa517f217f4e77e6b..5eccb4a8ad8e8cb62e820a814d0b8a0dba599d53 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nn.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-nn.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.nn = {
 	closeText: "Lukk",
-	prevText: "&#xAB;Førre",
-	nextText: "Neste&#xBB;",
+	prevText: "Førre",
+	nextText: "Neste",
 	currentText: "I dag",
 	monthNames: [
 		"januar",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-no.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-no.js
index 4b1b54fa276fe53b7d87263bc4d8daeaa30780a0..becc8bfce629223bb6ffa0b1c6b0dc2afa229ea4 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-no.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-no.js
@@ -18,8 +18,8 @@
 
 datepicker.regional.no = {
 	closeText: "Lukk",
-	prevText: "&#xAB;Forrige",
-	nextText: "Neste&#xBB;",
+	prevText: "Forrige",
+	nextText: "Neste",
 	currentText: "I dag",
 	monthNames: [
 		"januar",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pl.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pl.js
index 60f9fbb2d4b6a6f180bf23b6231a217d1674b5d2..4d31086a564dadd875538e88abfa7e1fa136f03e 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pl.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pl.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.pl = {
 	closeText: "Zamknij",
-	prevText: "&#x3C;Poprzedni",
-	nextText: "Następny&#x3E;",
+	prevText: "Poprzedni",
+	nextText: "Następny",
 	currentText: "DziÅ›",
 	monthNames: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec",
 	"Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pt-BR.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pt-BR.js
index 1c84bf34daf057978fd0ace7cbcb1cfc78feb719..3c3984f936d2686340e9a2d29f069f937a8af9fd 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pt-BR.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-pt-BR.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "pt-BR" ] = {
 	closeText: "Fechar",
-	prevText: "&#x3C;Anterior",
-	nextText: "Próximo&#x3E;",
+	prevText: "Anterior",
+	nextText: "Próximo",
 	currentText: "Hoje",
 	monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho",
 	"Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-rm.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-rm.js
index 439e8c8e1138aab72f4150aa1be2ae745a3c77c2..4f150c5e63c54d822d518140f1e943ded26098f4 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-rm.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-rm.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.rm = {
 	closeText: "Serrar",
-	prevText: "&#x3C;Suandant",
-	nextText: "Precedent&#x3E;",
+	prevText: "Suandant",
+	nextText: "Precedent",
 	currentText: "Actual",
 	monthNames: [
 		"Schaner",
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ro.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ro.js
index f03ee15c45a9b0ce99a51ae2741b9496c8f90977..60f56ae79da9b146ef84741398c230d066f2f8e4 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ro.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ro.js
@@ -20,8 +20,8 @@
 
 datepicker.regional.ro = {
 	closeText: "ÃŽnchide",
-	prevText: "&#xAB; Luna precedentă",
-	nextText: "Luna următoare &#xBB;",
+	prevText: "Luna precedentă",
+	nextText: "Luna următoare ",
 	currentText: "Azi",
 	monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie",
 	"Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ru.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ru.js
index 61d1151095ffd07e0acce5ec2a47054bf0b81bc4..5a8b3b7c40ff830464585006932ef9be90b4a297 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ru.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-ru.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.ru = {
 	closeText: "Закрыть",
-	prevText: "&#x3C;Пред",
-	nextText: "След&#x3E;",
+	prevText: "Пред",
+	nextText: "След",
 	currentText: "Сегодня",
 	monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь",
 	"Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sk.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sk.js
index c28750c248e95afe23c6e61e4a950a95f25d9c69..826dfcbca23f6500bd16436e5882a3255902ec13 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sk.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sk.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.sk = {
 	closeText: "Zavrieť",
-	prevText: "&#x3C;Predchádzajúci",
-	nextText: "Nasledujúci&#x3E;",
+	prevText: "Predchádzajúci",
+	nextText: "Nasledujúci",
 	currentText: "Dnes",
 	monthNames: [ "január", "február", "marec", "apríl", "máj", "jún",
 	"júl", "august", "september", "október", "november", "december" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sl.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sl.js
index 15aa9e4ccf23ce515a0b602b8bfbf8dd7ef5be3d..4b329e26de6053db827e7100373fcddb04397928 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sl.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sl.js
@@ -18,8 +18,8 @@
 
 datepicker.regional.sl = {
 	closeText: "Zapri",
-	prevText: "&#x3C;Prejšnji",
-	nextText: "Naslednji&#x3E;",
+	prevText: "Prejšnji",
+	nextText: "Naslednji",
 	currentText: "Trenutni",
 	monthNames: [ "Januar", "Februar", "Marec", "April", "Maj", "Junij",
 	"Julij", "Avgust", "September", "Oktober", "November", "December" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sq.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sq.js
index 470a0301b483cbeea45b44355f3122015c355f53..9952fb1f5359ee11dd77e1757152bdee961ff651 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sq.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sq.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.sq = {
 	closeText: "mbylle",
-	prevText: "&#x3C;mbrapa",
-	nextText: "Përpara&#x3E;",
+	prevText: "mbrapa",
+	nextText: "Përpara",
 	currentText: "sot",
 	monthNames: [ "Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor",
 	"Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr-SR.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr-SR.js
index 2b75c408e91641c06be7ac8d74dcbc53a4daeee2..b28ceed019b948bb1f0199d14096c5e1a5fbba1a 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr-SR.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr-SR.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "sr-SR" ] = {
 	closeText: "Zatvori",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Prethodno",
+	nextText: "Sljedeći",
 	currentText: "Danas",
 	monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Jun",
 	"Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr.js
index c64069ab3a7b08c68aa12470055252f9005d1f3b..8b04d9bb3a0a3b1722cc289e312d9ab2c6212271 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sr.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.sr = {
 	closeText: "Затвори",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Претходна",
+	nextText: "Следећи",
 	currentText: "Данас",
 	monthNames: [ "Јануар", "Фебруар", "Март", "Април", "Мај", "Јун",
 	"Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sv.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sv.js
index 6fe51e3e74de5545f3335781038e7c81059024db..ee9296ea30958b59cdb4632a6fea5164ebd03245 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sv.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-sv.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.sv = {
 	closeText: "Stäng",
-	prevText: "&#xAB;Förra",
-	nextText: "Nästa&#xBB;",
+	prevText: "Förra",
+	nextText: "Nästa",
 	currentText: "Idag",
 	monthNames: [ "januari", "februari", "mars", "april", "maj", "juni",
 	"juli", "augusti", "september", "oktober", "november", "december" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-th.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-th.js
index 10c2833214eb9b802dc722e21fa967b66ee54e01..41cef5237f7bda9b65bf1977f6008aa7a7bc4238 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-th.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-th.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.th = {
 	closeText: "ปิด",
-	prevText: "&#xAB;&#xA0;ย้อน",
-	nextText: "ถัดไป&#xA0;&#xBB;",
+	prevText: "ย้อน",
+	nextText: "ถัดไป",
 	currentText: "วันนี้",
 	monthNames: [ "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน",
 	"กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tj.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tj.js
index bdc71f17a6cd23e9c15b0616894077619b533c2d..a3669dae304c973a735bc2bd5f944152a28d412f 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tj.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tj.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.tj = {
 	closeText: "Идома",
-	prevText: "&#x3c;Қафо",
-	nextText: "Пеш&#x3e;",
+	prevText: "Қафо",
+	nextText: "Пеш",
 	currentText: "Имрӯз",
 	monthNames: [ "Январ", "Феврал", "Март", "Апрел", "Май", "Июн",
 	"Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tr.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tr.js
index 220d66e64e1002ac8093d18f0f50a32222dd37b3..32eb3edd3a013c73e174615f70c4ace7c11be24e 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tr.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-tr.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.tr = {
 	closeText: "kapat",
-	prevText: "&#x3C;geri",
-	nextText: "ileri&#x3e",
+	prevText: "geri",
+	nextText: "ileri",
 	currentText: "bugün",
 	monthNames: [ "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran",
 	"Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-uk.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-uk.js
index 083462803aa22649060335529983772200933595..c273fd6e41dc6f92f5b159cb20f350a3be8f0098 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-uk.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-uk.js
@@ -18,8 +18,8 @@
 
 datepicker.regional.uk = {
 	closeText: "Закрити",
-	prevText: "&#x3C;",
-	nextText: "&#x3E;",
+	prevText: "Попередній",
+	nextText: "найближчий",
 	currentText: "Сьогодні",
 	monthNames: [ "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень",
 	"Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-vi.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-vi.js
index e06b702c12db0e85685be4af0d5ef145c7ce8893..8664c4fee37e5c6c23da43a58a6c6eb4583bcb71 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-vi.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-vi.js
@@ -17,8 +17,8 @@
 
 datepicker.regional.vi = {
 	closeText: "Đóng",
-	prevText: "&#x3C;TrÆ°á»›c",
-	nextText: "Tiếp&#x3E;",
+	prevText: "TrÆ°á»›c",
+	nextText: "Tiếp",
 	currentText: "Hôm nay",
 	monthNames: [ "Tháng Một", "Tháng Hai", "Tháng Ba", "Tháng Tư", "Tháng Năm", "Tháng Sáu",
 	"Tháng Bảy", "Tháng Tám", "Tháng Chín", "Tháng Mười", "Tháng Mười Một", "Tháng Mười Hai" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-CN.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-CN.js
index 84092904b69298f3795e3336a7b3945dc8915c53..a00553ef6d073e337d2fa43b03c916777dab4ef1 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-CN.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-CN.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "zh-CN" ] = {
 	closeText: "关闭",
-	prevText: "&#x3C;上月",
-	nextText: "下月&#x3E;",
+	prevText: "上月",
+	nextText: "下月",
 	currentText: "今天",
 	monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
 	"七月", "八月", "九月", "十月", "十一月", "十二月" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-HK.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-HK.js
index 80d5c7690bdd29ddbc4be50dedc89e0e12147357..e61bf66b0802a046565707b7f5f5e94f1e812518 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-HK.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-HK.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "zh-HK" ] = {
 	closeText: "關閉",
-	prevText: "&#x3C;上月",
-	nextText: "下月&#x3E;",
+	prevText: "上月",
+	nextText: "下月",
 	currentText: "今天",
 	monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
 	"七月", "八月", "九月", "十月", "十一月", "十二月" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-TW.js b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-TW.js
index 9e79a45cad69ee9e1e24e55269eed9e5adbdd499..f5e02a6f0330253c66a7e76b342ab845ae6c371a 100644
--- a/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-TW.js
+++ b/civicrm/bower_components/jquery-ui/ui/i18n/datepicker-zh-TW.js
@@ -17,8 +17,8 @@
 
 datepicker.regional[ "zh-TW" ] = {
 	closeText: "關閉",
-	prevText: "&#x3C;上個月",
-	nextText: "下個月&#x3E;",
+	prevText: "上個月",
+	nextText: "下個月",
 	currentText: "今天",
 	monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
 	"七月", "八月", "九月", "十月", "十一月", "十二月" ],
diff --git a/civicrm/bower_components/jquery-ui/ui/jquery-patch.js b/civicrm/bower_components/jquery-ui/ui/jquery-patch.js
index 8362c3bdb36b4aab20e6f9dea327dea28d457f98..2f4e75b88f11700217606d34884439fb50f0e79f 100644
--- a/civicrm/bower_components/jquery-ui/ui/jquery-patch.js
+++ b/civicrm/bower_components/jquery-ui/ui/jquery-patch.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
+ * jQuery UI Support for jQuery core 1.8.x and newer 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/keycode.js b/civicrm/bower_components/jquery-ui/ui/keycode.js
index 989563f3394d9da0789499b18c6725f6cfc5649a..d1656f531b7c1572e5c6f4387602a6a90359e152 100644
--- a/civicrm/bower_components/jquery-ui/ui/keycode.js
+++ b/civicrm/bower_components/jquery-ui/ui/keycode.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Keycode 1.13.1
+ * jQuery UI Keycode 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/labels.js b/civicrm/bower_components/jquery-ui/ui/labels.js
index b2cc01543de060986b13925cfb8f02191d823f77..b3815a68cf9cce6f80e4ed78b1bb46fe30ed372d 100644
--- a/civicrm/bower_components/jquery-ui/ui/labels.js
+++ b/civicrm/bower_components/jquery-ui/ui/labels.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Labels 1.13.1
+ * jQuery UI Labels 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/position.js b/civicrm/bower_components/jquery-ui/ui/position.js
index 2f5da8742ddc4feb5eb4420df0a85c2041e5f156..88bafa3b12936c96718e4d96d19f803d57ec33bd 100644
--- a/civicrm/bower_components/jquery-ui/ui/position.js
+++ b/civicrm/bower_components/jquery-ui/ui/position.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Position 1.13.1
+ * jQuery UI Position 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/scroll-parent.js b/civicrm/bower_components/jquery-ui/ui/scroll-parent.js
index 242bbb82e74199cbbf0cc6f5e90b0783359055de..00183db72bd750f3229f9ca88b49d9a77f403b23 100644
--- a/civicrm/bower_components/jquery-ui/ui/scroll-parent.js
+++ b/civicrm/bower_components/jquery-ui/ui/scroll-parent.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Scroll Parent 1.13.1
+ * jQuery UI Scroll Parent 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/tabbable.js b/civicrm/bower_components/jquery-ui/ui/tabbable.js
index e936f6c3eb1efa4be183540d43ffd94084bfb1d9..96306184029cfb900741562e2674cbd35522fca3 100644
--- a/civicrm/bower_components/jquery-ui/ui/tabbable.js
+++ b/civicrm/bower_components/jquery-ui/ui/tabbable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Tabbable 1.13.1
+ * jQuery UI Tabbable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/unique-id.js b/civicrm/bower_components/jquery-ui/ui/unique-id.js
index b3acdff70221b120c21567af7fc489146b564112..2788aa70f6d910e85341b101f6f337a84cd236e2 100644
--- a/civicrm/bower_components/jquery-ui/ui/unique-id.js
+++ b/civicrm/bower_components/jquery-ui/ui/unique-id.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Unique ID 1.13.1
+ * jQuery UI Unique ID 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/version.js b/civicrm/bower_components/jquery-ui/ui/version.js
index fc3e1d035c2f7d230d2530a27ee43e34194726b3..3233b0ad5de748905ce7572c218664de7c23ed14 100644
--- a/civicrm/bower_components/jquery-ui/ui/version.js
+++ b/civicrm/bower_components/jquery-ui/ui/version.js
@@ -15,6 +15,6 @@
 
 $.ui = $.ui || {};
 
-return $.ui.version = "1.13.1";
+return $.ui.version = "1.13.2";
 
 } );
diff --git a/civicrm/bower_components/jquery-ui/ui/widget.js b/civicrm/bower_components/jquery-ui/ui/widget.js
index 59cf7130e7d7e44207025bd69e80e86317518134..d7200ea9b4ddfeac064904ca985380483176e720 100644
--- a/civicrm/bower_components/jquery-ui/ui/widget.js
+++ b/civicrm/bower_components/jquery-ui/ui/widget.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Widget 1.13.1
+ * jQuery UI Widget 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/accordion.js b/civicrm/bower_components/jquery-ui/ui/widgets/accordion.js
index b14bf2f7af746b710799b0a3c34785b63c3a01e3..b803419e376820ff3587466217856aa11899f8bb 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/accordion.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/accordion.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Accordion 1.13.1
+ * jQuery UI Accordion 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -40,7 +40,7 @@
 "use strict";
 
 return $.widget( "ui.accordion", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		active: 0,
 		animate: {},
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/autocomplete.js b/civicrm/bower_components/jquery-ui/ui/widgets/autocomplete.js
index dcc2df3f2ac2c9e3d91524fe28a4e0ba02c5d3f1..fad94f455090e6a10aa5224ca79dd921092ef1ef 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/autocomplete.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/autocomplete.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Autocomplete 1.13.1
+ * jQuery UI Autocomplete 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -40,7 +40,7 @@
 "use strict";
 
 $.widget( "ui.autocomplete", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<input>",
 	options: {
 		appendTo: null,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/button.js b/civicrm/bower_components/jquery-ui/ui/widgets/button.js
index 398c4ef55307b8d0472cd3da51463c7822c1d380..f17258b3a069be4617469f39d9593722606774b6 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/button.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/button.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Button 1.13.1
+ * jQuery UI Button 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -42,7 +42,7 @@
 "use strict";
 
 $.widget( "ui.button", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<button>",
 	options: {
 		classes: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/checkboxradio.js b/civicrm/bower_components/jquery-ui/ui/widgets/checkboxradio.js
index 6ee7fe6cd201aa54778d8c5fd2e877d404cde5ca..689882905db379bc479b220b25dd02adf729c55c 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/checkboxradio.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/checkboxradio.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Checkboxradio 1.13.1
+ * jQuery UI Checkboxradio 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -38,7 +38,7 @@
 "use strict";
 
 $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		disabled: null,
 		label: null,
@@ -50,8 +50,7 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
 	},
 
 	_getCreateOptions: function() {
-		var disabled, labels;
-		var that = this;
+		var disabled, labels, labelContents;
 		var options = this._super() || {};
 
 		// We read the type here, because it makes more sense to throw a element type error first,
@@ -71,12 +70,18 @@ $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
 
 		// We need to get the label text but this may also need to make sure it does not contain the
 		// input itself.
-		this.label.contents().not( this.element[ 0 ] ).each( function() {
-
-			// The label contents could be text, html, or a mix. We concat each element to get a
-			// string representation of the label, without the input as part of it.
-			that.originalLabel += this.nodeType === 3 ? $( this ).text() : this.outerHTML;
-		} );
+		// The label contents could be text, html, or a mix. We wrap all elements
+		// and read the wrapper's `innerHTML` to get a string representation of
+		// the label, without the input as part of it.
+		labelContents = this.label.contents().not( this.element[ 0 ] );
+
+		if ( labelContents.length ) {
+			this.originalLabel += labelContents
+				.clone()
+				.wrapAll( "<div></div>" )
+				.parent()
+				.html();
+		}
 
 		// Set the label option if we found label text
 		if ( this.originalLabel ) {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/controlgroup.js b/civicrm/bower_components/jquery-ui/ui/widgets/controlgroup.js
index f52f35af66173902a650e96a077060a2ce6c6be7..c0798d017fe89fabedf237c4dec7ef598c22afdd 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/controlgroup.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/controlgroup.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Controlgroup 1.13.1
+ * jQuery UI Controlgroup 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -37,7 +37,7 @@
 var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
 
 return $.widget( "ui.controlgroup", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<div>",
 	options: {
 		direction: "horizontal",
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/datepicker.js b/civicrm/bower_components/jquery-ui/ui/widgets/datepicker.js
index ea8d1447cf63ef7e49724248f944ac95d82c369d..a46c42528b81dc5eeea9ccde865b17204b7cbfa8 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/datepicker.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/datepicker.js
@@ -1,6 +1,6 @@
 /* eslint-disable max-len, camelcase */
 /*!
- * jQuery UI Datepicker 1.13.1
+ * jQuery UI Datepicker 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -36,7 +36,7 @@
 } )( function( $ ) {
 "use strict";
 
-$.extend( $.ui, { datepicker: { version: "1.13.1" } } );
+$.extend( $.ui, { datepicker: { version: "1.13.2" } } );
 
 var datepicker_instActive;
 
@@ -2233,7 +2233,7 @@ $.fn.datepicker = function( options ) {
 $.datepicker = new Datepicker(); // singleton instance
 $.datepicker.initialized = false;
 $.datepicker.uuid = new Date().getTime();
-$.datepicker.version = "1.13.1";
+$.datepicker.version = "1.13.2";
 
 return $.datepicker;
 
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/dialog.js b/civicrm/bower_components/jquery-ui/ui/widgets/dialog.js
index 88a6c384ed0c724e925fcfe404f814b5bf7bcf25..82c6093252cdbefb35c864ff98a44b3ffe1c5575 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/dialog.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/dialog.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Dialog 1.13.1
+ * jQuery UI Dialog 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -47,7 +47,7 @@
 "use strict";
 
 $.widget( "ui.dialog", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		appendTo: "body",
 		autoOpen: true,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/draggable.js b/civicrm/bower_components/jquery-ui/ui/widgets/draggable.js
index c3469e17721ce4cedc7049a818c116dd57f31396..c4dbefbda7245a0cc6ace4692dada87eef6e3003 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/draggable.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/draggable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Draggable 1.13.1
+ * jQuery UI Draggable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -40,7 +40,7 @@
 "use strict";
 
 $.widget( "ui.draggable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "drag",
 	options: {
 		addClasses: true,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/droppable.js b/civicrm/bower_components/jquery-ui/ui/widgets/droppable.js
index e52c6d707ab62e51c9c42e43b67eb32cc1b291f7..fbbde6e58b31e4b3c4aaf61bd0de003a442b953d 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/droppable.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/droppable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Droppable 1.13.1
+ * jQuery UI Droppable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -35,7 +35,7 @@
 "use strict";
 
 $.widget( "ui.droppable", {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "drop",
 	options: {
 		accept: "*",
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/menu.js b/civicrm/bower_components/jquery-ui/ui/widgets/menu.js
index ea72e03edc7b7028f9b72a8195042019db6fd422..c50312cfe0e5eae8425f711eb7285c63a52c29d9 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/menu.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/menu.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Menu 1.13.1
+ * jQuery UI Menu 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -40,7 +40,7 @@
 "use strict";
 
 return $.widget( "ui.menu", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<ul>",
 	delay: 300,
 	options: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/mouse.js b/civicrm/bower_components/jquery-ui/ui/widgets/mouse.js
index 8a9b7b75ba076a0c0a5bfa6e42154746fbe068a8..1b853d346168811087ce8d3d39e6efe0798012d0 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/mouse.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/mouse.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Mouse 1.13.1
+ * jQuery UI Mouse 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -38,7 +38,7 @@ $( document ).on( "mouseup", function() {
 } );
 
 return $.widget( "ui.mouse", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		cancel: "input, textarea, button, select, option",
 		distance: 1,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/progressbar.js b/civicrm/bower_components/jquery-ui/ui/widgets/progressbar.js
index 0dfac693cc85c1def4b190d760b52c307f7fca12..ff2a29ddf70bd9fcb82276d8d83e3b61b2e60aa2 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/progressbar.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/progressbar.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Progressbar 1.13.1
+ * jQuery UI Progressbar 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -38,7 +38,7 @@
 "use strict";
 
 return $.widget( "ui.progressbar", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		classes: {
 			"ui-progressbar": "ui-corner-all",
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/resizable.js b/civicrm/bower_components/jquery-ui/ui/widgets/resizable.js
index 3763065666f7c7b5969e9bfcd915521255ea5ad9..dda4871a963e96bcf868d4eea32b96ad671b2ef6 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/resizable.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/resizable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Resizable 1.13.1
+ * jQuery UI Resizable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -39,7 +39,7 @@
 "use strict";
 
 $.widget( "ui.resizable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "resize",
 	options: {
 		alsoResize: false,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/selectable.js b/civicrm/bower_components/jquery-ui/ui/widgets/selectable.js
index 250fed432e51b4d15ff2e9a0c2613f098cb03eab..058ace46d32b9ff22635885930dfb6112ab9dc9e 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/selectable.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/selectable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Selectable 1.13.1
+ * jQuery UI Selectable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -35,7 +35,7 @@
 "use strict";
 
 return $.widget( "ui.selectable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		appendTo: "body",
 		autoRefresh: true,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/selectmenu.js b/civicrm/bower_components/jquery-ui/ui/widgets/selectmenu.js
index 1e2373b5c92e54adba2f7dbc1431e456a8dc7fc8..9e275bc9c93aab2dab98f33159c42d41df6c1f06 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/selectmenu.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/selectmenu.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Selectmenu 1.13.1
+ * jQuery UI Selectmenu 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -44,7 +44,7 @@
 "use strict";
 
 return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<select>",
 	options: {
 		appendTo: null,
@@ -417,7 +417,7 @@ return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
 		// Support: IE
 		// Setting the text selection kills the button focus in IE, but
 		// restoring the focus doesn't kill the selection.
-		this.button.focus();
+		this.button.trigger( "focus" );
 	},
 
 	_documentClick: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/slider.js b/civicrm/bower_components/jquery-ui/ui/widgets/slider.js
index e1a3d27387bd17426be818fa6ae9c9cdcfed3c1b..c71faed5d44a064b9fdec5d4c3d2ec07b5bb434c 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/slider.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/slider.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Slider 1.13.1
+ * jQuery UI Slider 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -38,7 +38,7 @@
 "use strict";
 
 return $.widget( "ui.slider", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "slide",
 
 	options: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/sortable.js b/civicrm/bower_components/jquery-ui/ui/widgets/sortable.js
index 50cec89b7bb687113465a8551d0976d8077e2b6a..bd8cc3b2840f37af55e1c1d5331de01964d6de58 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/sortable.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/sortable.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Sortable 1.13.1
+ * jQuery UI Sortable 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -38,7 +38,7 @@
 "use strict";
 
 return $.widget( "ui.sortable", $.ui.mouse, {
-	version: "1.13.1",
+	version: "1.13.2",
 	widgetEventPrefix: "sort",
 	ready: false,
 	options: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/spinner.js b/civicrm/bower_components/jquery-ui/ui/widgets/spinner.js
index 1d535a20134ae16dbfa0e0a0adb02ca49aaba864..a54b5f54fcd7093e56e5bd401c35ce8327691964 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/spinner.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/spinner.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Spinner 1.13.1
+ * jQuery UI Spinner 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -50,7 +50,7 @@ function spinnerModifier( fn ) {
 }
 
 $.widget( "ui.spinner", {
-	version: "1.13.1",
+	version: "1.13.2",
 	defaultElement: "<input>",
 	widgetEventPrefix: "spin",
 	options: {
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/tabs.js b/civicrm/bower_components/jquery-ui/ui/widgets/tabs.js
index a4a552d5ef2fef5c439f7e54c51020c05c9e9871..04423ef30b0ade7525ed7cb53f4bc1e5badbb0d7 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/tabs.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/tabs.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Tabs 1.13.1
+ * jQuery UI Tabs 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -39,7 +39,7 @@
 "use strict";
 
 $.widget( "ui.tabs", {
-	version: "1.13.1",
+	version: "1.13.2",
 	delay: 300,
 	options: {
 		active: null,
diff --git a/civicrm/bower_components/jquery-ui/ui/widgets/tooltip.js b/civicrm/bower_components/jquery-ui/ui/widgets/tooltip.js
index d6c0b8043cd2524153f74fe35c3befb06c75bd62..5c7687be2c64147f4e88b70e32c4a0c308fd5314 100644
--- a/civicrm/bower_components/jquery-ui/ui/widgets/tooltip.js
+++ b/civicrm/bower_components/jquery-ui/ui/widgets/tooltip.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery UI Tooltip 1.13.1
+ * jQuery UI Tooltip 1.13.2
  * http://jqueryui.com
  *
  * Copyright jQuery Foundation and other contributors
@@ -39,7 +39,7 @@
 "use strict";
 
 $.widget( "ui.tooltip", {
-	version: "1.13.1",
+	version: "1.13.2",
 	options: {
 		classes: {
 			"ui-tooltip": "ui-corner-all ui-widget-shadow"
diff --git a/civicrm/civicrm-version.php b/civicrm/civicrm-version.php
index 707d8ab6fb872b97cb44e4b2a4824dd0c60984a8..576c157ee6dce02f5128d7928af0d49f679c0440 100644
--- a/civicrm/civicrm-version.php
+++ b/civicrm/civicrm-version.php
@@ -1,7 +1,7 @@
 <?php
 /** @deprecated */
 function civicrmVersion( ) {
-  return array( 'version'  => '5.54.1',
+  return array( 'version'  => '5.55.0',
                 'cms'      => 'Wordpress',
                 'revision' => '' );
 }
diff --git a/civicrm/composer.json b/civicrm/composer.json
index c2eeb630d7a0f34f8c4cc29ab17d91cf603660bf..e3372508d0f0690fc3614749fe4ddf5c5a717e16 100644
--- a/civicrm/composer.json
+++ b/civicrm/composer.json
@@ -87,7 +87,7 @@
     "league/csv": "~9.6.2",
     "league/oauth2-client": "^2.4",
     "league/oauth2-google": "^3.0",
-    "tplaner/when": "~3.0.0",
+    "tplaner/when": "~3.1",
     "xkerman/restricted-unserialize": "~1.1",
     "typo3/phar-stream-wrapper": "^2 || ^3.0",
     "brick/money": "~0.5",
@@ -126,25 +126,6 @@
       "bash tools/scripts/composer/guzzle-mockhandler-fix.sh"
     ]
   },
-  "repositories": {
-    "tplaner-when-1ec099f421bff354cc5c929f83b94031423fc80": {
-      "type": "package",
-      "package": {
-        "version": "3.0.0+php53",
-        "dist": {"url": "https://github.com/tplaner/When/archive/c1ec099f421bff354cc5c929f83b94031423fc80.zip", "type": "zip"},
-        "name": "tplaner/when",
-        "type": "library",
-        "description": "Date/Calendar recursion library.",
-        "keywords": ["recurrence", "date", "time", "DateTime"],
-        "homepage": "https://github.com/tplaner/When",
-        "license": "MIT",
-        "authors": [{"name": "Tom Planer", "email": "tplaner@gmail.com"}],
-        "require": {"php": ">=5.3.0"},
-        "require-dev": {"phpunit/phpunit": "~4.0"},
-        "autoload": {"psr-4": {"When\\": "src/"}}
-      }
-    }
-  },
   "extra": {
     "downloads": {
       "*": {
@@ -246,7 +227,7 @@
         "url": "https://github.com/civicrm/jquery/archive/1.12.4-civicrm-1.2.zip"
       },
       "jquery-ui": {
-        "url": "https://github.com/civicrm/jqueryui/archive/1.13.1-civicrm.zip"
+        "url": "https://github.com/civicrm/jqueryui/archive/1.13.2-civicrm.zip"
       },
       "jquery-validation": {
         "url": "https://github.com/jquery-validation/jquery-validation/archive/1.19.3.zip",
diff --git a/civicrm/composer.lock b/civicrm/composer.lock
index d0048cbd6469d6216131b64cc8d2463058b51577..49ac534ef6e9c3e67ae5cc75aa5d8be3fd9eaccd 100644
--- a/civicrm/composer.lock
+++ b/civicrm/composer.lock
@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "3111ffc7dadaf54de6e97cc171d95c39",
+    "content-hash": "77915211e70259ae67353768d5655313",
     "packages": [
         {
             "name": "adrienrn/php-mimetyper",
@@ -5351,16 +5351,23 @@
         },
         {
             "name": "tplaner/when",
-            "version": "3.0.0+php53",
+            "version": "v3.1.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tplaner/When.git",
+                "reference": "8865acc235df8f57c2b229517c57c613b11ce4aa"
+            },
             "dist": {
                 "type": "zip",
-                "url": "https://github.com/tplaner/When/archive/c1ec099f421bff354cc5c929f83b94031423fc80.zip"
+                "url": "https://api.github.com/repos/tplaner/When/zipball/8865acc235df8f57c2b229517c57c613b11ce4aa",
+                "reference": "8865acc235df8f57c2b229517c57c613b11ce4aa",
+                "shasum": ""
             },
             "require": {
-                "php": ">=5.3.0"
+                "php": ">=7.1.3"
             },
             "require-dev": {
-                "phpunit/phpunit": "~4.0"
+                "phpunit/phpunit": "^7.0"
             },
             "type": "library",
             "autoload": {
@@ -5368,6 +5375,7 @@
                     "When\\": "src/"
                 }
             },
+            "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
@@ -5380,11 +5388,17 @@
             "description": "Date/Calendar recursion library.",
             "homepage": "https://github.com/tplaner/When",
             "keywords": [
-                "DateTime",
                 "date",
+                "datetime",
                 "recurrence",
+                "repeat",
                 "time"
-            ]
+            ],
+            "support": {
+                "issues": "https://github.com/tplaner/When/issues",
+                "source": "https://github.com/tplaner/When/tree/v3.1.5"
+            },
+            "time": "2021-09-24T14:09:59+00:00"
         },
         {
             "name": "tubalmartin/cssmin",
diff --git a/civicrm/css/civicrm.css b/civicrm/css/civicrm.css
index d5741c4ebbf79ee945728cc2750079391275d69a..7306d752d6ddf193f1e50418b95fec5860424f70 100644
--- a/civicrm/css/civicrm.css
+++ b/civicrm/css/civicrm.css
@@ -834,6 +834,10 @@ input.crm-form-entityref {
   margin: 0;
 }
 
+.crm-container .price-set-option-content .description {
+  font-size: 1em;
+}
+
 .crm-container .form-layout-compressed td.description,
 .crm-container .form-layout td.description {
   padding: 0 5px 5px 5px;
@@ -3781,7 +3785,6 @@ span.crm-status-icon {
 
 #crm-container.crm-public .price-set-row .crm-price-amount-label {
   color: #444444;
-  font-weight: bold;
 }
 
 #crm-container.crm-public .price-set-row .highlight label {
diff --git a/civicrm/ext/afform/admin/Civi/Api4/Action/Afform/LoadAdminData.php b/civicrm/ext/afform/admin/Civi/Api4/Action/Afform/LoadAdminData.php
index 9ee74c6585bbd216b51f88487bebc340c29805bb..c1b0f1e8b1538e3a136c62cd9090b0a773754b5f 100644
--- a/civicrm/ext/afform/admin/Civi/Api4/Action/Afform/LoadAdminData.php
+++ b/civicrm/ext/afform/admin/Civi/Api4/Action/Afform/LoadAdminData.php
@@ -246,7 +246,7 @@ class LoadAdminData extends \Civi\Api4\Generic\AbstractAction {
    * @param array $entities
    * @param array $info
    * @param array $where
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   private function loadAvailableBlocks($entities, &$info, $where = []) {
diff --git a/civicrm/ext/afform/admin/afformEntities/Participant.php b/civicrm/ext/afform/admin/afformEntities/Participant.php
new file mode 100644
index 0000000000000000000000000000000000000000..42f3cad7e2c6bb8b5682593333778575711cab3f
--- /dev/null
+++ b/civicrm/ext/afform/admin/afformEntities/Participant.php
@@ -0,0 +1,13 @@
+<?php
+return [
+  'type' => 'primary',
+  'defaults' => "{
+    data: {
+      contact_id: 'user_contact_id',
+      status_id: '1',
+      event_id: ''
+    },
+    actions: {create: true, update: false}
+  }",
+  'boilerplate' => [],
+];
diff --git a/civicrm/ext/afform/admin/ang/afGuiEditor/elements/afGuiField.component.js b/civicrm/ext/afform/admin/ang/afGuiEditor/elements/afGuiField.component.js
index 882ea3fd1a91996f7539adcfd39ee947e77430a3..6a70e2417b1d1e40c8f06c651013580dc9661081 100644
--- a/civicrm/ext/afform/admin/ang/afGuiEditor/elements/afGuiField.component.js
+++ b/civicrm/ext/afform/admin/ang/afGuiEditor/elements/afGuiField.component.js
@@ -176,6 +176,9 @@
           case 'Number':
             return !(defn.options || defn.data_type === 'Boolean');
 
+          case 'DisplayOnly':
+            return true;
+
           default:
             return false;
         }
diff --git a/civicrm/ext/afform/admin/ang/afGuiEditor/inputType/DisplayOnly.html b/civicrm/ext/afform/admin/ang/afGuiEditor/inputType/DisplayOnly.html
new file mode 100644
index 0000000000000000000000000000000000000000..c44ad2b7cfda02f48141d941e802f0559caa3a2e
--- /dev/null
+++ b/civicrm/ext/afform/admin/ang/afGuiEditor/inputType/DisplayOnly.html
@@ -0,0 +1,3 @@
+<div class="form-inline">
+  <input class="form-control" ng-model-options="$ctrl.editor.debounceWithGetterSetter" type="text" title="{{:: ts('Field value will be shown on the form') }}" disabled/>
+</div>
diff --git a/civicrm/ext/afform/admin/info.xml b/civicrm/ext/afform/admin/info.xml
index aba3e9ae2c66353f4c0d41adb4097b608a3c8db7..d6d494665090abf93959da8cc22905ab1e32ba85 100644
--- a/civicrm/ext/afform/admin/info.xml
+++ b/civicrm/ext/afform/admin/info.xml
@@ -13,10 +13,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>beta</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>Form Builder provides a UI to administer and edit forms. It is an optional admin tool and not required for the forms to function.</comments>
   <requires>
diff --git a/civicrm/ext/afform/core/Civi/Afform/AfformMetadataInjector.php b/civicrm/ext/afform/core/Civi/Afform/AfformMetadataInjector.php
index c2b128c62f6676486573d79a891efc5ab09b2362..48c9264173a741c0f67a67469bb3f80762c69e42 100644
--- a/civicrm/ext/afform/core/Civi/Afform/AfformMetadataInjector.php
+++ b/civicrm/ext/afform/core/Civi/Afform/AfformMetadataInjector.php
@@ -100,7 +100,6 @@ class AfformMetadataInjector {
    *
    * @param \DOMElement $afField
    * @param array $fieldInfo
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
@@ -167,7 +166,7 @@ class AfformMetadataInjector {
    * @param string|array $entityNames
    * @param string $action
    * @param \DOMElement $afField
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private static function fillFieldMetadata($entityNames, string $action, \DOMElement $afField):void {
     $fieldName = $afField->getAttribute('name');
diff --git a/civicrm/ext/afform/core/Civi/Afform/Event/AfformSubmitEvent.php b/civicrm/ext/afform/core/Civi/Afform/Event/AfformSubmitEvent.php
index fa28b3b4951544c5bb0529439d76791cc1faf775..8107e38f3acb89c4d2f4747774b96b8f30dac687 100644
--- a/civicrm/ext/afform/core/Civi/Afform/Event/AfformSubmitEvent.php
+++ b/civicrm/ext/afform/core/Civi/Afform/Event/AfformSubmitEvent.php
@@ -148,7 +148,8 @@ class AfformSubmitEvent extends AfformBaseEvent {
    * @return $this
    */
   public function setJoinIds($index, $joinEntity, $joinIds) {
-    $this->entityIds[$this->entityName][$index]['joins'][$joinEntity] = $joinIds;
+    $idField = CoreUtil::getIdFieldName($joinEntity);
+    $this->entityIds[$this->entityName][$index]['_joins'][$joinEntity] = \CRM_Utils_Array::filterColumns($joinIds, [$idField]);
     return $this;
   }
 
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/AbstractProcessor.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/AbstractProcessor.php
index 35af3eb3ef66f20eae9a218d951913c1e7a54586..737c0b224b19414ce89769f8bf25ff2379117bd5 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/AbstractProcessor.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/AbstractProcessor.php
@@ -52,7 +52,7 @@ abstract class AbstractProcessor extends \Civi\Api4\Generic\AbstractAction {
    * Each key in the array corresponds to the name of an entity,
    * and the value is an array of arrays
    * (because of `<af-repeat>` all entities are treated as if they may be multi)
-   * E.g. $entityIds['Individual1'] = [['id' => 1, 'joins' => ['Email' => [1,2,3]]];
+   * E.g. $entityIds['Individual1'] = [['id' => 1, '_joins' => ['Email' => [['id' => 1], ['id' => 2]]];
    *
    * @var array
    */
@@ -62,7 +62,7 @@ abstract class AbstractProcessor extends \Civi\Api4\Generic\AbstractAction {
 
   /**
    * @param \Civi\Api4\Generic\Result $result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function _run(Result $result) {
     // This will throw an exception if the form doesn't exist or user lacks permission
@@ -117,19 +117,20 @@ abstract class AbstractProcessor extends \Civi\Api4\Generic\AbstractAction {
     ])->indexBy($idField);
     foreach ($ids as $index => $id) {
       $this->_entityIds[$entity['name']][$index] = [
-        'id' => isset($result[$id]) ? $id : NULL,
-        'joins' => [],
+        $idField => isset($result[$id]) ? $id : NULL,
+        '_joins' => [],
       ];
       if (isset($result[$id])) {
         $data = ['fields' => $result[$id]];
         foreach ($entity['joins'] ?? [] as $joinEntity => $join) {
+          $joinIdField = CoreUtil::getIdFieldName($joinEntity);
           $data['joins'][$joinEntity] = (array) $api4($joinEntity, 'get', [
             'where' => self::getJoinWhereClause($this->_formDataModel, $entity['name'], $joinEntity, $id),
             'limit' => !empty($join['af-repeat']) ? $join['max'] ?? 0 : 1,
-            'select' => array_keys($join['fields']),
+            'select' => array_unique(array_merge([$joinIdField], array_keys($join['fields']))),
             'orderBy' => self::getEntityField($joinEntity, 'is_primary') ? ['is_primary' => 'DESC'] : [],
           ]);
-          $this->_entityIds[$entity['name']][$index]['joins'][$joinEntity] = array_column($data['joins'][$joinEntity], 'id');
+          $this->_entityIds[$entity['name']][$index]['_joins'][$joinEntity] = \CRM_Utils_Array::filterColumns($data['joins'][$joinEntity], [$joinIdField]);
         }
         $this->_entityValues[$entity['name']][$index] = $data;
       }
@@ -182,7 +183,7 @@ abstract class AbstractProcessor extends \Civi\Api4\Generic\AbstractAction {
    * @param string $joinEntityType
    * @param int|string $mainEntityId
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function getJoinWhereClause(FormDataModel $formDataModel, string $mainEntityName, string $joinEntityType, $mainEntityId) {
     $entity = $formDataModel->getEntity($mainEntityName);
@@ -214,7 +215,7 @@ abstract class AbstractProcessor extends \Civi\Api4\Generic\AbstractAction {
    * @param $entityName
    * @param $fieldName
    * @return array|null
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getEntityField($entityName, $fieldName) {
     if (!isset(\Civi::$statics[__CLASS__][__FUNCTION__][$entityName])) {
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Get.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Get.php
index 793b6eb57833b8bb14799d23d531c498790d745c..aa376d8a399400bffeb56d1307791f168e2102e4 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Get.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Get.php
@@ -112,7 +112,7 @@ class Get extends \Civi\Api4\Generic\BasicGetAction {
    * Generates afform blocks from custom field sets.
    *
    * @param \Civi\Core\Event\GenericHookEvent $event
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getCustomGroupBlocks($event) {
     // Early return if blocks are not requested
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/GetOptions.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/GetOptions.php
index 7251d2eb2e07b3bec471125d962ac3d6bddb687e..c1498b5e361efd509576f322692efc63ae2b76e3 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/GetOptions.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/GetOptions.php
@@ -44,7 +44,7 @@ class GetOptions extends AbstractProcessor {
 
   /**
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processForm() {
     $formEntity = $this->_formDataModel->getEntity($this->modelName);
@@ -55,16 +55,16 @@ class GetOptions extends AbstractProcessor {
     if ($formEntity) {
       $entity = $this->joinEntity ?: $formEntity['type'];
       if ($this->joinEntity && !isset($formEntity['joins'][$this->joinEntity]['fields'][$this->fieldName])) {
-        throw new \API_Exception('Cannot get options for field not present on form');
+        throw new \CRM_Core_Exception('Cannot get options for field not present on form');
       }
       elseif (!$this->joinEntity && !isset($formEntity['fields'][$this->fieldName])) {
-        throw new \API_Exception('Cannot get options for field not present on form');
+        throw new \CRM_Core_Exception('Cannot get options for field not present on form');
       }
     }
     // For search forms, get entity from savedSearch api params
     elseif ($searchDisplay) {
       if (!isset($searchDisplay['fields'][$this->fieldName])) {
-        throw new \API_Exception('Cannot get options for field not present on form');
+        throw new \CRM_Core_Exception('Cannot get options for field not present on form');
       }
       $savedSearch = SavedSearch::get(FALSE)
         ->addWhere('name', '=', $searchDisplay['searchName'])
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Revert.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Revert.php
index 0fbfb399d77ab850f456b86869c4b42b7d59f97f..070ecc9ad3c2ffabd86bd15dd9772aaf10363eec 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Revert.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Revert.php
@@ -57,7 +57,7 @@ class Revert extends \Civi\Api4\Generic\BasicBatchAction {
       $metaPath = $scanner->createSiteLocalPath($item['name'], $file);
       if (file_exists($metaPath)) {
         if (!@unlink($metaPath)) {
-          throw new \API_Exception("Failed to remove afform overrides in $file");
+          throw new \CRM_Core_Exception("Failed to remove afform overrides in $file");
         }
       }
     }
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Submit.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Submit.php
index 0120e046ae307a839cd45eb5ecde7ca5d6ecf105..b58f87b4352861f273028f6e392cfca4b53496e3 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Submit.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/Submit.php
@@ -26,6 +26,15 @@ class Submit extends AbstractProcessor {
   protected $values;
 
   protected function processForm() {
+    // Save submission record
+    if (!empty($this->_afform['create_submission'])) {
+      $submission = AfformSubmission::create(FALSE)
+        ->addValue('contact_id', \CRM_Core_Session::getLoggedInContactID())
+        ->addValue('afform_name', $this->name)
+        ->addValue('data', $this->getValues())
+        ->execute()->first();
+    }
+
     $entityValues = [];
     foreach ($this->_formDataModel->getEntities() as $entityName => $entity) {
       $entityValues[$entityName] = [];
@@ -67,13 +76,13 @@ class Submit extends AbstractProcessor {
       \Civi::dispatcher()->dispatch('civi.afform.submit', $event);
     }
 
-    // Save submission record
+    $submissionData = $this->combineValuesAndIds($this->getValues(), $this->_entityIds);
+    // Update submission record with entity IDs.
     if (!empty($this->_afform['create_submission'])) {
-      $submission = AfformSubmission::create(FALSE)
-        ->addValue('contact_id', \CRM_Core_Session::getLoggedInContactID())
-        ->addValue('afform_name', $this->name)
-        ->addValue('data', $this->_entityIds)
-        ->execute()->first();
+      AfformSubmission::update(FALSE)
+        ->addWhere('id', '=', $submission['id'])
+        ->addValue('data', $submissionData)
+        ->execute();
     }
 
     // Return ids and a token for uploading files
@@ -82,6 +91,25 @@ class Submit extends AbstractProcessor {
     ];
   }
 
+  /**
+   * Recursively add entity IDs to the values.
+   */
+  protected function combineValuesAndIds($values, $ids, $isJoin = FALSE) {
+    $combined = [];
+    $values += array_fill_keys(array_keys($ids), []);
+    foreach ($values as $name => $value) {
+      foreach ($value as $idx => $val) {
+        $idData = $ids[$name][$idx] ?? [];
+        if (!$isJoin) {
+          $idData['_joins'] = $this->combineValuesAndIds($val['joins'] ?? [], $idData['_joins'] ?? [], TRUE);
+        }
+        $item = array_merge($isJoin ? $val : ($val['fields'] ?? []), $idData);
+        $combined[$name][$idx] = $item;
+      }
+    }
+    return $combined;
+  }
+
   /**
    * Replace Entity reference fields with the id of the referenced entity.
    * @param string $entityName
@@ -117,7 +145,7 @@ class Submit extends AbstractProcessor {
    * across multiple entities (contact + n email addresses).
    *
    * @param \Civi\Afform\Event\AfformSubmitEvent $event
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see afform_civicrm_config
    */
   public static function preprocessContact(AfformSubmitEvent $event): void {
@@ -144,7 +172,7 @@ class Submit extends AbstractProcessor {
 
   /**
    * @param \Civi\Afform\Event\AfformSubmitEvent $event
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see afform_civicrm_config
    */
   public static function processGenericEntity(AfformSubmitEvent $event) {
@@ -154,11 +182,12 @@ class Submit extends AbstractProcessor {
         continue;
       }
       try {
+        $idField = CoreUtil::getIdFieldName($event->getEntityType());
         $saved = $api4($event->getEntityType(), 'save', ['records' => [$record['fields']]])->first();
-        $event->setEntityId($index, $saved['id']);
-        self::saveJoins($event, $index, $saved['id'], $record['joins'] ?? []);
+        $event->setEntityId($index, $saved[$idField]);
+        self::saveJoins($event, $index, $saved[$idField], $record['joins'] ?? []);
       }
-      catch (\API_Exception $e) {
+      catch (\CRM_Core_Exception $e) {
         // What to do here? Sometimes we should silently ignore errors, e.g. an optional entity
         // intentionally left blank. Other times it's a real error the user should know about.
       }
@@ -230,7 +259,7 @@ class Submit extends AbstractProcessor {
    * @param int $index
    * @param int|string $entityId
    * @param array $joins
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected static function saveJoins(AfformSubmitEvent $event, $index, $entityId, $joins) {
     foreach ($joins as $joinEntityName => $join) {
@@ -244,7 +273,7 @@ class Submit extends AbstractProcessor {
           'checkPermissions' => FALSE,
           'where' => self::getJoinWhereClause($event->getFormDataModel(), $event->getEntityName(), $joinEntityName, $entityId),
           'records' => $values,
-        ], ['id']);
+        ]);
         $indexedResult = array_combine(array_keys($values), (array) $result);
         $event->setJoinIds($index, $joinEntityName, $indexedResult);
       }
@@ -257,7 +286,7 @@ class Submit extends AbstractProcessor {
             'where' => self::getJoinWhereClause($event->getFormDataModel(), $event->getEntityName(), $joinEntityName, $entityId),
           ]);
         }
-        catch (\API_Exception $e) {
+        catch (\CRM_Core_Exception $e) {
           // No records to delete
         }
         $event->setJoinIds($index, $joinEntityName, []);
diff --git a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/SubmitFile.php b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/SubmitFile.php
index 5d1f9753193ab97cde0b9ce315c30b7ca5d88c95..3ccfdd9ff5030bc67ba7e59680bdec4f65723379 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Action/Afform/SubmitFile.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Action/Afform/SubmitFile.php
@@ -62,21 +62,22 @@ class SubmitFile extends AbstractProcessor {
 
   protected function processForm() {
     if (empty($_FILES['file'])) {
-      throw new \API_Exception('File upload required');
+      throw new \CRM_Core_Exception('File upload required');
     }
     $afformEntity = $this->_formDataModel->getEntity($this->modelName);
     $apiEntity = $this->joinEntity ?: $afformEntity['type'];
     $entityIndex = (int) $this->entityIndex;
     $joinIndex = (int) $this->joinIndex;
+    $idField = CoreUtil::getIdFieldName($apiEntity);
     if ($this->joinEntity) {
-      $entityId = $this->_entityIds[$this->modelName][$entityIndex]['joins'][$this->joinEntity][$joinIndex] ?? NULL;
+      $entityId = $this->_entityIds[$this->modelName][$entityIndex]['_joins'][$this->joinEntity][$joinIndex][$idField] ?? NULL;
     }
     else {
-      $entityId = $this->_entityIds[$this->modelName][$entityIndex]['id'] ?? NULL;
+      $entityId = $this->_entityIds[$this->modelName][$entityIndex][$idField] ?? NULL;
     }
 
     if (!$entityId) {
-      throw new \API_Exception('Entity not found');
+      throw new \CRM_Core_Exception('Entity not found');
     }
 
     $attachmentParams = [
@@ -101,7 +102,7 @@ class SubmitFile extends AbstractProcessor {
     if (strpos($apiEntity, 'Custom_') === 0) {
       civicrm_api4($apiEntity, 'update', [
         'values' => [
-          'id' => $entityId,
+          $idField => $entityId,
           $this->fieldName => $file['id'],
         ],
       ]);
diff --git a/civicrm/ext/afform/core/Civi/Api4/Utils/AfformFormatTrait.php b/civicrm/ext/afform/core/Civi/Api4/Utils/AfformFormatTrait.php
index 2ed0d3c5c6f2e78a40c39ed77ceaa3272685f274..143c7edc0f1668a2efe22788f041dcc9c14de809 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Utils/AfformFormatTrait.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Utils/AfformFormatTrait.php
@@ -38,7 +38,7 @@ trait AfformFormatTrait {
   /**
    * @param string $html
    * @return mixed
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function convertHtmlToOutput($html) {
     if ($this->layoutFormat === 'html') {
@@ -51,7 +51,7 @@ trait AfformFormatTrait {
   /**
    * @param mixed $mixed
    * @return string
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function convertInputToHtml($mixed) {
     if (is_string($mixed)) {
diff --git a/civicrm/ext/afform/core/Civi/Api4/Utils/AfformSaveTrait.php b/civicrm/ext/afform/core/Civi/Api4/Utils/AfformSaveTrait.php
index 466705a00d34422c27581c0dd1e66aa0e027f8f4..4f9756828c15ae07dda7727b8acab2747526c0cd 100644
--- a/civicrm/ext/afform/core/Civi/Api4/Utils/AfformSaveTrait.php
+++ b/civicrm/ext/afform/core/Civi/Api4/Utils/AfformSaveTrait.php
@@ -31,7 +31,7 @@ trait AfformSaveTrait {
       $orig = NULL;
     }
     elseif (!preg_match('/^[a-zA-Z][-_a-zA-Z0-9]*$/', $item['name'])) {
-      throw new \API_Exception("Afform.{$this->getActionName()}: name should begin with a letter and only contain alphanumerics underscores and dashes.");
+      throw new \CRM_Core_Exception("Afform.{$this->getActionName()}: name should begin with a letter and only contain alphanumerics underscores and dashes.");
     }
     else {
       // Fetch existing metadata
diff --git a/civicrm/ext/afform/core/afform.php b/civicrm/ext/afform/core/afform.php
index 711f1a43be0041e6dd39540413763923ce11b4df..9aae5d998332e9d8cb74347058b8f6c4d4970d95 100644
--- a/civicrm/ext/afform/core/afform.php
+++ b/civicrm/ext/afform/core/afform.php
@@ -337,7 +337,7 @@ function afform_civicrm_angularModules(&$angularModules) {
  *   The module definition.
  * @return array
  *   Array(string $filename => string $html).
- * @throws API_Exception
+ * @throws CRM_Core_Exception
  */
 function _afform_get_partials($moduleName, $module) {
   $afform = civicrm_api4('Afform', 'get', [
@@ -500,14 +500,10 @@ function _afform_clear() {
 function _afform_angular_module_name($fileBaseName, $format = 'camel') {
   switch ($format) {
     case 'camel':
-      $camelCase = '';
-      foreach (preg_split('/[-_ ]/', $fileBaseName, -1, PREG_SPLIT_NO_EMPTY) as $shortNamePart) {
-        $camelCase .= ucfirst($shortNamePart);
-      }
-      return strtolower($camelCase[0]) . substr($camelCase, 1);
+      return \CRM_Utils_String::convertStringToCamel($fileBaseName, FALSE);
 
     case 'dash':
-      return strtolower(implode('-', preg_split('/[-_ ]|(?=[A-Z])/', $fileBaseName, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE)));
+      return \CRM_Utils_String::convertStringToDash($fileBaseName);
 
     default:
       throw new \Exception("Unrecognized format");
diff --git a/civicrm/ext/afform/core/ang/af/fields/DisplayOnly.html b/civicrm/ext/afform/core/ang/af/fields/DisplayOnly.html
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a696471010c8e60f7d49a2ca0610098f378b2
--- /dev/null
+++ b/civicrm/ext/afform/core/ang/af/fields/DisplayOnly.html
@@ -0,0 +1 @@
+{{dataProvider.getFieldData()[$ctrl.fieldName]}}
diff --git a/civicrm/ext/afform/core/info.xml b/civicrm/ext/afform/core/info.xml
index c1b5ae9b2976dfa134b764dceea8672ac5fa0751..4741265cb634fe13989974521170bf44e6852ea3 100644
--- a/civicrm/ext/afform/core/info.xml
+++ b/civicrm/ext/afform/core/info.xml
@@ -13,10 +13,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>beta</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>The Form Core extension is required to use any dynamic form. To administer and edit forms, also install the Form Builder extension.</comments>
   <civix>
diff --git a/civicrm/ext/afform/html/info.xml b/civicrm/ext/afform/html/info.xml
index 03b6aab36359389254622fe25c2149dde06e9784..a91a6387c03e2bbe8c0079bb0912256b480b4254 100644
--- a/civicrm/ext/afform/html/info.xml
+++ b/civicrm/ext/afform/html/info.xml
@@ -13,10 +13,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>alpha</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <requires>
     <ext>org.civicrm.afform</ext>
diff --git a/civicrm/ext/afform/mock/info.xml b/civicrm/ext/afform/mock/info.xml
index 01cb20c069ccd3ee1c2d0a6463b17daee1df9fcd..bd86311dff8e8161fbc33d07c68677c90371b98a 100644
--- a/civicrm/ext/afform/mock/info.xml
+++ b/civicrm/ext/afform/mock/info.xml
@@ -12,13 +12,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-09</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>alpha</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <requires>
     <ext>org.civicrm.afform</ext>
diff --git a/civicrm/ext/afform/mock/tests/phpunit/api/v4/AfformContactUsageTest.php b/civicrm/ext/afform/mock/tests/phpunit/api/v4/AfformContactUsageTest.php
index 35d1c2a159d6e1713ca48da4d01738be7647dcf7..b3219d514d5fefc00b9d5ced85b82197e29589b0 100644
--- a/civicrm/ext/afform/mock/tests/phpunit/api/v4/AfformContactUsageTest.php
+++ b/civicrm/ext/afform/mock/tests/phpunit/api/v4/AfformContactUsageTest.php
@@ -158,7 +158,11 @@ EOHTML;
 
     $this->assertEquals($this->formName, $submission['afform_name']);
     $this->assertIsInt($submission['data']['Activity1'][0]['id']);
+    $this->assertEquals('Individual1', $submission['data']['Activity1'][0]['subject']);
     $this->assertIsInt($submission['data']['Individual1'][0]['id']);
+    $this->assertEquals($firstName, $submission['data']['Individual1'][0]['first_name']);
+    $this->assertEquals('site', $submission['data']['Individual1'][0]['last_name']);
+    $this->assertEquals('This field is set in the data array', $submission['data']['Individual1'][0]['source']);
 
     // Check that Activity was submitted correctly.
     $activity = \Civi\Api4\Activity::get(FALSE)
@@ -170,7 +174,7 @@ EOHTML;
       ->execute()->first();
     $this->assertEquals($firstName, $contact['first_name']);
     $this->assertEquals('site', $contact['last_name']);
-    // Check that the data overrides form submsision
+    // Check that the data overrides form submission
     $this->assertEquals('Register A site', $contact['source']);
     // Check that the contact and the activity were correctly linked up as per the form.
     $this->callAPISuccessGetSingle('ActivityContact', ['contact_id' => $contact['id'], 'activity_id' => $activity['id']]);
@@ -193,7 +197,7 @@ EOHTML;
         ->indexBy('name');
       $this->fail('Expected authorization exception from Afform.prefill');
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       // Should fail permission check
     }
 
@@ -207,7 +211,7 @@ EOHTML;
         ->execute();
       $this->fail('Expected authorization exception from Afform.submit');
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       // Should fail permission check
     }
   }
@@ -294,6 +298,7 @@ EOHTML;
   public function testCreatingContactsWithOnlyEmail(): void {
     $this->useValues([
       'layout' => self::$layouts['employer'],
+      'create_submission' => TRUE,
       'permission' => CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION,
     ]);
 
@@ -331,9 +336,22 @@ EOHTML;
     $contact = \Civi\Api4\Contact::get()
       ->addWhere('display_name', '=', $individualEmail)
       ->addJoin('Contact AS org', 'LEFT', ['employer_id', '=', 'org.id'])
-      ->addSelect('display_name', 'org.display_name')
+      ->addSelect('display_name', 'org.display_name', 'org.id', 'email_primary')
       ->execute()->first();
     $this->assertEquals($orgEmail, $contact['org.display_name']);
+
+    $submission = \Civi\Api4\AfformSubmission::get(FALSE)
+      ->addOrderBy('id', 'DESC')
+      ->setLimit(1)
+      ->execute()->single();
+    $this->assertEquals($contact['id'], $submission['data']['Individual1'][0]['id']);
+    $this->assertEquals($contact['org.id'], $submission['data']['Organization1'][0]['id']);
+    $this->assertEquals('Organization1', $submission['data']['Individual1'][0]['employer_id']);
+    $this->assertEquals($contact['email_primary'], $submission['data']['Individual1'][0]['_joins']['Email'][0]['id']);
+    $this->assertEquals($individualEmail, $submission['data']['Individual1'][0]['_joins']['Email'][0]['email']);
+    $this->assertEquals($locationType, $submission['data']['Individual1'][0]['_joins']['Email'][0]['location_type_id']);
+    $this->assertEquals($orgEmail, $submission['data']['Organization1'][0]['_joins']['Email'][0]['email']);
+    $this->assertEquals($locationType, $submission['data']['Organization1'][0]['_joins']['Email'][0]['location_type_id']);
   }
 
 }
diff --git a/civicrm/ext/authx/info.xml b/civicrm/ext/authx/info.xml
index e815dbbc6fefbcaf157c67b3004a379ff49ea49e..97b04cf0a6affdabd5d217060196956274f8478d 100644
--- a/civicrm/ext/authx/info.xml
+++ b/civicrm/ext/authx/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-02-11</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>AuthX enables remote applications to connect to CiviCRM. Use it to enable and disable different forms of authentication (such as username-password, API key, and/or JWT).</comments>
   <classloader>
diff --git a/civicrm/ext/authx/tests/phpunit/Civi/Authx/AllFlowsTest.php b/civicrm/ext/authx/tests/phpunit/Civi/Authx/AllFlowsTest.php
index be9ed1e498295793d5b4f24638837cbdeb4afb27..e4972fe16f1d6e4f969956e1422313f8a5d76116 100644
--- a/civicrm/ext/authx/tests/phpunit/Civi/Authx/AllFlowsTest.php
+++ b/civicrm/ext/authx/tests/phpunit/Civi/Authx/AllFlowsTest.php
@@ -111,7 +111,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *   The type of credential to put in the `Authorization:` header.
    * @param string $flowType
    *   The "flow" determines how the credential is added on top of the base-request (e.g. adding a parameter or header).
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getStatelessExamples
    */
@@ -146,7 +146,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *   The type of credential to put in the `Authorization:` header.
    * @param string $flowType
    *   The "flow" determines how the credential is added on top of the base-request (e.g. adding a parameter or header).
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getStatelessExamples
    */
@@ -173,7 +173,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
   /**
    * The setting "authx_guard" may be used to require (or not require) the site_key.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    */
   public function testStatelessGuardSiteKey() {
@@ -215,7 +215,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *
    * @param string $credType
    *   The type of credential to put in the login request.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getCredTypes
    */
@@ -261,7 +261,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *
    * @param string $credType
    *   The type of credential to put in the login request.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getCredTypes
    */
@@ -283,7 +283,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *
    * @param string $credType
    *   The type of credential to put in the login request.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getCredTypes
    */
@@ -310,7 +310,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *
    * @param string $credType
    *   The type of credential to put in the login request.
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    * @dataProvider getCredTypes
    */
@@ -331,7 +331,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    * Create a session for $demoCID. Within the session, make a single
    * stateless request as $lebowskiCID.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    */
   public function testStatefulStatelessOverlap(): void {
@@ -422,7 +422,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    * This consumer intends to make stateless requests with a handful of different identities,
    * but their browser happens to be cookie-enabled. Ensure that identities do not leak between requests.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    */
   public function testMultipleStateless(): void {
@@ -478,7 +478,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    * different identifier fields (authx_user, authx_contact_id), and different
    * flows (param/header/xheader).
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \GuzzleHttp\Exception\GuzzleException
    */
   public function testJwtMiddleware() {
@@ -518,7 +518,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
    *
    * To test this, we call `cv ev 'authx_login(...);'` and check the resulting identity.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testCliServiceLogin() {
     $withCv = function($phpStmt) {
@@ -857,7 +857,7 @@ class AllFlowsTest extends \PHPUnit\Framework\TestCase implements EndToEndInterf
 
   /**
    * @return int
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   private function getDemoCID(): int {
     if (!isset(\Civi::$statics[__CLASS__]['demoId'])) {
diff --git a/civicrm/ext/civicrm_admin_ui/info.xml b/civicrm/ext/civicrm_admin_ui/info.xml
index 6d9f930e4de34c8a97a7717c0161d4ea33e49bbe..fb4ffa795164aa7433dfac8bda24ef518c038ac0 100644
--- a/civicrm/ext/civicrm_admin_ui/info.xml
+++ b/civicrm/ext/civicrm_admin_ui/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2022-01-02</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>alpha</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <requires>
     <ext>org.civicrm.search_kit</ext>
diff --git a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.php b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.mgd.php
similarity index 89%
rename from civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.php
rename to civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.mgd.php
index bce63cb882ed98c9d755646b137f0933b82a9fac..013a5f189b3d7947538e27902aac43b7a07a3f79 100644
--- a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.php
+++ b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Contact_Types.mgd.php
@@ -1,15 +1,17 @@
 <?php
+use CRM_CivicrmAdminUi_ExtensionUtil as E;
+
 return [
   [
     'name' => 'SavedSearch_Administer_Contact_Types',
     'entity' => 'SavedSearch',
-    'cleanup' => 'always',
+    'cleanup' => 'unused',
     'update' => 'unmodified',
     'params' => [
       'version' => 4,
       'values' => [
         'name' => 'Administer_Contact_Types',
-        'label' => 'Administer Contact Types',
+        'label' => E::ts('Administer Contact Types'),
         'form_values' => NULL,
         'mapping_id' => NULL,
         'search_custom_id' => NULL,
@@ -41,7 +43,7 @@ return [
       'version' => 4,
       'values' => [
         'name' => 'Contact_Types_Table',
-        'label' => 'Contact Types Table',
+        'label' => E::ts('Contact Types Table'),
         'saved_search_id.name' => 'Administer_Contact_Types',
         'type' => 'table',
         'settings' => [
@@ -70,7 +72,7 @@ return [
               'type' => 'field',
               'key' => 'label',
               'dataType' => 'String',
-              'label' => 'Label',
+              'label' => E::ts('Label'),
               'sortable' => TRUE,
               'icons' => [
                 [
@@ -84,7 +86,7 @@ return [
               'type' => 'field',
               'key' => 'parent_id:label',
               'dataType' => 'Integer',
-              'label' => 'Parent',
+              'label' => E::ts('Parent'),
               'sortable' => TRUE,
               'icons' => [
                 [
@@ -101,7 +103,7 @@ return [
               'type' => 'field',
               'key' => 'description',
               'dataType' => 'Text',
-              'label' => 'Description',
+              'label' => E::ts('Description'),
               'sortable' => TRUE,
               'editable' => TRUE,
             ],
@@ -114,7 +116,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-pencil',
-                  'text' => 'Edit',
+                  'text' => E::ts('Edit'),
                   'style' => 'default',
                   'path' => '',
                   'condition' => [],
@@ -125,7 +127,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-trash',
-                  'text' => 'Delete',
+                  'text' => E::ts('Delete'),
                   'style' => 'danger',
                   'path' => '',
                   'condition' => [
@@ -140,7 +142,7 @@ return [
           ],
           'addButton' => [
             'path' => 'civicrm/admin/options/subtype/edit?action=add&reset=1',
-            'text' => 'Add Contact Type',
+            'text' => E::ts('Add Contact Type'),
             'icon' => 'fa-plus',
           ],
         ],
diff --git a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Fields.mgd.php b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Fields.mgd.php
index 0151fe4f9a15e40cf15170f1d08a74e83c227ad8..652498e75b02bad7006c40ff8c353b84b391f097 100644
--- a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Fields.mgd.php
+++ b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Fields.mgd.php
@@ -1,4 +1,6 @@
 <?php
+use CRM_CivicrmAdminUi_ExtensionUtil as E;
+
 return [
   [
     'name' => 'SavedSearch_Administer_Custom_Fields',
@@ -9,7 +11,7 @@ return [
       'version' => 4,
       'values' => [
         'name' => 'Administer_Custom_Fields',
-        'label' => 'Administer Custom Fields',
+        'label' => E::ts('Administer Custom Fields'),
         'form_values' => NULL,
         'search_custom_id' => NULL,
         'api_entity' => 'CustomField',
@@ -46,7 +48,7 @@ return [
       'version' => 4,
       'values' => [
         'name' => 'Table',
-        'label' => 'Table',
+        'label' => E::ts('Table'),
         'saved_search_id.name' => 'Administer_Custom_Fields',
         'type' => 'table',
         'settings' => [
@@ -66,35 +68,35 @@ return [
               'type' => 'field',
               'key' => 'id',
               'dataType' => 'String',
-              'label' => 'ID',
+              'label' => E::ts('ID'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'label',
               'dataType' => 'String',
-              'label' => 'Field Label',
+              'label' => E::ts('Field Label'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'data_type:label',
               'dataType' => 'String',
-              'label' => 'Data Type',
+              'label' => E::ts('Data Type'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'html_type:label',
               'dataType' => 'String',
-              'label' => 'Input Type',
+              'label' => E::ts('Input Type'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'is_required',
               'dataType' => 'Boolean',
-              'label' => 'Required',
+              'label' => E::ts('Required'),
               'sortable' => TRUE,
               'editable' => TRUE,
             ],
@@ -102,7 +104,7 @@ return [
               'type' => 'field',
               'key' => 'is_active',
               'dataType' => 'Boolean',
-              'label' => 'Enabled',
+              'label' => E::ts('Enabled'),
               'sortable' => TRUE,
               'editable' => TRUE,
             ],
@@ -115,7 +117,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-pencil',
-                  'text' => 'Edit Field',
+                  'text' => E::ts('Edit Field'),
                   'style' => 'default',
                   'path' => '',
                   'condition' => [],
@@ -125,7 +127,7 @@ return [
               'alignment' => 'text-right',
             ],
             [
-              'text' => 'Actions',
+              'text' => E::ts('Actions'),
               'style' => 'default',
               'size' => 'btn-xs',
               'icon' => 'fa-bars',
@@ -136,7 +138,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-eye',
-                  'text' => 'Preview Field',
+                  'text' => E::ts('Preview Field'),
                   'style' => 'default',
                   'path' => '',
                   'condition' => [],
@@ -147,7 +149,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-list-ol',
-                  'text' => 'Multiple Choice Options',
+                  'text' => E::ts('Multiple Choice Options'),
                   'style' => 'default',
                   'path' => 'civicrm/admin/custom/group/field/option?reset=1&action=browse&gid=[custom_group_id]&fid=[id]',
                   'condition' => [
@@ -161,7 +163,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-random',
-                  'text' => 'Move Field',
+                  'text' => E::ts('Move Field'),
                   'style' => 'default',
                   'path' => '',
                   'condition' => [],
@@ -172,7 +174,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-trash',
-                  'text' => 'Delete Field',
+                  'text' => E::ts('Delete Field'),
                   'style' => 'danger',
                   'path' => '',
                   'condition' => [],
diff --git a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Groups.mgd.php b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Groups.mgd.php
index dff4856961dee8c739764c28233965bef74bf3a1..7a7a22f9f099630ea00c2830d0ee49e4fe3dc479 100644
--- a/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Groups.mgd.php
+++ b/civicrm/ext/civicrm_admin_ui/managed/SavedSearch_Administer_Custom_Groups.mgd.php
@@ -1,4 +1,6 @@
 <?php
+use CRM_CivicrmAdminUi_ExtensionUtil as E;
+
 return [
   [
     'name' => 'SavedSearch_Administer_Custom_Groups',
@@ -9,7 +11,7 @@ return [
       'version' => 4,
       'values' => [
         'name' => 'Administer_Custom_Groups',
-        'label' => 'Administer Custom Groups',
+        'label' => E::ts('Administer Custom Groups'),
         'form_values' => NULL,
         'search_custom_id' => NULL,
         'api_entity' => 'CustomGroup',
@@ -57,7 +59,7 @@ return [
       'version' => 4,
       'values' => [
         'name' => 'Table',
-        'label' => 'Table',
+        'label' => E::ts('Table'),
         'saved_search_id.name' => 'Administer_Custom_Groups',
         'type' => 'table',
         'settings' => [
@@ -77,21 +79,21 @@ return [
               'type' => 'field',
               'key' => 'id',
               'dataType' => 'String',
-              'label' => 'ID',
+              'label' => E::ts('ID'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'title',
               'dataType' => 'String',
-              'label' => 'Group Title',
+              'label' => E::ts('Group Title'),
               'sortable' => TRUE,
             ],
             [
               'type' => 'field',
               'key' => 'is_active',
               'dataType' => 'Boolean',
-              'label' => 'Enabled',
+              'label' => E::ts('Enabled'),
               'sortable' => TRUE,
               'editable' => TRUE,
             ],
@@ -99,7 +101,7 @@ return [
               'type' => 'field',
               'key' => 'extends_entity_column_id:label',
               'dataType' => 'Integer',
-              'label' => 'Used for',
+              'label' => E::ts('Used for'),
               'sortable' => TRUE,
               'empty_value' => '[extends:label]',
             ],
@@ -107,7 +109,7 @@ return [
               'type' => 'field',
               'key' => 'style:label',
               'dataType' => 'String',
-              'label' => 'Style',
+              'label' => E::ts('Style'),
               'sortable' => TRUE,
             ],
             [
@@ -119,7 +121,7 @@ return [
                   'join' => '',
                   'target' => '',
                   'icon' => 'fa-list-alt',
-                  'text' => 'Fields ([COUNT_CustomGroup_CustomField_custom_group_id_01_id])',
+                  'text' => E::ts('Fields (%1)', [1 => '[COUNT_CustomGroup_CustomField_custom_group_id_01_id]']),
                   'style' => 'default',
                   'path' => 'civicrm/admin/custom/group/fields#/?gid=[id]',
                 ],
@@ -129,7 +131,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-pencil',
-                  'text' => 'Settings',
+                  'text' => E::ts('Settings'),
                   'style' => 'default',
                 ],
               ],
@@ -148,7 +150,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-eye',
-                  'text' => 'Preview Group',
+                  'text' => E::ts('Preview Group'),
                   'style' => 'default',
                 ],
                 [
@@ -157,7 +159,7 @@ return [
                   'join' => '',
                   'target' => 'crm-popup',
                   'icon' => 'fa-trash',
-                  'text' => 'Delete Group',
+                  'text' => E::ts('Delete Group'),
                   'style' => 'danger',
                 ],
               ],
diff --git a/civicrm/ext/civigrant/CRM/Grant/BAO/Query.php b/civicrm/ext/civigrant/CRM/Grant/BAO/Query.php
index 503f01e9bdd72aaa136c57936c90bad093e934e4..22c8eb741faa95fcb752eadfa9c143aa26f7bc9a 100644
--- a/civicrm/ext/civigrant/CRM/Grant/BAO/Query.php
+++ b/civicrm/ext/civigrant/CRM/Grant/BAO/Query.php
@@ -295,7 +295,7 @@ class CRM_Grant_BAO_Query extends CRM_Contact_BAO_Query_Interface {
   /**
    * Get the metadata for fields to be included on the grant search form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function getSearchFieldMetadata() {
     $fields = [
diff --git a/civicrm/ext/civigrant/CRM/Grant/Form/Search.php b/civicrm/ext/civigrant/CRM/Grant/Form/Search.php
index 9104bce36a7e322a250f53645dccb95c56a777f1..c59c1875d9f843d4292117e793ea354cdca30df1 100644
--- a/civicrm/ext/civigrant/CRM/Grant/Form/Search.php
+++ b/civicrm/ext/civigrant/CRM/Grant/Form/Search.php
@@ -66,7 +66,6 @@ class CRM_Grant_Form_Search extends CRM_Core_Form_Search {
    * Processing needed for buildForm and later.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function preProcess() {
     /**
@@ -113,7 +112,6 @@ class CRM_Grant_Form_Search extends CRM_Core_Form_Search {
    * Build the form object.
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -256,7 +254,7 @@ class CRM_Grant_Form_Search extends CRM_Core_Form_Search {
    *
    * @return array
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getEntityMetadata() {
     return CRM_Grant_BAO_Query::getSearchFieldMetadata();
@@ -265,7 +263,7 @@ class CRM_Grant_Form_Search extends CRM_Core_Form_Search {
   /**
    * Set the metadata for the form.
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setSearchMetadata() {
     $this->addSearchFieldMetadata(['Grant' => $this->getEntityMetadata()]);
diff --git a/civicrm/ext/civigrant/info.xml b/civicrm/ext/civigrant/info.xml
index e13b56aebdbdae489d02f8b30a63a347e77794eb..c67ea150f609b22a06d2a54da56873945ea31f2a 100644
--- a/civicrm/ext/civigrant/info.xml
+++ b/civicrm/ext/civigrant/info.xml
@@ -13,10 +13,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-11-11</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>CiviGrant was originally a core component before migrating to an extension</comments>
   <requires>
diff --git a/civicrm/ext/civiimport/Civi/Api4/Event/Subscriber/ImportSubscriber.php b/civicrm/ext/civiimport/Civi/Api4/Event/Subscriber/ImportSubscriber.php
index 4643a24a7e60db6febcd0d7f38811ed5510030b2..3dafe360451e88e26ae1d04a53de22b0986cbe9c 100644
--- a/civicrm/ext/civiimport/Civi/Api4/Event/Subscriber/ImportSubscriber.php
+++ b/civicrm/ext/civiimport/Civi/Api4/Event/Subscriber/ImportSubscriber.php
@@ -22,8 +22,9 @@ use Civi\API\Exception\UnauthorizedException;
 
 /**
  * Listening class that registers each Import table as an entity.
+ * @service civi.api4.importSubscriber
  */
-class ImportSubscriber implements EventSubscriberInterface {
+class ImportSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * Get the events this class listens to.
diff --git a/civicrm/ext/civiimport/Civi/Api4/Import.php b/civicrm/ext/civiimport/Civi/Api4/Import.php
index c68f42fd5888e7e7305c10f1150d47e336a758ec..e5ac05749a82efcd8152f47b6b8b18df89bb6cd3 100644
--- a/civicrm/ext/civiimport/Civi/Api4/Import.php
+++ b/civicrm/ext/civiimport/Civi/Api4/Import.php
@@ -63,7 +63,7 @@ class Import {
    * @param int $userJobID
    * @param bool $checkPermissions
    * @return \Civi\Api4\Import\Save
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function save(int $userJobID, bool $checkPermissions = TRUE): Save {
     return (new Save('Import_' . $userJobID, __FUNCTION__))
@@ -75,7 +75,8 @@ class Import {
    * @param bool $checkPermissions
    *
    * @return \Civi\Api4\Import\Create
-   * @throws \API_Exception
+   *
+   * @throws \CRM_Core_Exception
    */
   public static function create(int $userJobID, bool $checkPermissions = TRUE): Create {
     return (new Create('Import_' . $userJobID, __FUNCTION__))
@@ -86,7 +87,7 @@ class Import {
    * @param int $userJobID
    * @param bool $checkPermissions
    * @return \Civi\Api4\Import\Update
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function update(int $userJobID, bool $checkPermissions = TRUE): Update {
     return (new Update('Import_' . $userJobID, __FUNCTION__))
@@ -106,7 +107,7 @@ class Import {
   /**
    * @param int $userJobID
    * @return \Civi\Api4\Generic\CheckAccessAction
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public static function checkAccess(int $userJobID): CheckAccessAction {
     return new CheckAccessAction('Import_' . $userJobID, __FUNCTION__);
diff --git a/civicrm/ext/civiimport/Civi/Api4/Service/Spec/Provider/ImportSpecProvider.php b/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php
similarity index 90%
rename from civicrm/ext/civiimport/Civi/Api4/Service/Spec/Provider/ImportSpecProvider.php
rename to civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php
index c6288d4719ddc0f0732b0d492162b9e3ea7283c9..333f5a7c206660203880227b90e7b31a52de810a 100644
--- a/civicrm/ext/civiimport/Civi/Api4/Service/Spec/Provider/ImportSpecProvider.php
+++ b/civicrm/ext/civiimport/Civi/Api4/Import/ImportSpecProvider.php
@@ -10,15 +10,21 @@
  +--------------------------------------------------------------------+
  */
 
-namespace Civi\Api4\Service\Spec\Provider;
+namespace Civi\Api4\Import;
 
 use Civi\Api4\Service\Spec\FieldSpec;
+use Civi\Api4\Service\Spec\Provider\Generic\SpecProviderInterface;
 use Civi\Api4\Service\Spec\RequestSpec;
 use Civi\Api4\UserJob;
 use Civi\BAO\Import;
+use Civi\Core\Service\AutoService;
 use CRM_Core_BAO_UserJob;
 
-class ImportSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class ImportSpecProvider extends AutoService implements SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/ext/civiimport/Civi/BAO/Import.php b/civicrm/ext/civiimport/Civi/BAO/Import.php
index bc807c23c1e51d86a3c82a77cc94ecbce601c749..b8ab6edef4eac7b2b3661d04b9f3f09f56ca7cba 100644
--- a/civicrm/ext/civiimport/Civi/BAO/Import.php
+++ b/civicrm/ext/civiimport/Civi/BAO/Import.php
@@ -251,4 +251,24 @@ class Import extends CRM_Core_DAO {
     return array_merge(self::getFieldsForTable($tableName), self::getSupportedFields());
   }
 
+  /**
+   * Defines the default key as 'id'.
+   *
+   * @return array
+   */
+  public function keys() {
+    return ['_id'];
+  }
+
+  /**
+   * Tells DB_DataObject which keys use autoincrement.
+   * 'id' is autoincrementing by default.
+   *
+   *
+   * @return array
+   */
+  public function sequenceKey() {
+    return ['_id', TRUE];
+  }
+
 }
diff --git a/civicrm/ext/civiimport/info.xml b/civicrm/ext/civiimport/info.xml
index a9811a41a26e6f4e1c1b3ed456acb6611094bc76..60f3d3cae481e0ff128748f9398aa78878d517ec 100644
--- a/civicrm/ext/civiimport/info.xml
+++ b/civicrm/ext/civiimport/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2022-08-11</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>alpha</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>Core extension for us to start moving import logic into, has more functionality</comments>
   <requires>
@@ -35,6 +35,7 @@
   </civix>
   <mixins>
     <mixin>mgd-php@1.0.0</mixin>
+    <mixin>scan-classes@1.0.0</mixin>
     <mixin>setting-php@1.0.0</mixin>
     <mixin>ang-php@1.0.0</mixin>
   </mixins>
diff --git a/civicrm/ext/ckeditor4/info.xml b/civicrm/ext/ckeditor4/info.xml
index 07a279f4cf59c3648974f6385047b0c48a651805..9efc3d2d37ae34b04646d9a9d15104567a713331 100644
--- a/civicrm/ext/ckeditor4/info.xml
+++ b/civicrm/ext/ckeditor4/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">https://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-05-23</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This is the version of CKEditor that originally shipped with CiviCRM core</comments>
   <classloader>
diff --git a/civicrm/ext/contributioncancelactions/contributioncancelactions.php b/civicrm/ext/contributioncancelactions/contributioncancelactions.php
index 76e61d1756cea65ba79b9bd988cd202d0bd33397..e487e8dea6880805ae9138565dce8d4185cc0648 100644
--- a/civicrm/ext/contributioncancelactions/contributioncancelactions.php
+++ b/civicrm/ext/contributioncancelactions/contributioncancelactions.php
@@ -17,8 +17,7 @@ use Civi\Api4\Participant;
  *
  * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_post
  *
- * @throws \CiviCRM_API3_Exception
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function contributioncancelactions_civicrm_post($op, $objectName, $objectId, $objectRef) {
   if ($op === 'edit' && $objectName === 'Contribution'
@@ -34,7 +33,7 @@ function contributioncancelactions_civicrm_post($op, $objectName, $objectId, $ob
  *
  * @param int $contributionID
  *
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
  */
 function contributioncancelactions_cancel_related_pending_participant_records(int $contributionID): void {
   $pendingStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Pending'");
@@ -57,8 +56,8 @@ function contributioncancelactions_cancel_related_pending_participant_records(in
  *
  * @param int $contributionID
  *
- * @throws API_Exception
- * @throws CiviCRM_API3_Exception
+ * @throws CRM_Core_Exception
+ * @throws CRM_Core_Exception
  */
 function contributioncancelactions_cancel_related_pending_memberships(int $contributionID): void {
   $connectedMemberships = (array) LineItem::get(FALSE)->setWhere([
diff --git a/civicrm/ext/contributioncancelactions/info.xml b/civicrm/ext/contributioncancelactions/info.xml
index 245e33d99ba5e3521d1759db7d73ee92124291b8..653a537655b536984db04f976a5ed41ad8ad09f8 100644
--- a/civicrm/ext/contributioncancelactions/info.xml
+++ b/civicrm/ext/contributioncancelactions/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-10-12</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This code has been moved from core to a separate extension in 5.32. Note that if you disable it failed or cancelled contributions will not cause related memberships and participant records to be updated</comments>
   <classloader>
diff --git a/civicrm/ext/contributioncancelactions/tests/phpunit/CancelTest.php b/civicrm/ext/contributioncancelactions/tests/phpunit/CancelTest.php
index af6f4a7245d8b53b7c9e41f1fb189cf3e7cba8e6..6ae6113080c593c3ffef1390718d67f8c3ed6985 100644
--- a/civicrm/ext/contributioncancelactions/tests/phpunit/CancelTest.php
+++ b/civicrm/ext/contributioncancelactions/tests/phpunit/CancelTest.php
@@ -68,7 +68,6 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Test that a cancel from paypal pro results in an order being cancelled.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
@@ -155,7 +154,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Create the general membership type.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function createMembershipType(): void {
     MembershipType::create()->setValues([
@@ -217,8 +216,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Test that a cancel from paypal pro results in an order being cancelled.
    *
-   * @throws \API_Exception
-   * @throws \CRM_Core_Exception|\CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testPaypalStandardCancel(): void {
     $this->createContact();
@@ -242,7 +240,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Test fail order api.
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public function testCancelOrderWithParticipantFailed(): void {
     $status = 'Failed';
@@ -252,7 +250,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Test cancel order api.
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   public function testCancelOrderWithParticipantCancelled(): void {
     $this->markTestIncomplete('For unknown reasons this failed if run after the cancelled variation of this test');
@@ -264,7 +262,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
    * Test cancelling a contribution with a membership on the contribution edit
    * form.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testCancelFromContributionForm(): void {
     $this->createContact();
@@ -321,7 +319,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
    * Create an event and an order for a participant in that event.
    *
    * @return int
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   protected function createEventOrder(): int {
     $this->ids['event'][0] = (int) Event::create()->setValues(['title' => 'Event', 'start_date' => 'tomorrow', 'event_type_id:name' => 'Workshop'])->execute()->first()['id'];
@@ -353,7 +351,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Create a contact for use in the test.
    *
-   * @throws API_Exception
+   * @throws CRM_Core_Exception
    */
   protected function createContact(): void {
     $this->ids['contact'][0] = Civi\Api4\Contact::create()->setValues(['first_name' => 'Brer', 'last_name' => 'Rabbit'])->execute()->first()['id'];
@@ -362,8 +360,7 @@ class CancelTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * @param string $status
    *
-   * @throws \API_Exception
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function createAndUpdateContribution(string $status): void {
diff --git a/civicrm/ext/elavon/info.xml b/civicrm/ext/elavon/info.xml
index 7807962cbe03547cb3fd7dd9cb7de67cd0d67457..9fa491a625c20afb3dcb0b02cbec0d8b5d63e7cb 100644
--- a/civicrm/ext/elavon/info.xml
+++ b/civicrm/ext/elavon/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2022-08-05</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments/>
   <classloader>
diff --git a/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php b/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php
index 81fc623ea55689d394a35278a123ec5952280066..c6a785d390c4b550b38d01108e3d92df62455fa4 100644
--- a/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php
+++ b/civicrm/ext/elavon/tests/phpunit/CRM/Core/Payment/ElavonTest.php
@@ -137,7 +137,7 @@ class CRM_Core_Payment_ElavonTest extends \PHPUnit\Framework\TestCase implements
    *
    * @param int|null $id
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setupMockHandler($id = NULL): void {
     if ($id) {
diff --git a/civicrm/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php b/civicrm/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php
index b61142c29a8a3752d862840403b578819ab0c3eb..49e63c533c3970d2fc21471f391a54c7afca9cf0 100644
--- a/civicrm/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php
+++ b/civicrm/ext/eventcart/CRM/Event/Cart/Form/Checkout/Payment.php
@@ -30,7 +30,7 @@ class CRM_Event_Cart_Form_Checkout_Payment extends CRM_Event_Cart_Form_Cart {
    * @param CRM_Event_BAO_Event $event
    *
    * @return mixed
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   public function registerParticipant($params, &$participant, $event) {
     $participantParams = [
@@ -694,7 +694,7 @@ class CRM_Event_Cart_Form_Checkout_Payment extends CRM_Event_Cart_Form_Cart {
    * @param int $event_id
    *
    * @return bool
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function apply_discount($discountCode, &$price_set_amount, &$cost, $event_id) {
     $extensions = civicrm_api3('Extension', 'get', [
diff --git a/civicrm/ext/eventcart/info.xml b/civicrm/ext/eventcart/info.xml
index 7b59962fc39e5f2166ac62fd4175f00582511905..48edae6db30fad31b936c7612d0515987ff64f02 100644
--- a/civicrm/ext/eventcart/info.xml
+++ b/civicrm/ext/eventcart/info.xml
@@ -13,13 +13,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-08-03</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <classloader>
     <psr4 prefix="Civi\" path="Civi"/>
diff --git a/civicrm/ext/ewaysingle/info.xml b/civicrm/ext/ewaysingle/info.xml
index 57993c676a5eee9b10e980ae2ed9e7dd887a2589..2e407cc7fa091a937a55743f6a91a43a82ba089f 100644
--- a/civicrm/ext/ewaysingle/info.xml
+++ b/civicrm/ext/ewaysingle/info.xml
@@ -15,13 +15,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-10-07</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This is an extension to contain the eWAY Single Currency Payment Processor</comments>
   <classloader>
diff --git a/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php b/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php
index e80de0cdaf6dd3812debb1b52e3ec8891309eb87..d0f77adc2d911cc96624f83b0009c10ee89148d5 100644
--- a/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php
+++ b/civicrm/ext/ewaysingle/tests/phpunit/CRM/Core/Payment/EwayTest.php
@@ -162,7 +162,7 @@ class CRM_Core_Payment_EwayTest extends \PHPUnit\Framework\TestCase implements H
    * @param int|null $id
    * @param bool $error
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setupMockHandler($id = NULL, $error = FALSE): void {
     if ($id) {
diff --git a/civicrm/ext/financialacls/financialacls.php b/civicrm/ext/financialacls/financialacls.php
index 45366d57ba2f926f1707a552dd7e9cd75c4840e4..af3378eb49abe0e34dc01e302f661d4b2b54e5e1 100644
--- a/civicrm/ext/financialacls/financialacls.php
+++ b/civicrm/ext/financialacls/financialacls.php
@@ -98,7 +98,6 @@ function financialacls_civicrm_entityTypes(&$entityTypes) {
  * @param int|null $id
  * @param array $params
  *
- * @throws \API_Exception
  * @throws \CRM_Core_Exception
  */
 function financialacls_civicrm_pre($op, $objectName, $id, &$params) {
@@ -112,7 +111,7 @@ function financialacls_civicrm_pre($op, $objectName, $id, &$params) {
       $params['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_LineItem', $params['id'], 'financial_type_id');
     }
     if (!array_key_exists($params['financial_type_id'], $types)) {
-      throw new API_Exception('You do not have permission to ' . $op . ' this line item');
+      throw new CRM_Core_Exception('You do not have permission to ' . $op . ' this line item');
     }
   }
   if ($objectName === 'FinancialType' && !empty($params['id']) && !empty($params['name'])) {
@@ -184,7 +183,7 @@ function _financialacls_civicrm_get_accounts_clause(): string {
         $clause = 'IN (' . implode(',', array_keys($accounts)) . ')';
       }
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       // We've already set it to 0 so we can quietly handle this.
     }
   }
@@ -221,7 +220,7 @@ function _financialacls_civicrm_get_accessible_financial_types(): array {
  *
  * @return string
  *
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function _financialacls_civicrm_get_membership_type_clause(): string {
   $financialTypes = _financialacls_civicrm_get_accessible_financial_types();
diff --git a/civicrm/ext/financialacls/info.xml b/civicrm/ext/financialacls/info.xml
index aedef4621409b498dc10781c67f96362dcc5d652..9ee412bbf9dc802796c2d6542370a2ada0c4ab72 100644
--- a/civicrm/ext/financialacls/info.xml
+++ b/civicrm/ext/financialacls/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-08-27</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <tags>
     <tag>mgmt:hidden</tag>
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/BaseTestClass.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/BaseTestClass.php
index 2d923004adfef81be42ab454c814f13c8206f1b9..8aea3973245a7ebabe280eaf5de8f295d8d5b6e8 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/BaseTestClass.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/BaseTestClass.php
@@ -43,7 +43,7 @@ class BaseTestClass extends TestCase implements HeadlessInterface, HookInterface
   }
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function tearDown(): void {
@@ -86,7 +86,7 @@ class BaseTestClass extends TestCase implements HeadlessInterface, HookInterface
   /**
    * Create price set.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function createPriceSet(): void {
     $priceSet = PriceSet::create(FALSE)->setValues([
@@ -121,7 +121,7 @@ class BaseTestClass extends TestCase implements HeadlessInterface, HookInterface
   /**
    * Delete extraneous price sets.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function cleanupPriceSets(): void {
     $addedPriceSets = array_keys((array) PriceSet::get(FALSE)
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
index 03af360df3e3bbfd1517edc95de5ac1f64f63988..1438c21a0cfad4c35e0913f190188bec9b3e78d5 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/ContributionSoftTest.php
@@ -11,7 +11,7 @@
 namespace Civi\Financialacls;
 
 // I fought the Autoloader and the autoloader won.
-use API_Exception;
+use CRM_Core_Exception;
 use Civi\Api4\Contribution;
 use Civi\Api4\ContributionSoft;
 use CRM_Contribute_BAO_ContributionSoft;
@@ -29,7 +29,6 @@ class ContributionSoftTest extends BaseTestClass {
   /**
    * Test getSoftContributionList method.
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
    */
   public function testGetSoftContributionList(): void {
@@ -151,7 +150,7 @@ class ContributionSoftTest extends BaseTestClass {
       ];
       ContributionSoft::create(FALSE)->setValues($params2)->execute();
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $this->fail($e->getMessage());
     }
     return [];
@@ -163,7 +162,7 @@ class ContributionSoftTest extends BaseTestClass {
    * @param array $params
    *
    * @return int
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   private function contributionCreate(array $params): int {
     return Contribution::create(FALSE)->setValues(array_merge([
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/EntityFinancialAccountTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/EntityFinancialAccountTest.php
index 41f43b2a5ffa711bee6f0d10859c159724762271..38fb568ddd844a93b4fa7e4968e7016ea1b1c8e9 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/EntityFinancialAccountTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/EntityFinancialAccountTest.php
@@ -15,7 +15,7 @@ class EntityFinancialAccountTest extends BaseTestClass {
   /**
    * Test only accounts with permitted income types can be retrieved.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testGetEntityFinancialAccount(): void {
     $this->setupLoggedInUserWithLimitedFinancialTypeAccess();
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/FinancialAccountTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/FinancialAccountTest.php
index cc071f93afbf3840a6a2bb90061f785916ac19c5..1f95ac60b8ad18e1d74d4383ad9a2ca484df29f1 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/FinancialAccountTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/FinancialAccountTest.php
@@ -15,7 +15,7 @@ class FinancialAccountTest extends BaseTestClass {
   /**
    * Test only accounts with permitted income types can be retrieved.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testGetFinancialAccount(): void {
     $this->setupLoggedInUserWithLimitedFinancialTypeAccess();
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/LineItemTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/LineItemTest.php
index 75d57c8a493c7493cefc0b20773aa9f1b251c3ec..a12d368eba14a15c58b550f05fd3497d8f417b36 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/LineItemTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/LineItemTest.php
@@ -27,7 +27,7 @@ class LineItemTest extends BaseTestClass {
    * Test api applies permissions on line item actions (delete & get).
    *
    * @dataProvider versionThreeAndFour
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testLineItemApiPermissions($version): void {
     $contact1 = $this->individualCreate();
diff --git a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/MembershipTypesTest.php b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/MembershipTypesTest.php
index 3daf742b608ae60c34b563124b986a77d31f9f80..0d45587232e811688b88029d58cf6ee439efca1c 100644
--- a/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/MembershipTypesTest.php
+++ b/civicrm/ext/financialacls/tests/phpunit/Civi/Financialacls/MembershipTypesTest.php
@@ -36,7 +36,7 @@ class MembershipTypesTest extends BaseTestClass {
 
   /**
    * @return \Civi\Api4\Generic\Result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   protected function setUpMembershipTypesACLLimited(): Result {
diff --git a/civicrm/ext/flexmailer/info.xml b/civicrm/ext/flexmailer/info.xml
index c6db459e50b569e0839e39a626c5cde28dcb694e..367e031fdfcebfa244245a797b1a81a55b61f209 100644
--- a/civicrm/ext/flexmailer/info.xml
+++ b/civicrm/ext/flexmailer/info.xml
@@ -15,7 +15,7 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-08-05</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <comments>
     FlexMailer is an email delivery engine which replaces the internal guts
@@ -23,7 +23,7 @@
     to provide richer email features.
   </comments>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <classloader>
     <psr4 prefix="Civi\FlexMailer\" path="src"/>
diff --git a/civicrm/ext/greenwich/info.xml b/civicrm/ext/greenwich/info.xml
index 86a2c3192cec722dbed0a92235c80fa779316e0d..ed0bcdfbaa79baf3dc100a13a4e938cb7364dc65 100644
--- a/civicrm/ext/greenwich/info.xml
+++ b/civicrm/ext/greenwich/info.xml
@@ -15,13 +15,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-07-21</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <classloader>
     <psr4 prefix="Civi\" path="Civi"/>
diff --git a/civicrm/ext/legacycustomsearches/info.xml b/civicrm/ext/legacycustomsearches/info.xml
index 48a1b44c453134620d8692502089c4046d00ec0c..465b0b5b8e6db3dddda3fd9a75a91abc9770423c 100644
--- a/civicrm/ext/legacycustomsearches/info.xml
+++ b/civicrm/ext/legacycustomsearches/info.xml
@@ -15,13 +15,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-07-25</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This is hidden on install to give extensions that require it time to add it to their requires and to allow us to get it out of GroupContact load</comments>
   <classloader>
diff --git a/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/SampleTest.php b/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/SampleTest.php
index 8ab593b024a0f1dc6fd6f65f3e38389fdf8814cb..9c3ed347d0ed066ea990c6a9e4964c468c9524b2 100644
--- a/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/SampleTest.php
+++ b/civicrm/ext/legacycustomsearches/tests/phpunit/Civi/Searches/SampleTest.php
@@ -48,7 +48,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Set up for test.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function setUp(): void {
@@ -111,7 +111,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
    * @param array $formValues
    * @param array $names
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testCount(array $formValues, array $names): void {
     $this->setupSampleData();
@@ -127,7 +127,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
    * @param array $formValues
    * @param array $names
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testAll(array $formValues, array $names): void {
     $this->setupSampleData();
@@ -166,7 +166,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
    * @param array $formValues
    * @param array $names
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function testContactIDs(array $formValues, array $names): void {
     $this->setupSampleData();
@@ -224,9 +224,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
    *  Test CRM_Contact_Form_Search_Custom_Sample with saved_search_id
    *  With true argument it returns list of contact IDs
    *
-   * @throws \API_Exception
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public function testSavedSearch(): void {
@@ -258,7 +256,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
   /**
    * Set up our sample data.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function setupSampleData(): void {
     $households = [
@@ -291,7 +289,7 @@ class SampleTest extends TestCase implements HeadlessInterface, HookInterface, T
    * @return array
    *   IDs of the contacts.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function getContactIDs($names): array {
     return array_keys((array) Contact::get()->addWhere(
diff --git a/civicrm/ext/message_admin/info.xml b/civicrm/ext/message_admin/info.xml
index 6b7a56074adc815a783b5097e9740901eadd2d54..eda5e061285d2e97113e33ce3e6a439ffe1d0666 100644
--- a/civicrm/ext/message_admin/info.xml
+++ b/civicrm/ext/message_admin/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-06-12</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>alpha</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <requires>
     <ext>org.civicrm.afform</ext>
diff --git a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/AbstractGrantAction.php b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/AbstractGrantAction.php
index 31352dc191998bb511f16ac879f6ec073f5c90ba..a5b2240cad177da9a70be1025a2511ed386e3443 100644
--- a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/AbstractGrantAction.php
+++ b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/AbstractGrantAction.php
@@ -52,11 +52,11 @@ abstract class AbstractGrantAction extends \Civi\Api4\Generic\AbstractBatchActio
   }
 
   /**
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function validate() {
     if (!preg_match(OAuthTokenFacade::STORAGE_TYPES, $this->storage)) {
-      throw new \API_Exception("Invalid token storage ($this->storage)");
+      throw new \CRM_Core_Exception("Invalid token storage ($this->storage)");
     }
   }
 
diff --git a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Create.php b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Create.php
index 89175a75d0967ade1ac52fdd27b2b632ece98fda..6ab50fd3b7e8f555caecd29edb90fcffad8ab083 100644
--- a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Create.php
+++ b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Create.php
@@ -11,7 +11,7 @@ class Create extends \Civi\Api4\Generic\DAOCreateAction {
     if (isset($this->values['provider'])) {
       $ps = \CRM_OAuth_BAO_OAuthClient::getProviders();
       if (!isset($ps[$this->values['provider']])) {
-        throw new \API_Exception("Invalid provider name: " . $this->values['provider']);
+        throw new \CRM_Core_Exception("Invalid provider name: " . $this->values['provider']);
       }
     }
     parent::validateValues();
diff --git a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Update.php b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Update.php
index 8131f6f0c9c00bfe56d9c5754719612dd5c477fa..731ecdb0606ebf621efe927d0030750655c892dd 100644
--- a/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Update.php
+++ b/civicrm/ext/oauth-client/Civi/Api4/Action/OAuthClient/Update.php
@@ -13,7 +13,7 @@ class Update extends \Civi\Api4\Generic\DAOUpdateAction {
     if (isset($this->values['provider'])) {
       $ps = \CRM_OAuth_BAO_OAuthClient::getProviders();
       if (!isset($ps[$this->values['provider']])) {
-        throw new \API_Exception("Invalid provider name: " . $this->values['provider']);
+        throw new \CRM_Core_Exception("Invalid provider name: " . $this->values['provider']);
       }
     }
 
diff --git a/civicrm/ext/oauth-client/Civi/Api4/OAuthProvider.php b/civicrm/ext/oauth-client/Civi/Api4/OAuthProvider.php
index 7ef1b7ea2d471f9dda970840fc0701edbf667496..6b3cc67a7906e0b78925c477538c41a926b6476b 100644
--- a/civicrm/ext/oauth-client/Civi/Api4/OAuthProvider.php
+++ b/civicrm/ext/oauth-client/Civi/Api4/OAuthProvider.php
@@ -25,7 +25,7 @@ class OAuthProvider extends Generic\AbstractEntity {
 
         foreach ($providers as $name => &$provider) {
           if ($provider['name'] !== $name) {
-            throw new \API_Exception(sprintf("Mismatched OAuth provider names: \"%s\" vs \"%s\"",
+            throw new \CRM_Core_Exception(sprintf("Mismatched OAuth provider names: \"%s\" vs \"%s\"",
               $provider['name'], $name));
           }
           if (!isset($provider['class'])) {
diff --git a/civicrm/ext/oauth-client/Civi/OAuth/OAuthTokenFacade.php b/civicrm/ext/oauth-client/Civi/OAuth/OAuthTokenFacade.php
index 58a9c3edd2ef8f0f8f3fff9c2e8380667da460e5..679599c0e37877829e4c099b26d076fb5f6cac41 100644
--- a/civicrm/ext/oauth-client/Civi/OAuth/OAuthTokenFacade.php
+++ b/civicrm/ext/oauth-client/Civi/OAuth/OAuthTokenFacade.php
@@ -24,13 +24,13 @@ class OAuthTokenFacade {
    *   (via getAccessToken($tokenOptions)), eg "username", "password", "code"
    *
    * @return array
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @see \League\OAuth2\Client\Provider\AbstractProvider::getAccessToken()
    */
   public function init($options): array {
     $options['storage'] = $options['storage'] ?? 'OAuthSysToken';
     if (!preg_match(self::STORAGE_TYPES, $options['storage'])) {
-      throw new \API_Exception("Invalid token storage ({$options['storage']})");
+      throw new \CRM_Core_Exception("Invalid token storage ({$options['storage']})");
     }
 
     /** @var \League\OAuth2\Client\Provider\GenericProvider $provider */
diff --git a/civicrm/ext/oauth-client/info.xml b/civicrm/ext/oauth-client/info.xml
index 8a4cb5d2566fbd3b28d3ee75c362e002be3b1b34..2f3ebe7a60c6160d25fd0747ceb7117c7085efe7 100644
--- a/civicrm/ext/oauth-client/info.xml
+++ b/civicrm/ext/oauth-client/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-10-23</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <requires>
     <ext version="~4.5">org.civicrm.afform</ext>
diff --git a/civicrm/ext/oauth-client/tests/phpunit/api/v4/OAuthClientTest.php b/civicrm/ext/oauth-client/tests/phpunit/api/v4/OAuthClientTest.php
index cb7e0eb0faa5e6bcb63f410d9cfdfab4906c624b..b9186dac99d78b61be8e6c9cdd007d39b2a63dab 100644
--- a/civicrm/ext/oauth-client/tests/phpunit/api/v4/OAuthClientTest.php
+++ b/civicrm/ext/oauth-client/tests/phpunit/api/v4/OAuthClientTest.php
@@ -78,7 +78,7 @@ class api_v4_OAuthClientTest extends \PHPUnit\Framework\TestCase implements Head
       ])->execute();
       $this->fail("Expected exception: invalid provider");
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $this->assertRegExp(';Invalid provider;', $e->getMessage());
     }
   }
@@ -104,7 +104,7 @@ class api_v4_OAuthClientTest extends \PHPUnit\Framework\TestCase implements Head
         ->execute();
       $this->fail("Expected exception: invalid provider");
     }
-    catch (API_Exception $e) {
+    catch (CRM_Core_Exception $e) {
       $this->assertRegExp(';Invalid provider;', $e->getMessage());
     }
 
diff --git a/civicrm/ext/payflowpro/info.xml b/civicrm/ext/payflowpro/info.xml
index e243d9105c898be2c90113a6cd8c0bf07de9e482..a8b047fc920924c564f86d7a31d001f2b5715f4c 100644
--- a/civicrm/ext/payflowpro/info.xml
+++ b/civicrm/ext/payflowpro/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-04-13</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This extension is extraction of the original Core Payflow Pro Payment Processor</comments>
   <classloader>
diff --git a/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php b/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php
index 5bff55fa9c0c8f2de937871a4de6cffafde39cd3..4021911608e5f600f5f99723e1852e2e8ec15395 100644
--- a/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php
+++ b/civicrm/ext/payflowpro/tests/phpunit/CRM/Core/Payment/PayflowProTest.php
@@ -200,7 +200,7 @@ class CRM_Core_Payment_PayflowProTest extends \PHPUnit\Framework\TestCase implem
    * @param bool $error
    * @param bool $recurring
    *
-   * @throws \CiviCRM_API3_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function setupMockHandler($id = NULL, $error = FALSE, $recurring = FALSE): void {
     if ($id) {
diff --git a/civicrm/ext/recaptcha/CRM/Utils/ReCAPTCHA.php b/civicrm/ext/recaptcha/CRM/Utils/ReCAPTCHA.php
index cd99e32f737735a1a7097d8d153e77f3ee1731e6..f631733ad95b2154f743d70757d67a77e6675118 100644
--- a/civicrm/ext/recaptcha/CRM/Utils/ReCAPTCHA.php
+++ b/civicrm/ext/recaptcha/CRM/Utils/ReCAPTCHA.php
@@ -133,7 +133,7 @@ class CRM_Utils_ReCAPTCHA {
    * @param string $formName
    * @param CRM_Core_Form $form
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\UnauthorizedException
    */
   public static function checkAndAddCaptchaToForm($formName, &$form) {
diff --git a/civicrm/ext/recaptcha/info.xml b/civicrm/ext/recaptcha/info.xml
index b74be68b1282a38b2014e3a861d4e264faf174b7..408c58c2767185d956b4ad28f1bdf8f0efe9ef34 100644
--- a/civicrm/ext/recaptcha/info.xml
+++ b/civicrm/ext/recaptcha/info.xml
@@ -13,13 +13,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-04-03</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <classloader>
     <psr4 prefix="Civi\" path="Civi"/>
diff --git a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php
index b06f67c8192e3a06da992e2b38ca330b69e1308c..9857025a08a7cb3df10a2b381af3211016256ad5 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php
@@ -87,7 +87,7 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
   /**
    * @param \Civi\Api4\Generic\Result $result
    * @throws UnauthorizedException
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function _run(\Civi\Api4\Generic\Result $result) {
     // Only SearchKit admins can use this in unsecured "preview mode"
@@ -165,7 +165,7 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
       default:
         if (!empty($data[$key])) {
           $item = $this->getSelectExpression($key);
-          if ($item['expr'] instanceof SqlField && $item['fields'][0]['fk_entity'] === 'File') {
+          if ($item['expr'] instanceof SqlField && $item['fields'][$key]['fk_entity'] === 'File') {
             return $this->generateFileUrl($data[$key]);
           }
         }
@@ -214,7 +214,7 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
           $out['val'] = $this->rewrite($column, $data);
         }
         else {
-          $out['val'] = $this->formatViewValue($column['key'], $rawValue);
+          $out['val'] = $this->formatViewValue($column['key'], $rawValue, $data);
         }
         if ($this->hasValue($column['label']) && (!empty($column['forceLabel']) || $this->hasValue($out['val']))) {
           $out['label'] = $this->replaceTokens($column['label'], $data, 'view');
@@ -648,7 +648,7 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
         'values' => $entityValues,
       ])->count();
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
       return FALSE;
     }
   }
@@ -730,14 +730,19 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
    * @param int $index
    * @return string
    */
-  private function replaceTokens($tokenExpr, $data, $format, $index = 0) {
+  private function replaceTokens($tokenExpr, $data, $format, $index = NULL) {
     if (strpos(($tokenExpr ?? ''), '[') !== FALSE) {
       foreach ($this->getTokens($tokenExpr) as $token) {
         $val = $data[$token] ?? NULL;
         if (isset($val) && $format === 'view') {
-          $val = $this->formatViewValue($token, $val);
+          $val = $this->formatViewValue($token, $val, $data);
+        }
+        if (!(is_null($index))) {
+          $replacement = is_array($val) ? $val[$index] ?? '' : $val;
+        }
+        else {
+          $replacement = implode(', ', (array) $val);
         }
-        $replacement = is_array($val) ? $val[$index] ?? '' : $val;
         // A missing token value in a url invalidates it
         if ($format === 'url' && (!isset($replacement) || $replacement === '')) {
           return NULL;
@@ -752,12 +757,13 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
    * Format raw field value according to data type
    * @param string $key
    * @param mixed $rawValue
+   * @param array $data
    * @return array|string
    */
-  protected function formatViewValue($key, $rawValue) {
+  protected function formatViewValue($key, $rawValue, $data) {
     if (is_array($rawValue)) {
-      return array_map(function($val) use ($key) {
-        return $this->formatViewValue($key, $val);
+      return array_map(function($val) use ($key, $data) {
+        return $this->formatViewValue($key, $val, $data);
       }, $rawValue);
     }
 
@@ -773,7 +779,9 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
         break;
 
       case 'Money':
-        $formatted = \CRM_Utils_Money::format($rawValue);
+        $currencyField = $this->getCurrencyField($key);
+        $currency = is_string($data[$currencyField] ?? NULL) ? $data[$currencyField] : NULL;
+        $formatted = \Civi::format()->money($rawValue, $currency);
         break;
 
       case 'Date':
@@ -877,21 +885,20 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
     $existing = array_map(function($item) {
       return explode(' AS ', $item)[1] ?? $item;
     }, $apiParams['select']);
-    $additions = [];
     // Add primary key field if actions are enabled
     // (only needed for non-dao entities, as Api4SelectQuery will auto-add the id)
     if (!in_array('DAOEntity', CoreUtil::getInfoItem($this->savedSearch['api_entity'], 'type')) &&
       (!empty($this->display['settings']['actions']) || !empty($this->display['settings']['draggable']))
     ) {
-      $additions = CoreUtil::getInfoItem($this->savedSearch['api_entity'], 'primary_key');
+      $this->addSelectExpression(CoreUtil::getIdFieldName($this->savedSearch['api_entity']));
     }
     // Add draggable column (typically "weight")
     if (!empty($this->display['settings']['draggable'])) {
-      $additions[] = $this->display['settings']['draggable'];
+      $this->addSelectExpression($this->display['settings']['draggable']);
     }
     // Add style conditions for the display
     foreach ($this->getCssRulesSelect($this->display['settings']['cssRules'] ?? []) as $addition) {
-      $additions[] = $addition;
+      $this->addSelectExpression($addition);
     }
     $possibleTokens = '';
     foreach ($this->display['settings']['columns'] as $column) {
@@ -907,31 +914,99 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
         $possibleTokens .= $this->getLinkPath($link) ?? '';
       }
 
-      // Select id & value for in-place editing
+      // Select id, value & grouping for in-place editing
       if (!empty($column['editable'])) {
         $editable = $this->getEditableInfo($column['key']);
         if ($editable) {
-          $additions = array_merge($additions, $editable['grouping_fields'], [$editable['value_path'], $editable['id_path']]);
+          foreach (array_merge($editable['grouping_fields'], [$editable['value_path'], $editable['id_path']]) as $addition) {
+            $this->addSelectExpression($addition);
+          }
         }
       }
       // Add style & icon conditions for the column
-      $additions = array_merge($additions,
-        $this->getCssRulesSelect($column['cssRules'] ?? []),
-        $this->getIconsSelect($column['icons'] ?? [])
-      );
+      foreach ($this->getCssRulesSelect($column['cssRules'] ?? []) as $addition) {
+        $this->addSelectExpression($addition);
+      }
+      foreach ($this->getIconsSelect($column['icons'] ?? []) as $addition) {
+        $this->addSelectExpression($addition);
+      }
     }
     // Add fields referenced via token
-    $tokens = $this->getTokens($possibleTokens);
-    // Only add fields not already in SELECT clause
-    $additions = array_diff(array_merge($additions, $tokens), $existing);
-    // Tokens for aggregated columns start with 'GROUP_CONCAT_'
-    foreach ($additions as $index => $alias) {
-      if (strpos($alias, 'GROUP_CONCAT_') === 0) {
-        $additions[$index] = 'GROUP_CONCAT(' . $this->getJoinFromAlias(explode('_', $alias, 3)[2]) . ') AS ' . $alias;
+    foreach ($this->getTokens($possibleTokens) as $addition) {
+      $this->addSelectExpression($addition);
+    }
+
+    // When selecting monetary fields, also select currency
+    foreach ($apiParams['select'] as $select) {
+      $currencyFieldName = $this->getCurrencyField($select);
+      if ($currencyFieldName) {
+        $this->addSelectExpression($currencyFieldName);
+      }
+    }
+  }
+
+  /**
+   * Given a field that contains money, find the corresponding currency field
+   *
+   * @param string $select
+   * @return string|null
+   */
+  private function getCurrencyField(string $select):?string {
+    $clause = $this->getSelectExpression($select);
+    // Only deal with fields of type money.
+    // TODO: In theory it might be possible to support aggregated columns but be careful about FULL_GROUP_BY errors
+    if (!($clause && $clause['expr']->isType('SqlField') && $clause['dataType'] === 'Money' && $clause['fields'])) {
+      return NULL;
+    }
+    $moneyFieldAlias = array_keys($clause['fields'])[0];
+    $moneyField = $clause['fields'][$moneyFieldAlias];
+    // Custom fields do their own thing wrt currency
+    if ($moneyField['type'] === 'Custom') {
+      return NULL;
+    }
+    $prefix = substr($moneyFieldAlias, 0, strrpos($moneyFieldAlias, $moneyField['name']));
+    // If the entity has a field named 'currency', just assume that's it.
+    if ($this->getField($prefix . 'currency')) {
+      return $prefix . 'currency';
+    }
+    // Some currency fields go by other names like `fee_currency`. We find them by checking the pseudoconstant.
+    $entityDao = CoreUtil::getInfoItem($moneyField['entity'], 'dao');
+    if ($entityDao) {
+      foreach ($entityDao::getSupportedFields() as $fieldName => $field) {
+        if (($field['pseudoconstant']['table'] ?? NULL) === 'civicrm_currency') {
+          return $prefix . $fieldName;
+        }
+      }
+    }
+    // If the base entity has a field named 'currency', fall back on that.
+    if ($this->getField('currency')) {
+      return 'currency';
+    }
+    // Finally, if there's a FK field to civicrm_contribution, we can use an implicit join
+    // E.G. the LineItem entity has no `currency` field of its own & uses that of the contribution record
+    if ($entityDao) {
+      foreach ($entityDao::getSupportedFields() as $fieldName => $field) {
+        if (($field['FKClassName'] ?? NULL) === 'CRM_Contribute_DAO_Contribution') {
+          return $prefix . $fieldName . '.currency';
+        }
       }
     }
-    $this->_selectClause = NULL;
-    $apiParams['select'] = array_unique(array_merge($apiParams['select'], $additions));
+    return NULL;
+  }
+
+  /**
+   * @param string $expr
+   */
+  protected function addSelectExpression(string $expr):void {
+    if (!$this->getSelectExpression($expr)) {
+      // Tokens for aggregated columns start with 'GROUP_CONCAT_'
+      if (strpos($expr, 'GROUP_CONCAT_') === 0) {
+        $expr = 'GROUP_CONCAT(' . $this->getJoinFromAlias(explode('_', $expr, 3)[2]) . ') AS ' . $expr;
+      }
+      $this->_apiParams['select'][] = $expr;
+      // Force-reset cache so it gets rebuilt with the new select param
+      $this->_selectClause = NULL;
+    }
   }
 
   /**
@@ -1109,7 +1184,7 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
    *
    * @param $fieldName
    * @param $value
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    * @throws \Civi\API\Exception\NotImplementedException
    */
   private function addFilterLabel($fieldName, $value) {
diff --git a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Download.php b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Download.php
index 2400ad46c8cec8ef6c291b7b8ed2416569ca0818..6a107a5b711d0bdafbfedce7382cda065ae09dae 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Download.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Download.php
@@ -47,7 +47,7 @@ class Download extends AbstractRunAction {
 
   /**
    * @param \Civi\Api4\Result\SearchDisplayRunResult $result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processResult(\Civi\Api4\Result\SearchDisplayRunResult $result) {
     $entityName = $this->savedSearch['api_entity'];
diff --git a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetDefault.php b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetDefault.php
index 2f387cfce7b07ad010de3b56e45c28d1607f17f6..e340898b6d321ff4fb84515a046228349ed71734 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetDefault.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetDefault.php
@@ -40,7 +40,7 @@ class GetDefault extends \Civi\Api4\Generic\AbstractAction {
   /**
    * @param \Civi\Api4\Generic\Result $result
    * @throws UnauthorizedException
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function _run(\Civi\Api4\Generic\Result $result) {
     // Only SearchKit admins can use this in unsecured "preview mode"
@@ -199,7 +199,7 @@ class GetDefault extends \Civi\Api4\Generic\AbstractAction {
    */
   private function getColumnLink(&$col, $clause) {
     if ($clause['expr'] instanceof SqlField || $clause['expr'] instanceof SqlFunctionGROUP_CONCAT) {
-      $field = $clause['fields'][0] ?? NULL;
+      $field = \CRM_Utils_Array::first($clause['fields'] ?? []);
       if ($field &&
         CoreUtil::getInfoItem($field['entity'], 'label_field') === $field['name'] &&
         !empty(CoreUtil::getInfoItem($field['entity'], 'paths')['view'])
diff --git a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetSearchTasks.php b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetSearchTasks.php
index 9db93923b54ce657b395a911d27776c90e5e5cb0..ec2266c26309623288b942189636d3484719df98 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetSearchTasks.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/GetSearchTasks.php
@@ -21,7 +21,7 @@ class GetSearchTasks extends \Civi\Api4\Generic\AbstractAction {
 
   /**
    * @param \Civi\Api4\Generic\Result $result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function _run(\Civi\Api4\Generic\Result $result) {
     // Adding checkPermissions filters out actions the user is not allowed to perform
diff --git a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php
index 3d631321e620b144e4611224f0266086a7e272c7..9406c67ea9432d62ee4b7b8454fc4f773275c90d 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php
@@ -32,7 +32,7 @@ class Run extends AbstractRunAction {
 
   /**
    * @param \Civi\Api4\Result\SearchDisplayRunResult $result
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   protected function processResult(\Civi\Api4\Result\SearchDisplayRunResult $result) {
     $entityName = $this->savedSearch['api_entity'];
diff --git a/civicrm/ext/search_kit/Civi/Api4/Event/Subscriber/SearchKitSubscriber.php b/civicrm/ext/search_kit/Civi/Api4/Event/Subscriber/SearchKitSubscriber.php
index 3ac32ea4def56f8c3671fbfbbf1fb0510574443c..b652c12bd6fba90cbb565d932f807b5adbf45b8e 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Event/Subscriber/SearchKitSubscriber.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Event/Subscriber/SearchKitSubscriber.php
@@ -15,8 +15,9 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
 /**
  * Event subscriber to check extra permission for SavedSearches
+ * @service civi.api4.searchKit
  */
-class SearchKitSubscriber implements EventSubscriberInterface {
+class SearchKitSubscriber extends \Civi\Core\Service\AutoService implements EventSubscriberInterface {
 
   /**
    * @return array
diff --git a/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchDisplayCreationSpecProvider.php b/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchDisplayCreationSpecProvider.php
index bc8323764db404f5d63dcfd3666e9b741e5f1957..963e63ef2dfaeb7d90a9d77be220b2020e873a04 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchDisplayCreationSpecProvider.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchDisplayCreationSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class SearchDisplayCreationSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class SearchDisplayCreationSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchSegmentSpecProvider.php b/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchSegmentSpecProvider.php
index 10fe1bc5378e3860672eed34fe42afdaa8afb0c2..e0b252dbdf1ada218887edb6427fbbd9901d9e0d 100644
--- a/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchSegmentSpecProvider.php
+++ b/civicrm/ext/search_kit/Civi/Api4/Service/Spec/Provider/SearchSegmentSpecProvider.php
@@ -14,7 +14,11 @@ namespace Civi\Api4\Service\Spec\Provider;
 
 use Civi\Api4\Service\Spec\RequestSpec;
 
-class SearchSegmentSpecProvider implements Generic\SpecProviderInterface {
+/**
+ * @service
+ * @internal
+ */
+class SearchSegmentSpecProvider extends \Civi\Core\Service\AutoService implements Generic\SpecProviderInterface {
 
   /**
    * @inheritDoc
diff --git a/civicrm/ext/search_kit/ang/crmSearchAdmin/crmSearchAdmin.component.js b/civicrm/ext/search_kit/ang/crmSearchAdmin/crmSearchAdmin.component.js
index 1f93d844741e3f5f5f409786105065e56fa58e95..7b88ee1db9aebf666665b01d520a5708ba516be2 100644
--- a/civicrm/ext/search_kit/ang/crmSearchAdmin/crmSearchAdmin.component.js
+++ b/civicrm/ext/search_kit/ang/crmSearchAdmin/crmSearchAdmin.component.js
@@ -471,7 +471,7 @@
       };
 
       function getFieldsForJoin(joinEntity) {
-        return {results: ctrl.getAllFields(':name', ['Field'], null, joinEntity)};
+        return {results: ctrl.getAllFields(':name', ['Field', 'Extra'], null, joinEntity)};
       }
 
       // @return {function}
diff --git a/civicrm/ext/search_kit/ang/crmSearchDisplay/AddButton.html b/civicrm/ext/search_kit/ang/crmSearchDisplay/AddButton.html
index 29c6b72536667620965cf92d3ba29b56ebda523e..93135230dab2cc7ff8de9c9b4f1dddea45b3c26c 100644
--- a/civicrm/ext/search_kit/ang/crmSearchDisplay/AddButton.html
+++ b/civicrm/ext/search_kit/ang/crmSearchDisplay/AddButton.html
@@ -1,4 +1,4 @@
-<a href="{{ $ctrl.settings.addButton.url }}" class="btn btn-primary" target="crm-popup">
-  <i ng-if="$ctrl.settings.addButton.icon" class="crm-i {{:: $ctrl.settings.addButton.icon }}"></i>
-  {{:: $ctrl.settings.addButton.text }}
+<a ng-href="{{ $ctrl.addButton.url }}" class="btn btn-primary" target="crm-popup">
+  <i ng-if="$ctrl.addButton.icon" class="crm-i {{:: $ctrl.addButton.icon }}"></i>
+  {{:: $ctrl.addButton.text }}
 </a>
diff --git a/civicrm/ext/search_kit/ang/crmSearchDisplay/traits/searchDisplayBaseTrait.service.js b/civicrm/ext/search_kit/ang/crmSearchDisplay/traits/searchDisplayBaseTrait.service.js
index 5bfdafcecb48974667aa0d396f98fb199927452a..e9b5bf051e39a40b54e9d572507bb717237a1280 100644
--- a/civicrm/ext/search_kit/ang/crmSearchDisplay/traits/searchDisplayBaseTrait.service.js
+++ b/civicrm/ext/search_kit/ang/crmSearchDisplay/traits/searchDisplayBaseTrait.service.js
@@ -26,9 +26,14 @@
         for (var p=0; p < placeholderCount; ++p) {
           this.placeholders.push({});
         }
-
+        // Calculate URL of addButton and copy addButton to controller property
+        // It has to be copied rather than simply adding this.settings.addButton.url,
+        // because settings cannot be changed when they are supplied from the markup
         if (this.settings.addButton && this.settings.addButton.path) {
-          this.settings.addButton.url = CRM.url(this.settings.addButton.path);
+          // Clone the variable to prevent polluting it during Preview mode in the Admin UI
+          this.addButton = _.cloneDeep(this.settings.addButton);
+          // TODO: Evaluate variables in the path
+          this.addButton.url = CRM.url(this.addButton.path);
         }
 
         this.getResults = _.debounce(function() {
diff --git a/civicrm/ext/search_kit/ang/crmSearchDisplayGrid/crmSearchDisplayGrid.html b/civicrm/ext/search_kit/ang/crmSearchDisplayGrid/crmSearchDisplayGrid.html
index 710f0dfa693af18861b1bccdcc67c77e45e032d0..7722006a24118bbd87e271fcc694fa4e5ab39056 100644
--- a/civicrm/ext/search_kit/ang/crmSearchDisplayGrid/crmSearchDisplayGrid.html
+++ b/civicrm/ext/search_kit/ang/crmSearchDisplayGrid/crmSearchDisplayGrid.html
@@ -1,7 +1,7 @@
 <div class="crm-search-display crm-search-display-grid">
   <div class="form-inline">
     <div class="btn-group" ng-include="'~/crmSearchDisplay/SearchButton.html'" ng-if="$ctrl.settings.button"></div>
-    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.settings.addButton.url"></div>
+    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.addButton"></div>
   </div>
   <div
     class="crm-search-display-grid-container crm-search-display-grid-layout-{{$ctrl.settings.colno}}"
diff --git a/civicrm/ext/search_kit/ang/crmSearchDisplayList/crmSearchDisplayList.html b/civicrm/ext/search_kit/ang/crmSearchDisplayList/crmSearchDisplayList.html
index f719b31c0ef6ecad80d609a2ee0baa98fe875627..0516a679d1a4c50032a295c68872ebedb4f51f41 100644
--- a/civicrm/ext/search_kit/ang/crmSearchDisplayList/crmSearchDisplayList.html
+++ b/civicrm/ext/search_kit/ang/crmSearchDisplayList/crmSearchDisplayList.html
@@ -1,7 +1,7 @@
 <div class="crm-search-display crm-search-display-list">
   <div class="form-inline">
     <div class="btn-group" ng-include="'~/crmSearchDisplay/SearchButton.html'" ng-if="$ctrl.settings.button"></div>
-    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.settings.addButton.url"></div>
+    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.addButton"></div>
   </div>
   <ol ng-if=":: $ctrl.settings.style === 'ol'" ng-include="'~/crmSearchDisplayList/crmSearchDisplayList' + ($ctrl.loading ? 'Loading' : 'Items') + '.html'" ng-style="{'list-style': $ctrl.settings.symbol}"></ol>
   <ul ng-if=":: $ctrl.settings.style !== 'ol'" ng-include="'~/crmSearchDisplayList/crmSearchDisplayList' + ($ctrl.loading ? 'Loading' : 'Items') + '.html'" ng-style="{'list-style': $ctrl.settings.symbol}"></ul>
diff --git a/civicrm/ext/search_kit/ang/crmSearchDisplayTable/crmSearchDisplayTable.html b/civicrm/ext/search_kit/ang/crmSearchDisplayTable/crmSearchDisplayTable.html
index 3d57aedf18d5b8ba06fa7c552e2572330816d235..285c3f1b45e8be32bd12a4d567051c3ab8bcb19e 100644
--- a/civicrm/ext/search_kit/ang/crmSearchDisplayTable/crmSearchDisplayTable.html
+++ b/civicrm/ext/search_kit/ang/crmSearchDisplayTable/crmSearchDisplayTable.html
@@ -2,7 +2,7 @@
   <div class="form-inline">
     <div class="btn-group" ng-include="'~/crmSearchDisplay/SearchButton.html'" ng-if="$ctrl.settings.button"></div>
     <crm-search-tasks ng-if="$ctrl.settings.actions" entity="$ctrl.apiEntity" ids="$ctrl.selectedRows" search="$ctrl.search" display="$ctrl.display" display-controller="$ctrl" refresh="$ctrl.refreshAfterTask()"></crm-search-tasks>
-    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.settings.addButton.url"></div>
+    <div class="btn-group pull-right" ng-include="'~/crmSearchDisplay/AddButton.html'" ng-if="$ctrl.addButton"></div>
   </div>
   <table class="{{:: $ctrl.settings.classes.join(' ') }}">
     <thead>
diff --git a/civicrm/ext/search_kit/info.xml b/civicrm/ext/search_kit/info.xml
index d1c9f1400ac123b9d0e16ad9ff89dfa5fdd8bfe2..6f23d3d8c90320eaf770f3fbcd7810b49243d1e2 100644
--- a/civicrm/ext/search_kit/info.xml
+++ b/civicrm/ext/search_kit/info.xml
@@ -15,10 +15,10 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2021-01-06</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <comments>This extension is still in beta. Click on the chat link above to discuss development, report problems or ask questions.</comments>
   <classloader>
@@ -28,6 +28,7 @@
   <upgrader>CRM_Search_Upgrader</upgrader>
   <mixins>
     <mixin>ang-php@1.0.0</mixin>
+    <mixin>scan-classes@1.0.0</mixin>
     <mixin>menu-xml@1.0.0</mixin>
     <mixin>mgd-php@1.1.0</mixin>
   </mixins>
diff --git a/civicrm/ext/search_kit/search_kit.php b/civicrm/ext/search_kit/search_kit.php
index 54e23a17f61dbfa35ba8dbc1e43e2e902e378a26..c4d20dba3415a0489d062f5fca3495bc4fab77e6 100644
--- a/civicrm/ext/search_kit/search_kit.php
+++ b/civicrm/ext/search_kit/search_kit.php
@@ -11,7 +11,6 @@ use CRM_Search_ExtensionUtil as E;
 function search_kit_civicrm_config(&$config) {
   _search_kit_civix_civicrm_config($config);
   Civi::dispatcher()->addListener('hook_civicrm_alterAngular', ['\Civi\Search\AfformSearchMetadataInjector', 'preprocess'], 1000);
-  Civi::dispatcher()->addSubscriber(new Civi\Api4\Event\Subscriber\SearchKitSubscriber());
 }
 
 /**
diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/AbstractRunActionTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/AbstractRunActionTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..053d51d33be7f8379831390e80afac9644a73597
--- /dev/null
+++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/AbstractRunActionTest.php
@@ -0,0 +1,241 @@
+<?php
+
+namespace api\v4\SearchDisplay;
+
+use Civi\Api4\CustomGroup;
+use Civi\Api4\CustomField;
+use Civi\Api4\Contact;
+use Civi\Test\HeadlessInterface;
+use Civi\Test\TransactionalInterface;
+
+/**
+ * @group headless
+ */
+class AbstractRunActionTest extends \PHPUnit\Framework\TestCase implements HeadlessInterface, TransactionalInterface {
+
+  public function setUpHeadless() {
+    return \Civi\Test::headless()
+      ->installMe(__DIR__)
+      ->apply();
+  }
+
+  public function testReplaceTokens() {
+    CustomGroup::create(FALSE)
+      ->addValue('title', 'Foods')
+      ->addValue('name', 'Foods')
+      ->execute();
+
+    CustomField::create(FALSE)
+      ->addValue('custom_group_id.name', 'Foods')
+      ->addValue('label', 'I Like')
+      ->addValue('serialize:name', \CRM_Core_DAO::SERIALIZE_SEPARATOR_BOOKEND)
+      ->addValue('html_type', 'Autocomplete-Select')
+      ->addValue('data_type', 'String')
+      ->addValue('option_values', ['Pie', 'Cake', 'Anything you make'])
+      ->execute();
+
+    Contact::create(FALSE)
+      ->addValue('contact_type', 'Individual')
+      ->addValue('first_name', 'Lee')
+      ->addValue('last_name', 'Morse')
+      ->addValue('Foods.I_Like', [0, 1, 2])
+      ->execute();
+
+    $entity = 'SearchDisplay';
+    $action = 'run';
+    $params = array(
+      'return' => 'page:1',
+      'savedSearch' =>
+      array(
+        'id' => 1,
+        'name' => 'Multi_Select_Test',
+        'label' => 'Multi Select Test',
+        'form_values' => NULL,
+        'mapping_id' => NULL,
+        'search_custom_id' => NULL,
+        'api_entity' => 'Contact',
+        'api_params' =>
+        array(
+          'version' => 4,
+          'select' =>
+          array(
+            0 => 'display_name',
+            1 => 'Foods.I_Like:label',
+          ),
+          'orderBy' =>
+          array(),
+          'where' =>
+          array(
+            0 =>
+            array(
+              0 => 'contact_type:name',
+              1 => '=',
+              2 => 'Individual',
+            ),
+            1 =>
+            array(
+              0 => 'Foods.I_Like:name',
+              1 => 'IS NOT EMPTY',
+            ),
+          ),
+          'groupBy' =>
+          array(
+            0 => 'id',
+          ),
+          'having' =>
+          array(),
+        ),
+        'created_id' => 203,
+        'modified_id' => 203,
+        'expires_date' => NULL,
+        'created_date' => '2022-08-12 13:49:17',
+        'modified_date' => '2022-08-12 17:18:24',
+        'description' => NULL,
+        'tag_id' =>
+        array(),
+        'groups' =>
+        array(),
+        'displays' =>
+        array(
+          0 =>
+          array(
+            'id' => 1,
+            'name' => 'Contacts_Table_1',
+            'label' => 'Contacts Table 1',
+            'saved_search_id' => 1,
+            'type' => 'table',
+            'settings' =>
+            array(
+              'actions' => TRUE,
+              'limit' => 50,
+              'classes' =>
+              array(
+                0 => 'table',
+                1 => 'table-striped',
+              ),
+              'pager' =>
+              array(),
+              'placeholder' => 5,
+              'sort' =>
+              array(
+                0 =>
+                array(
+                  0 => 'sort_name',
+                  1 => 'ASC',
+                ),
+              ),
+              'columns' =>
+              array(
+                0 =>
+                array(
+                  'type' => 'field',
+                  'key' => 'display_name',
+                  'dataType' => 'String',
+                  'label' => 'Display Name',
+                  'sortable' => TRUE,
+                  'link' =>
+                  array(
+                    'path' => '',
+                    'entity' => 'Contact',
+                    'action' => 'view',
+                    'join' => '',
+                    'target' => '_blank',
+                  ),
+                  'title' => 'View Contact',
+                ),
+                1 =>
+                array(
+                  'type' => 'field',
+                  'key' => 'Foods.I_Like:label',
+                  'dataType' => 'String',
+                  'label' => 'Foods: I Like',
+                  'sortable' => TRUE,
+                  'rewrite' => '[Foods.I_Like:label]',
+                ),
+              ),
+            ),
+            'acl_bypass' => FALSE,
+          ),
+        ),
+      ),
+      'display' =>
+      array(
+        'id' => 1,
+        'name' => 'Contacts_Table_1',
+        'label' => 'Contacts Table 1',
+        'saved_search_id' => 1,
+        'type' => 'table',
+        'settings' =>
+        array(
+          'actions' => TRUE,
+          'limit' => 50,
+          'classes' =>
+          array(
+            0 => 'table',
+            1 => 'table-striped',
+          ),
+          'pager' =>
+          array(),
+          'placeholder' => 5,
+          'sort' =>
+          array(
+            0 =>
+            array(
+              0 => 'sort_name',
+              1 => 'ASC',
+            ),
+          ),
+          'columns' =>
+          array(
+            0 =>
+            array(
+              'type' => 'field',
+              'key' => 'display_name',
+              'dataType' => 'String',
+              'label' => 'Display Name',
+              'sortable' => TRUE,
+              'link' =>
+              array(
+                'path' => '',
+                'entity' => 'Contact',
+                'action' => 'view',
+                'join' => '',
+                'target' => '_blank',
+              ),
+              'title' => 'View Contact',
+            ),
+            1 =>
+            array(
+              'type' => 'field',
+              'key' => 'Foods.I_Like:label',
+              'dataType' => 'String',
+              'label' => 'Foods: I Like',
+              'sortable' => TRUE,
+              'rewrite' => '[Foods.I_Like:label]',
+            ),
+          ),
+        ),
+        'acl_bypass' => FALSE,
+      ),
+      'sort' =>
+      array(
+        0 =>
+        array(
+          0 => 'sort_name',
+          1 => 'ASC',
+        ),
+      ),
+      'limit' => 50,
+      'seed' => 1660599799146,
+      'filters' =>
+      array(),
+      'afform' => NULL,
+      'debug' => TRUE,
+      'checkPermissions' => TRUE,
+    );
+    $result = civicrm_api4($entity, $action, $params);
+    $resultData = $result[0]['data']['Foods.I_Like:label'];
+    $this->assertTrue(implode(', ', $resultData) === $result[0]['columns'][1]['val']);
+  }
+
+}
diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDisplayTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDisplayTest.php
index d56366c6ade9865d269a65fe46b81cf4d81779e6..a6033fc823a52166ce96f921faada6df753df797 100644
--- a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDisplayTest.php
+++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDisplayTest.php
@@ -22,7 +22,7 @@ class SearchDisplayTest extends \PHPUnit\Framework\TestCase implements HeadlessI
       'api_entity' => 'Contact',
       'api_params' => [
         'version' => 4,
-        'select' => ['first_name', 'last_name', 'contact_sub_type:label', 'gender_id'],
+        'select' => ['first_name', 'display_name', 'contact_sub_type:label', 'gender_id'],
         'where' => [],
       ],
     ];
@@ -37,6 +37,17 @@ class SearchDisplayTest extends \PHPUnit\Framework\TestCase implements HeadlessI
     $this->assertEquals('fa-table', $display['type:icon']);
     $this->assertEquals('Contact', $display['saved_search_id.api_entity']);
     $this->assertEquals('Contacts', $display['saved_search_id.api_entity:label']);
+
+    // Default sort order should have been added
+    $this->assertEquals([['sort_name', 'ASC']], $display['settings']['sort']);
+
+    // `display_name` column should have a link
+    $this->assertEquals('Contact', $display['settings']['columns'][1]['link']['entity']);
+    $this->assertEquals('view', $display['settings']['columns'][1]['link']['action']);
+    $this->assertEmpty($display['settings']['columns'][1]['link']['join']);
+
+    // `first_name` column should not have a link
+    $this->assertArrayNotHasKey('link', $display['settings']['columns'][0]);
   }
 
   public function testGetDefaultNoEntity() {
diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php
index 36fe1d73f19d96465d6c91469462854763b638f0..18e5a49a8b21944a8732f47f1baf88bdcee33717 100644
--- a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php
+++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunTest.php
@@ -1,6 +1,10 @@
 <?php
 namespace api\v4\SearchDisplay;
 
+// Not sure why this is needed but without it Jenkins crashed
+require_once __DIR__ . '/../../../../../../../tests/phpunit/api/v4/Api4TestBase.php';
+
+use api\v4\Api4TestBase;
 use Civi\API\Exception\UnauthorizedException;
 use Civi\Api4\Activity;
 use Civi\Api4\Contact;
@@ -10,13 +14,12 @@ use Civi\Api4\Phone;
 use Civi\Api4\SavedSearch;
 use Civi\Api4\SearchDisplay;
 use Civi\Api4\UFMatch;
-use Civi\Test\HeadlessInterface;
 use Civi\Test\TransactionalInterface;
 
 /**
  * @group headless
  */
-class SearchRunTest extends \PHPUnit\Framework\TestCase implements HeadlessInterface, TransactionalInterface {
+class SearchRunTest extends Api4TestBase implements TransactionalInterface {
   use \Civi\Test\ACLPermissionTrait;
 
   public function setUpHeadless() {
@@ -793,7 +796,7 @@ class SearchRunTest extends \PHPUnit\Framework\TestCase implements HeadlessInter
       civicrm_api4('SearchDisplay', 'run', $params);
       $this->fail();
     }
-    catch (\API_Exception $e) {
+    catch (\CRM_Core_Exception $e) {
     }
 
     // With a random seed, results should be shuffled in stable order
@@ -1357,4 +1360,65 @@ class SearchRunTest extends \PHPUnit\Framework\TestCase implements HeadlessInter
     $this->assertEquals($expectedFirstNameEdit, $result[3]['columns'][2]['edit']);
   }
 
+  public function testContributionCurrency():void {
+    $contributions = $this->saveTestRecords('Contribution', [
+      'records' => [
+        ['total_amount' => 100, 'currency' => 'GBP'],
+        ['total_amount' => 200, 'currency' => 'USD'],
+        ['total_amount' => 500, 'currency' => 'JPY'],
+      ],
+    ]);
+
+    $params = [
+      'checkPermissions' => FALSE,
+      'return' => 'page:1',
+      'savedSearch' => [
+        'api_entity' => 'Contribution',
+        'api_params' => [
+          'version' => 4,
+          'select' => ['total_amount'],
+          'where' => [['id', 'IN', $contributions->column('id')]],
+        ],
+      ],
+      'display' => NULL,
+      'sort' => [['id', 'ASC']],
+    ];
+
+    $result = civicrm_api4('SearchDisplay', 'run', $params);
+    $this->assertCount(3, $result);
+
+    // Currency should have been fetched automatically and used to format the value
+    $this->assertEquals('GBP', $result[0]['data']['currency']);
+    $this->assertEquals('£100.00', $result[0]['columns'][0]['val']);
+
+    $this->assertEquals('USD', $result[1]['data']['currency']);
+    $this->assertEquals('$200.00', $result[1]['columns'][0]['val']);
+
+    $this->assertEquals('JPY', $result[2]['data']['currency']);
+    $this->assertEquals('Â¥500', $result[2]['columns'][0]['val']);
+
+    // Now do a search for the contribution line-items
+    $params['savedSearch'] = [
+      'api_entity' => 'LineItem',
+      'api_params' => [
+        'version' => 4,
+        'select' => ['line_total'],
+        'where' => [['contribution_id', 'IN', $contributions->column('id')]],
+      ],
+    ];
+
+    $result = civicrm_api4('SearchDisplay', 'run', $params);
+    $this->assertCount(3, $result);
+
+    // An automatic join should have been added to fetch the contribution currency
+    $this->assertEquals('GBP', $result[0]['data']['contribution_id.currency']);
+    $this->assertEquals('£100.00', $result[0]['columns'][0]['val']);
+
+    $this->assertEquals('USD', $result[1]['data']['contribution_id.currency']);
+    $this->assertEquals('$200.00', $result[1]['columns'][0]['val']);
+
+    $this->assertEquals('JPY', $result[2]['data']['contribution_id.currency']);
+    $this->assertEquals('Â¥500', $result[2]['columns'][0]['val']);
+  }
+
 }
diff --git a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php
index 3b5bda71fc124b8e32bc7b29f319c64e3f2f39c7..f323394f53e37e145c38646d1191753aae470916 100644
--- a/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php
+++ b/civicrm/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchRunWithCustomFieldTest.php
@@ -25,7 +25,7 @@ class SearchRunWithCustomFieldTest extends CustomTestBase {
   /**
    * Delete all created custom groups.
    *
-   * @throws \API_Exception
+   * @throws \CRM_Core_Exception
    */
   public function tearDown(): void {
     // Core bug: `civicrm_entity_file` doesn't get cleaned up when a contact is deleted,
diff --git a/civicrm/ext/sequentialcreditnotes/info.xml b/civicrm/ext/sequentialcreditnotes/info.xml
index 9cc6923648d1b48e0164a31bfa074d0dfb56f89f..2afd5428b79f4839d2e7462152e1851ff904c185 100644
--- a/civicrm/ext/sequentialcreditnotes/info.xml
+++ b/civicrm/ext/sequentialcreditnotes/info.xml
@@ -15,13 +15,13 @@
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
   <releaseDate>2020-01-28</releaseDate>
-  <version>5.54.1</version>
+  <version>5.55.0</version>
   <tags>
     <tag>mgmt:hidden</tag>
   </tags>
   <develStage>stable</develStage>
   <compatibility>
-    <ver>5.54</ver>
+    <ver>5.55</ver>
   </compatibility>
   <mixins>
     <mixin>setting-php@1.0.0</mixin>
diff --git a/civicrm/ext/sequentialcreditnotes/sequentialcreditnotes.php b/civicrm/ext/sequentialcreditnotes/sequentialcreditnotes.php
index efb3d3cd380a219c1c79c5e1ccc236a50a08a191..b7ba79d7dce55077c43eeb9ddf71cae1ed058bcb 100644
--- a/civicrm/ext/sequentialcreditnotes/sequentialcreditnotes.php
+++ b/civicrm/ext/sequentialcreditnotes/sequentialcreditnotes.php
@@ -15,8 +15,7 @@ use Civi\Api4\Contribution;
  * @param int|null $id
  * @param array $params
  *
- * @throws \CiviCRM_API3_Exception
- * @throws \API_Exception
+ * @throws \CRM_Core_Exception
  */
 function sequentialcreditnotes_civicrm_pre($op, $objectName, $id, &$params) {
   if ($objectName === 'Contribution' && !empty($params['contribution_status_id'])) {
@@ -41,7 +40,7 @@ function sequentialcreditnotes_civicrm_pre($op, $objectName, $id, &$params) {
  * @return string
  *   Credit Note Id.
  *
- * @throws \CiviCRM_API3_Exception
+ * @throws \CRM_Core_Exception
  */
 function sequentialcreditnotes_create_credit_note_id() {
 
diff --git a/civicrm/ext/sequentialcreditnotes/tests/phpunit/SequentialcreditnotesTest.php b/civicrm/ext/sequentialcreditnotes/tests/phpunit/SequentialcreditnotesTest.php
index 58bda954fdbc3bb39a6a47cbc8b1e23967621c9d..d33bc07eb584d324d754528bc342ec1c06c0ba14 100644
--- a/civicrm/ext/sequentialcreditnotes/tests/phpunit/SequentialcreditnotesTest.php
+++ b/civicrm/ext/sequentialcreditnotes/tests/phpunit/SequentialcreditnotesTest.php
@@ -43,7 +43,6 @@ class SequentialcreditnotesTest extends \PHPUnit\Framework\TestCase implements H
    * createCreditNoteId();
    *
    * @throws \CRM_Core_Exception
-   * @throws \CiviCRM_API3_Exception
    */
   public function testCreateCreditNoteId(): void {
     $this->_apiversion = 4;
diff --git a/civicrm/packages/IDS/Event.php b/civicrm/packages/IDS/Event.php
index 547d69c0a1d2d4c9fa0cba87b29ed8b4de41e4c2..4604fc84f594a79db6d1634a7618822dce5566e2 100644
--- a/civicrm/packages/IDS/Event.php
+++ b/civicrm/packages/IDS/Event.php
@@ -208,7 +208,7 @@ class IDS_Event implements Countable, IteratorAggregate
      *
      * @return integer
      */
-    public function count() 
+    public function count(): int
     {
         return count($this->getFilters());
     }
@@ -220,7 +220,7 @@ class IDS_Event implements Countable, IteratorAggregate
      *
      * @return ArrayObject the filter collection
      */
-    public function getIterator() 
+    public function getIterator(): Iterator 
     {
         return new ArrayObject($this->getFilters());
     }
diff --git a/civicrm/release-notes.md b/civicrm/release-notes.md
index 0d097d70c148f45d0d193410889dce62dcbced41..762a1d9d6bd896261b4c04d8bc5422504e6d29ba 100644
--- a/civicrm/release-notes.md
+++ b/civicrm/release-notes.md
@@ -15,6 +15,17 @@ Other resources for identifying changes are:
     * https://github.com/civicrm/civicrm-joomla
     * https://github.com/civicrm/civicrm-wordpress
 
+## CiviCRM 5.55.0
+
+Released November 2, 2022
+
+- **[Synopsis](release-notes/5.55.0.md#synopsis)**
+- **[Features](release-notes/5.55.0.md#features)**
+- **[Bugs resolved](release-notes/5.55.0.md#bugs)**
+- **[Miscellany](release-notes/5.55.0.md#misc)**
+- **[Credits](release-notes/5.55.0.md#credits)**
+- **[Feedback](release-notes/5.55.0.md#feedback)**
+
 ## CiviCRM 5.54.1
 
 Released October 28, 2022
@@ -46,24 +57,6 @@ Released September 7, 2022
 - **[Credits](release-notes/5.53.0.md#credits)**
 - **[Feedback](release-notes/5.53.0.md#feedback)**
 
-## CiviCRM 5.52.2
-
-Released August 12, 2022
-
-- **[Synopsis](release-notes/5.52.2.md#synopsis)**
-- **[Bugs resolved](release-notes/5.52.2.md#bugs)**
-- **[Credits](release-notes/5.52.2.md#credits)**
-- **[Feedback](release-notes/5.52.2.md#feedback)**
-
-## CiviCRM 5.52.1
-
-Released August 9, 2022
-
-- **[Synopsis](release-notes/5.52.1.md#synopsis)**
-- **[Bugs resolved](release-notes/5.52.1.md#bugs)**
-- **[Credits](release-notes/5.52.1.md#credits)**
-- **[Feedback](release-notes/5.52.1.md#feedback)**
-
 ## CiviCRM 5.52.0
 
 Released August 3, 2022
@@ -75,33 +68,6 @@ Released August 3, 2022
 - **[Credits](release-notes/5.52.0.md#credits)**
 - **[Feedback](release-notes/5.52.0.md#feedback)**
 
-## CiviCRM 5.51.3
-
-Released August 3, 2022
-
-- **[Synopsis](release-notes/5.51.3.md#synopsis)**
-- **[Bugs resolved](release-notes/5.51.3.md#bugs)**
-- **[Credits](release-notes/5.51.3.md#credits)**
-- **[Feedback](release-notes/5.51.3.md#feedback)**
-
-## CiviCRM 5.51.2
-
-Released August 2, 2022
-
-- **[Synopsis](release-notes/5.51.2.md#synopsis)**
-- **[Bugs resolved](release-notes/5.51.2.md#bugs)**
-- **[Credits](release-notes/5.51.2.md#credits)**
-- **[Feedback](release-notes/5.51.2.md#feedback)**
-
-## CiviCRM 5.51.1
-
-Released July 11, 2022
-
-- **[Synopsis](release-notes/5.51.1.md#synopsis)**
-- **[Bugs resolved](release-notes/5.51.1.md#bugs)**
-- **[Credits](release-notes/5.51.1.md#credits)**
-- **[Feedback](release-notes/5.51.1.md#feedback)**
-
 ## CiviCRM 5.51.0
 
 Released July 6, 2022
diff --git a/civicrm/release-notes/5.18.0.md b/civicrm/release-notes/5.18.0.md
index 03ff156b4f0e9148a876ec512a8d636fbd57052a..a8ce0ed811f357ba5ec0c7312bd87cd211864f30 100644
--- a/civicrm/release-notes/5.18.0.md
+++ b/civicrm/release-notes/5.18.0.md
@@ -259,7 +259,7 @@ Released October 2, 2019
   ([dev/core#1188](https://lab.civicrm.org/dev/core/issues/1188):
   [15043](https://github.com/civicrm/civicrm-core/pull/15043))**
 
-  Ensures that the Psalm Autoloader can find `CiviCRM_API3_Exception`.
+  Ensures that the Psalm Autoloader can find `CRM_Core_Exception`.
 
 - **File attachment uploads - pptx issue
   ([dev/core#1190](https://lab.civicrm.org/dev/core/issues/1190):
diff --git a/civicrm/release-notes/5.51.1.md b/civicrm/release-notes/5.51.1.md
deleted file mode 100644
index eca6cf87c0661014924610d07a140b4aad4629ce..0000000000000000000000000000000000000000
--- a/civicrm/release-notes/5.51.1.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# CiviCRM 5.51.1
-
-Released July 11, 2022
-
-- **[Synopsis](#synopsis)**
-- **[Bugs resolved](#bugs)**
-- **[Credits](#credits)**
-- **[Feedback](#feedback)**
-
-## <a name="synopsis"></a>Synopsis
-
-| *Does this version...?*                                         |          |
-| --------------------------------------------------------------- | -------- |
-| Change the database schema?                                     | no       |
-| Alter the API?                                                  | no       |
-| Require attention to configuration options?                     | no       |
-| Fix problems installing or upgrading to a previous version?     | no       |
-| Introduce features?                                             | no       |
-| **Fix bugs?**                                                   | **yes**  |
-
-## <a name="bugs"></a>Bugs resolved
-
-* **_CiviContribute_: Contacts with `access CiviContribute` can no longer view contributions ([dev/core#3725](https://lab.civicrm.org/dev/core/-/issues/3725): [#23965](https://github.com/civicrm/civicrm-core/pull/23965))**
-* **_Importer_: Fails when handling "Note" field ([dev/core#3726](https://lab.civicrm.org/dev/core/-/issues/3726): [#23968](https://github.com/civicrm/civicrm-core/pull/23968))**
-* **_PHPUnit 8.x_: Fix compatibility with current PHPUnix 8.x. Restore test matrix. ([#23988](https://github.com/civicrm/civicrm-core/pull/23988))**
-
-## <a name="credits"></a>Credits
-
-This release was developed by the following authors and reviewers:
-
-Wikimedia Foundation - Eileen McNaughton; Oxfam Germany - Thomas Schüttler; Megaphone
-Technology Consulting - Jon Goldberg; MC3 - Graham Mitchell; JMA Consulting - Seamus Lee;
-Dave D; CiviCRM - Tim Otten
-
-## <a name="feedback"></a>Feedback
-
-These release notes are edited by Tim Otten and Andie Hunt.  If you'd like to
-provide feedback on them, please login to https://chat.civicrm.org/civicrm and
-contact `@agh1`.
diff --git a/civicrm/release-notes/5.51.2.md b/civicrm/release-notes/5.51.2.md
deleted file mode 100644
index ed28aedf2e3b6ec2a41defc5985750974ee1c1be..0000000000000000000000000000000000000000
--- a/civicrm/release-notes/5.51.2.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# CiviCRM 5.51.2
-
-Released August 2, 2022
-
-- **[Synopsis](#synopsis)**
-- **[Bugs resolved](#bugs)**
-- **[Credits](#credits)**
-- **[Feedback](#feedback)**
-
-## <a name="synopsis"></a>Synopsis
-
-| *Does this version...?*                                         |          |
-| --------------------------------------------------------------- | -------- |
-| Change the database schema?                                     | no       |
-| Alter the API?                                                  | no       |
-| Require attention to configuration options?                     | no       |
-| **Fix problems installing or upgrading to a previous version?** | **yes**  |
-| Introduce features?                                             | no       |
-| **Fix bugs?**                                                   | **yes**  |
-
-## <a name="bugs"></a>Bugs resolved
-
-* **_DOMPDF_: Upgrade to 2.0 ([#24038](https://github.com/civicrm/civicrm-core/pull/24038))**
-
-  This applies a prophylactic security update. It is not believed to impact the security of CiviCRM deployments.
-
-* **_Geocoding_: hook_civicrm_geocoderFormat does not alter address components ([dev/core#3756](https://lab.civicrm.org/dev/core/-/issues/3756): [#24067](https://github.com/civicrm/civicrm-core/pull/24067))**
-* **_Scheduled Reminders_: Some tokens defined by extensions may not evaluate ([#24115](https://github.com/civicrm/civicrm-core/pull/24115))**
-* **_Upgrader_: Show additional notice about running extension upgrades ([#24040](https://github.com/civicrm/civicrm-core/pull/24040))**
-
-## <a name="credits"></a>Credits
-
-This release was developed by the following authors and reviewers:
-
-Wikimedia Foundation - Eileen McNaughton; Tadpole Collective - Kevin Cristiano; Joinery -
-Allen Shaw; JMA Consulting - Seamus Lee; Dave D; CiviCRM - Tim Otten, Coleman Watts
-
-## <a name="feedback"></a>Feedback
-
-These release notes are edited by Tim Otten and Andie Hunt.  If you'd like to
-provide feedback on them, please login to https://chat.civicrm.org/civicrm and
-contact `@agh1`.
diff --git a/civicrm/release-notes/5.51.3.md b/civicrm/release-notes/5.51.3.md
deleted file mode 100644
index eac02154a890296e7130a15bd5e0c4a8b85e29d9..0000000000000000000000000000000000000000
--- a/civicrm/release-notes/5.51.3.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# CiviCRM 5.51.3
-
-Released August 3, 2022
-
-- **[Synopsis](#synopsis)**
-- **[Bugs resolved](#bugs)**
-- **[Credits](#credits)**
-- **[Feedback](#feedback)**
-
-## <a name="synopsis"></a>Synopsis
-
-| *Does this version...?*                                         |          |
-| --------------------------------------------------------------- | -------- |
-| Change the database schema?                                     | no       |
-| Alter the API?                                                  | no       |
-| Require attention to configuration options?                     | no       |
-| Fix problems installing or upgrading to a previous version?     | no       |
-| Introduce features?                                             | no       |
-| **Fix bugs?**                                                   | **yes**  |
-
-## <a name="bugs"></a>Bugs resolved
-
-* **_CiviContribute_: Cannot submit credit cards via backend form (on certain configurations) ([dev/core#3774](https://lab.civicrm.org/dev/core/-/issues/3774): [#24144](https://github.com/civicrm/civicrm-core/pull/24144))**
-* **_Importer_: Increase size of queue batches ([#24152](https://github.com/civicrm/civicrm-core/pull/24152))**
-
-## <a name="credits"></a>Credits
-
-This release was developed by the following authors and reviewers:
-
-Wikimedia Foundation - Eileen McNaughton; Megaphone Technology Consulting - Jon Goldberg;
-JMA Consulting - Seamus Lee; CiviCRM - Tim Otten; Andy Burns
-
-## <a name="feedback"></a>Feedback
-
-These release notes are edited by Tim Otten and Andie Hunt.  If you'd like to
-provide feedback on them, please login to https://chat.civicrm.org/civicrm and
-contact `@agh1`.
diff --git a/civicrm/release-notes/5.52.1.md b/civicrm/release-notes/5.52.1.md
deleted file mode 100644
index 542648befed3ae3df2209783589aa26c776fd09d..0000000000000000000000000000000000000000
--- a/civicrm/release-notes/5.52.1.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# CiviCRM 5.52.1
-
-Released August 9, 2022
-
-- **[Synopsis](#synopsis)**
-- **[Bugs resolved](#bugs)**
-- **[Credits](#credits)**
-- **[Feedback](#feedback)**
-
-## <a name="synopsis"></a>Synopsis
-
-| *Does this version...?*                                         |          |
-| --------------------------------------------------------------- | -------- |
-| Change the database schema?                                     | no       |
-| Alter the API?                                                  | no       |
-| Require attention to configuration options?                     | no       |
-| **Fix problems installing or upgrading to a previous version?** | **yes**  |
-| Introduce features?                                             | no       |
-| **Fix bugs?**                                                   | **yes**  |
-
-## <a name="bugs"></a>Bugs resolved
-
-* **_Afform_: Update existing email, phone, address correctly. Prevent deletion of others. ([#24172](https://github.com/civicrm/civicrm-core/pull/24172))**
-* **_Compatibility_: Refine Symfony requirements for better compatibility ([#24171](https://github.com/civicrm/civicrm-core/pull/24171))**
-
-  Specifically, this resolves a new conflict with WordPress plugin `better-wp-security`.
-
-* **_Importer_: Incorrect matching on "External ID"/"Contact ID" ([dev/core#3784](https://lab.civicrm.org/dev/core/-/issues/3784), [dev/core#3786](https://lab.civicrm.org/dev/core/-/issues/3786): [#24166](https://github.com/civicrm/civicrm-core/pull/24166/), [#24153](https://github.com/civicrm/civicrm-core/pull/24153))**
-* **_Search Kit_: Fix viewing search display for anonymous user ([#24180](https://github.com/civicrm/civicrm-core/pull/24180))**
-* **_crmUi_: Make it possible to pass `tabSetOptions` again ([#24193](https://github.com/civicrm/civicrm-core/pull/24193))**
-
-## <a name="credits"></a>Credits
-
-This release was developed by the following authors and reviewers:
-
-Wikimedia Foundation - Eileen McNaughton; Tadpole Collective - Kevin Cristiano; Megaphone
-Technology Consulting - Jon Goldberg; Lemniscus - Noah Miller; JMA Consulting - Seamus
-Lee; Dave D; CiviCRM - Tim Otten, Coleman Watts; Agileware - Francis Whittle
-
-## <a name="feedback"></a>Feedback
-
-These release notes are edited by Tim Otten and Andie Hunt.  If you'd like to
-provide feedback on them, please login to https://chat.civicrm.org/civicrm and
-contact `@agh1`.
diff --git a/civicrm/release-notes/5.52.2.md b/civicrm/release-notes/5.52.2.md
deleted file mode 100644
index c4a12957888bb2328762ccf0a918e1c88e65ac9e..0000000000000000000000000000000000000000
--- a/civicrm/release-notes/5.52.2.md
+++ /dev/null
@@ -1,41 +0,0 @@
-# CiviCRM 5.52.2
-
-Released August 12, 2022
-
-- **[Synopsis](#synopsis)**
-- **[Bugs resolved](#bugs)**
-- **[Credits](#credits)**
-- **[Feedback](#feedback)**
-
-## <a name="synopsis"></a>Synopsis
-
-| *Does this version...?*                                         |          |
-| --------------------------------------------------------------- | -------- |
-| **Change the database schema?**                                 | **yes**  |
-| Alter the API?                                                  | no       |
-| Require attention to configuration options?                     | no       |
-| **Fix problems installing or upgrading to a previous version?** | **yes**  |
-| Introduce features?                                             | no       |
-| **Fix bugs?**                                                   | **yes**  |
-
-## <a name="bugs"></a>Bugs resolved
-
-* **_CiviMail_: Incorrect validation for fields under "Responses" and "Publication" ([dev/core#3797](https://lab.civicrm.org/dev/core/-/issues/3797): [#24224](https://github.com/civicrm/civicrm-core/pull/24224))**
-* **_Custom Data_: Editing custom-data settings can incorrectly reset target-entity ([dev/core#3794](https://lab.civicrm.org/dev/core/-/issues/3794): [#24220](https://github.com/civicrm/civicrm-core/pull/24220))**
-* **_Dashboard_: Newly configured dashlets are overzealously enabled on existing dashboards. ([dev/core#3799](https://lab.civicrm.org/dev/core/-/issues/3799): [#24238](https://github.com/civicrm/civicrm-core/pull/24238))**
-* **_Importer_: Summary page does not display for some users after running imports in CiviContribute, CiviEvent, CiviMember ([dev/core#3793](https://lab.civicrm.org/dev/core/-/issues/3793): [#24206](https://github.com/civicrm/civicrm-core/pull/24206))**
-* **_Zeta Components_: Update "mail" package to v1.9.3. Mitigate upgrade conflicts on Drupal 9. ([#24198](https://github.com/civicrm/civicrm-core/pull/24198), [#24233](https://github.com/civicrm/civicrm-core/pull/24233))**
-
-## <a name="credits"></a>Credits
-
-This release was developed by the following authors and reviewers:
-
-Wikimedia Foundation - Eileen McNaughton; savionlee; Megaphone Technology Consulting - Jon
-Goldberg, Brienne Kordis; JMA Consulting - Seamus Lee; Dave D; CiviCRM - Tim Otten,
-Coleman Watts; Agileware - Justin Freeman
-
-## <a name="feedback"></a>Feedback
-
-These release notes are edited by Tim Otten and Andie Hunt.  If you'd like to
-provide feedback on them, please login to https://chat.civicrm.org/civicrm and
-contact `@agh1`.
diff --git a/civicrm/release-notes/5.54.0.md b/civicrm/release-notes/5.54.0.md
index 68175bdf44ae227604e6610ab0aebdb4ec939c11..87355ec3dca319b08a747add360528878c844a74 100644
--- a/civicrm/release-notes/5.54.0.md
+++ b/civicrm/release-notes/5.54.0.md
@@ -168,11 +168,6 @@ Released October 5, 2022
 
   Extends the types of activities in the sample data
 
-- **Bump dompdf to 2.0.1
-  ([24656](https://github.com/civicrm/civicrm-core/pull/24656))**
-
-  This includes the new version of the dompdf library.
-
 ### CiviCase
 
 - **Afform - support opening new case
@@ -387,8 +382,7 @@ Released October 5, 2022
   ([24588](https://github.com/civicrm/civicrm-core/pull/24588))**
 
 - **RecentItems - Fix inconsistent option values between upgrader & installer
-  ([24632](https://github.com/civicrm/civicrm-core/pull/24632) and
-  [24653](https://github.com/civicrm/civicrm-core/pull/24653))**
+  ([24632](https://github.com/civicrm/civicrm-core/pull/24632))**
 
 - **Put back exception during class scanning
   ([24601](https://github.com/civicrm/civicrm-core/pull/24601))**
@@ -605,11 +599,6 @@ Released October 5, 2022
 - **Stop PHP notice when accessing invalid event ID
   ([24406](https://github.com/civicrm/civicrm-core/pull/24406))**
 
-- **Error from CRM_Event_ICalendar->gCalRedirect "Expected one Event, found 0"
-  for past events
-  ([dev/core#3873](https://lab.civicrm.org/dev/core/-/issues/3873):
-  [24647](https://github.com/civicrm/civicrm-core/pull/24647))
-
 ### CiviMail
 
 - **Search Kit: CiviMail search action fails for non-administrators
diff --git a/civicrm/release-notes/5.55.0.md b/civicrm/release-notes/5.55.0.md
new file mode 100644
index 0000000000000000000000000000000000000000..40b83d48a08fa8be6e1eef98b7ad8172f8c628a5
--- /dev/null
+++ b/civicrm/release-notes/5.55.0.md
@@ -0,0 +1,482 @@
+# CiviCRM 5.55.0
+
+Released November 2, 2022
+
+- **[Synopsis](#synopsis)**
+- **[Features](#features)**
+- **[Bugs resolved](#bugs)**
+- **[Miscellany](#misc)**
+- **[Credits](#credits)**
+- **[Feedback](#feedback)**
+
+## <a name="synopsis"></a>Synopsis
+
+| *Does this version...?*                                         |         |
+|:--------------------------------------------------------------- |:-------:|
+| Fix security vulnerabilities?                                   |   no    |
+| **Change the database schema?**                                 | **yes** |
+| **Alter the API?**                                              | **yes** |
+| Require attention to configuration options?                     |   no    |
+| Fix problems installing or upgrading to a previous version?     | **yes** |
+| **Introduce features?**                                         | **yes** |
+| **Fix bugs?**                                                   | **yes** |
+
+## <a name="features"></a>Features
+
+### Core CiviCRM
+
+- **APIv4 - Add Contact::mergeDuplicates action
+  ([24542](https://github.com/civicrm/civicrm-core/pull/24542))**
+
+  Adds a mergeDuplicates APIv4 action, for parity with APIv3.
+
+- **SearchKit: Add ability to search and filter by active periods
+  (Work Towards [dev/core#3878](https://lab.civicrm.org/dev/core/-/issues/3878):
+  [24688](https://github.com/civicrm/civicrm-core/pull/24688))**
+
+  Makes it possible to join on related contacts limited by current relationship
+  in SearchKit.
+
+- **Add display only field support for formbuilder
+  ([dev/core#3779](https://lab.civicrm.org/dev/core/-/issues/3779):
+  [24158](https://github.com/civicrm/civicrm-core/pull/24158))**
+
+  Adds the ability to set a field as display only in formbuilder.
+
+- **Afform - Store all values in submission record
+  ([24264](https://github.com/civicrm/civicrm-core/pull/24264))**
+
+  Stores all submitted values in the submission record, including saved ids.
+  This allows values to be retrieved from the submission for debugging or
+  display purposes.
+
+- **AdminUi Extension - Translate strings
+  ([24553](https://github.com/civicrm/civicrm-core/pull/24553))**
+
+  Ensures strings are translated in the AdminUI extension.
+
+- **Add icon for Country entity
+  ([24686](https://github.com/civicrm/civicrm-core/pull/24686))**
+
+  Adds an icon and description for Country.
+
+- **.htaccess support for OpenLiteSpeed webservers.
+  ([24666](https://github.com/civicrm/civicrm-core/pull/24666))**
+
+  Makes rewrite rules compatible with OpenLiteSpeed webservers.
+
+- **Autoload services based on interfaces/annotations. Convert APIv4 services.
+  ([24276](https://github.com/civicrm/civicrm-core/pull/24276))**
+
+  Allows developers to auto-register hook-listeners, event-subscribers, and
+  container-services and converts APIv4 to do so.
+
+### CiviContribute
+
+- **Simplify description text for Display amounts on price fields, add help
+  text for Description on price options
+  ([24630](https://github.com/civicrm/civicrm-core/pull/24630))**
+
+  Improves user experience when creating price fields by adding more help text.
+
+### CiviEvent
+
+- **Afform - basic support for creating event participant
+  ([24420](https://github.com/civicrm/civicrm-core/pull/24420))**
+
+  Basic support for adding an unpaid participant thru Afform.
+
+### WordPress Integration
+
+- **Add system check for updated clean URL settings
+  ([dev/core#3839](https://lab.civicrm.org/dev/core/-/issues/3839):
+  [24477](https://github.com/civicrm/civicrm-core/pull/24477))**
+
+  Creates a system check warning for Wordpress users if civicrm.settings.php
+  does not include up-to-date clean URL settings.
+
+## <a name="bugs"></a>Bugs resolved
+
+### Core CiviCRM
+
+- **Importing to checkbox field updates incorrectly
+  ([dev/core#3850](https://lab.civicrm.org/dev/core/-/issues/3850):
+  [24848](https://github.com/civicrm/civicrm-core/pull/24848))**
+
+- **Improve scheduled reminder UI for selection of event specific date or time
+  before event ([dev/core#2535 ](dev/core#2535):
+  [24655](https://github.com/civicrm/civicrm-core/pull/24655))**
+
+  Prevents users from saving a scheduled reminder that has both an absolute and
+  relative date set, resulting in the relative date being ignored.
+
+- **Changing report rows per page doesn't change rows per page, but limits what
+  is displayed.
+  ([dev/core#3825](https://lab.civicrm.org/dev/core/-/issues/3825):
+  [24616](https://github.com/civicrm/civicrm-core/pull/24616))**
+
+- **More useful error message on missing custom field
+  ([dev/core#3847](https://lab.civicrm.org/dev/core/-/issues/3847):
+  [24522](https://github.com/civicrm/civicrm-core/pull/24522))**
+
+- **Bootstrap classloading list incomplete (or something) when classscanner
+  runs during extension install
+  ([dev/core#3852](https://lab.civicrm.org/dev/core/-/issues/3852):
+  [24549](https://github.com/civicrm/civicrm-core/pull/24549))**
+
+- **Fix custom data view for case of type Money
+  ([dev/core#3876](https://lab.civicrm.org/dev/core/-/issues/3876):
+  [24640](https://github.com/civicrm/civicrm-core/pull/24640))**
+
+- **APIv4 - GroupContact - Does not set actual time part in subscription history
+  date ([dev/core#3877](https://lab.civicrm.org/dev/core/-/issues/3877):
+  [24643](https://github.com/civicrm/civicrm-core/pull/24643))**
+
+- **Can no longer install civirules
+  ([dev/core#3853](https://lab.civicrm.org/dev/core/-/issues/3853):
+  [24550](https://github.com/civicrm/civicrm-core/pull/24550))**
+
+- **admin-ui extension: contact types doesn't work  
+  ([dev/core#3854](https://lab.civicrm.org/dev/core/-/issues/3854):
+  [24557](https://github.com/civicrm/civicrm-core/pull/24557))**
+
+  Fixes the "Administer Contact Types" screen for sites using the admin ui
+  extension.
+
+- **Handle all from and to relative dates in API4
+  ([24663](https://github.com/civicrm/civicrm-core/pull/24663))**
+
+  Ensures APIv4 works with relative date ranges with out set end dates.
+
+- **Migrate JobLog page to API4
+  ([24606](https://github.com/civicrm/civicrm-core/pull/24606))**
+
+  Migrates JobLog page to API4 to prevent undefined array keys.
+
+- **Sync api & form layer permissions for jobLog
+  ([24619](https://github.com/civicrm/civicrm-core/pull/24619))**
+
+- **Crash when trying to retrieve a completed queue
+  ([24678](https://github.com/civicrm/civicrm-core/pull/24678))**
+
+- **Import summary field fix
+  ([24711](https://github.com/civicrm/civicrm-core/pull/24711))**
+
+- **Fix accidental revert of import batch size
+  ([24772](https://github.com/civicrm/civicrm-core/pull/24772))**
+
+- **Fix language negotiation exception to be standard
+  ([24764](https://github.com/civicrm/civicrm-core/pull/24764))**
+
+- **Ensure that class-index is up-to-date after toggling extensions (A)
+  ([24743](https://github.com/civicrm/civicrm-core/pull/24743))**
+
+- **Enotice & markup fixes to GeoCode, Postal blocks
+  ([24334](https://github.com/civicrm/civicrm-core/pull/24334))**
+
+- **prevent the get property from non-object error
+  ([24667](https://github.com/civicrm/civicrm-core/pull/24667))**
+
+- **Ensure smarty variable editSmartGroupURL is always defined on group edit
+  ([24613](https://github.com/civicrm/civicrm-core/pull/24613))**
+
+- **Use array_key_exists to avoid warning on report GroupBy.tpl
+  template ([24631](https://github.com/civicrm/civicrm-core/pull/24631))**
+
+- **Fix smarty e-notices on group settings form
+  ([24594](https://github.com/civicrm/civicrm-core/pull/24594))**
+
+- **Remove stray character in income report
+  ([24558](https://github.com/civicrm/civicrm-core/pull/24558))**
+
+- **demoqueue - fix job_type parameter
+  ([24668](https://github.com/civicrm/civicrm-core/pull/24668))**
+
+- **Fix smarty notices on localization page
+  ([24596](https://github.com/civicrm/civicrm-core/pull/24596))**
+
+- **Migrate single note view to API4, avoid PHP warnings
+  ([24609](https://github.com/civicrm/civicrm-core/pull/24609))**
+
+- **APIv4 - Fix Get operation to load options that depend on other options
+  ([24600](https://github.com/civicrm/civicrm-core/pull/24600))**
+
+- **Handle unexpected API result in JobManager (Avoid PHP warning)
+  ([24605](https://github.com/civicrm/civicrm-core/pull/24605))**
+
+- **Ensure children key is always set in tag buildTree
+  ([24607](https://github.com/civicrm/civicrm-core/pull/24607))**
+
+- **Add missing th element to note.tpl
+  ([24608](https://github.com/civicrm/civicrm-core/pull/24608))**
+
+- **Avoid PHP notices in Add Contacts to Household task
+  ([24565](https://github.com/civicrm/civicrm-core/pull/24565))**
+
+- **Add psr0 to afform extensions
+  ([24713](https://github.com/civicrm/civicrm-core/pull/24713))**
+
+- **SearchKit display results does not seem to respect the contribution currency
+  ([dev/core#3428](https://lab.civicrm.org/dev/core/-/issues/3428):
+  [24524](https://github.com/civicrm/civicrm-core/pull/24524))**
+
+- **Search Kit Tokens only returns first value for multi-selects
+  ([dev/core#3745](https://lab.civicrm.org/dev/core/-/issues/3745):
+  [24393](https://github.com/civicrm/civicrm-core/pull/24393))**
+
+- **SearchKit - Don't show custom fields from disabled field groups
+  ([24687](https://github.com/civicrm/civicrm-core/pull/24687))**
+
+- **Fix missing links in SearchKit results
+  ([24882](https://github.com/civicrm/civicrm-core/pull/24882))**
+
+- **Return success from cleanup job
+  ([24604](https://github.com/civicrm/civicrm-core/pull/24604))**
+
+- **No longer install the Contribution Cancel Actions, CiviCRM Core Extension
+  by default on new CiviCRM sites
+  ([22686](https://github.com/civicrm/civicrm-core/pull/22686) and
+  [24578](https://github.com/civicrm/civicrm-core/pull/24578))**
+
+  Work towards deprecating the Contribution Cancel Actions extension by no
+  longer setting it to default to installed on new sites.
+
+- **Code Cleanup - combines `CRM_Core_Exception`, `civicrm_api3_Exception` and
+  `ApiException` into one class.
+  ([24531](https://github.com/civicrm/civicrm-core/pull/24531),
+  [24535](https://github.com/civicrm/civicrm-core/pull/24535),
+  [24537](https://github.com/civicrm/civicrm-core/pull/24537),
+  [24534](https://github.com/civicrm/civicrm-core/pull/24534) and
+  [24536](https://github.com/civicrm/civicrm-core/pull/24536))**
+
+- **Wording typo in pledge reminder message template
+  ([24527](https://github.com/civicrm/civicrm-core/pull/24527))**
+
+- **CiviCRM fatal error on enabling `civiimport`
+  ([dev/core#3941](https://lab.civicrm.org/dev/core/-/issues/3941):
+  [24807](https://github.com/civicrm/civicrm-core/pull/24807) and
+  [24874](https://github.com/civicrm/civicrm-core/pull/24874))**
+
+### CiviContribute
+
+- **Stop adding 'In Progress' and 'Overdue' statuses to
+  civicrm_contribution.contribution_status_id option group
+  ([dev/financial#201](https://lab.civicrm.org/dev/financial/-/issues/201):
+  [23074](https://github.com/civicrm/civicrm-core/pull/23074))**
+
+  Do not add pledge statuses to Contribution statuses.
+
+- **Import contributions: Contact matching by email no longer available
+  ([dev/core#3939](https://lab.civicrm.org/dev/core/-/issues/3939):
+  [24838](https://github.com/civicrm/civicrm-core/pull/24838) and
+  [24871](https://github.com/civicrm/civicrm-core/pull/24871))**
+
+- **Including Soft Credits causes Contribution Import to fail
+  ([dev/core#3879](https://lab.civicrm.org/dev/core/-/issues/3879):
+  [24858](https://github.com/civicrm/civicrm-core/pull/24858))**
+
+- **Price set pre and post help display is inconsistent
+  ([dev/core#3870](https://lab.civicrm.org/dev/core/-/issues/3870):
+  [24624](https://github.com/civicrm/civicrm-core/pull/24624))**
+
+- **Fix css for price fields of html type Select with long labels
+  ([(dev/core#3865](https://lab.civicrm.org/dev/core/-/issues/3865):
+  [24598](https://github.com/civicrm/civicrm-core/pull/24598))**
+
+- **Show billing address on Edit contribution screen as well
+  ([dev/core#3732](https://lab.civicrm.org/dev/core/-/issues/3732):
+  [24009](https://github.com/civicrm/civicrm-core/pull/24009))**
+
+- **Only public custom groups should be shown in offline contribution receipts
+  ([dev/core#3857](https://lab.civicrm.org/dev/core/-/issues/3857):
+  [24645](https://github.com/civicrm/civicrm-core/pull/24645))**
+
+- **Fix paypal subscription 'things don't seem to be working at the moment'
+  if frequency_interval not specified
+  ([24614](https://github.com/civicrm/civicrm-core/pull/24614))**
+
+- **Don't repeat email twice on the contribution confirm/thank-you pages
+  ([24564](https://github.com/civicrm/civicrm-core/pull/24564))**
+
+- **Remove call to deprecated `CRM_Contribute_PseudoConstant::contributionStatus`
+  ([24528](https://github.com/civicrm/civicrm-core/pull/24528))**
+
+- **Remove usage of result from deprecated contributionStatus
+  ([24540](https://github.com/civicrm/civicrm-core/pull/24540))**
+
+- **[REF] Fix importing contributions with a campaign id rather than a title
+  ([24815](https://github.com/civicrm/civicrm-core/pull/24815))**
+
+### CiviEvent
+
+- **Event badges, json may be broken (was CiviEvent - Date tokens may be
+  misformatted)
+  ([dev/core#3952](https://lab.civicrm.org/dev/core/-/issues/3952):
+  [24872](https://github.com/civicrm/civicrm-core/pull/24872))**
+
+  This upgrade step resolves a problem where the `"` character in labels and
+  badges was not being properly escaped for json purposes on a previous upgrade
+  process.
+
+- **Event participant import fails, Cannot call constructor
+  ([dev/core#3932](https://lab.civicrm.org/dev/core/-/issues/3932):
+  [24790](https://github.com/civicrm/civicrm-core/pull/24790))**
+
+- **Barcodes in event badges missing data after updating to CiviCRM 5.45.7
+  ([dev/core#3829](https://lab.civicrm.org/dev/core/-/issues/3829):
+  [24701](https://github.com/civicrm/civicrm-core/pull/24701) and
+  [24695](https://github.com/civicrm/civicrm-core/pull/24695))**
+
+### CiviMail
+
+- **Stop PHP notice on Find Mailings page
+  ([24560](https://github.com/civicrm/civicrm-core/pull/24560))**
+
+### Drupal Integration
+
+- **Change message so it doesn't say Drupal8 on Drupal9 site
+  ([dev/drupal#174](https://lab.civicrm.org/dev/drupal/-/issues/174):
+  [24561](https://github.com/civicrm/civicrm-core/pull/24561))**
+
+## <a name="misc"></a>Miscellany
+
+- **Remove call to deprecated function
+  `CRM_Contribute_PseudoConstant::contributionStatus`
+  ([24544](https://github.com/civicrm/civicrm-core/pull/24544))**
+
+- **Remove call to deprecated
+  `CRM_Contribute_PseudoConstant::contributionStatus`
+  ([24575](https://github.com/civicrm/civicrm-core/pull/24575))**
+
+- **Remove unused variable
+  ([24563](https://github.com/civicrm/civicrm-core/pull/24563))**
+
+- **Remove `CRM_Core_Pseudoconstant::pcpStatus()` function after two-year noisy
+  deprecation ([24591](https://github.com/civicrm/civicrm-core/pull/24591))**
+
+- **Remove long-deprecated function
+  ([24620](https://github.com/civicrm/civicrm-core/pull/24620))**
+
+- **contribution template clean up for reports
+  ([24556](https://github.com/civicrm/civicrm-core/pull/24556))**
+
+- **case template clean up for reports
+  ([24541](https://github.com/civicrm/civicrm-core/pull/24541))**
+
+- **pledge template clean for reports
+  ([24519](https://github.com/civicrm/civicrm-core/pull/24519))**
+
+- **event report template clean up
+  ([24644](https://github.com/civicrm/civicrm-core/pull/24644))**
+
+- **clean up more report templates
+  ([24642](https://github.com/civicrm/civicrm-core/pull/24642))**
+
+- **Code cleanup - remove unused fn call, prefer strict comparision
+  ([24530](https://github.com/civicrm/civicrm-core/pull/24530))**
+
+- **Stop using private static for tests
+  ([24680](https://github.com/civicrm/civicrm-core/pull/24680))**
+
+- **Re run regen
+  ([24533](https://github.com/civicrm/civicrm-core/pull/24533))**
+
+- **Regen update
+  ([24677](https://github.com/civicrm/civicrm-core/pull/24677))**
+
+- **Avoid confusion between contributors and contributor-key
+  ([24670](https://github.com/civicrm/civicrm-core/pull/24670))**
+
+- **add as a contributor
+  ([24659](https://github.com/civicrm/civicrm-core/pull/24659))**
+
+- **add as a contributor
+  ([24673](https://github.com/civicrm/civicrm-core/pull/24673))**
+
+- **Add contributor info for release notes
+  ([24669](https://github.com/civicrm/civicrm-core/pull/24669))**
+
+- **Fix `testCreateWithPrimaryAndBilling`
+  ([24691](https://github.com/civicrm/civicrm-core/pull/24691))**
+
+- **Deprecate handling for removed silly constant
+  ([24521](https://github.com/civicrm/civicrm-core/pull/24521))**
+
+- **[REF] Minor extraction
+  ([24595](https://github.com/civicrm/civicrm-core/pull/24595))**
+
+- **[REF] DAO - Add helper function to check if component is enabled
+  ([24525](https://github.com/civicrm/civicrm-core/pull/24525))**
+
+- **[REF] Update Tplaner/when package to latest version
+  ([24682](https://github.com/civicrm/civicrm-core/pull/24682))**
+
+- **[REF] Afform - Extract string function to CRM_Utils_String
+  ([24559](https://github.com/civicrm/civicrm-core/pull/24559))**
+
+- **[REF] ExportUI - Convert Angular controller to component
+  ([24581](https://github.com/civicrm/civicrm-core/pull/24581))**
+
+- **[REF] Cleanup unused references to CRM_Core_Exception aliases
+  ([24526](https://github.com/civicrm/civicrm-core/pull/24526))**
+
+- **[REF] Update JQuery UI to 1.13.2
+  ([24703](https://github.com/civicrm/civicrm-core/pull/24703))**
+
+- **[REF][PHP8.1] Fix Notice errors on php8.1 when running IDS
+  ([350](https://github.com/civicrm/civicrm-packages/pull/350))**
+
+- **[REF][PHP8.1] Fix test failure on civiimport unit test because sequence key
+  and keys are using id not _id
+  ([24736](https://github.com/civicrm/civicrm-core/pull/24736))**
+
+- **[REF][PHP8.1] Fix Extension Manager Module test failures on php8.1 due to
+  passing in null to dirname
+  ([24733](https://github.com/civicrm/civicrm-core/pull/24733))**
+
+- **[REF] Fix passing null into string functions in translation BAO
+  ([24732](https://github.com/civicrm/civicrm-core/pull/24732))**
+
+- **[REF] Remove Reference to now moved CONTRIBUTORS.txt file blocking building
+  ([24753](https://github.com/civicrm/civicrm-core/pull/24753))**
+
+- **[NFC] Add comment about uiLanguages vs languageLimit to avoid confusion
+  ([24625](https://github.com/civicrm/civicrm-core/pull/24625))**
+
+- **[NFC] Assert something in unit test
+  ([24626](https://github.com/civicrm/civicrm-core/pull/24626))**
+
+- **(NFC) Add various comments (ClassScanner, Config)
+  ([24568](https://github.com/civicrm/civicrm-core/pull/24568))**
+
+- **[REF] Add in Unit test to demonstrate error when trying to import a campaign
+  id int rather than name or label of the campaign
+  ([24814](https://github.com/civicrm/civicrm-core/pull/24814))**  
+
+## <a name="credits"></a>Credits
+
+This release was developed by the following code authors:
+
+AGH Strategies - Andie Hunt, Alice Frumin, Eli Lisseck; Agileware - Justin
+Freeman; BrightMinded Ltd - Bradley Taylor; Bund Deutscher PfadfinderInnen
+BaWue - David Geisel; CiviCRM - Coleman Watts, Tim Otten; CiviDesk - Yashodha
+Chaku; Dave D; JMA Consulting - Seamus Lee; Megaphone Technology Consulting -
+Jon Goldberg; MJW Consulting - Matthew Wire; NowaTech - Kasper Nowak; Oxfam
+Germany - Thomas Schüttler; Richard van Oosterhout; Squiffle Consulting -
+Aidan Saunders; Third Sector Design - Kurund Jalmi; Wikimedia Foundation -
+Eileen McNaughton, Wenjun Fan; Wildsight - Lars Sanders-Green
+
+Most authors also reviewed code for this release; in addition, the following
+reviewers contributed their comments:
+
+AGH Strategies - Rennie Harrison; Coop SymbioTIC - Mathieu Lutfy;
+Francesc Bassas i Bullich; Freewindrider; Greenpeace Central and Eastern
+Europe - Patrick Figel; Megaphone Technology Consulting - Brienne Kordis;
+SYSTOPIA Organisationsberatung - Björn Endres; Tadpole Collective - Kevin
+Cristiano; Third Sector Design - William Mortada; YesusHDS
+
+## <a name="feedback"></a>Feedback
+
+These release notes are edited by Alice Frumin and Andie Hunt.  If you'd like
+to provide feedback on them, please log in to https://chat.civicrm.org/civicrm
+and contact `@agh1`.
diff --git a/civicrm/CONTRIBUTORS.txt b/civicrm/release-notes/CONTRIBUTORS-archive.txt
similarity index 100%
rename from civicrm/CONTRIBUTORS.txt
rename to civicrm/release-notes/CONTRIBUTORS-archive.txt
diff --git a/civicrm/sql/civicrm_data.mysql b/civicrm/sql/civicrm_data.mysql
index a9d6cc6c32814b31a757bf2e33578d946f015aa8..5c0c04a1d95d6f0e3f9dedf9707931054cec57e1 100644
--- a/civicrm/sql/civicrm_data.mysql
+++ b/civicrm/sql/civicrm_data.mysql
@@ -5053,8 +5053,6 @@ VALUES
   (@option_group_id_cs, 'Pending'    , 2, 'Pending'    , NULL, 0, 0, 2, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, 'Cancelled'  , 3, 'Cancelled'  , NULL, 0, 0, 3, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, 'Failed'     , 4, 'Failed'     , NULL, 0, 0, 4, NULL, 0, 1, 1, NULL, NULL, NULL),
-  (@option_group_id_cs, 'In Progress', 5, 'In Progress', NULL, 0, 0, 5, NULL, 0, 1, 1, NULL, NULL, NULL),
-  (@option_group_id_cs, 'Overdue'    , 6, 'Overdue'    , NULL, 0, 0, 6, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, 'Refunded'   , 7, 'Refunded'   , NULL, 0, 0, 7, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, 'Partially paid', 8, 'Partially paid', NULL, 0, 0, 8, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, 'Pending refund', 9, 'Pending refund', NULL, 0, 0, 9, NULL, 0, 1, 1, NULL, NULL, NULL),
@@ -20942,7 +20940,7 @@ Click this link to go to a web page where you can make your payment online:
 or need to modify your payment schedule.{/ts}
 
 
-{ts}Thank your for your generous support.{/ts}
+{ts}Thank you for your generous support.{/ts}
 ', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
@@ -21040,7 +21038,7 @@ or need to modify your payment schedule.{/ts}
    <td>
     <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions
 or need to modify your payment schedule.{/ts}</p>
-    <p>{ts}Thank your for your generous support.{/ts}</p>
+    <p>{ts}Thank you for your generous support.{/ts}</p>
    </td>
   </tr>
 
@@ -21082,7 +21080,7 @@ Click this link to go to a web page where you can make your payment online:
 or need to modify your payment schedule.{/ts}
 
 
-{ts}Thank your for your generous support.{/ts}
+{ts}Thank you for your generous support.{/ts}
 ', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
@@ -21180,7 +21178,7 @@ or need to modify your payment schedule.{/ts}
    <td>
     <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions
 or need to modify your payment schedule.{/ts}</p>
-    <p>{ts}Thank your for your generous support.{/ts}</p>
+    <p>{ts}Thank you for your generous support.{/ts}</p>
    </td>
   </tr>
 
@@ -22872,7 +22870,6 @@ INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_act
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'greenwich', 'Theme: Greenwich', 'Theme: Greenwich', 'greenwich', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'eventcart', 'Event cart', 'Event cart', 'eventcart', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'financialacls', 'Financial ACLs', 'Financial ACLs', 'financialacls', 1);
-INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'contributioncancelactions', 'Contribution cancel actions', 'Contribution cancel actions', 'contributioncancelactions', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'recaptcha', 'reCAPTCHA', 'reCAPTCHA', 'recaptcha', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'ckeditor4', 'CKEditor4', 'CKEditor4', 'ckeditor4', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'legacycustomsearches', 'Custom search framework', 'Custom search framework', 'legacycustomsearches', 1);
@@ -23652,4 +23649,4 @@ INSERT INTO `civicrm_report_instance`
     ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`)
 VALUES
     (  @domainID, 'Survey Details', 'survey/detail', 'Detailed report for canvassing, phone-banking, walk lists or other surveys.', 'access CiviReport', '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;}');
-UPDATE civicrm_domain SET version = '5.54.1';
+UPDATE civicrm_domain SET version = '5.55.0';
diff --git a/civicrm/sql/civicrm_generated.mysql b/civicrm/sql/civicrm_generated.mysql
index aded26c5701b99f44827c4adfa370878d22998f6..974161564e1b57eb9a8502f54e66c74e5d65bb69 100644
--- a/civicrm/sql/civicrm_generated.mysql
+++ b/civicrm/sql/civicrm_generated.mysql
@@ -1,15 +1,16 @@
--- MySQL dump 10.19  Distrib 10.3.29-MariaDB, for debian-linux-gnu (x86_64)
+-- MySQL dump 10.13  Distrib 8.0.30, for Linux (x86_64)
 --
--- Host: database    Database: dmastercivicrm
+-- Host: 127.0.0.1    Database: db
 -- ------------------------------------------------------
--- Server version	10.4.20-MariaDB-1:10.4.20+maria~focal
+-- Server version	8.0.30
 
 /*!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 */;
@@ -116,7 +117,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,869,'civicrm_group',4,1);
+ (2,867,'civicrm_group',4,1);
 /*!40000 ALTER TABLE `civicrm_acl_entity_role` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -161,647 +162,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,1,'Subject for Meeting','2022-04-24 01:55:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (2,NULL,2,'Subject for Phone Call','2022-01-18 17:12:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (3,NULL,9,'Subject for Tell a Friend','2022-03-18 04:59:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (4,NULL,1,'Subject for Meeting','2022-02-16 20:04:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (5,NULL,9,'Subject for Tell a Friend','2022-03-20 16:51:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (6,NULL,22,'Subject for Print/Merge Document','2022-09-27 15:50:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (7,NULL,2,'Subject for Phone Call','2021-11-19 02:19:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (8,NULL,1,'Subject for Meeting','2022-10-08 12:29:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (9,NULL,55,'Subject for Interview','2022-01-05 12:24:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (10,NULL,2,'Subject for Phone Call','2021-12-06 14:48:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (11,NULL,55,'Subject for Interview','2022-04-20 21:01:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (12,NULL,22,'Subject for Print/Merge Document','2022-05-07 17:47:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (13,NULL,2,'Subject for Phone Call','2022-10-09 04:40:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (14,NULL,2,'Subject for Phone Call','2022-10-01 13:10:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (15,NULL,2,'Subject for Phone Call','2022-09-29 21:19:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (16,NULL,9,'Subject for Tell a Friend','2022-06-20 22:20:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (17,NULL,2,'Subject for Phone Call','2022-07-16 10:19:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:47','2022-10-10 07:32:47'),
- (18,NULL,22,'Subject for Print/Merge Document','2021-12-02 21:16:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (19,NULL,9,'Subject for Tell a Friend','2022-05-15 08:16:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (20,NULL,55,'Subject for Interview','2022-05-19 21:47:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (21,NULL,2,'Subject for Phone Call','2022-04-16 22:20:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (22,NULL,1,'Subject for Meeting','2022-10-07 18:08:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (23,NULL,22,'Subject for Print/Merge Document','2022-09-28 00:08:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (24,NULL,22,'Subject for Print/Merge Document','2022-05-08 01:09:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (25,NULL,2,'Subject for Phone Call','2022-03-09 16:45:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (26,NULL,55,'Subject for Interview','2022-01-07 03:50:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (27,NULL,1,'Subject for Meeting','2022-04-15 13:06:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (28,NULL,55,'Subject for Interview','2021-12-20 23:50:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (29,NULL,55,'Subject for Interview','2021-10-20 19:58:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (30,NULL,55,'Subject for Interview','2022-02-09 16:44:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (31,NULL,22,'Subject for Print/Merge Document','2022-01-30 11:59:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (32,NULL,9,'Subject for Tell a Friend','2021-10-31 12:24:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (33,NULL,2,'Subject for Phone Call','2022-05-30 05:00:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (34,NULL,1,'Subject for Meeting','2021-10-13 16:17:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (35,NULL,55,'Subject for Interview','2022-07-11 11:59:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (36,NULL,2,'Subject for Phone Call','2022-04-19 17:35:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (37,NULL,55,'Subject for Interview','2022-09-21 04:50:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (38,NULL,9,'Subject for Tell a Friend','2022-05-05 23:48:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (39,NULL,9,'Subject for Tell a Friend','2022-06-15 16:51:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (40,NULL,9,'Subject for Tell a Friend','2022-02-09 08:18:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (41,NULL,55,'Subject for Interview','2022-04-11 17:33:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (42,NULL,22,'Subject for Print/Merge Document','2022-01-14 16:58:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (43,NULL,2,'Subject for Phone Call','2022-01-05 01:09:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (44,NULL,55,'Subject for Interview','2022-01-24 00:10:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (45,NULL,1,'Subject for Meeting','2022-01-25 14:00:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (46,NULL,1,'Subject for Meeting','2022-03-29 02:20:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (47,NULL,9,'Subject for Tell a Friend','2022-01-12 11:18:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (48,NULL,22,'Subject for Print/Merge Document','2022-06-20 07:32:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (49,NULL,22,'Subject for Print/Merge Document','2022-03-29 21:38:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (50,NULL,22,'Subject for Print/Merge Document','2022-01-04 14:26:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (51,NULL,2,'Subject for Phone Call','2022-03-02 10:24:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (52,NULL,9,'Subject for Tell a Friend','2021-12-26 18:39:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (53,NULL,1,'Subject for Meeting','2021-11-18 17:39:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (54,NULL,9,'Subject for Tell a Friend','2022-07-12 03:28:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (55,NULL,2,'Subject for Phone Call','2022-02-05 14:48:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (56,NULL,9,'Subject for Tell a Friend','2021-10-12 05:28:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (57,NULL,2,'Subject for Phone Call','2022-04-08 11:10:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (58,NULL,1,'Subject for Meeting','2022-07-18 21:20:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (59,NULL,55,'Subject for Interview','2021-11-30 20:54:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (60,NULL,55,'Subject for Interview','2022-08-29 20:34:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (61,NULL,22,'Subject for Print/Merge Document','2022-06-29 14:14:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (62,NULL,9,'Subject for Tell a Friend','2022-04-12 02:47:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (63,NULL,2,'Subject for Phone Call','2021-10-18 16:40:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (64,NULL,2,'Subject for Phone Call','2022-08-17 17:40:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (65,NULL,9,'Subject for Tell a Friend','2022-07-24 00:50:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (66,NULL,2,'Subject for Phone Call','2022-04-22 20:01:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (67,NULL,2,'Subject for Phone Call','2022-09-18 12:42:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (68,NULL,22,'Subject for Print/Merge Document','2022-01-23 18:15:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (69,NULL,2,'Subject for Phone Call','2022-09-07 01:26:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (70,NULL,1,'Subject for Meeting','2022-05-26 15:37:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (71,NULL,55,'Subject for Interview','2022-09-19 22:24:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (72,NULL,9,'Subject for Tell a Friend','2022-05-14 00:36:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (73,NULL,22,'Subject for Print/Merge Document','2022-01-13 12:15:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (74,NULL,1,'Subject for Meeting','2022-04-24 19:12:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (75,NULL,22,'Subject for Print/Merge Document','2022-02-21 06:50:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (76,NULL,9,'Subject for Tell a Friend','2022-01-24 11:10:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (77,NULL,9,'Subject for Tell a Friend','2022-08-27 08:12:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (78,NULL,2,'Subject for Phone Call','2021-12-10 10:02:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (79,NULL,2,'Subject for Phone Call','2022-06-06 22:23:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (80,NULL,55,'Subject for Interview','2022-03-19 02:04:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:48','2022-10-10 07:32:48'),
- (81,NULL,22,'Subject for Print/Merge Document','2022-09-03 16:29:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (82,NULL,55,'Subject for Interview','2022-02-03 15:58:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (83,NULL,55,'Subject for Interview','2022-02-11 08:50:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (84,NULL,2,'Subject for Phone Call','2022-04-14 04:39:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (85,NULL,2,'Subject for Phone Call','2022-07-04 19:54:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (86,NULL,22,'Subject for Print/Merge Document','2022-04-18 06:41:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (87,NULL,9,'Subject for Tell a Friend','2022-09-29 09:13:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (88,NULL,22,'Subject for Print/Merge Document','2022-02-21 00:57:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (89,NULL,9,'Subject for Tell a Friend','2022-02-10 21:53:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (90,NULL,22,'Subject for Print/Merge Document','2022-02-24 12:09:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (91,NULL,22,'Subject for Print/Merge Document','2021-11-14 03:24:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (92,NULL,22,'Subject for Print/Merge Document','2022-08-09 05:13:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (93,NULL,9,'Subject for Tell a Friend','2022-01-09 23:30:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (94,NULL,9,'Subject for Tell a Friend','2022-01-11 23:49:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (95,NULL,2,'Subject for Phone Call','2022-07-08 15:46:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (96,NULL,9,'Subject for Tell a Friend','2022-02-10 04:34:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (97,NULL,1,'Subject for Meeting','2022-05-02 13:08:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (98,NULL,1,'Subject for Meeting','2021-12-29 05:52:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (99,NULL,1,'Subject for Meeting','2022-03-31 18:43:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (100,NULL,9,'Subject for Tell a Friend','2022-04-20 15:48:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (101,NULL,55,'Subject for Interview','2022-03-13 11:36:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (102,NULL,2,'Subject for Phone Call','2021-10-18 14:57:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (103,NULL,55,'Subject for Interview','2022-06-25 07:13:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (104,NULL,55,'Subject for Interview','2021-11-04 15:16:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (105,NULL,55,'Subject for Interview','2022-08-01 06:10:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (106,NULL,9,'Subject for Tell a Friend','2022-06-19 10:13:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (107,NULL,1,'Subject for Meeting','2022-08-14 02:54:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (108,NULL,22,'Subject for Print/Merge Document','2022-01-20 06:08:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (109,NULL,22,'Subject for Print/Merge Document','2022-08-13 23:18:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (110,NULL,1,'Subject for Meeting','2022-03-04 02:21:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (111,NULL,1,'Subject for Meeting','2022-05-07 11:30:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (112,NULL,1,'Subject for Meeting','2022-04-01 22:47:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (113,NULL,2,'Subject for Phone Call','2022-04-02 11:36:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (114,NULL,22,'Subject for Print/Merge Document','2022-01-07 06:38:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (115,NULL,2,'Subject for Phone Call','2022-04-24 12:49:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (116,NULL,9,'Subject for Tell a Friend','2021-11-26 01:13:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (117,NULL,2,'Subject for Phone Call','2022-08-14 06:18:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (118,NULL,55,'Subject for Interview','2022-09-30 05:29:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (119,NULL,55,'Subject for Interview','2022-03-17 14:17:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (120,NULL,22,'Subject for Print/Merge Document','2022-07-31 11:20:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (121,NULL,2,'Subject for Phone Call','2022-06-07 16:34:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (122,NULL,55,'Subject for Interview','2022-04-03 12:34:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (123,NULL,2,'Subject for Phone Call','2021-11-17 03:45:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (124,NULL,22,'Subject for Print/Merge Document','2021-11-20 17:50:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (125,NULL,55,'Subject for Interview','2021-12-04 22:38:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (126,NULL,55,'Subject for Interview','2021-12-03 13:58:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (127,NULL,55,'Subject for Interview','2022-08-03 13:43:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (128,NULL,9,'Subject for Tell a Friend','2022-01-29 08:35:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (129,NULL,1,'Subject for Meeting','2022-05-11 11:00:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (130,NULL,55,'Subject for Interview','2022-01-21 16:22:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (131,NULL,22,'Subject for Print/Merge Document','2022-06-20 10:58:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (132,NULL,2,'Subject for Phone Call','2021-12-02 14:33:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (133,NULL,55,'Subject for Interview','2022-08-10 08:20:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (134,NULL,9,'Subject for Tell a Friend','2022-01-03 23:54:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (135,NULL,9,'Subject for Tell a Friend','2022-09-12 16:04:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (136,NULL,55,'Subject for Interview','2022-09-09 19:24:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (137,NULL,2,'Subject for Phone Call','2022-04-27 04:08:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (138,NULL,22,'Subject for Print/Merge Document','2022-07-07 15:38:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (139,NULL,9,'Subject for Tell a Friend','2021-11-13 06:33:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (140,NULL,9,'Subject for Tell a Friend','2021-12-10 19:02:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (141,NULL,9,'Subject for Tell a Friend','2021-11-09 00:50:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:49','2022-10-10 07:32:49'),
- (142,NULL,55,'Subject for Interview','2022-08-17 16:21:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (143,NULL,1,'Subject for Meeting','2022-04-10 09:12:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (144,NULL,55,'Subject for Interview','2022-02-06 15:01:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (145,NULL,22,'Subject for Print/Merge Document','2021-11-19 18:52:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (146,NULL,1,'Subject for Meeting','2022-03-22 17:29:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (147,NULL,22,'Subject for Print/Merge Document','2022-03-18 09:03:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (148,NULL,22,'Subject for Print/Merge Document','2022-02-12 14:52:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (149,NULL,22,'Subject for Print/Merge Document','2022-07-24 20:33:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (150,NULL,2,'Subject for Phone Call','2022-02-13 04:12:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (151,NULL,9,'Subject for Tell a Friend','2022-10-08 12:41:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (152,NULL,9,'Subject for Tell a Friend','2022-08-28 01:08:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (153,NULL,55,'Subject for Interview','2022-04-09 12:27:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (154,NULL,55,'Subject for Interview','2021-10-26 04:35:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (155,NULL,2,'Subject for Phone Call','2022-05-07 09:12:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (156,NULL,9,'Subject for Tell a Friend','2021-10-16 16:00:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (157,NULL,9,'Subject for Tell a Friend','2022-02-03 11:28:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (158,NULL,55,'Subject for Interview','2021-11-02 02:40:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (159,NULL,22,'Subject for Print/Merge Document','2022-08-11 12:53:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (160,NULL,1,'Subject for Meeting','2021-12-23 00:40:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (161,NULL,1,'Subject for Meeting','2022-09-13 11:22:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (162,NULL,55,'Subject for Interview','2022-03-07 15:10:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (163,NULL,22,'Subject for Print/Merge Document','2022-05-02 04:04:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (164,NULL,55,'Subject for Interview','2021-10-27 03:10:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (165,NULL,9,'Subject for Tell a Friend','2022-02-21 18:56:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (166,NULL,22,'Subject for Print/Merge Document','2021-10-23 11:44:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (167,NULL,1,'Subject for Meeting','2022-04-09 21:52:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (168,NULL,22,'Subject for Print/Merge Document','2022-03-30 18:53:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (169,NULL,55,'Subject for Interview','2022-05-24 04:46:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (170,NULL,2,'Subject for Phone Call','2022-06-04 04:29:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (171,NULL,55,'Subject for Interview','2022-08-12 19:33:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (172,NULL,2,'Subject for Phone Call','2022-01-20 10:00:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (173,NULL,9,'Subject for Tell a Friend','2022-09-19 01:07:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (174,NULL,22,'Subject for Print/Merge Document','2022-08-13 17:39:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (175,NULL,1,'Subject for Meeting','2022-08-30 02:36:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (176,NULL,22,'Subject for Print/Merge Document','2022-05-19 10:28:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (177,NULL,1,'Subject for Meeting','2021-11-02 13:40:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (178,NULL,55,'Subject for Interview','2022-06-05 04:28:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (179,NULL,2,'Subject for Phone Call','2021-12-30 12:23:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (180,NULL,2,'Subject for Phone Call','2022-09-25 15:45:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (181,NULL,2,'Subject for Phone Call','2022-01-16 00:30:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (182,NULL,2,'Subject for Phone Call','2022-02-11 12:55:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (183,NULL,55,'Subject for Interview','2022-03-13 19:43:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (184,NULL,55,'Subject for Interview','2021-10-12 23:26:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (185,NULL,9,'Subject for Tell a Friend','2021-11-23 04:31:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (186,NULL,2,'Subject for Phone Call','2021-11-30 08:49:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (187,NULL,22,'Subject for Print/Merge Document','2022-06-09 03:10:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (188,NULL,22,'Subject for Print/Merge Document','2022-03-18 09:09:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (189,NULL,1,'Subject for Meeting','2022-04-16 21:17:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (190,NULL,9,'Subject for Tell a Friend','2021-11-06 13:36:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (191,NULL,1,'Subject for Meeting','2021-12-06 05:55:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (192,NULL,1,'Subject for Meeting','2022-09-12 20:30:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (193,NULL,55,'Subject for Interview','2022-05-28 10:29:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (194,NULL,55,'Subject for Interview','2022-01-24 02:25:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (195,NULL,22,'Subject for Print/Merge Document','2022-09-30 18:23:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (196,NULL,2,'Subject for Phone Call','2022-04-22 13:56:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (197,NULL,9,'Subject for Tell a Friend','2022-08-01 13:20:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (198,NULL,22,'Subject for Print/Merge Document','2022-02-12 20:23:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (199,NULL,55,'Subject for Interview','2022-07-16 01:21:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (200,NULL,22,'Subject for Print/Merge Document','2022-08-31 13:52:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (201,NULL,1,'Subject for Meeting','2022-04-17 03:29:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (202,NULL,55,'Subject for Interview','2022-04-27 10:55:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (203,NULL,2,'Subject for Phone Call','2022-03-27 00:20:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (204,NULL,22,'Subject for Print/Merge Document','2021-12-07 03:09:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (205,NULL,55,'Subject for Interview','2022-08-19 10:27:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (206,NULL,2,'Subject for Phone Call','2022-06-30 08:10:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:50','2022-10-10 07:32:50'),
- (207,NULL,1,'Subject for Meeting','2021-12-29 21:05:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (208,NULL,22,'Subject for Print/Merge Document','2021-11-08 23:41:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (209,NULL,9,'Subject for Tell a Friend','2021-11-23 14:03:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (210,NULL,22,'Subject for Print/Merge Document','2021-12-02 09:51:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (211,NULL,2,'Subject for Phone Call','2022-02-21 11:59:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (212,NULL,9,'Subject for Tell a Friend','2022-06-04 13:45:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (213,NULL,55,'Subject for Interview','2022-08-01 01:41:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (214,NULL,9,'Subject for Tell a Friend','2022-01-18 00:29:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (215,NULL,9,'Subject for Tell a Friend','2022-05-27 17:55:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (216,NULL,22,'Subject for Print/Merge Document','2021-12-09 04:16:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (217,NULL,9,'Subject for Tell a Friend','2022-07-18 12:08:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (218,NULL,22,'Subject for Print/Merge Document','2022-04-24 02:17:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (219,NULL,22,'Subject for Print/Merge Document','2022-05-31 04:17:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (220,NULL,22,'Subject for Print/Merge Document','2022-05-04 15:05:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (221,NULL,2,'Subject for Phone Call','2022-06-21 02:47:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (222,NULL,9,'Subject for Tell a Friend','2022-03-29 21:27:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (223,NULL,2,'Subject for Phone Call','2022-05-16 20:05:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (224,NULL,9,'Subject for Tell a Friend','2022-04-21 06:22:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (225,NULL,9,'Subject for Tell a Friend','2022-03-22 13:10:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (226,NULL,22,'Subject for Print/Merge Document','2022-05-15 02:54:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (227,NULL,9,'Subject for Tell a Friend','2021-11-06 12:42:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (228,NULL,1,'Subject for Meeting','2021-12-09 08:38:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (229,NULL,2,'Subject for Phone Call','2022-01-13 17:23:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (230,NULL,55,'Subject for Interview','2021-11-08 13:06:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (231,NULL,9,'Subject for Tell a Friend','2021-12-04 12:44:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (232,NULL,1,'Subject for Meeting','2022-09-17 05:00:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (233,NULL,2,'Subject for Phone Call','2022-01-23 04:08:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (234,NULL,2,'Subject for Phone Call','2022-05-03 18:32:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (235,NULL,9,'Subject for Tell a Friend','2022-06-11 02:47:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (236,NULL,2,'Subject for Phone Call','2021-10-24 23:03:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (237,NULL,1,'Subject for Meeting','2021-12-16 04:07:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (238,NULL,1,'Subject for Meeting','2022-04-18 03:51:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (239,NULL,1,'Subject for Meeting','2022-08-20 07:54:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (240,NULL,22,'Subject for Print/Merge Document','2022-06-28 07:04:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (241,NULL,55,'Subject for Interview','2022-09-08 03:32:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (242,NULL,1,'Subject for Meeting','2022-05-24 13:30:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (243,NULL,9,'Subject for Tell a Friend','2022-10-01 07:44:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (244,NULL,2,'Subject for Phone Call','2022-08-31 23:19:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (245,NULL,22,'Subject for Print/Merge Document','2022-03-04 05:11:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (246,NULL,22,'Subject for Print/Merge Document','2022-02-11 17:19:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (247,NULL,9,'Subject for Tell a Friend','2021-12-25 14:13:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (248,NULL,55,'Subject for Interview','2022-05-18 01:51:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (249,NULL,9,'Subject for Tell a Friend','2021-10-28 12:32:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (250,NULL,22,'Subject for Print/Merge Document','2022-04-20 11:54:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (251,NULL,9,'Subject for Tell a Friend','2022-04-16 06:52:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (252,NULL,55,'Subject for Interview','2021-11-08 06:57:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (253,NULL,22,'Subject for Print/Merge Document','2022-09-27 21:20:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (254,NULL,1,'Subject for Meeting','2022-10-01 01:35:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (255,NULL,22,'Subject for Print/Merge Document','2021-11-10 18:01:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (256,NULL,1,'Subject for Meeting','2022-04-20 16:26:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (257,NULL,1,'Subject for Meeting','2022-01-26 20:00:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (258,NULL,22,'Subject for Print/Merge Document','2021-10-14 23:54:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (259,NULL,1,'Subject for Meeting','2022-08-16 12:40:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (260,NULL,22,'Subject for Print/Merge Document','2022-01-20 20:11:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (261,NULL,22,'Subject for Print/Merge Document','2022-04-15 18:39:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (262,NULL,2,'Subject for Phone Call','2022-09-12 12:07:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (263,NULL,9,'Subject for Tell a Friend','2022-07-26 15:07:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (264,NULL,9,'Subject for Tell a Friend','2022-07-31 23:14:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (265,NULL,22,'Subject for Print/Merge Document','2022-05-28 01:44:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (266,NULL,9,'Subject for Tell a Friend','2022-08-16 17:26:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (267,NULL,55,'Subject for Interview','2022-02-12 01:23:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (268,NULL,55,'Subject for Interview','2022-09-06 11:58:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (269,NULL,9,'Subject for Tell a Friend','2022-04-08 22:42:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:51','2022-10-10 07:32:51'),
- (270,NULL,22,'Subject for Print/Merge Document','2022-02-05 07:39:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (271,NULL,9,'Subject for Tell a Friend','2021-10-10 17:47:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (272,NULL,9,'Subject for Tell a Friend','2022-09-27 20:41:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (273,NULL,55,'Subject for Interview','2022-09-07 07:09:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (274,NULL,9,'Subject for Tell a Friend','2022-06-26 04:17:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (275,NULL,2,'Subject for Phone Call','2022-08-01 15:39:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (276,NULL,22,'Subject for Print/Merge Document','2022-02-08 08:56:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (277,NULL,55,'Subject for Interview','2022-09-16 09:21:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (278,NULL,2,'Subject for Phone Call','2022-03-04 23:02:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (279,NULL,22,'Subject for Print/Merge Document','2021-10-30 03:25:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (280,NULL,1,'Subject for Meeting','2022-08-16 08:29:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (281,NULL,55,'Subject for Interview','2022-06-19 22:41:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (282,NULL,55,'Subject for Interview','2022-02-21 19:20:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (283,NULL,9,'Subject for Tell a Friend','2022-06-07 19:54:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (284,NULL,1,'Subject for Meeting','2022-01-08 11:52:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (285,NULL,2,'Subject for Phone Call','2022-09-07 21:16:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (286,NULL,55,'Subject for Interview','2022-07-03 08:05:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (287,NULL,1,'Subject for Meeting','2022-01-29 03:48:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (288,NULL,1,'Subject for Meeting','2022-01-15 04:23:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (289,NULL,55,'Subject for Interview','2022-01-16 22:12:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (290,NULL,9,'Subject for Tell a Friend','2022-07-20 09:37:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (291,NULL,55,'Subject for Interview','2021-11-13 19:42:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (292,NULL,55,'Subject for Interview','2021-10-10 15:30:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (293,NULL,55,'Subject for Interview','2022-09-06 21:23:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (294,NULL,1,'Subject for Meeting','2022-07-05 12:01:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (295,NULL,2,'Subject for Phone Call','2022-03-20 19:31:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (296,NULL,2,'Subject for Phone Call','2022-08-01 22:43:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (297,NULL,2,'Subject for Phone Call','2021-12-03 00:04:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (298,NULL,22,'Subject for Print/Merge Document','2021-12-21 05:52:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (299,NULL,2,'Subject for Phone Call','2022-09-28 18:04:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (300,NULL,55,'Subject for Interview','2022-08-27 19:17:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (301,NULL,22,'Subject for Print/Merge Document','2022-09-01 00:45:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (302,NULL,55,'Subject for Interview','2021-11-15 07:31:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (303,NULL,1,'Subject for Meeting','2022-05-07 21:13:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (304,NULL,22,'Subject for Print/Merge Document','2022-03-11 20:04:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (305,NULL,1,'Subject for Meeting','2022-02-20 02:13:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (306,NULL,2,'Subject for Phone Call','2022-04-30 21:47:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (307,NULL,55,'Subject for Interview','2021-10-13 09:18:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (308,NULL,9,'Subject for Tell a Friend','2022-05-14 16:32:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (309,NULL,55,'Subject for Interview','2022-06-01 21:12:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (310,NULL,1,'Subject for Meeting','2022-07-26 00:11:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (311,NULL,2,'Subject for Phone Call','2022-08-01 18:43:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (312,NULL,22,'Subject for Print/Merge Document','2021-11-18 06:12:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (313,NULL,55,'Subject for Interview','2021-10-29 18:33:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (314,NULL,22,'Subject for Print/Merge Document','2022-08-28 14:22:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (315,NULL,9,'Subject for Tell a Friend','2022-06-18 23:29:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (316,NULL,2,'Subject for Phone Call','2022-05-09 01:24:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (317,NULL,55,'Subject for Interview','2022-06-21 06:56:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (318,NULL,1,'Subject for Meeting','2022-04-26 14:36:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (319,NULL,1,'Subject for Meeting','2022-04-23 22:41:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (320,NULL,9,'Subject for Tell a Friend','2022-09-27 22:32:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (321,NULL,1,'Subject for Meeting','2022-09-25 16:35:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (322,NULL,9,'Subject for Tell a Friend','2022-02-11 12:45:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (323,NULL,2,'Subject for Phone Call','2022-09-09 06:39:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (324,NULL,9,'Subject for Tell a Friend','2022-06-16 10:12:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (325,NULL,1,'Subject for Meeting','2022-01-31 17:59:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (326,NULL,1,'Subject for Meeting','2022-10-03 10:45:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (327,NULL,22,'Subject for Print/Merge Document','2022-07-08 09:30:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (328,NULL,55,'Subject for Interview','2022-06-29 10:20:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (329,NULL,22,'Subject for Print/Merge Document','2021-10-13 18:27:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (330,NULL,1,'Subject for Meeting','2021-12-26 17:19:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (331,NULL,2,'Subject for Phone Call','2021-12-06 10:49:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (332,NULL,2,'Subject for Phone Call','2022-01-02 01:37:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (333,NULL,9,'Subject for Tell a Friend','2022-07-22 15:00:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:52','2022-10-10 07:32:52'),
- (334,NULL,1,'Subject for Meeting','2022-01-18 04:23:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (335,NULL,2,'Subject for Phone Call','2021-11-10 04:39:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (336,NULL,22,'Subject for Print/Merge Document','2022-08-11 21:11:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (337,NULL,2,'Subject for Phone Call','2021-11-10 08:38:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (338,NULL,9,'Subject for Tell a Friend','2022-07-24 22:14:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (339,NULL,22,'Subject for Print/Merge Document','2021-11-30 03:39:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (340,NULL,2,'Subject for Phone Call','2022-02-12 22:55:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (341,NULL,9,'Subject for Tell a Friend','2022-02-20 20:28:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (342,NULL,55,'Subject for Interview','2022-01-02 00:05:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (343,NULL,1,'Subject for Meeting','2022-06-14 18:33:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (344,NULL,55,'Subject for Interview','2022-06-11 06:55:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (345,NULL,9,'Subject for Tell a Friend','2022-08-06 06:48:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (346,NULL,22,'Subject for Print/Merge Document','2022-06-30 05:00:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (347,NULL,22,'Subject for Print/Merge Document','2022-03-01 20:55:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (348,NULL,55,'Subject for Interview','2022-04-16 05:51:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (349,NULL,55,'Subject for Interview','2022-02-04 23:03:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (350,NULL,55,'Subject for Interview','2022-05-31 21:09:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (351,NULL,1,'Subject for Meeting','2021-10-19 15:02:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (352,NULL,55,'Subject for Interview','2022-10-07 19:38:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (353,NULL,1,'Subject for Meeting','2022-08-15 20:38:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (354,NULL,55,'Subject for Interview','2022-04-30 12:41:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (355,NULL,22,'Subject for Print/Merge Document','2022-02-14 14:11:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (356,NULL,2,'Subject for Phone Call','2021-12-16 23:58:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (357,NULL,22,'Subject for Print/Merge Document','2022-01-20 17:56:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (358,NULL,22,'Subject for Print/Merge Document','2022-01-05 06:52:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (359,NULL,9,'Subject for Tell a Friend','2021-11-19 07:20:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (360,NULL,1,'Subject for Meeting','2022-05-01 10:22:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (361,NULL,22,'Subject for Print/Merge Document','2022-05-15 04:44:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (362,NULL,1,'Subject for Meeting','2022-08-05 05:54:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (363,NULL,2,'Subject for Phone Call','2022-03-08 16:20:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (364,NULL,9,'Subject for Tell a Friend','2021-12-18 01:14:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (365,NULL,9,'Subject for Tell a Friend','2022-07-19 06:23:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (366,NULL,1,'Subject for Meeting','2022-06-10 00:29:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (367,NULL,55,'Subject for Interview','2022-05-22 07:10:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (368,NULL,9,'Subject for Tell a Friend','2022-06-06 02:14:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (369,NULL,55,'Subject for Interview','2022-03-08 06:12:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (370,NULL,2,'Subject for Phone Call','2022-05-18 09:21:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (371,NULL,2,'Subject for Phone Call','2022-08-12 05:33:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (372,NULL,1,'Subject for Meeting','2022-09-20 13:31:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (373,NULL,9,'Subject for Tell a Friend','2022-02-09 04:38:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (374,NULL,2,'Subject for Phone Call','2022-04-19 15:29:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (375,NULL,55,'Subject for Interview','2022-06-03 00:46:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (376,NULL,2,'Subject for Phone Call','2022-09-17 04:50:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (377,NULL,55,'Subject for Interview','2022-01-07 06:31:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (378,NULL,9,'Subject for Tell a Friend','2022-01-04 09:17:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (379,NULL,22,'Subject for Print/Merge Document','2021-12-04 05:00:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (380,NULL,22,'Subject for Print/Merge Document','2022-08-17 16:12:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (381,NULL,9,'Subject for Tell a Friend','2022-09-02 03:38:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (382,NULL,1,'Subject for Meeting','2022-09-04 19:43:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (383,NULL,55,'Subject for Interview','2022-05-13 08:50:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (384,NULL,1,'Subject for Meeting','2022-01-13 00:39:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (385,NULL,22,'Subject for Print/Merge Document','2022-05-10 21:06:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (386,NULL,1,'Subject for Meeting','2022-02-24 13:06:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (387,NULL,2,'Subject for Phone Call','2022-01-05 19:45:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (388,NULL,55,'Subject for Interview','2022-09-09 13:31:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (389,NULL,9,'Subject for Tell a Friend','2022-02-18 04:09:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (390,NULL,9,'Subject for Tell a Friend','2021-11-04 17:03:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (391,NULL,22,'Subject for Print/Merge Document','2022-03-14 14:56:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (392,NULL,22,'Subject for Print/Merge Document','2022-03-18 17:37:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (393,NULL,55,'Subject for Interview','2022-02-16 21:26:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (394,NULL,22,'Subject for Print/Merge Document','2022-08-31 09:05:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (395,NULL,9,'Subject for Tell a Friend','2021-11-25 06:54:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:53','2022-10-10 07:32:53'),
- (396,NULL,9,'Subject for Tell a Friend','2022-01-02 09:34:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (397,NULL,22,'Subject for Print/Merge Document','2022-08-26 12:04:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (398,NULL,2,'Subject for Phone Call','2022-08-14 06:50:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (399,NULL,9,'Subject for Tell a Friend','2022-08-01 01:03:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (400,NULL,9,'Subject for Tell a Friend','2021-11-09 19:48:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (401,NULL,1,'Subject for Meeting','2022-07-17 03:03:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (402,NULL,2,'Subject for Phone Call','2021-10-30 18:05:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (403,NULL,9,'Subject for Tell a Friend','2022-04-22 12:37:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (404,NULL,22,'Subject for Print/Merge Document','2022-06-24 11:10:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (405,NULL,9,'Subject for Tell a Friend','2022-06-20 04:22:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (406,NULL,55,'Subject for Interview','2022-06-23 22:26:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (407,NULL,22,'Subject for Print/Merge Document','2022-06-11 21:07:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (408,NULL,55,'Subject for Interview','2022-03-18 05:22:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (409,NULL,1,'Subject for Meeting','2021-11-25 05:39:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (410,NULL,55,'Subject for Interview','2022-04-25 20:58:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (411,NULL,9,'Subject for Tell a Friend','2021-10-26 12:42:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (412,NULL,2,'Subject for Phone Call','2021-12-02 02:57:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (413,NULL,55,'Subject for Interview','2022-06-04 17:38:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (414,NULL,2,'Subject for Phone Call','2022-06-25 15:14:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (415,NULL,1,'Subject for Meeting','2022-01-20 14:46:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (416,NULL,1,'Subject for Meeting','2021-12-18 05:01:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (417,NULL,9,'Subject for Tell a Friend','2021-11-30 08:15:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (418,NULL,2,'Subject for Phone Call','2022-05-19 22:46:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (419,NULL,22,'Subject for Print/Merge Document','2022-04-30 11:07:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (420,NULL,22,'Subject for Print/Merge Document','2021-11-18 09:24:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (421,NULL,55,'Subject for Interview','2022-06-26 05:13:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (422,NULL,22,'Subject for Print/Merge Document','2022-03-17 08:32:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (423,NULL,22,'Subject for Print/Merge Document','2022-07-16 05:25:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (424,NULL,2,'Subject for Phone Call','2021-11-23 20:29:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (425,NULL,1,'Subject for Meeting','2021-11-28 16:50:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (426,NULL,2,'Subject for Phone Call','2022-02-13 07:27:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (427,NULL,2,'Subject for Phone Call','2022-08-30 21:16:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (428,NULL,1,'Subject for Meeting','2022-06-06 07:09:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (429,NULL,1,'Subject for Meeting','2022-08-04 12:05:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (430,NULL,22,'Subject for Print/Merge Document','2022-09-25 06:34:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (431,NULL,55,'Subject for Interview','2021-12-09 01:58:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (432,NULL,22,'Subject for Print/Merge Document','2022-01-31 19:41:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (433,NULL,2,'Subject for Phone Call','2022-02-08 05:39:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (434,NULL,9,'Subject for Tell a Friend','2022-02-24 12:06:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (435,NULL,22,'Subject for Print/Merge Document','2022-08-20 07:33:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (436,NULL,1,'Subject for Meeting','2022-08-18 06:50:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (437,NULL,55,'Subject for Interview','2022-06-20 00:36:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (438,NULL,22,'Subject for Print/Merge Document','2022-04-06 10:00:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (439,NULL,55,'Subject for Interview','2022-07-11 05:41:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (440,NULL,2,'Subject for Phone Call','2022-05-20 09:05:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (441,NULL,9,'Subject for Tell a Friend','2022-05-07 23:09:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (442,NULL,9,'Subject for Tell a Friend','2022-04-11 12:52:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (443,NULL,1,'Subject for Meeting','2022-07-26 13:43:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (444,NULL,2,'Subject for Phone Call','2022-01-27 13:45:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (445,NULL,55,'Subject for Interview','2022-08-22 06:57:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (446,NULL,2,'Subject for Phone Call','2022-07-02 04:47:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (447,NULL,1,'Subject for Meeting','2022-03-31 19:59:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (448,NULL,9,'Subject for Tell a Friend','2022-05-29 16:23:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (449,NULL,55,'Subject for Interview','2021-12-31 21:46:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (450,NULL,1,'Subject for Meeting','2021-10-22 06:46:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:54','2022-10-10 07:32:54'),
- (451,1,6,'$ 125 April Mailer 1','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (452,2,6,'$ 50 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (453,3,6,'£ 25 April Mailer 1','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (454,4,6,'$ 50 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (455,5,6,'$ 50 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (456,6,6,'$ 500 April Mailer 1','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (457,7,6,'$ 1750 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (458,8,6,'$ 50 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (459,9,6,'$ 10 Online: Help CiviCRM','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (460,10,6,'$ 250 Online: Help CiviCRM','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (461,11,6,'Â¥ 500 ','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (462,12,6,'$ 50 Online: Save the Penguins','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (463,13,6,'$ 50 ','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (464,14,6,'$ 50 ','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (465,15,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (466,16,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (467,17,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (468,18,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (469,19,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (470,20,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (471,21,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (472,22,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (473,23,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (474,24,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (475,25,6,'$ 25 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (476,26,6,'$ 10 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (477,27,6,'$ 10 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (478,28,6,'$ 10 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (479,29,6,'$ 10 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (480,30,6,'$ 10 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (481,31,6,'€ 5 Recurring contribution','2022-12-10 07:32:55',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (482,1,7,'General','2022-10-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (483,2,7,'Student','2022-10-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (484,3,7,'General','2022-10-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (485,4,7,'Student','2022-10-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (486,5,7,'Student','2021-10-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (487,6,7,'Student','2022-10-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (488,7,7,'General','2022-10-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (489,8,7,'Student','2022-10-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (490,9,7,'General','2022-10-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (491,10,7,'General','2020-07-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (492,11,7,'Lifetime','2022-09-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (493,12,7,'Student','2022-09-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (494,13,7,'General','2022-09-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (495,14,7,'Student','2022-09-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (496,15,7,'General','2020-06-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (497,16,7,'Student','2022-09-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (498,17,7,'General','2022-09-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (499,18,7,'Student','2022-09-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (500,19,7,'General','2022-09-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (501,20,7,'General','2020-05-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (502,21,7,'General','2022-09-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (503,22,7,'Lifetime','2022-09-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (504,23,7,'General','2022-09-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (505,24,7,'Student','2022-09-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (506,25,7,'General','2020-04-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (507,26,7,'Student','2022-09-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (508,27,7,'General','2022-09-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (509,28,7,'Student','2022-09-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (510,29,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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (511,30,7,'General','2020-02-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (512,32,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (513,33,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (514,34,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (515,35,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (516,36,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (517,37,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (518,38,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (519,39,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (520,40,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (521,41,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (523,43,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (524,44,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (525,45,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (526,46,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (527,47,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (528,48,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (529,49,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (530,50,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (531,51,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (532,52,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (534,54,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (535,55,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (536,56,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (537,57,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (538,58,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (539,59,6,'$ 50.00 - Student Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (540,60,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (541,61,6,'$ 100.00 - General Membership: Offline signup','2022-10-10 07:32:55',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (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,'2022-10-10 07:32:55','2022-10-10 07:32:55'),
- (593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (594,64,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (595,65,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (597,67,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (603,73,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (604,74,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (608,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (611,81,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (620,90,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (622,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (623,93,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (627,97,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (628,98,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (629,99,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (630,100,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (631,101,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (632,102,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (633,103,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (634,104,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (637,107,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (638,108,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (639,109,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (640,110,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (641,111,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56'),
- (642,112,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-10 07:32:56',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-10 07:32:56','2022-10-10 07:32:56');
+ (1,NULL,55,'Subject for Interview','2022-02-18 20:51:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (2,NULL,55,'Subject for Interview','2022-01-29 14:26:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (3,NULL,55,'Subject for Interview','2022-03-25 22:35:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (4,NULL,22,'Subject for Print/Merge Document','2022-08-05 19:45:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (5,NULL,9,'Subject for Tell a Friend','2022-04-19 06:07:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (6,NULL,9,'Subject for Tell a Friend','2022-05-22 05:06:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (7,NULL,2,'Subject for Phone Call','2021-12-31 18:37:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (8,NULL,2,'Subject for Phone Call','2022-05-24 07:43:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (9,NULL,55,'Subject for Interview','2022-07-11 15:54:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (10,NULL,1,'Subject for Meeting','2022-09-13 02:43:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (11,NULL,55,'Subject for Interview','2022-03-22 14:33:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (12,NULL,1,'Subject for Meeting','2022-01-02 04:18:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (13,NULL,22,'Subject for Print/Merge Document','2021-11-23 13:10:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (14,NULL,22,'Subject for Print/Merge Document','2022-01-27 23:39:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (15,NULL,1,'Subject for Meeting','2022-02-05 01:28:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (16,NULL,55,'Subject for Interview','2022-05-16 03:50:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (17,NULL,22,'Subject for Print/Merge Document','2022-05-11 02:52:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (18,NULL,9,'Subject for Tell a Friend','2022-02-25 13:06:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (19,NULL,1,'Subject for Meeting','2022-02-27 18:47:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (20,NULL,1,'Subject for Meeting','2021-12-29 17:16:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (21,NULL,22,'Subject for Print/Merge Document','2022-10-08 01:59:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (22,NULL,1,'Subject for Meeting','2022-07-07 07:10:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (23,NULL,1,'Subject for Meeting','2021-12-30 15:14:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (24,NULL,1,'Subject for Meeting','2021-12-01 20:30:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (25,NULL,55,'Subject for Interview','2022-09-17 00:50:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (26,NULL,9,'Subject for Tell a Friend','2022-05-18 13:33:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (27,NULL,22,'Subject for Print/Merge Document','2022-05-10 23:06:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (28,NULL,22,'Subject for Print/Merge Document','2022-10-08 19:00:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (29,NULL,55,'Subject for Interview','2022-08-22 21:04:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (30,NULL,55,'Subject for Interview','2022-09-27 16:02:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (31,NULL,2,'Subject for Phone Call','2022-02-25 09:42:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (32,NULL,1,'Subject for Meeting','2021-11-24 18:15:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (33,NULL,55,'Subject for Interview','2022-07-12 03:19:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (34,NULL,55,'Subject for Interview','2022-09-21 17:11:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (35,NULL,2,'Subject for Phone Call','2022-02-16 19:33:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (36,NULL,22,'Subject for Print/Merge Document','2022-07-24 09:20:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (37,NULL,9,'Subject for Tell a Friend','2022-03-09 20:05:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (38,NULL,2,'Subject for Phone Call','2022-04-08 10:56:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (39,NULL,1,'Subject for Meeting','2022-04-14 16:12:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (40,NULL,22,'Subject for Print/Merge Document','2022-03-27 16:32:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (41,NULL,9,'Subject for Tell a Friend','2022-06-09 03:23:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (42,NULL,22,'Subject for Print/Merge Document','2021-12-17 05:37:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (43,NULL,9,'Subject for Tell a Friend','2022-05-21 06:15:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (44,NULL,55,'Subject for Interview','2022-04-27 10:27:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (45,NULL,2,'Subject for Phone Call','2022-04-03 11:52:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (46,NULL,22,'Subject for Print/Merge Document','2021-11-22 18:19:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (47,NULL,2,'Subject for Phone Call','2022-08-15 18:32:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (48,NULL,1,'Subject for Meeting','2022-08-20 10:15:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (49,NULL,55,'Subject for Interview','2022-09-01 06:17:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (50,NULL,2,'Subject for Phone Call','2022-07-13 13:37:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (51,NULL,22,'Subject for Print/Merge Document','2022-02-16 21:54:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (52,NULL,9,'Subject for Tell a Friend','2022-02-20 11:01:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (53,NULL,22,'Subject for Print/Merge Document','2022-02-14 08:51:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (54,NULL,22,'Subject for Print/Merge Document','2022-05-14 02:31:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (55,NULL,2,'Subject for Phone Call','2022-07-05 05:28:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (56,NULL,22,'Subject for Print/Merge Document','2022-09-02 14:47:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (57,NULL,55,'Subject for Interview','2022-02-24 06:56:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (58,NULL,55,'Subject for Interview','2022-08-17 22:07:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (59,NULL,22,'Subject for Print/Merge Document','2022-04-20 09:55:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (60,NULL,2,'Subject for Phone Call','2022-02-14 03:59:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (61,NULL,1,'Subject for Meeting','2022-08-11 21:04:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (62,NULL,22,'Subject for Print/Merge Document','2022-04-02 13:33:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (63,NULL,9,'Subject for Tell a Friend','2022-02-13 23:35:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (64,NULL,9,'Subject for Tell a Friend','2022-07-23 20:38:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (65,NULL,1,'Subject for Meeting','2022-07-07 06:27:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (66,NULL,2,'Subject for Phone Call','2022-06-27 15:17:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (67,NULL,55,'Subject for Interview','2022-04-08 18:05:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (68,NULL,22,'Subject for Print/Merge Document','2022-03-30 23:16:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (69,NULL,2,'Subject for Phone Call','2021-11-27 11:13:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (70,NULL,9,'Subject for Tell a Friend','2022-10-04 10:01:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (71,NULL,9,'Subject for Tell a Friend','2021-10-28 15:26:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (72,NULL,2,'Subject for Phone Call','2022-04-26 00:21:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (73,NULL,2,'Subject for Phone Call','2022-05-22 09:27:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (74,NULL,22,'Subject for Print/Merge Document','2022-09-24 19:57:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (75,NULL,9,'Subject for Tell a Friend','2022-03-04 01:30:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (76,NULL,1,'Subject for Meeting','2022-02-18 02:45:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (77,NULL,9,'Subject for Tell a Friend','2022-01-26 03:52:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (78,NULL,2,'Subject for Phone Call','2022-03-30 04:51:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (79,NULL,1,'Subject for Meeting','2022-08-15 13:11:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (80,NULL,2,'Subject for Phone Call','2022-06-23 01:23:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (81,NULL,55,'Subject for Interview','2022-05-03 22:18:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (82,NULL,55,'Subject for Interview','2021-12-16 00:18:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (83,NULL,9,'Subject for Tell a Friend','2022-02-22 20:22:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (84,NULL,1,'Subject for Meeting','2021-11-06 23:32:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (85,NULL,55,'Subject for Interview','2022-02-01 22:56:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (86,NULL,9,'Subject for Tell a Friend','2021-11-22 02:47:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (87,NULL,1,'Subject for Meeting','2022-07-06 11:21:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (88,NULL,22,'Subject for Print/Merge Document','2022-01-01 18:02:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (89,NULL,1,'Subject for Meeting','2022-03-28 02:56:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (90,NULL,9,'Subject for Tell a Friend','2021-12-20 21:15:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (91,NULL,1,'Subject for Meeting','2022-08-04 03:33:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (92,NULL,9,'Subject for Tell a Friend','2022-05-15 08:30:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (93,NULL,1,'Subject for Meeting','2022-05-02 16:43:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (94,NULL,2,'Subject for Phone Call','2022-05-01 05:09:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (95,NULL,2,'Subject for Phone Call','2022-03-25 19:18:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (96,NULL,2,'Subject for Phone Call','2022-05-08 09:01:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (97,NULL,55,'Subject for Interview','2021-11-15 21:20:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (98,NULL,1,'Subject for Meeting','2022-09-23 16:25:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (99,NULL,2,'Subject for Phone Call','2022-03-31 18:30:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (100,NULL,2,'Subject for Phone Call','2022-06-21 17:03:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (101,NULL,1,'Subject for Meeting','2022-09-28 15:33:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (102,NULL,9,'Subject for Tell a Friend','2022-03-29 21:38:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (103,NULL,9,'Subject for Tell a Friend','2022-08-03 07:25:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (104,NULL,1,'Subject for Meeting','2022-03-03 12:41:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (105,NULL,2,'Subject for Phone Call','2022-02-26 04:12:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (106,NULL,1,'Subject for Meeting','2022-05-03 04:58:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (107,NULL,9,'Subject for Tell a Friend','2022-06-16 10:10:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (108,NULL,9,'Subject for Tell a Friend','2022-06-04 19:05:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (109,NULL,9,'Subject for Tell a Friend','2022-01-16 03:16:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (110,NULL,55,'Subject for Interview','2022-03-23 18:24:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (111,NULL,55,'Subject for Interview','2021-11-11 16:37:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (112,NULL,22,'Subject for Print/Merge Document','2022-06-19 23:13:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (113,NULL,1,'Subject for Meeting','2021-10-24 10:54:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (114,NULL,22,'Subject for Print/Merge Document','2022-03-09 16:05:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (115,NULL,1,'Subject for Meeting','2021-10-29 16:33:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (116,NULL,22,'Subject for Print/Merge Document','2022-07-05 23:54:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (117,NULL,55,'Subject for Interview','2022-08-03 10:50:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (118,NULL,1,'Subject for Meeting','2022-07-06 15:02:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (119,NULL,22,'Subject for Print/Merge Document','2021-12-10 06:47:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (120,NULL,9,'Subject for Tell a Friend','2022-01-15 15:06:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (121,NULL,1,'Subject for Meeting','2022-08-09 07:11:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (122,NULL,9,'Subject for Tell a Friend','2022-05-30 04:45:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (123,NULL,22,'Subject for Print/Merge Document','2022-09-28 02:07:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (124,NULL,55,'Subject for Interview','2022-07-12 05:06:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (125,NULL,1,'Subject for Meeting','2022-02-08 04:37:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (126,NULL,22,'Subject for Print/Merge Document','2022-04-08 11:38:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (127,NULL,55,'Subject for Interview','2022-03-12 15:37:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (128,NULL,2,'Subject for Phone Call','2022-09-09 10:05:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (129,NULL,9,'Subject for Tell a Friend','2022-09-24 05:14:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (130,NULL,1,'Subject for Meeting','2022-06-24 00:46:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (131,NULL,22,'Subject for Print/Merge Document','2021-12-08 12:21:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (132,NULL,22,'Subject for Print/Merge Document','2022-05-30 07:00:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (133,NULL,2,'Subject for Phone Call','2022-08-25 18:09:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (134,NULL,22,'Subject for Print/Merge Document','2022-10-06 13:30:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (135,NULL,22,'Subject for Print/Merge Document','2022-08-17 01:41:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (136,NULL,2,'Subject for Phone Call','2022-06-15 03:23:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (137,NULL,1,'Subject for Meeting','2022-09-08 00:17:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (138,NULL,1,'Subject for Meeting','2021-12-06 08:24:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (139,NULL,22,'Subject for Print/Merge Document','2022-04-18 12:36:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (140,NULL,22,'Subject for Print/Merge Document','2022-04-24 05:29:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (141,NULL,9,'Subject for Tell a Friend','2022-03-28 16:23:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (142,NULL,1,'Subject for Meeting','2022-03-05 17:35:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (143,NULL,55,'Subject for Interview','2022-05-04 08:47:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (144,NULL,22,'Subject for Print/Merge Document','2022-08-29 04:51:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (145,NULL,55,'Subject for Interview','2022-09-25 08:11:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (146,NULL,1,'Subject for Meeting','2022-04-12 22:10:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (147,NULL,1,'Subject for Meeting','2021-11-27 21:44:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (148,NULL,9,'Subject for Tell a Friend','2021-11-05 20:51:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (149,NULL,2,'Subject for Phone Call','2022-08-31 04:51:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (150,NULL,22,'Subject for Print/Merge Document','2022-06-12 13:25:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (151,NULL,55,'Subject for Interview','2022-03-10 17:19:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (152,NULL,2,'Subject for Phone Call','2022-01-26 01:08:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (153,NULL,1,'Subject for Meeting','2022-05-11 20:00:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (154,NULL,22,'Subject for Print/Merge Document','2022-06-04 16:49:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (155,NULL,22,'Subject for Print/Merge Document','2021-11-19 17:05:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (156,NULL,55,'Subject for Interview','2021-11-18 13:04:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (157,NULL,2,'Subject for Phone Call','2021-12-01 04:03:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (158,NULL,1,'Subject for Meeting','2022-05-21 20:10:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (159,NULL,9,'Subject for Tell a Friend','2022-05-02 16:42:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (160,NULL,9,'Subject for Tell a Friend','2022-03-09 13:00:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (161,NULL,2,'Subject for Phone Call','2022-08-08 02:52:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (162,NULL,9,'Subject for Tell a Friend','2022-09-19 10:42:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (163,NULL,55,'Subject for Interview','2021-10-11 19:47:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (164,NULL,22,'Subject for Print/Merge Document','2022-06-04 12:06:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (165,NULL,22,'Subject for Print/Merge Document','2022-06-11 01:42:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (166,NULL,55,'Subject for Interview','2022-06-06 10:26:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (167,NULL,9,'Subject for Tell a Friend','2022-08-01 12:37:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (168,NULL,22,'Subject for Print/Merge Document','2022-09-13 02:43:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (169,NULL,55,'Subject for Interview','2022-05-22 19:23:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (170,NULL,9,'Subject for Tell a Friend','2022-08-02 06:57:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (171,NULL,1,'Subject for Meeting','2022-07-17 21:06:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (172,NULL,22,'Subject for Print/Merge Document','2022-07-01 19:49:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (173,NULL,22,'Subject for Print/Merge Document','2022-04-21 10:20:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (174,NULL,55,'Subject for Interview','2021-10-10 20:37:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (175,NULL,9,'Subject for Tell a Friend','2022-08-30 16:58:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (176,NULL,2,'Subject for Phone Call','2022-02-19 07:14:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (177,NULL,1,'Subject for Meeting','2022-05-22 23:51:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (178,NULL,1,'Subject for Meeting','2021-12-26 06:07:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (179,NULL,2,'Subject for Phone Call','2022-07-19 14:04:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (180,NULL,1,'Subject for Meeting','2022-07-30 16:37:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (181,NULL,2,'Subject for Phone Call','2021-11-27 23:55:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (182,NULL,22,'Subject for Print/Merge Document','2022-01-31 10:00:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (183,NULL,55,'Subject for Interview','2022-10-02 20:41:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (184,NULL,2,'Subject for Phone Call','2022-01-20 06:09:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (185,NULL,2,'Subject for Phone Call','2022-06-30 05:05:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (186,NULL,1,'Subject for Meeting','2022-09-26 17:32:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (187,NULL,9,'Subject for Tell a Friend','2022-07-08 14:01:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (188,NULL,2,'Subject for Phone Call','2022-01-09 18:01:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (189,NULL,9,'Subject for Tell a Friend','2022-02-24 01:02:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (190,NULL,22,'Subject for Print/Merge Document','2022-09-14 14:01:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (191,NULL,22,'Subject for Print/Merge Document','2022-03-31 22:39:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (192,NULL,22,'Subject for Print/Merge Document','2021-10-17 17:07:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (193,NULL,1,'Subject for Meeting','2022-01-07 22:56:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (194,NULL,9,'Subject for Tell a Friend','2022-02-10 00:10:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (195,NULL,1,'Subject for Meeting','2022-05-07 14:54:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (196,NULL,55,'Subject for Interview','2022-05-04 20:38:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (197,NULL,1,'Subject for Meeting','2022-04-24 04:55:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (198,NULL,55,'Subject for Interview','2022-01-30 16:52:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (199,NULL,55,'Subject for Interview','2022-02-21 03:18:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (200,NULL,55,'Subject for Interview','2022-04-13 23:54:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (201,NULL,22,'Subject for Print/Merge Document','2021-11-13 10:23:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (202,NULL,55,'Subject for Interview','2022-02-09 21:22:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (203,NULL,22,'Subject for Print/Merge Document','2022-02-08 20:57:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (204,NULL,1,'Subject for Meeting','2022-04-15 04:53:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (205,NULL,1,'Subject for Meeting','2022-02-24 13:31:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (206,NULL,22,'Subject for Print/Merge Document','2022-08-31 19:47:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (207,NULL,2,'Subject for Phone Call','2022-09-03 19:14:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (208,NULL,22,'Subject for Print/Merge Document','2022-03-23 05:28:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (209,NULL,9,'Subject for Tell a Friend','2022-01-02 19:13:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (210,NULL,55,'Subject for Interview','2021-10-16 16:19:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (211,NULL,1,'Subject for Meeting','2022-02-09 04:33:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (212,NULL,9,'Subject for Tell a Friend','2022-08-30 06:47:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (213,NULL,2,'Subject for Phone Call','2022-03-02 21:21:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (214,NULL,9,'Subject for Tell a Friend','2021-12-09 11:36:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (215,NULL,2,'Subject for Phone Call','2022-03-22 12:31:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (216,NULL,55,'Subject for Interview','2022-01-20 15:21:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (217,NULL,22,'Subject for Print/Merge Document','2022-09-10 00:09:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (218,NULL,2,'Subject for Phone Call','2022-02-19 04:06:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (219,NULL,55,'Subject for Interview','2022-02-12 08:58:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (220,NULL,22,'Subject for Print/Merge Document','2022-06-13 00:43:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (221,NULL,2,'Subject for Phone Call','2022-03-26 07:38:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (222,NULL,9,'Subject for Tell a Friend','2022-07-26 00:06:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (223,NULL,2,'Subject for Phone Call','2022-09-18 18:11:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (224,NULL,2,'Subject for Phone Call','2022-02-23 04:09:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (225,NULL,22,'Subject for Print/Merge Document','2022-03-17 10:19:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (226,NULL,2,'Subject for Phone Call','2021-10-31 01:54:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (227,NULL,9,'Subject for Tell a Friend','2022-05-23 06:37:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (228,NULL,9,'Subject for Tell a Friend','2022-05-13 21:32:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (229,NULL,2,'Subject for Phone Call','2022-05-03 23:18:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (230,NULL,2,'Subject for Phone Call','2022-09-23 18:37:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (231,NULL,9,'Subject for Tell a Friend','2021-11-05 09:18:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (232,NULL,2,'Subject for Phone Call','2022-03-26 06:49:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (233,NULL,9,'Subject for Tell a Friend','2022-09-15 19:27:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (234,NULL,9,'Subject for Tell a Friend','2022-09-17 17:19:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (235,NULL,55,'Subject for Interview','2022-03-20 13:49:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (236,NULL,1,'Subject for Meeting','2022-01-13 06:14:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (237,NULL,2,'Subject for Phone Call','2022-09-18 06:47:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (238,NULL,2,'Subject for Phone Call','2022-08-20 06:52:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (239,NULL,1,'Subject for Meeting','2022-08-24 18:22:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (240,NULL,1,'Subject for Meeting','2022-04-20 07:06:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (241,NULL,55,'Subject for Interview','2021-12-24 05:05:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (242,NULL,2,'Subject for Phone Call','2022-07-06 14:40:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (243,NULL,9,'Subject for Tell a Friend','2022-10-05 00:55:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (244,NULL,22,'Subject for Print/Merge Document','2021-10-30 17:49:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (245,NULL,22,'Subject for Print/Merge Document','2022-04-11 22:41:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (246,NULL,1,'Subject for Meeting','2021-11-14 19:42:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (247,NULL,55,'Subject for Interview','2022-07-22 21:34:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (248,NULL,22,'Subject for Print/Merge Document','2022-05-26 18:19:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (249,NULL,2,'Subject for Phone Call','2021-10-23 19:46:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (250,NULL,2,'Subject for Phone Call','2022-02-18 18:12:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (251,NULL,55,'Subject for Interview','2022-04-16 00:26:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (252,NULL,22,'Subject for Print/Merge Document','2022-03-20 22:38:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (253,NULL,1,'Subject for Meeting','2022-03-12 10:20:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (254,NULL,9,'Subject for Tell a Friend','2021-12-06 19:11:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (255,NULL,1,'Subject for Meeting','2022-01-25 17:22:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (256,NULL,1,'Subject for Meeting','2022-05-25 04:14:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (257,NULL,55,'Subject for Interview','2022-03-22 04:31:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (258,NULL,9,'Subject for Tell a Friend','2022-02-05 15:46:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (259,NULL,2,'Subject for Phone Call','2022-10-07 00:25:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (260,NULL,1,'Subject for Meeting','2021-10-31 04:06:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (261,NULL,1,'Subject for Meeting','2022-03-30 12:52:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (262,NULL,1,'Subject for Meeting','2022-08-08 01:20:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (263,NULL,1,'Subject for Meeting','2022-01-20 15:12:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (264,NULL,9,'Subject for Tell a Friend','2022-05-11 14:29:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (265,NULL,9,'Subject for Tell a Friend','2022-06-10 13:27:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (266,NULL,1,'Subject for Meeting','2022-05-25 20:01:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (267,NULL,1,'Subject for Meeting','2021-12-19 00:46:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (268,NULL,1,'Subject for Meeting','2022-07-28 04:49:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (269,NULL,22,'Subject for Print/Merge Document','2022-09-26 14:25:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (270,NULL,22,'Subject for Print/Merge Document','2022-03-18 01:15:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (271,NULL,22,'Subject for Print/Merge Document','2022-06-08 02:05:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (272,NULL,22,'Subject for Print/Merge Document','2022-06-09 14:54:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (273,NULL,9,'Subject for Tell a Friend','2022-09-27 01:58:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (274,NULL,2,'Subject for Phone Call','2022-06-09 16:48:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (275,NULL,22,'Subject for Print/Merge Document','2022-04-10 19:07:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (276,NULL,2,'Subject for Phone Call','2021-11-16 03:38:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (277,NULL,55,'Subject for Interview','2022-05-29 02:05:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (278,NULL,2,'Subject for Phone Call','2022-09-03 12:12:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (279,NULL,1,'Subject for Meeting','2021-10-24 02:39:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (280,NULL,2,'Subject for Phone Call','2021-11-01 19:22:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (281,NULL,55,'Subject for Interview','2022-02-28 14:34:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (282,NULL,2,'Subject for Phone Call','2021-10-26 12:15:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (283,NULL,2,'Subject for Phone Call','2021-11-24 04:07:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (284,NULL,1,'Subject for Meeting','2022-05-13 14:30:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (285,NULL,9,'Subject for Tell a Friend','2022-07-20 21:53:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (286,NULL,2,'Subject for Phone Call','2022-02-16 11:16:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (287,NULL,1,'Subject for Meeting','2022-02-04 10:24:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (288,NULL,55,'Subject for Interview','2022-05-18 13:43:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (289,NULL,1,'Subject for Meeting','2022-01-07 23:50:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (290,NULL,9,'Subject for Tell a Friend','2021-10-28 04:57:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (291,NULL,9,'Subject for Tell a Friend','2021-11-17 07:22:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (292,NULL,1,'Subject for Meeting','2022-09-14 10:40:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (293,NULL,22,'Subject for Print/Merge Document','2022-01-04 19:33:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (294,NULL,22,'Subject for Print/Merge Document','2021-11-04 08:10:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (295,NULL,55,'Subject for Interview','2021-12-02 14:19:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (296,NULL,2,'Subject for Phone Call','2022-03-01 12:40:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (297,NULL,55,'Subject for Interview','2022-06-15 13:56:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (298,NULL,1,'Subject for Meeting','2021-11-24 11:43:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (299,NULL,55,'Subject for Interview','2022-01-28 17:48:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (300,NULL,22,'Subject for Print/Merge Document','2021-11-29 00:10:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (301,NULL,9,'Subject for Tell a Friend','2022-05-29 08:33:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (302,NULL,55,'Subject for Interview','2022-05-23 22:16:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (303,NULL,9,'Subject for Tell a Friend','2022-02-07 10:36:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (304,NULL,2,'Subject for Phone Call','2022-02-09 18:23:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (305,NULL,2,'Subject for Phone Call','2022-07-08 10:57:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (306,NULL,55,'Subject for Interview','2021-11-07 01:08:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (307,NULL,22,'Subject for Print/Merge Document','2021-12-15 19:56:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (308,NULL,1,'Subject for Meeting','2022-09-09 14:06:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (309,NULL,9,'Subject for Tell a Friend','2021-10-15 00:11:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (310,NULL,55,'Subject for Interview','2021-11-23 18:38:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (311,NULL,2,'Subject for Phone Call','2022-04-27 06:50:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (312,NULL,1,'Subject for Meeting','2022-09-03 10:22:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (313,NULL,55,'Subject for Interview','2022-05-23 23:44:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (314,NULL,9,'Subject for Tell a Friend','2022-03-25 04:54:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (315,NULL,22,'Subject for Print/Merge Document','2022-06-14 08:24:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (316,NULL,22,'Subject for Print/Merge Document','2022-06-27 01:18:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (317,NULL,2,'Subject for Phone Call','2022-08-09 12:19:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (318,NULL,2,'Subject for Phone Call','2022-07-27 01:59:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (319,NULL,22,'Subject for Print/Merge Document','2022-07-12 10:15:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (320,NULL,9,'Subject for Tell a Friend','2022-08-22 15:03:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (321,NULL,55,'Subject for Interview','2021-11-14 21:56:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (322,NULL,9,'Subject for Tell a Friend','2022-06-02 18:35:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (323,NULL,2,'Subject for Phone Call','2022-06-21 18:47:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (324,NULL,22,'Subject for Print/Merge Document','2022-06-13 03:26:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (325,NULL,2,'Subject for Phone Call','2021-12-31 16:37:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (326,NULL,22,'Subject for Print/Merge Document','2022-10-04 16:41:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (327,NULL,1,'Subject for Meeting','2022-03-24 09:54:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (328,NULL,9,'Subject for Tell a Friend','2022-05-22 01:22:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (329,NULL,55,'Subject for Interview','2021-10-31 12:53:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (330,NULL,9,'Subject for Tell a Friend','2021-10-28 21:59:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (331,NULL,1,'Subject for Meeting','2022-09-29 18:11:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (332,NULL,22,'Subject for Print/Merge Document','2022-05-15 06:21:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (333,NULL,1,'Subject for Meeting','2022-03-24 16:47:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (334,NULL,55,'Subject for Interview','2022-03-07 16:38:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (335,NULL,55,'Subject for Interview','2022-01-28 00:36:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (336,NULL,2,'Subject for Phone Call','2022-05-01 10:01:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (337,NULL,22,'Subject for Print/Merge Document','2022-09-24 10:59:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (338,NULL,2,'Subject for Phone Call','2022-09-24 17:54:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (339,NULL,1,'Subject for Meeting','2022-05-21 18:04:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (340,NULL,22,'Subject for Print/Merge Document','2022-09-19 19:25:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (341,NULL,22,'Subject for Print/Merge Document','2021-11-08 11:26:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (342,NULL,1,'Subject for Meeting','2022-06-26 08:32:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (343,NULL,9,'Subject for Tell a Friend','2021-10-28 12:20:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (344,NULL,9,'Subject for Tell a Friend','2022-08-22 01:16:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (345,NULL,1,'Subject for Meeting','2022-05-26 03:19:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (346,NULL,55,'Subject for Interview','2021-10-12 16:18:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (347,NULL,2,'Subject for Phone Call','2022-10-01 06:53:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (348,NULL,55,'Subject for Interview','2021-10-31 16:29:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (349,NULL,22,'Subject for Print/Merge Document','2022-04-10 21:41:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (350,NULL,1,'Subject for Meeting','2022-03-18 07:20:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (351,NULL,9,'Subject for Tell a Friend','2022-09-25 13:31:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (352,NULL,22,'Subject for Print/Merge Document','2022-01-08 15:42:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (353,NULL,55,'Subject for Interview','2022-09-10 19:48:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (354,NULL,55,'Subject for Interview','2022-05-11 14:31:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (355,NULL,22,'Subject for Print/Merge Document','2022-09-06 12:02:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (356,NULL,22,'Subject for Print/Merge Document','2022-03-14 07:59:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (357,NULL,55,'Subject for Interview','2022-01-16 00:43:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (358,NULL,22,'Subject for Print/Merge Document','2021-12-28 20:00:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (359,NULL,55,'Subject for Interview','2021-12-05 02:58:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (360,NULL,2,'Subject for Phone Call','2021-11-12 03:17:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (361,NULL,1,'Subject for Meeting','2021-11-29 02:42:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (362,NULL,1,'Subject for Meeting','2021-12-16 14:57:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (363,NULL,2,'Subject for Phone Call','2022-06-16 09:23:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (364,NULL,22,'Subject for Print/Merge Document','2022-04-27 18:08:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (365,NULL,55,'Subject for Interview','2022-01-07 10:25:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (366,NULL,1,'Subject for Meeting','2021-10-20 20:36:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (367,NULL,9,'Subject for Tell a Friend','2022-02-03 15:50:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (368,NULL,2,'Subject for Phone Call','2022-04-23 13:17:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (369,NULL,1,'Subject for Meeting','2022-07-03 17:50:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (370,NULL,9,'Subject for Tell a Friend','2022-03-27 22:22:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (371,NULL,1,'Subject for Meeting','2022-03-08 19:51:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (372,NULL,55,'Subject for Interview','2022-10-02 14:20:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (373,NULL,2,'Subject for Phone Call','2022-09-11 17:08:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (374,NULL,1,'Subject for Meeting','2022-05-02 10:57:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (375,NULL,9,'Subject for Tell a Friend','2022-01-28 16:04:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (376,NULL,55,'Subject for Interview','2022-08-11 00:26:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (377,NULL,55,'Subject for Interview','2021-10-09 21:37:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (378,NULL,2,'Subject for Phone Call','2022-08-27 10:17:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (379,NULL,55,'Subject for Interview','2022-06-26 09:22:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (380,NULL,22,'Subject for Print/Merge Document','2022-02-02 13:03:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (381,NULL,9,'Subject for Tell a Friend','2022-07-01 01:27:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (382,NULL,1,'Subject for Meeting','2022-09-25 18:22:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (383,NULL,22,'Subject for Print/Merge Document','2022-03-21 00:07:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (384,NULL,1,'Subject for Meeting','2022-04-10 17:16:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (385,NULL,22,'Subject for Print/Merge Document','2021-12-18 22:27:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (386,NULL,55,'Subject for Interview','2022-01-18 01:23:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (387,NULL,2,'Subject for Phone Call','2022-05-20 00:45:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (388,NULL,2,'Subject for Phone Call','2022-08-04 13:24:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (389,NULL,22,'Subject for Print/Merge Document','2022-09-23 08:07:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (390,NULL,22,'Subject for Print/Merge Document','2022-01-06 07:03:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (391,NULL,55,'Subject for Interview','2021-10-13 00:14:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (392,NULL,9,'Subject for Tell a Friend','2022-07-18 15:54:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (393,NULL,55,'Subject for Interview','2022-02-08 02:22:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (394,NULL,55,'Subject for Interview','2022-06-10 14:15:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (395,NULL,1,'Subject for Meeting','2022-05-21 23:07:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (396,NULL,2,'Subject for Phone Call','2022-02-05 05:24:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (397,NULL,2,'Subject for Phone Call','2022-06-08 17:49:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (398,NULL,1,'Subject for Meeting','2022-03-23 18:41:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (399,NULL,9,'Subject for Tell a Friend','2022-03-02 00:11:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (400,NULL,22,'Subject for Print/Merge Document','2021-11-25 05:09:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (401,NULL,1,'Subject for Meeting','2022-03-28 13:17:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (402,NULL,55,'Subject for Interview','2021-11-28 15:49:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (403,NULL,2,'Subject for Phone Call','2022-06-15 07:40:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (404,NULL,2,'Subject for Phone Call','2022-03-02 09:39:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (405,NULL,2,'Subject for Phone Call','2021-12-01 12:01:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (406,NULL,1,'Subject for Meeting','2021-11-05 22:46:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (407,NULL,2,'Subject for Phone Call','2021-11-16 13:43:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (408,NULL,55,'Subject for Interview','2022-03-16 03:45:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (409,NULL,2,'Subject for Phone Call','2022-07-23 08:59:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (410,NULL,9,'Subject for Tell a Friend','2022-03-04 18:24:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (411,NULL,9,'Subject for Tell a Friend','2022-03-01 12:41:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (412,NULL,2,'Subject for Phone Call','2022-02-04 02:49:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (413,NULL,1,'Subject for Meeting','2022-08-24 05:26:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (414,NULL,22,'Subject for Print/Merge Document','2022-05-27 22:09:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (415,NULL,55,'Subject for Interview','2022-07-04 04:34:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (416,NULL,22,'Subject for Print/Merge Document','2022-01-24 04:07:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (417,NULL,9,'Subject for Tell a Friend','2022-04-16 01:25:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (418,NULL,1,'Subject for Meeting','2021-10-17 19:39:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (419,NULL,1,'Subject for Meeting','2022-04-08 09:27:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (420,NULL,55,'Subject for Interview','2022-06-11 10:04:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (421,NULL,9,'Subject for Tell a Friend','2022-07-29 05:06:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (422,NULL,55,'Subject for Interview','2022-05-28 11:24:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (423,NULL,9,'Subject for Tell a Friend','2022-04-04 03:56:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (424,NULL,9,'Subject for Tell a Friend','2022-03-19 10:08:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (425,NULL,55,'Subject for Interview','2022-10-01 14:01:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (426,NULL,9,'Subject for Tell a Friend','2022-06-13 12:56:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (427,NULL,9,'Subject for Tell a Friend','2022-06-06 18:56:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (428,NULL,9,'Subject for Tell a Friend','2022-05-25 20:12:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (429,NULL,2,'Subject for Phone Call','2022-08-05 04:37:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (430,NULL,22,'Subject for Print/Merge Document','2021-11-29 23:47:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (431,NULL,1,'Subject for Meeting','2021-10-12 13:36:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (432,NULL,22,'Subject for Print/Merge Document','2022-03-22 08:30:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (433,NULL,55,'Subject for Interview','2022-01-13 00:25:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (434,NULL,9,'Subject for Tell a Friend','2022-09-01 10:49:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (435,NULL,9,'Subject for Tell a Friend','2022-03-15 12:28:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (436,NULL,55,'Subject for Interview','2022-03-01 09:17:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (437,NULL,2,'Subject for Phone Call','2022-07-03 02:46:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (438,NULL,55,'Subject for Interview','2021-10-18 02:28:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (439,NULL,9,'Subject for Tell a Friend','2022-01-15 07:42:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (440,NULL,55,'Subject for Interview','2021-11-02 18:40:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (441,NULL,1,'Subject for Meeting','2022-10-09 05:19:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (442,NULL,1,'Subject for Meeting','2022-01-20 15:12:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (443,NULL,1,'Subject for Meeting','2022-06-26 13:19:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (444,NULL,55,'Subject for Interview','2022-07-11 02:24:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (445,NULL,9,'Subject for Tell a Friend','2022-08-19 07:16:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (446,NULL,22,'Subject for Print/Merge Document','2021-12-04 11:54:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (447,NULL,55,'Subject for Interview','2022-03-13 19:29:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (448,NULL,2,'Subject for Phone Call','2021-11-08 03:02:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (449,NULL,1,'Subject for Meeting','2022-05-05 11:38:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (450,NULL,1,'Subject for Meeting','2021-12-26 22:09:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (451,1,6,'$ 125 April Mailer 1','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (452,2,6,'$ 50 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (453,3,6,'£ 25 April Mailer 1','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (454,4,6,'$ 50 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (455,5,6,'$ 50 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (456,6,6,'$ 500 April Mailer 1','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (457,7,6,'$ 1750 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (458,8,6,'$ 50 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (459,9,6,'$ 10 Online: Help CiviCRM','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (460,10,6,'$ 250 Online: Help CiviCRM','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (461,11,6,'Â¥ 500 ','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (462,12,6,'$ 50 Online: Save the Penguins','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (463,13,6,'$ 50 ','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (464,14,6,'$ 50 ','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (465,15,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (466,16,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (467,17,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (468,18,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (469,19,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (470,20,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (471,21,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (472,22,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (473,23,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (474,24,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (475,25,6,'$ 25 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (476,26,6,'$ 10 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (477,27,6,'$ 10 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (478,28,6,'$ 10 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (479,29,6,'$ 10 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (480,30,6,'$ 10 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (481,31,6,'€ 5 Recurring contribution','2022-12-09 15:29:40',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (482,1,7,'General','2022-10-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (483,2,7,'Student','2022-10-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (484,3,7,'General','2022-10-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (485,4,7,'Student','2022-10-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (486,5,7,'Student','2021-10-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (487,6,7,'Student','2022-10-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (488,7,7,'General','2022-10-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (489,8,7,'Student','2022-10-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (490,9,7,'General','2022-10-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (491,10,7,'General','2020-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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (492,11,7,'Lifetime','2022-09-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (493,12,7,'Student','2022-09-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (494,13,7,'General','2022-09-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (495,14,7,'Student','2022-09-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (496,15,7,'General','2020-06-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (497,16,7,'Student','2022-09-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (498,17,7,'General','2022-09-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (499,18,7,'Student','2022-09-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (500,19,7,'General','2022-09-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (501,20,7,'Student','2021-09-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (502,21,7,'General','2022-09-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (503,22,7,'Lifetime','2022-09-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (504,23,7,'General','2022-09-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (505,24,7,'Student','2022-09-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (506,25,7,'Student','2021-09-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (507,26,7,'Student','2022-09-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (508,27,7,'General','2022-09-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (509,28,7,'Student','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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (510,29,7,'General','2022-09-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (511,30,7,'General','2020-02-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (512,32,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (513,33,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (514,34,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (515,35,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (516,36,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (517,37,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (518,38,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (519,39,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (520,40,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (521,41,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (523,43,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (524,44,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (525,45,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (526,46,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (527,47,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (528,48,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (529,49,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (530,50,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (531,51,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (532,52,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (534,54,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (535,55,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (536,56,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (537,57,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (538,58,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (539,59,6,'$ 50.00 - Student Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (540,60,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (541,61,6,'$ 100.00 - General Membership: Offline signup','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (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,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (628,98,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (633,103,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (640,110,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40'),
+ (642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-09 15:29:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-09 15:29:40','2022-10-09 15:29:40');
 /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -812,1047 +813,956 @@ 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
- (36,18,1,3),
- (124,62,1,3),
- (568,284,1,3),
- (878,439,1,3),
- (70,35,2,3),
- (224,112,2,3),
- (240,120,2,3),
- (378,189,2,3),
- (486,243,2,3),
- (842,421,2,3),
- (901,451,2,2),
- (1012,562,2,2),
- (66,33,3,3),
- (206,103,3,3),
- (260,130,3,3),
- (294,147,3,3),
- (702,351,3,3),
- (792,396,3,3),
- (74,37,4,3),
- (380,190,4,3),
- (522,261,4,3),
- (544,272,4,3),
- (640,320,4,3),
- (860,430,4,3),
- (902,452,4,2),
- (905,455,4,2),
- (218,109,5,3),
- (412,206,5,3),
- (658,329,5,3),
- (678,339,5,3),
- (96,48,6,3),
- (416,208,6,3),
- (778,389,6,3),
- (903,453,6,2),
- (2,1,7,3),
- (202,101,7,3),
- (278,139,7,3),
- (370,185,7,3),
- (518,259,7,3),
- (896,448,7,3),
- (900,450,7,3),
- (40,20,8,3),
- (134,67,8,3),
- (176,88,8,3),
- (186,93,8,3),
- (626,313,8,3),
- (688,344,8,3),
- (760,380,8,3),
- (880,440,8,3),
- (904,454,8,2),
- (62,31,9,3),
- (88,44,9,3),
- (140,70,9,3),
- (188,94,9,3),
- (550,275,9,3),
- (178,89,10,3),
- (228,114,10,3),
- (552,276,10,3),
- (1039,589,10,2),
- (634,317,11,3),
- (782,391,11,3),
- (800,400,11,3),
- (876,438,11,3),
- (956,506,11,2),
- (962,536,11,2),
- (108,54,12,3),
- (328,164,12,3),
- (732,366,12,3),
- (420,210,13,3),
- (422,211,13,3),
- (810,405,13,3),
- (846,423,13,3),
- (90,45,14,3),
- (216,108,16,3),
- (246,123,16,3),
- (290,145,16,3),
- (320,160,16,3),
- (342,171,16,3),
- (480,240,16,3),
- (592,296,16,3),
- (906,456,16,2),
- (1040,590,16,2),
- (60,30,17,3),
- (250,125,17,3),
- (584,292,18,3),
- (38,19,19,3),
- (120,60,19,3),
- (336,168,19,3),
- (472,236,19,3),
- (608,304,19,3),
- (656,328,19,3),
- (907,457,19,2),
- (1006,556,19,2),
- (28,14,20,3),
- (244,122,20,3),
- (298,149,20,3),
- (746,373,20,3),
- (104,52,21,3),
- (590,295,21,3),
- (664,332,21,3),
- (362,181,22,3),
- (648,324,22,3),
- (700,350,22,3),
- (830,415,22,3),
- (854,427,22,3),
- (194,97,23,3),
- (396,198,23,3),
- (520,260,23,3),
- (598,299,23,3),
- (136,68,24,3),
- (164,82,24,3),
- (296,148,24,3),
- (346,173,24,3),
- (382,191,24,3),
- (432,216,24,3),
- (580,290,24,3),
- (642,321,24,3),
- (682,341,24,3),
- (248,124,25,3),
- (402,201,25,3),
- (794,397,25,3),
- (834,417,25,3),
- (200,100,26,3),
- (506,253,26,3),
- (268,134,27,3),
- (344,172,27,3),
- (766,383,27,3),
- (836,418,27,3),
- (862,431,27,3),
- (935,485,27,2),
- (963,515,27,2),
- (198,99,28,3),
- (232,116,28,3),
- (410,205,28,3),
- (434,217,28,3),
- (886,443,28,3),
- (48,24,29,3),
- (170,85,29,3),
- (474,237,29,3),
- (694,347,29,3),
- (772,386,29,3),
- (784,392,29,3),
- (398,199,30,3),
- (774,387,30,3),
- (1038,588,30,2),
- (68,34,31,3),
- (148,74,31,3),
- (466,233,31,3),
- (494,247,31,3),
- (762,381,31,3),
- (770,385,31,3),
- (788,394,31,3),
- (940,490,31,2),
- (964,520,31,2),
- (18,9,32,3),
- (192,96,32,3),
- (796,398,32,3),
- (913,463,32,2),
- (914,464,32,2),
- (86,43,33,3),
- (168,84,33,3),
- (238,119,33,3),
- (264,132,33,3),
- (516,258,33,3),
- (588,294,33,3),
- (722,361,34,3),
- (866,433,34,3),
- (910,460,34,2),
- (1008,558,34,2),
- (166,83,35,3),
- (424,212,35,3),
- (838,419,35,3),
- (1027,577,35,2),
- (76,38,36,3),
- (314,157,36,3),
- (376,188,36,3),
- (460,230,36,3),
- (508,254,36,3),
- (196,98,37,3),
- (1018,568,37,2),
- (116,58,38,3),
- (276,138,38,3),
- (478,239,38,3),
- (318,159,39,3),
- (330,165,39,3),
- (558,279,39,3),
- (736,368,39,3),
- (752,376,39,3),
- (1009,559,39,2),
- (214,107,40,3),
- (230,115,40,3),
- (286,143,40,3),
- (292,146,40,3),
- (428,214,41,3),
- (430,215,41,3),
- (548,274,41,3),
- (632,316,41,3),
- (806,403,41,3),
- (852,426,41,3),
- (150,75,42,3),
- (672,336,42,3),
- (870,435,42,3),
- (1021,571,42,2),
- (58,29,43,3),
- (888,444,43,3),
- (912,462,43,2),
- (947,497,43,2),
- (965,527,43,2),
- (26,13,44,3),
- (154,77,44,3),
- (436,218,44,3),
- (698,349,44,3),
- (146,73,45,3),
- (358,179,45,3),
- (394,197,45,3),
- (582,291,45,3),
- (110,55,46,3),
- (262,131,46,3),
- (312,156,46,3),
- (464,232,46,3),
- (938,488,46,2),
- (966,518,46,2),
- (284,142,47,3),
- (496,248,47,3),
- (546,273,47,3),
- (890,445,47,3),
- (959,509,47,2),
- (967,539,47,2),
- (226,113,48,3),
- (408,204,48,3),
- (488,244,48,3),
- (618,309,48,3),
- (808,404,48,3),
- (1024,574,48,2),
- (252,126,49,3),
- (360,180,49,3),
- (450,225,49,3),
- (948,498,49,2),
- (968,528,49,2),
- (14,7,50,3),
- (444,222,50,3),
- (804,402,50,3),
- (822,411,50,3),
- (840,420,50,3),
- (1014,564,50,2),
- (406,203,51,3),
- (462,231,51,3),
- (30,15,52,3),
- (102,51,52,3),
- (820,410,52,3),
- (868,434,52,3),
- (884,442,52,3),
- (254,127,53,3),
- (280,140,53,3),
- (484,242,53,3),
- (538,269,53,3),
- (566,283,53,3),
- (844,422,53,3),
- (266,133,54,3),
- (348,174,54,3),
- (374,187,54,3),
- (668,334,54,3),
- (832,416,54,3),
- (56,28,55,3),
- (84,42,55,3),
- (530,265,55,3),
- (874,437,55,3),
- (316,158,56,3),
- (354,177,56,3),
- (554,277,56,3),
- (578,289,56,3),
- (638,319,56,3),
- (716,358,56,3),
- (728,364,56,3),
- (798,399,56,3),
- (80,40,57,3),
- (94,47,57,3),
- (388,194,57,3),
- (490,245,57,3),
- (720,360,57,3),
- (1001,551,57,2),
- (24,12,58,3),
- (54,27,58,3),
- (160,80,58,3),
- (364,182,58,3),
- (534,267,58,3),
- (660,330,58,3),
- (754,377,58,3),
- (786,393,58,3),
- (932,482,58,2),
- (969,512,58,2),
- (1007,557,58,2),
- (628,314,59,3),
- (915,465,59,2),
- (916,466,59,2),
- (917,467,59,2),
- (918,468,59,2),
- (919,469,59,2),
- (920,470,59,2),
- (921,471,59,2),
- (922,472,59,2),
- (923,473,59,2),
- (924,474,59,2),
- (925,475,59,2),
- (156,78,60,3),
- (470,235,60,3),
- (560,280,60,3),
- (616,308,60,3),
- (622,311,60,3),
- (624,312,60,3),
- (750,375,60,3),
- (933,483,60,2),
- (970,513,60,2),
- (64,32,61,3),
- (126,63,61,3),
- (892,446,61,3),
- (950,500,61,2),
- (971,530,61,2),
- (1002,552,61,2),
- (130,65,62,3),
- (332,166,62,3),
- (414,207,62,3),
- (674,337,62,3),
- (712,356,62,3),
- (724,362,62,3),
- (818,409,62,3),
- (100,50,63,3),
- (300,150,63,3),
- (302,151,63,3),
- (352,176,63,3),
- (498,249,63,3),
- (574,287,63,3),
- (602,301,63,3),
- (610,305,63,3),
- (714,357,63,3),
- (824,412,63,3),
- (400,200,64,3),
- (452,226,64,3),
- (768,384,64,3),
- (816,408,64,3),
- (858,429,64,3),
- (458,229,65,3),
- (542,271,65,3),
- (646,323,65,3),
- (650,325,65,3),
- (802,401,65,3),
- (812,406,65,3),
- (22,11,66,3),
- (112,56,66,3),
- (152,76,66,3),
- (270,135,66,3),
- (536,268,66,3),
- (670,335,66,3),
- (776,388,66,3),
- (856,428,66,3),
- (44,22,67,3),
- (242,121,67,3),
- (448,224,67,3),
- (704,352,67,3),
- (848,424,67,3),
- (98,49,68,3),
- (184,92,68,3),
- (334,167,68,3),
- (662,331,68,3),
- (708,354,68,3),
- (864,432,68,3),
- (676,338,69,3),
- (144,72,70,3),
- (306,153,70,3),
- (322,161,70,3),
- (324,162,70,3),
- (586,293,70,3),
- (738,369,71,3),
- (850,425,71,3),
- (911,461,71,2),
- (958,508,71,2),
- (972,538,71,2),
- (304,152,72,3),
- (614,307,72,3),
- (684,342,72,3),
- (718,359,72,3),
- (756,378,72,3),
- (1015,565,72,2),
- (10,5,73,3),
- (594,297,73,3),
- (790,395,73,3),
- (20,10,74,3),
- (576,288,74,3),
- (612,306,74,3),
- (996,546,74,2),
- (50,25,75,3),
- (234,117,75,3),
- (438,219,75,3),
- (562,281,75,3),
- (606,303,75,3),
- (740,370,75,3),
- (8,4,76,3),
- (42,21,76,3),
- (132,66,76,3),
- (220,110,76,3),
- (814,407,76,3),
- (122,61,77,3),
- (180,90,78,3),
- (356,178,78,3),
- (468,234,78,3),
- (556,278,78,3),
- (993,543,78,2),
- (12,6,79,3),
- (16,8,79,3),
- (34,17,79,3),
- (128,64,79,3),
- (826,413,79,3),
- (52,26,80,3),
- (310,155,80,3),
- (350,175,80,3),
- (442,221,80,3),
- (764,382,80,3),
- (158,79,81,3),
- (236,118,81,3),
- (540,270,81,3),
- (570,285,81,3),
- (630,315,81,3),
- (1032,582,81,2),
- (908,458,82,2),
- (4,2,83,3),
- (204,102,83,3),
- (390,195,83,3),
- (482,241,83,3),
- (532,266,83,3),
- (706,353,83,3),
- (941,491,83,2),
- (973,521,83,2),
- (114,57,84,3),
- (338,169,84,3),
- (600,300,84,3),
- (995,545,84,2),
- (82,41,85,3),
- (945,495,85,2),
- (974,525,85,2),
- (426,213,86,3),
- (510,255,86,3),
- (526,263,86,3),
- (742,371,86,3),
- (758,379,86,3),
- (106,53,87,3),
- (326,163,87,3),
- (368,184,87,3),
- (446,223,87,3),
- (172,86,88,3),
- (182,91,88,3),
- (366,183,88,3),
- (476,238,88,3),
- (710,355,88,3),
- (6,3,89,3),
- (174,87,89,3),
- (308,154,89,3),
- (340,170,89,3),
- (696,348,89,3),
- (46,23,90,3),
- (78,39,90,3),
- (118,59,90,3),
- (162,81,90,3),
- (386,193,90,3),
- (492,246,90,3),
- (512,256,90,3),
- (528,264,90,3),
- (644,322,90,3),
- (780,390,90,3),
- (1041,591,90,2),
- (596,298,91,3),
- (620,310,91,3),
- (666,333,91,3),
- (680,340,91,3),
- (828,414,91,3),
- (138,69,92,3),
- (258,129,92,3),
- (500,250,92,3),
- (726,363,92,3),
- (898,449,92,3),
- (909,459,92,2),
- (142,71,93,3),
- (210,105,93,3),
- (288,144,93,3),
- (456,228,93,3),
- (604,302,93,3),
- (32,16,94,3),
- (212,106,94,3),
- (282,141,94,3),
- (384,192,94,3),
- (418,209,94,3),
- (440,220,94,3),
- (734,367,94,3),
- (872,436,94,3),
- (92,46,95,3),
- (654,327,95,3),
- (730,365,95,3),
- (208,104,96,3),
- (256,128,96,3),
- (504,252,96,3),
- (894,447,96,3),
- (274,137,97,3),
- (748,374,97,3),
- (960,510,97,2),
- (975,540,97,2),
- (1030,580,97,2),
- (72,36,98,3),
- (222,111,98,3),
- (392,196,98,3),
- (572,286,98,3),
- (636,318,98,3),
- (690,345,98,3),
- (744,372,98,3),
- (190,95,99,3),
- (272,136,99,3),
- (454,227,99,3),
- (524,262,99,3),
- (564,282,99,3),
- (926,476,99,2),
- (927,477,99,2),
- (928,478,99,2),
- (929,479,99,2),
- (930,480,99,2),
- (404,202,100,3),
- (514,257,100,3),
- (692,346,100,3),
- (882,441,100,3),
- (372,186,101,3),
- (502,251,101,3),
- (652,326,101,3),
- (686,343,101,3),
- (1016,566,101,2),
- (931,481,103,2),
- (1023,573,105,2),
- (949,499,109,2),
- (976,529,109,2),
- (1042,592,109,2),
- (1,1,112,2),
- (3,2,112,2),
- (5,3,112,2),
- (7,4,112,2),
- (9,5,112,2),
- (11,6,112,2),
- (13,7,112,2),
- (15,8,112,2),
- (17,9,112,2),
- (19,10,112,2),
- (21,11,112,2),
- (23,12,112,2),
- (25,13,112,2),
- (27,14,112,2),
- (29,15,112,2),
- (31,16,112,2),
- (33,17,112,2),
- (35,18,112,2),
- (37,19,112,2),
- (39,20,112,2),
- (41,21,112,2),
- (43,22,112,2),
- (45,23,112,2),
- (47,24,112,2),
- (49,25,112,2),
- (51,26,112,2),
- (53,27,112,2),
- (55,28,112,2),
- (57,29,112,2),
- (59,30,112,2),
- (61,31,112,2),
- (63,32,112,2),
- (65,33,112,2),
- (67,34,112,2),
- (69,35,112,2),
- (71,36,112,2),
- (73,37,112,2),
- (75,38,112,2),
- (77,39,112,2),
- (79,40,112,2),
- (81,41,112,2),
- (83,42,112,2),
- (85,43,112,2),
- (87,44,112,2),
- (89,45,112,2),
- (91,46,112,2),
- (93,47,112,2),
- (95,48,112,2),
- (97,49,112,2),
- (99,50,112,2),
- (101,51,112,2),
- (103,52,112,2),
- (105,53,112,2),
- (107,54,112,2),
- (109,55,112,2),
- (111,56,112,2),
- (113,57,112,2),
- (115,58,112,2),
- (117,59,112,2),
- (119,60,112,2),
- (121,61,112,2),
- (123,62,112,2),
- (125,63,112,2),
- (127,64,112,2),
- (129,65,112,2),
- (131,66,112,2),
- (133,67,112,2),
- (135,68,112,2),
- (137,69,112,2),
- (139,70,112,2),
- (141,71,112,2),
- (143,72,112,2),
- (145,73,112,2),
- (147,74,112,2),
- (149,75,112,2),
- (151,76,112,2),
- (153,77,112,2),
- (155,78,112,2),
- (157,79,112,2),
- (159,80,112,2),
- (161,81,112,2),
- (163,82,112,2),
- (165,83,112,2),
- (167,84,112,2),
- (169,85,112,2),
- (171,86,112,2),
- (173,87,112,2),
- (175,88,112,2),
- (177,89,112,2),
- (179,90,112,2),
- (181,91,112,2),
- (183,92,112,2),
- (185,93,112,2),
- (187,94,112,2),
- (189,95,112,2),
- (191,96,112,2),
- (193,97,112,2),
- (195,98,112,2),
- (197,99,112,2),
- (199,100,112,2),
- (201,101,112,2),
- (203,102,112,2),
- (205,103,112,2),
- (207,104,112,2),
- (209,105,112,2),
- (211,106,112,2),
- (213,107,112,2),
- (215,108,112,2),
- (217,109,112,2),
- (219,110,112,2),
- (221,111,112,2),
- (223,112,112,2),
- (225,113,112,2),
- (227,114,112,2),
- (229,115,112,2),
- (231,116,112,2),
- (233,117,112,2),
- (235,118,112,2),
- (237,119,112,2),
- (239,120,112,2),
- (241,121,112,2),
- (243,122,112,2),
- (245,123,112,2),
- (247,124,112,2),
- (249,125,112,2),
- (251,126,112,2),
- (253,127,112,2),
- (255,128,112,2),
- (257,129,112,2),
- (259,130,112,2),
- (261,131,112,2),
- (263,132,112,2),
- (265,133,112,2),
- (267,134,112,2),
- (269,135,112,2),
- (271,136,112,2),
- (273,137,112,2),
- (275,138,112,2),
- (277,139,112,2),
- (279,140,112,2),
- (281,141,112,2),
- (283,142,112,2),
- (285,143,112,2),
- (287,144,112,2),
- (289,145,112,2),
- (291,146,112,2),
- (293,147,112,2),
- (295,148,112,2),
- (297,149,112,2),
- (299,150,112,2),
- (999,549,112,2),
- (997,547,119,2),
- (961,511,120,2),
- (977,541,120,2),
- (943,493,123,2),
- (978,523,123,2),
- (1022,572,128,2),
- (1036,586,129,2),
- (952,502,130,2),
- (979,532,130,2),
- (944,494,131,2),
- (980,524,131,2),
- (1013,563,132,2),
- (1028,578,134,2),
- (998,548,136,2),
- (953,503,138,2),
- (981,533,138,2),
- (951,501,139,2),
- (982,531,139,2),
- (942,492,140,2),
- (983,522,140,2),
- (1037,587,141,2),
- (1010,560,146,2),
- (1019,569,151,2),
- (1005,555,152,2),
- (601,301,154,2),
- (603,302,154,2),
- (605,303,154,2),
- (607,304,154,2),
- (609,305,154,2),
- (611,306,154,2),
- (613,307,154,2),
- (615,308,154,2),
- (617,309,154,2),
- (619,310,154,2),
- (621,311,154,2),
- (623,312,154,2),
- (625,313,154,2),
- (627,314,154,2),
- (629,315,154,2),
- (631,316,154,2),
- (633,317,154,2),
- (635,318,154,2),
- (637,319,154,2),
- (639,320,154,2),
- (641,321,154,2),
- (643,322,154,2),
- (645,323,154,2),
- (647,324,154,2),
- (649,325,154,2),
- (651,326,154,2),
- (653,327,154,2),
- (655,328,154,2),
- (657,329,154,2),
- (659,330,154,2),
- (661,331,154,2),
- (663,332,154,2),
- (665,333,154,2),
- (667,334,154,2),
- (669,335,154,2),
- (671,336,154,2),
- (673,337,154,2),
- (675,338,154,2),
- (677,339,154,2),
- (679,340,154,2),
- (681,341,154,2),
- (683,342,154,2),
- (685,343,154,2),
- (687,344,154,2),
- (689,345,154,2),
- (691,346,154,2),
- (693,347,154,2),
- (695,348,154,2),
- (697,349,154,2),
- (699,350,154,2),
- (701,351,154,2),
- (703,352,154,2),
- (705,353,154,2),
- (707,354,154,2),
- (709,355,154,2),
- (711,356,154,2),
- (713,357,154,2),
- (715,358,154,2),
- (717,359,154,2),
- (719,360,154,2),
- (721,361,154,2),
- (723,362,154,2),
- (725,363,154,2),
- (727,364,154,2),
- (729,365,154,2),
- (731,366,154,2),
- (733,367,154,2),
- (735,368,154,2),
- (737,369,154,2),
- (739,370,154,2),
- (741,371,154,2),
- (743,372,154,2),
- (745,373,154,2),
- (747,374,154,2),
- (749,375,154,2),
- (751,376,154,2),
- (753,377,154,2),
- (755,378,154,2),
- (757,379,154,2),
- (759,380,154,2),
- (761,381,154,2),
- (763,382,154,2),
- (765,383,154,2),
- (767,384,154,2),
- (769,385,154,2),
- (771,386,154,2),
- (773,387,154,2),
- (775,388,154,2),
- (777,389,154,2),
- (779,390,154,2),
- (781,391,154,2),
- (783,392,154,2),
- (785,393,154,2),
- (787,394,154,2),
- (789,395,154,2),
- (791,396,154,2),
- (793,397,154,2),
- (795,398,154,2),
- (797,399,154,2),
- (799,400,154,2),
- (801,401,154,2),
- (803,402,154,2),
- (805,403,154,2),
- (807,404,154,2),
- (809,405,154,2),
- (811,406,154,2),
- (813,407,154,2),
- (815,408,154,2),
- (817,409,154,2),
- (819,410,154,2),
- (821,411,154,2),
- (823,412,154,2),
- (825,413,154,2),
- (827,414,154,2),
- (829,415,154,2),
- (831,416,154,2),
- (833,417,154,2),
- (835,418,154,2),
- (837,419,154,2),
- (839,420,154,2),
- (841,421,154,2),
- (843,422,154,2),
- (845,423,154,2),
- (847,424,154,2),
- (849,425,154,2),
- (851,426,154,2),
- (853,427,154,2),
- (855,428,154,2),
- (857,429,154,2),
- (859,430,154,2),
- (861,431,154,2),
- (863,432,154,2),
- (865,433,154,2),
- (867,434,154,2),
- (869,435,154,2),
- (871,436,154,2),
- (873,437,154,2),
- (875,438,154,2),
- (877,439,154,2),
- (879,440,154,2),
- (881,441,154,2),
- (883,442,154,2),
- (885,443,154,2),
- (887,444,154,2),
- (889,445,154,2),
- (891,446,154,2),
- (893,447,154,2),
- (895,448,154,2),
- (897,449,154,2),
- (899,450,154,2),
- (1000,550,154,2),
- (946,496,159,2),
- (984,526,159,2),
- (994,544,160,2),
- (1035,585,163,2),
- (937,487,166,2),
- (985,517,166,2),
- (1025,575,166,2),
- (957,507,170,2),
- (986,537,170,2),
- (936,486,174,2),
- (987,516,174,2),
- (1029,579,174,2),
- (1017,567,175,2),
- (934,484,176,2),
- (988,514,176,2),
- (1020,570,176,2),
- (1011,561,180,2),
- (1004,554,186,2),
- (1033,583,187,2),
- (955,505,188,2),
- (989,535,188,2),
- (1034,584,191,2),
- (1026,576,194,2),
- (954,504,197,2),
- (990,534,197,2),
- (939,489,198,2),
- (991,519,198,2),
- (1003,553,200,2),
- (301,151,201,2),
- (303,152,201,2),
- (305,153,201,2),
- (307,154,201,2),
- (309,155,201,2),
- (311,156,201,2),
- (313,157,201,2),
- (315,158,201,2),
- (317,159,201,2),
- (319,160,201,2),
- (321,161,201,2),
- (323,162,201,2),
- (325,163,201,2),
- (327,164,201,2),
- (329,165,201,2),
- (331,166,201,2),
- (333,167,201,2),
- (335,168,201,2),
- (337,169,201,2),
- (339,170,201,2),
- (341,171,201,2),
- (343,172,201,2),
- (345,173,201,2),
- (347,174,201,2),
- (349,175,201,2),
- (351,176,201,2),
- (353,177,201,2),
- (355,178,201,2),
- (357,179,201,2),
- (359,180,201,2),
- (361,181,201,2),
- (363,182,201,2),
- (365,183,201,2),
- (367,184,201,2),
- (369,185,201,2),
- (371,186,201,2),
- (373,187,201,2),
- (375,188,201,2),
- (377,189,201,2),
- (379,190,201,2),
- (381,191,201,2),
- (383,192,201,2),
- (385,193,201,2),
- (387,194,201,2),
- (389,195,201,2),
- (391,196,201,2),
- (393,197,201,2),
- (395,198,201,2),
- (397,199,201,2),
- (399,200,201,2),
- (401,201,201,2),
- (403,202,201,2),
- (405,203,201,2),
- (407,204,201,2),
- (409,205,201,2),
- (411,206,201,2),
- (413,207,201,2),
- (415,208,201,2),
- (417,209,201,2),
- (419,210,201,2),
- (421,211,201,2),
- (423,212,201,2),
- (425,213,201,2),
- (427,214,201,2),
- (429,215,201,2),
- (431,216,201,2),
- (433,217,201,2),
- (435,218,201,2),
- (437,219,201,2),
- (439,220,201,2),
- (441,221,201,2),
- (443,222,201,2),
- (445,223,201,2),
- (447,224,201,2),
- (449,225,201,2),
- (451,226,201,2),
- (453,227,201,2),
- (455,228,201,2),
- (457,229,201,2),
- (459,230,201,2),
- (461,231,201,2),
- (463,232,201,2),
- (465,233,201,2),
- (467,234,201,2),
- (469,235,201,2),
- (471,236,201,2),
- (473,237,201,2),
- (475,238,201,2),
- (477,239,201,2),
- (479,240,201,2),
- (481,241,201,2),
- (483,242,201,2),
- (485,243,201,2),
- (487,244,201,2),
- (489,245,201,2),
- (491,246,201,2),
- (493,247,201,2),
- (495,248,201,2),
- (497,249,201,2),
- (499,250,201,2),
- (501,251,201,2),
- (503,252,201,2),
- (505,253,201,2),
- (507,254,201,2),
- (509,255,201,2),
- (511,256,201,2),
- (513,257,201,2),
- (515,258,201,2),
- (517,259,201,2),
- (519,260,201,2),
- (521,261,201,2),
- (523,262,201,2),
- (525,263,201,2),
- (527,264,201,2),
- (529,265,201,2),
- (531,266,201,2),
- (533,267,201,2),
- (535,268,201,2),
- (537,269,201,2),
- (539,270,201,2),
- (541,271,201,2),
- (543,272,201,2),
- (545,273,201,2),
- (547,274,201,2),
- (549,275,201,2),
- (551,276,201,2),
- (553,277,201,2),
- (555,278,201,2),
- (557,279,201,2),
- (559,280,201,2),
- (561,281,201,2),
- (563,282,201,2),
- (565,283,201,2),
- (567,284,201,2),
- (569,285,201,2),
- (571,286,201,2),
- (573,287,201,2),
- (575,288,201,2),
- (577,289,201,2),
- (579,290,201,2),
- (581,291,201,2),
- (583,292,201,2),
- (585,293,201,2),
- (587,294,201,2),
- (589,295,201,2),
- (591,296,201,2),
- (593,297,201,2),
- (595,298,201,2),
- (597,299,201,2),
- (599,300,201,2),
- (1031,581,202,2);
+ (19,10,1,3),
+ (450,253,1,3),
+ (480,268,1,3),
+ (141,80,2,3),
+ (432,242,2,3),
+ (656,368,2,3),
+ (810,451,2,2),
+ (923,564,2,2),
+ (313,177,3,3),
+ (434,243,3,3),
+ (488,274,3,3),
+ (726,406,3,3),
+ (254,143,4,3),
+ (299,169,4,3),
+ (440,247,4,3),
+ (486,273,4,3),
+ (811,452,4,2),
+ (814,455,4,2),
+ (101,58,5,3),
+ (284,160,5,3),
+ (537,301,5,2),
+ (539,302,5,2),
+ (541,303,5,2),
+ (543,304,5,2),
+ (545,305,5,2),
+ (547,306,5,2),
+ (549,307,5,2),
+ (550,308,5,2),
+ (552,309,5,2),
+ (554,310,5,2),
+ (556,311,5,2),
+ (558,312,5,2),
+ (560,313,5,2),
+ (562,314,5,2),
+ (564,315,5,2),
+ (565,316,5,2),
+ (566,317,5,2),
+ (568,318,5,2),
+ (570,319,5,2),
+ (571,320,5,2),
+ (573,321,5,2),
+ (575,322,5,2),
+ (577,323,5,2),
+ (579,324,5,2),
+ (580,325,5,2),
+ (582,326,5,2),
+ (583,327,5,2),
+ (585,328,5,2),
+ (587,329,5,2),
+ (589,330,5,2),
+ (591,331,5,2),
+ (593,332,5,2),
+ (594,333,5,2),
+ (595,333,5,3),
+ (596,334,5,2),
+ (598,335,5,2),
+ (599,335,5,3),
+ (600,336,5,2),
+ (602,337,5,2),
+ (603,338,5,2),
+ (605,339,5,2),
+ (607,340,5,2),
+ (608,341,5,2),
+ (609,342,5,2),
+ (611,343,5,2),
+ (613,344,5,2),
+ (615,345,5,2),
+ (617,346,5,2),
+ (619,347,5,2),
+ (621,348,5,2),
+ (623,349,5,2),
+ (624,350,5,2),
+ (626,351,5,2),
+ (628,352,5,2),
+ (629,353,5,2),
+ (631,354,5,2),
+ (633,355,5,2),
+ (634,356,5,2),
+ (635,357,5,2),
+ (637,358,5,2),
+ (638,359,5,2),
+ (640,360,5,2),
+ (642,361,5,2),
+ (644,362,5,2),
+ (646,363,5,2),
+ (648,364,5,2),
+ (649,365,5,2),
+ (651,366,5,2),
+ (653,367,5,2),
+ (655,368,5,2),
+ (657,369,5,2),
+ (659,370,5,2),
+ (661,371,5,2),
+ (663,372,5,2),
+ (665,373,5,2),
+ (667,374,5,2),
+ (669,375,5,2),
+ (671,376,5,2),
+ (673,377,5,2),
+ (675,378,5,2),
+ (677,379,5,2),
+ (679,380,5,2),
+ (680,381,5,2),
+ (682,382,5,2),
+ (684,383,5,2),
+ (685,384,5,2),
+ (687,385,5,2),
+ (688,386,5,2),
+ (690,387,5,2),
+ (692,388,5,2),
+ (694,389,5,2),
+ (695,390,5,2),
+ (696,391,5,2),
+ (698,392,5,2),
+ (700,393,5,2),
+ (702,394,5,2),
+ (704,395,5,2),
+ (706,396,5,2),
+ (708,397,5,2),
+ (710,398,5,2),
+ (712,399,5,2),
+ (714,400,5,2),
+ (715,401,5,2),
+ (717,402,5,2),
+ (719,403,5,2),
+ (721,404,5,2),
+ (723,405,5,2),
+ (725,406,5,2),
+ (727,407,5,2),
+ (729,408,5,2),
+ (731,409,5,2),
+ (733,410,5,2),
+ (735,411,5,2),
+ (737,412,5,2),
+ (739,413,5,2),
+ (741,414,5,2),
+ (742,415,5,2),
+ (744,416,5,2),
+ (745,417,5,2),
+ (747,418,5,2),
+ (749,419,5,2),
+ (751,420,5,2),
+ (753,421,5,2),
+ (755,422,5,2),
+ (757,423,5,2),
+ (759,424,5,2),
+ (761,425,5,2),
+ (763,426,5,2),
+ (765,427,5,2),
+ (767,428,5,2),
+ (769,429,5,2),
+ (771,430,5,2),
+ (772,431,5,2),
+ (774,432,5,2),
+ (775,433,5,2),
+ (777,434,5,2),
+ (779,435,5,2),
+ (781,436,5,2),
+ (783,437,5,2),
+ (785,438,5,2),
+ (787,439,5,2),
+ (789,440,5,2),
+ (791,441,5,2),
+ (793,442,5,2),
+ (795,443,5,2),
+ (797,444,5,2),
+ (799,445,5,2),
+ (801,446,5,2),
+ (802,447,5,2),
+ (804,448,5,2),
+ (806,449,5,2),
+ (808,450,5,2),
+ (855,496,5,2),
+ (885,526,5,2),
+ (232,129,6,3),
+ (447,251,6,3),
+ (740,413,6,3),
+ (812,453,6,2),
+ (939,580,6,2),
+ (205,113,7,3),
+ (218,121,8,3),
+ (220,122,8,3),
+ (270,152,8,3),
+ (691,387,8,3),
+ (711,398,8,3),
+ (790,440,8,3),
+ (813,454,8,2),
+ (51,29,9,3),
+ (586,328,9,3),
+ (645,362,9,3),
+ (664,372,9,3),
+ (681,381,9,3),
+ (764,426,9,3),
+ (864,505,9,2),
+ (894,535,9,2),
+ (92,52,10,3),
+ (614,344,10,3),
+ (752,420,11,3),
+ (497,279,12,3),
+ (601,336,12,3),
+ (654,367,12,3),
+ (230,128,13,3),
+ (319,180,13,3),
+ (386,218,13,3),
+ (408,230,13,3),
+ (578,323,13,3),
+ (622,348,13,3),
+ (650,365,13,3),
+ (678,379,13,3),
+ (847,488,13,2),
+ (877,518,13,2),
+ (41,23,14,3),
+ (166,93,14,3),
+ (349,197,14,3),
+ (557,311,14,3),
+ (610,342,14,3),
+ (666,373,14,3),
+ (800,445,14,3),
+ (188,104,15,3),
+ (268,151,15,3),
+ (722,404,15,3),
+ (257,145,16,3),
+ (466,261,16,3),
+ (478,267,16,3),
+ (815,456,16,2),
+ (153,86,17,3),
+ (170,95,17,3),
+ (286,161,17,3),
+ (604,338,17,3),
+ (853,494,17,2),
+ (883,524,17,2),
+ (918,559,17,2),
+ (89,50,18,3),
+ (511,286,18,3),
+ (567,317,18,3),
+ (686,384,19,3),
+ (816,457,19,2),
+ (164,92,20,3),
+ (542,303,20,3),
+ (559,312,20,3),
+ (841,482,20,2),
+ (871,512,20,2),
+ (911,552,20,2),
+ (303,171,21,3),
+ (612,343,21,3),
+ (670,375,21,3),
+ (676,378,21,3),
+ (948,589,21,2),
+ (250,141,22,3),
+ (416,234,22,3),
+ (426,239,22,3),
+ (597,334,22,3),
+ (104,60,23,3),
+ (184,102,23,3),
+ (244,137,23,3),
+ (272,153,23,3),
+ (353,199,23,3),
+ (66,37,24,3),
+ (139,79,24,3),
+ (369,209,24,3),
+ (574,321,24,3),
+ (786,438,24,3),
+ (21,11,25,3),
+ (925,566,25,2),
+ (190,105,26,3),
+ (259,146,26,3),
+ (238,133,27,3),
+ (361,204,27,3),
+ (402,227,27,3),
+ (418,235,27,3),
+ (535,299,27,3),
+ (743,415,27,3),
+ (866,507,27,2),
+ (896,537,27,2),
+ (926,567,27,2),
+ (373,211,29,3),
+ (474,265,29,3),
+ (572,320,29,3),
+ (672,376,29,3),
+ (414,233,30,3),
+ (750,419,30,3),
+ (910,551,30,2),
+ (345,195,31,3),
+ (703,394,31,3),
+ (822,463,32,2),
+ (823,464,32,2),
+ (935,576,32,2),
+ (36,20,33,3),
+ (137,78,33,3),
+ (460,258,33,3),
+ (517,289,33,3),
+ (746,417,33,3),
+ (932,573,33,2),
+ (120,69,34,3),
+ (213,118,34,3),
+ (393,222,34,3),
+ (576,322,34,3),
+ (768,428,34,3),
+ (819,460,34,2),
+ (61,34,35,3),
+ (616,345,35,3),
+ (652,366,35,3),
+ (34,19,36,3),
+ (76,43,36,3),
+ (182,101,36,3),
+ (223,124,37,3),
+ (375,212,37,3),
+ (43,24,38,3),
+ (174,97,38,3),
+ (208,115,38,3),
+ (438,246,38,3),
+ (505,283,38,3),
+ (581,325,38,3),
+ (660,370,38,3),
+ (748,418,38,3),
+ (809,450,38,3),
+ (850,491,38,2),
+ (880,521,38,2),
+ (168,94,39,3),
+ (531,297,39,3),
+ (701,393,39,3),
+ (728,407,39,3),
+ (865,506,39,2),
+ (895,536,39,2),
+ (904,545,39,2),
+ (377,213,40,3),
+ (404,228,40,3),
+ (491,276,40,3),
+ (643,361,40,3),
+ (9,5,41,3),
+ (321,181,41,3),
+ (916,557,41,2),
+ (124,71,42,3),
+ (158,89,42,3),
+ (336,189,42,3),
+ (422,237,42,3),
+ (630,353,42,3),
+ (842,483,42,2),
+ (872,513,42,2),
+ (544,304,43,3),
+ (821,462,43,2),
+ (96,55,44,3),
+ (117,67,44,3),
+ (282,159,44,3),
+ (561,313,44,3),
+ (128,73,45,3),
+ (513,287,45,3),
+ (551,308,45,3),
+ (766,427,45,3),
+ (6,3,46,3),
+ (113,65,46,3),
+ (803,447,46,3),
+ (906,547,46,2),
+ (379,214,47,3),
+ (718,402,47,3),
+ (758,423,47,3),
+ (929,570,47,2),
+ (55,31,48,3),
+ (288,162,48,3),
+ (317,179,48,3),
+ (903,544,48,2),
+ (80,45,49,3),
+ (133,76,49,3),
+ (151,85,49,3),
+ (162,91,49,3),
+ (242,136,49,3),
+ (311,176,49,3),
+ (452,254,49,3),
+ (523,292,49,3),
+ (606,339,49,3),
+ (334,188,50,3),
+ (620,347,50,3),
+ (47,26,51,3),
+ (122,70,51,3),
+ (211,117,51,3),
+ (618,346,51,3),
+ (555,310,52,3),
+ (11,6,53,3),
+ (15,8,53,3),
+ (186,103,53,3),
+ (495,278,53,3),
+ (713,399,53,3),
+ (736,411,53,3),
+ (754,421,53,3),
+ (773,431,53,3),
+ (328,185,54,3),
+ (400,226,54,3),
+ (529,296,54,3),
+ (784,437,54,3),
+ (909,550,54,2),
+ (347,196,55,3),
+ (705,395,55,3),
+ (798,444,56,3),
+ (930,571,56,2),
+ (538,301,57,3),
+ (194,107,58,3),
+ (324,183,58,3),
+ (927,568,58,2),
+ (32,18,59,3),
+ (307,174,59,3),
+ (738,412,59,3),
+ (824,465,59,2),
+ (825,466,59,2),
+ (826,467,59,2),
+ (827,468,59,2),
+ (828,469,59,2),
+ (829,470,59,2),
+ (830,471,59,2),
+ (831,472,59,2),
+ (832,473,59,2),
+ (833,474,59,2),
+ (834,475,59,2),
+ (216,120,60,3),
+ (363,205,60,3),
+ (780,435,60,3),
+ (924,565,60,2),
+ (27,15,61,3),
+ (290,163,61,3),
+ (902,543,61,2),
+ (276,156,62,3),
+ (381,215,62,3),
+ (428,240,62,3),
+ (39,22,63,3),
+ (301,170,63,3),
+ (326,184,63,3),
+ (456,256,63,3),
+ (584,327,63,3),
+ (632,354,63,3),
+ (68,38,64,3),
+ (330,186,64,3),
+ (641,360,64,3),
+ (778,434,64,3),
+ (29,16,65,3),
+ (85,48,65,3),
+ (294,166,65,3),
+ (533,298,65,3),
+ (852,493,65,2),
+ (882,523,65,2),
+ (143,81,66,3),
+ (315,178,66,3),
+ (636,357,66,3),
+ (668,374,66,3),
+ (180,100,67,3),
+ (501,281,67,3),
+ (569,318,67,3),
+ (172,96,68,3),
+ (424,238,68,3),
+ (844,485,68,2),
+ (874,515,68,2),
+ (2,1,69,3),
+ (358,202,69,3),
+ (760,424,69,3),
+ (53,30,70,3),
+ (131,75,70,3),
+ (472,264,70,3),
+ (548,306,70,3),
+ (805,448,70,3),
+ (858,499,70,2),
+ (888,529,70,2),
+ (145,82,71,3),
+ (820,461,71,2),
+ (17,9,72,3),
+ (176,98,72,3),
+ (730,408,72,3),
+ (252,142,73,3),
+ (720,403,73,3),
+ (776,433,73,3),
+ (13,7,74,3),
+ (63,35,74,3),
+ (135,77,74,3),
+ (499,280,74,3),
+ (507,284,74,3),
+ (228,127,75,3),
+ (458,257,75,3),
+ (662,371,75,3),
+ (724,405,75,3),
+ (796,443,75,3),
+ (343,194,76,3),
+ (391,221,76,3),
+ (454,255,76,3),
+ (87,49,77,3),
+ (412,232,77,3),
+ (470,263,77,3),
+ (99,57,78,3),
+ (115,66,78,3),
+ (126,72,78,3),
+ (155,87,78,3),
+ (468,262,78,3),
+ (921,562,78,2),
+ (192,106,79,3),
+ (234,130,79,3),
+ (280,158,79,3),
+ (563,314,79,3),
+ (590,330,79,3),
+ (388,219,80,3),
+ (807,449,80,3),
+ (546,305,81,3),
+ (592,331,81,3),
+ (23,12,82,3),
+ (261,147,82,3),
+ (383,216,82,3),
+ (639,359,82,3),
+ (817,458,82,2),
+ (849,490,82,2),
+ (879,520,82,2),
+ (45,25,83,3),
+ (109,63,83,3),
+ (225,125,83,3),
+ (366,207,83,3),
+ (697,391,83,3),
+ (111,64,84,3),
+ (296,167,84,3),
+ (625,350,84,3),
+ (699,392,84,3),
+ (351,198,85,3),
+ (410,231,85,3),
+ (627,351,85,3),
+ (309,175,86,3),
+ (332,187,86,3),
+ (355,200,86,3),
+ (464,260,86,3),
+ (503,282,86,3),
+ (540,302,86,3),
+ (57,32,87,3),
+ (406,229,87,3),
+ (588,329,87,3),
+ (647,363,87,3),
+ (658,369,87,3),
+ (693,388,88,3),
+ (716,401,88,3),
+ (788,439,88,3),
+ (941,582,88,2),
+ (59,33,89,3),
+ (73,41,89,3),
+ (265,149,89,3),
+ (689,386,89,3),
+ (782,436,89,3),
+ (83,47,90,3),
+ (178,99,90,3),
+ (462,259,90,3),
+ (862,503,90,2),
+ (892,533,90,2),
+ (515,288,91,3),
+ (519,290,91,3),
+ (762,425,91,3),
+ (770,429,91,3),
+ (946,587,91,2),
+ (149,84,92,3),
+ (246,138,92,3),
+ (707,396,92,3),
+ (818,459,92,2),
+ (70,39,93,3),
+ (160,90,93,3),
+ (202,111,93,3),
+ (371,210,93,3),
+ (527,295,93,3),
+ (860,501,93,2),
+ (890,531,93,2),
+ (944,585,93,2),
+ (198,109,94,3),
+ (263,148,94,3),
+ (395,223,94,3),
+ (420,236,94,3),
+ (553,309,94,3),
+ (856,497,94,2),
+ (886,527,94,2),
+ (445,250,95,3),
+ (493,277,95,3),
+ (951,592,95,2),
+ (732,409,96,3),
+ (397,224,97,3),
+ (430,241,97,3),
+ (106,61,98,3),
+ (196,108,98,3),
+ (278,157,98,3),
+ (857,498,98,2),
+ (887,528,98,2),
+ (78,44,99,3),
+ (341,193,99,3),
+ (509,285,99,3),
+ (674,377,99,3),
+ (709,397,99,3),
+ (835,476,99,2),
+ (836,477,99,2),
+ (837,478,99,2),
+ (838,479,99,2),
+ (839,480,99,2),
+ (936,577,99,2),
+ (476,266,100,3),
+ (521,291,100,3),
+ (683,382,100,3),
+ (756,422,100,3),
+ (792,441,100,3),
+ (794,442,100,3),
+ (4,2,101,3),
+ (147,83,101,3),
+ (200,110,101,3),
+ (443,249,101,3),
+ (734,410,101,3),
+ (840,481,103,2),
+ (931,572,108,2),
+ (851,492,109,2),
+ (881,522,109,2),
+ (905,546,111,2),
+ (912,553,112,2),
+ (914,555,114,2),
+ (950,591,115,2),
+ (1,1,119,2),
+ (3,2,119,2),
+ (5,3,119,2),
+ (7,4,119,2),
+ (8,5,119,2),
+ (10,6,119,2),
+ (12,7,119,2),
+ (14,8,119,2),
+ (16,9,119,2),
+ (18,10,119,2),
+ (20,11,119,2),
+ (22,12,119,2),
+ (24,13,119,2),
+ (25,14,119,2),
+ (26,15,119,2),
+ (28,16,119,2),
+ (30,17,119,2),
+ (31,18,119,2),
+ (33,19,119,2),
+ (35,20,119,2),
+ (37,21,119,2),
+ (38,22,119,2),
+ (40,23,119,2),
+ (42,24,119,2),
+ (44,25,119,2),
+ (46,26,119,2),
+ (48,27,119,2),
+ (49,28,119,2),
+ (50,29,119,2),
+ (52,30,119,2),
+ (54,31,119,2),
+ (56,32,119,2),
+ (58,33,119,2),
+ (60,34,119,2),
+ (62,35,119,2),
+ (64,36,119,2),
+ (65,37,119,2),
+ (67,38,119,2),
+ (69,39,119,2),
+ (71,40,119,2),
+ (72,41,119,2),
+ (74,42,119,2),
+ (75,43,119,2),
+ (77,44,119,2),
+ (79,45,119,2),
+ (81,46,119,2),
+ (82,47,119,2),
+ (84,48,119,2),
+ (86,49,119,2),
+ (88,50,119,2),
+ (90,51,119,2),
+ (91,52,119,2),
+ (93,53,119,2),
+ (94,54,119,2),
+ (95,55,119,2),
+ (97,56,119,2),
+ (98,57,119,2),
+ (100,58,119,2),
+ (102,59,119,2),
+ (103,60,119,2),
+ (105,61,119,2),
+ (107,62,119,2),
+ (108,63,119,2),
+ (110,64,119,2),
+ (112,65,119,2),
+ (114,66,119,2),
+ (116,67,119,2),
+ (118,68,119,2),
+ (119,69,119,2),
+ (121,70,119,2),
+ (123,71,119,2),
+ (125,72,119,2),
+ (127,73,119,2),
+ (129,74,119,2),
+ (130,75,119,2),
+ (132,76,119,2),
+ (134,77,119,2),
+ (136,78,119,2),
+ (138,79,119,2),
+ (140,80,119,2),
+ (142,81,119,2),
+ (144,82,119,2),
+ (146,83,119,2),
+ (148,84,119,2),
+ (150,85,119,2),
+ (152,86,119,2),
+ (154,87,119,2),
+ (156,88,119,2),
+ (157,89,119,2),
+ (159,90,119,2),
+ (161,91,119,2),
+ (163,92,119,2),
+ (165,93,119,2),
+ (167,94,119,2),
+ (169,95,119,2),
+ (171,96,119,2),
+ (173,97,119,2),
+ (175,98,119,2),
+ (177,99,119,2),
+ (179,100,119,2),
+ (181,101,119,2),
+ (183,102,119,2),
+ (185,103,119,2),
+ (187,104,119,2),
+ (189,105,119,2),
+ (191,106,119,2),
+ (193,107,119,2),
+ (195,108,119,2),
+ (197,109,119,2),
+ (199,110,119,2),
+ (201,111,119,2),
+ (203,112,119,2),
+ (204,113,119,2),
+ (206,114,119,2),
+ (207,115,119,2),
+ (209,116,119,2),
+ (210,117,119,2),
+ (212,118,119,2),
+ (214,119,119,2),
+ (215,120,119,2),
+ (217,121,119,2),
+ (219,122,119,2),
+ (221,123,119,2),
+ (222,124,119,2),
+ (224,125,119,2),
+ (226,126,119,2),
+ (227,127,119,2),
+ (229,128,119,2),
+ (231,129,119,2),
+ (233,130,119,2),
+ (235,131,119,2),
+ (236,132,119,2),
+ (237,133,119,2),
+ (239,134,119,2),
+ (240,135,119,2),
+ (241,136,119,2),
+ (243,137,119,2),
+ (245,138,119,2),
+ (247,139,119,2),
+ (248,140,119,2),
+ (249,141,119,2),
+ (251,142,119,2),
+ (253,143,119,2),
+ (255,144,119,2),
+ (256,145,119,2),
+ (258,146,119,2),
+ (260,147,119,2),
+ (262,148,119,2),
+ (264,149,119,2),
+ (266,150,119,2),
+ (848,489,120,2),
+ (878,519,120,2),
+ (861,502,121,2),
+ (891,532,121,2),
+ (934,575,122,2),
+ (933,574,125,2),
+ (868,509,129,2),
+ (898,539,129,2),
+ (919,560,133,2),
+ (867,508,137,2),
+ (897,538,137,2),
+ (949,590,137,2),
+ (854,495,142,2),
+ (884,525,142,2),
+ (942,583,145,2),
+ (913,554,146,2),
+ (940,581,151,2),
+ (920,561,153,2),
+ (943,584,154,2),
+ (945,586,160,2),
+ (859,500,164,2),
+ (889,530,164,2),
+ (928,569,165,2),
+ (869,510,167,2),
+ (899,540,167,2),
+ (908,549,172,2),
+ (863,504,174,2),
+ (893,534,174,2),
+ (843,484,182,2),
+ (873,514,182,2),
+ (915,556,183,2),
+ (938,579,186,2),
+ (267,151,189,2),
+ (269,152,189,2),
+ (271,153,189,2),
+ (273,154,189,2),
+ (274,155,189,2),
+ (275,156,189,2),
+ (277,157,189,2),
+ (279,158,189,2),
+ (281,159,189,2),
+ (283,160,189,2),
+ (285,161,189,2),
+ (287,162,189,2),
+ (289,163,189,2),
+ (291,164,189,2),
+ (292,165,189,2),
+ (293,166,189,2),
+ (295,167,189,2),
+ (297,168,189,2),
+ (298,169,189,2),
+ (300,170,189,2),
+ (302,171,189,2),
+ (304,172,189,2),
+ (305,173,189,2),
+ (306,174,189,2),
+ (308,175,189,2),
+ (310,176,189,2),
+ (312,177,189,2),
+ (314,178,189,2),
+ (316,179,189,2),
+ (318,180,189,2),
+ (320,181,189,2),
+ (322,182,189,2),
+ (323,183,189,2),
+ (325,184,189,2),
+ (327,185,189,2),
+ (329,186,189,2),
+ (331,187,189,2),
+ (333,188,189,2),
+ (335,189,189,2),
+ (337,190,189,2),
+ (338,191,189,2),
+ (339,192,189,2),
+ (340,193,189,2),
+ (342,194,189,2),
+ (344,195,189,2),
+ (346,196,189,2),
+ (348,197,189,2),
+ (350,198,189,2),
+ (352,199,189,2),
+ (354,200,189,2),
+ (356,201,189,2),
+ (357,202,189,2),
+ (359,203,189,2),
+ (360,204,189,2),
+ (362,205,189,2),
+ (364,206,189,2),
+ (365,207,189,2),
+ (367,208,189,2),
+ (368,209,189,2),
+ (370,210,189,2),
+ (372,211,189,2),
+ (374,212,189,2),
+ (376,213,189,2),
+ (378,214,189,2),
+ (380,215,189,2),
+ (382,216,189,2),
+ (384,217,189,2),
+ (385,218,189,2),
+ (387,219,189,2),
+ (389,220,189,2),
+ (390,221,189,2),
+ (392,222,189,2),
+ (394,223,189,2),
+ (396,224,189,2),
+ (398,225,189,2),
+ (399,226,189,2),
+ (401,227,189,2),
+ (403,228,189,2),
+ (405,229,189,2),
+ (407,230,189,2),
+ (409,231,189,2),
+ (411,232,189,2),
+ (413,233,189,2),
+ (415,234,189,2),
+ (417,235,189,2),
+ (419,236,189,2),
+ (421,237,189,2),
+ (423,238,189,2),
+ (425,239,189,2),
+ (427,240,189,2),
+ (429,241,189,2),
+ (431,242,189,2),
+ (433,243,189,2),
+ (435,244,189,2),
+ (436,245,189,2),
+ (437,246,189,2),
+ (439,247,189,2),
+ (441,248,189,2),
+ (442,249,189,2),
+ (444,250,189,2),
+ (446,251,189,2),
+ (448,252,189,2),
+ (449,253,189,2),
+ (451,254,189,2),
+ (453,255,189,2),
+ (455,256,189,2),
+ (457,257,189,2),
+ (459,258,189,2),
+ (461,259,189,2),
+ (463,260,189,2),
+ (465,261,189,2),
+ (467,262,189,2),
+ (469,263,189,2),
+ (471,264,189,2),
+ (473,265,189,2),
+ (475,266,189,2),
+ (477,267,189,2),
+ (479,268,189,2),
+ (481,269,189,2),
+ (482,270,189,2),
+ (483,271,189,2),
+ (484,272,189,2),
+ (485,273,189,2),
+ (487,274,189,2),
+ (489,275,189,2),
+ (490,276,189,2),
+ (492,277,189,2),
+ (494,278,189,2),
+ (496,279,189,2),
+ (498,280,189,2),
+ (500,281,189,2),
+ (502,282,189,2),
+ (504,283,189,2),
+ (506,284,189,2),
+ (508,285,189,2),
+ (510,286,189,2),
+ (512,287,189,2),
+ (514,288,189,2),
+ (516,289,189,2),
+ (518,290,189,2),
+ (520,291,189,2),
+ (522,292,189,2),
+ (524,293,189,2),
+ (525,294,189,2),
+ (526,295,189,2),
+ (528,296,189,2),
+ (530,297,189,2),
+ (532,298,189,2),
+ (534,299,189,2),
+ (536,300,189,2),
+ (947,588,191,2),
+ (917,558,194,2),
+ (845,486,196,2),
+ (875,516,196,2),
+ (922,563,196,2),
+ (870,511,198,2),
+ (900,541,198,2),
+ (937,578,198,2),
+ (846,487,200,2),
+ (876,517,200,2),
+ (907,548,201,2);
 /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1863,179 +1773,195 @@ 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,26,1,1,0,'494F College Dr SE',494,'F',NULL,'College','Dr','SE',NULL,NULL,NULL,NULL,'Ortonville',1,1022,NULL,'56278',NULL,1228,45.335958,-96.40032,0,NULL,NULL,NULL),
- (2,182,1,1,0,'790B Green Blvd S',790,'B',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Tisch Mills',1,1048,NULL,'54240',NULL,1228,44.326784,-87.62239,0,NULL,NULL,NULL),
- (3,154,1,1,0,'83D Green Ave NW',83,'D',NULL,'Green','Ave','NW',NULL,NULL,NULL,NULL,'Pocahontas',1,1024,NULL,'63779',NULL,1228,37.500656,-89.639595,0,NULL,NULL,NULL),
- (4,27,1,1,0,'654E College Ln N',654,'E',NULL,'College','Ln','N',NULL,NULL,NULL,NULL,'Cambridge',1,1012,NULL,'61238',NULL,1228,41.286797,-90.17486,0,NULL,NULL,NULL),
- (5,161,1,1,0,'108Z Green Ave NW',108,'Z',NULL,'Green','Ave','NW',NULL,NULL,NULL,NULL,'Dow',1,1012,NULL,'62022',NULL,1228,38.997296,-90.3405,0,NULL,NULL,NULL),
- (6,133,1,1,0,'383A Lincoln Path NE',383,'A',NULL,'Lincoln','Path','NE',NULL,NULL,NULL,NULL,'Allen',1,1026,NULL,'68710',NULL,1228,42.450185,-96.85153,0,NULL,NULL,NULL),
- (7,115,1,1,0,'921T Second Ln SE',921,'T',NULL,'Second','Ln','SE',NULL,NULL,NULL,NULL,'Glenville',1,1037,NULL,'17329',NULL,1228,39.759126,-76.85248,0,NULL,NULL,NULL),
- (8,188,1,1,0,'233R College Dr NW',233,'R',NULL,'College','Dr','NW',NULL,NULL,NULL,NULL,'Belleville',1,1021,NULL,'48112',NULL,1228,42.239933,-83.150823,0,NULL,NULL,NULL),
- (9,36,1,1,0,'915O Maple Rd E',915,'O',NULL,'Maple','Rd','E',NULL,NULL,NULL,NULL,'South Bend',1,1013,NULL,'46601',NULL,1228,41.671197,-86.25253,0,NULL,NULL,NULL),
- (10,108,1,1,0,'608C Beech Dr W',608,'C',NULL,'Beech','Dr','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35219',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL),
- (11,24,1,1,0,'318A States St N',318,'A',NULL,'States','St','N',NULL,NULL,NULL,NULL,'Cannelburg',1,1013,NULL,'47519',NULL,1228,38.619866,-86.98761,0,NULL,NULL,NULL),
- (12,7,1,1,0,'298H States Dr E',298,'H',NULL,'States','Dr','E',NULL,NULL,NULL,NULL,'Waverly',1,1022,NULL,'55390',NULL,1228,45.066811,-93.97836,0,NULL,NULL,NULL),
- (13,189,1,1,0,'218X Lincoln Path NE',218,'X',NULL,'Lincoln','Path','NE',NULL,NULL,NULL,NULL,'Utica',1,1037,NULL,'16362',NULL,1228,41.445871,-79.96704,0,NULL,NULL,NULL),
- (14,186,1,1,0,'343G Bay Blvd SE',343,'G',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Myrtle Beach',1,1039,NULL,'29575',NULL,1228,33.627763,-78.98126,0,NULL,NULL,NULL),
- (15,175,1,1,0,'402O Bay Blvd NE',402,'O',NULL,'Bay','Blvd','NE',NULL,NULL,NULL,NULL,'Monterey Park',1,1004,NULL,'91756',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),
- (16,16,1,1,0,'41Y Van Ness Ln E',41,'Y',NULL,'Van Ness','Ln','E',NULL,NULL,NULL,NULL,'Deridder',1,1017,NULL,'70634',NULL,1228,30.835881,-93.27071,0,NULL,NULL,NULL),
- (17,114,1,1,0,'371T Maple St SE',371,'T',NULL,'Maple','St','SE',NULL,NULL,NULL,NULL,'Saint Gabriel',1,1017,NULL,'70776',NULL,1228,30.264611,-91.09595,0,NULL,NULL,NULL),
- (18,11,1,1,0,'579Q Green Rd SW',579,'Q',NULL,'Green','Rd','SW',NULL,NULL,NULL,NULL,'Amboy',1,1004,NULL,'92304',NULL,1228,34.548138,-115.65796,0,NULL,NULL,NULL),
- (19,56,1,1,0,'103H Lincoln Dr E',103,'H',NULL,'Lincoln','Dr','E',NULL,NULL,NULL,NULL,'Washington',1,1013,NULL,'47169',NULL,1228,38.609733,-86.055202,0,NULL,NULL,NULL),
- (20,196,1,1,0,'590J Bay Ln NW',590,'J',NULL,'Bay','Ln','NW',NULL,NULL,NULL,NULL,'Cockeysville',1,1019,NULL,'21030',NULL,1228,39.477506,-76.64114,0,NULL,NULL,NULL),
- (21,201,1,1,0,'788N Martin Luther King St NW',788,'N',NULL,'Martin Luther King','St','NW',NULL,NULL,NULL,NULL,'Marshalltown',1,1014,NULL,'50158',NULL,1228,42.042506,-92.90646,0,NULL,NULL,NULL),
- (22,112,1,1,0,'889A Northpoint Pl W',889,'A',NULL,'Northpoint','Pl','W',NULL,NULL,NULL,NULL,'Chesapeake Beach',1,1019,NULL,'20732',NULL,1228,38.670858,-76.53652,0,NULL,NULL,NULL),
- (23,33,1,1,0,'893R Martin Luther King Ave E',893,'R',NULL,'Martin Luther King','Ave','E',NULL,NULL,NULL,NULL,'Loleta',1,1004,NULL,'95551',NULL,1228,40.659753,-124.22153,0,NULL,NULL,NULL),
- (24,197,1,1,0,'983R Green Pl E',983,'R',NULL,'Green','Pl','E',NULL,NULL,NULL,NULL,'Erick',1,1035,NULL,'73645',NULL,1228,35.250612,-99.88029,0,NULL,NULL,NULL),
- (25,177,1,1,0,'254K Northpoint Ave S',254,'K',NULL,'Northpoint','Ave','S',NULL,NULL,NULL,NULL,'Fork',1,1039,NULL,'29543',NULL,1228,34.289399,-79.27039,0,NULL,NULL,NULL),
- (26,13,1,1,0,'143T Martin Luther King Way E',143,'T',NULL,'Martin Luther King','Way','E',NULL,NULL,NULL,NULL,'Orangeville',1,1012,NULL,'61060',NULL,1228,42.475891,-89.63404,0,NULL,NULL,NULL),
- (27,52,1,1,0,'817T Northpoint Ln NE',817,'T',NULL,'Northpoint','Ln','NE',NULL,NULL,NULL,NULL,'Los Gatos',1,1004,NULL,'95031',NULL,1228,37.189396,-121.705327,0,NULL,NULL,NULL),
- (28,38,1,1,0,'194J Martin Luther King Way SE',194,'J',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Ledgewood',1,1029,NULL,'07852',NULL,1228,40.876349,-74.65769,0,NULL,NULL,NULL),
- (29,83,1,1,0,'924T Maple Path E',924,'T',NULL,'Maple','Path','E',NULL,NULL,NULL,NULL,'El Monte',1,1004,NULL,'91731',NULL,1228,34.076642,-118.03942,0,NULL,NULL,NULL),
- (30,151,1,1,0,'241W Bay Ave E',241,'W',NULL,'Bay','Ave','E',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19187',NULL,1228,40.001811,-75.11787,0,NULL,NULL,NULL),
- (31,140,1,1,0,'450F El Camino Way SW',450,'F',NULL,'El Camino','Way','SW',NULL,NULL,NULL,NULL,'Spalding',1,1021,NULL,'49886',NULL,1228,45.695551,-87.50457,0,NULL,NULL,NULL),
- (32,4,1,1,0,'726K Woodbridge Rd E',726,'K',NULL,'Woodbridge','Rd','E',NULL,NULL,NULL,NULL,'Minnesota Lake',1,1022,NULL,'56068',NULL,1228,43.848573,-93.81718,0,NULL,NULL,NULL),
- (33,53,1,1,0,'975D Second Ln SE',975,'D',NULL,'Second','Ln','SE',NULL,NULL,NULL,NULL,'Wayne',1,1031,NULL,'14893',NULL,1228,42.474143,-77.097713,0,NULL,NULL,NULL),
- (34,142,1,1,0,'66Q Van Ness Way S',66,'Q',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Haynesville',1,1045,NULL,'22472',NULL,1228,37.950511,-76.636722,0,NULL,NULL,NULL),
- (35,94,1,1,0,'204V College Ln SE',204,'V',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Scott',1,1023,NULL,'38772',NULL,1228,33.569415,-91.0742,0,NULL,NULL,NULL),
- (36,159,1,1,0,'913E Maple Blvd NW',913,'E',NULL,'Maple','Blvd','NW',NULL,NULL,NULL,NULL,'Cincinnati',1,1034,NULL,'45264',NULL,1228,39.166759,-84.53822,0,NULL,NULL,NULL),
- (37,69,1,1,0,'854A Pine Path S',854,'A',NULL,'Pine','Path','S',NULL,NULL,NULL,NULL,'Branford',1,1006,NULL,'06405',NULL,1228,41.277763,-72.80542,0,NULL,NULL,NULL),
- (38,14,1,1,0,'79U Caulder Pl NE',79,'U',NULL,'Caulder','Pl','NE',NULL,NULL,NULL,NULL,'Berlin',1,1034,NULL,'44610',NULL,1228,40.561587,-81.7981,0,NULL,NULL,NULL),
- (39,2,1,1,0,'117D Martin Luther King Path NW',117,'D',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40218',NULL,1228,38.193769,-85.65733,0,NULL,NULL,NULL),
- (40,180,1,1,0,'295N Caulder Blvd N',295,'N',NULL,'Caulder','Blvd','N',NULL,NULL,NULL,NULL,'Samaria',1,1021,NULL,'48177',NULL,1228,41.807647,-83.579334,0,NULL,NULL,NULL),
- (41,98,1,1,0,'752O States Way SW',752,'O',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Sugar Tree',1,1041,NULL,'38380',NULL,1228,35.77928,-88.02646,0,NULL,NULL,NULL),
- (42,32,1,1,0,'722D Lincoln Rd S',722,'D',NULL,'Lincoln','Rd','S',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75709',NULL,1228,32.31265,-95.39191,0,NULL,NULL,NULL),
- (43,119,1,1,0,'905Q College Way W',905,'Q',NULL,'College','Way','W',NULL,NULL,NULL,NULL,'Huntly',1,1045,NULL,'22640',NULL,1228,38.808303,-78.13578,0,NULL,NULL,NULL),
- (44,54,1,1,0,'593C Northpoint Rd E',593,'C',NULL,'Northpoint','Rd','E',NULL,NULL,NULL,NULL,'Downey',1,1004,NULL,'90239',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),
- (45,187,1,1,0,'540D Van Ness Dr NW',540,'D',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Walkersville',1,1047,NULL,'26447',NULL,1228,38.881069,-80.47432,0,NULL,NULL,NULL),
- (46,44,1,1,0,'711Z Dowlen Pl NW',711,'Z',NULL,'Dowlen','Pl','NW',NULL,NULL,NULL,NULL,'Wapakoneta',1,1034,NULL,'45895',NULL,1228,40.56914,-84.17288,0,NULL,NULL,NULL),
- (47,51,1,1,0,'953Y States Ave S',953,'Y',NULL,'States','Ave','S',NULL,NULL,NULL,NULL,'Lamar',1,1005,NULL,'81052',NULL,1228,38.08759,-102.61855,0,NULL,NULL,NULL),
- (48,155,1,1,0,'363G Beech Pl N',363,'G',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Memphis',1,1041,NULL,'38173',NULL,1228,35.201738,-89.971538,0,NULL,NULL,NULL),
- (49,82,1,1,0,'665E Cadell Rd NE',665,'E',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'95829',NULL,1228,38.476196,-121.34715,0,NULL,NULL,NULL),
- (50,184,1,1,0,'367E Pine Ln SE',367,'E',NULL,'Pine','Ln','SE',NULL,NULL,NULL,NULL,'Tariff',1,1047,NULL,'25281',NULL,1228,38.682668,-81.18846,0,NULL,NULL,NULL),
- (51,163,1,1,0,'833F Second Way NE',833,'F',NULL,'Second','Way','NE',NULL,NULL,NULL,NULL,'Leonard',1,1022,NULL,'56652',NULL,1228,47.702771,-95.22132,0,NULL,NULL,NULL),
- (52,146,1,1,0,'535E Beech St SE',535,'E',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Eureka',1,1004,NULL,'95502',NULL,1228,40.814595,-124.08052,0,NULL,NULL,NULL),
- (53,121,1,1,0,'801A College Ln SE',801,'A',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Cheswick',1,1037,NULL,'15024',NULL,1228,40.569723,-79.83242,0,NULL,NULL,NULL),
- (54,39,1,1,0,'338W Lincoln Ln NW',338,'W',NULL,'Lincoln','Ln','NW',NULL,NULL,NULL,NULL,'Argusville',1,1033,NULL,'58005',NULL,1228,47.057098,-96.95043,0,NULL,NULL,NULL),
- (55,96,1,1,0,'751F Jackson Path S',751,'F',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Panora',1,1014,NULL,'50216',NULL,1228,41.701873,-94.36488,0,NULL,NULL,NULL),
- (56,128,1,1,0,'405D Northpoint Way W',405,'D',NULL,'Northpoint','Way','W',NULL,NULL,NULL,NULL,'Bismarck',1,1033,NULL,'58503',NULL,1228,46.861794,-100.78026,0,NULL,NULL,NULL),
- (57,200,1,1,0,'212T States Rd N',212,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Berwyn',1,1037,NULL,'19312',NULL,1228,40.037958,-75.44986,0,NULL,NULL,NULL),
- (58,193,1,1,0,'568G Second Way N',568,'G',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85062',NULL,1228,33.276539,-112.18717,0,NULL,NULL,NULL),
- (59,6,3,1,0,'611X Van Ness Ave W',611,'X',NULL,'Van Ness','Ave','W',NULL,'Donor Relations',NULL,NULL,'North River',1,1031,NULL,'12856',NULL,1228,43.722082,-74.10546,0,NULL,NULL,NULL),
- (60,21,2,1,0,'611X Van Ness Ave W',611,'X',NULL,'Van Ness','Ave','W',NULL,'Donor Relations',NULL,NULL,'North River',1,1031,NULL,'12856',NULL,1228,43.722082,-74.10546,0,NULL,NULL,59),
- (61,100,3,1,0,'533A Woodbridge Ave E',533,'A',NULL,'Woodbridge','Ave','E',NULL,'Attn: Development',NULL,NULL,'Thacker',1,1047,NULL,'25694',NULL,1228,37.743063,-82.10801,0,NULL,NULL,NULL),
- (62,148,2,1,0,'533A Woodbridge Ave E',533,'A',NULL,'Woodbridge','Ave','E',NULL,'Attn: Development',NULL,NULL,'Thacker',1,1047,NULL,'25694',NULL,1228,37.743063,-82.10801,0,NULL,NULL,61),
- (63,78,3,1,0,'116G Northpoint Ln SE',116,'G',NULL,'Northpoint','Ln','SE',NULL,'c/o PO Plus',NULL,NULL,'Whitesburg',1,1009,NULL,'30185',NULL,1228,33.517698,-84.91725,0,NULL,NULL,NULL),
- (64,74,2,1,0,'116G Northpoint Ln SE',116,'G',NULL,'Northpoint','Ln','SE',NULL,'c/o PO Plus',NULL,NULL,'Whitesburg',1,1009,NULL,'30185',NULL,1228,33.517698,-84.91725,0,NULL,NULL,63),
- (65,30,3,1,0,'240F Jackson Blvd SW',240,'F',NULL,'Jackson','Blvd','SW',NULL,'Disbursements',NULL,NULL,'Badger',1,1004,NULL,'93603',NULL,1228,36.678073,-118.9601,0,NULL,NULL,NULL),
- (66,76,3,1,0,'624L Jackson Ave E',624,'L',NULL,'Jackson','Ave','E',NULL,'Attn: Accounting',NULL,NULL,'Miami',1,1008,NULL,'33178',NULL,1228,25.837696,-80.36947,0,NULL,NULL,NULL),
- (67,120,2,1,0,'624L Jackson Ave E',624,'L',NULL,'Jackson','Ave','E',NULL,'Attn: Accounting',NULL,NULL,'Miami',1,1008,NULL,'33178',NULL,1228,25.837696,-80.36947,0,NULL,NULL,66),
- (68,19,3,1,0,'470G Martin Luther King Ln S',470,'G',NULL,'Martin Luther King','Ln','S',NULL,'Editorial Dept',NULL,NULL,'Millersburg',1,1037,NULL,'17061',NULL,1228,40.550027,-76.93743,0,NULL,NULL,NULL),
- (69,31,2,1,0,'470G Martin Luther King Ln S',470,'G',NULL,'Martin Luther King','Ln','S',NULL,'Editorial Dept',NULL,NULL,'Millersburg',1,1037,NULL,'17061',NULL,1228,40.550027,-76.93743,0,NULL,NULL,68),
- (70,81,3,1,0,'586S Lincoln Ave N',586,'S',NULL,'Lincoln','Ave','N',NULL,'Subscriptions Dept',NULL,NULL,'Monte Vista',1,1005,NULL,'81144',NULL,1228,37.569501,-106.14946,0,NULL,NULL,NULL),
- (71,9,2,1,0,'586S Lincoln Ave N',586,'S',NULL,'Lincoln','Ave','N',NULL,'Subscriptions Dept',NULL,NULL,'Monte Vista',1,1005,NULL,'81144',NULL,1228,37.569501,-106.14946,0,NULL,NULL,70),
- (72,70,3,1,0,'444A Lincoln Ave SE',444,'A',NULL,'Lincoln','Ave','SE',NULL,'c/o OPDC',NULL,NULL,'South Whitehall',1,1037,NULL,'18096',NULL,1228,40.633542,-75.583861,0,NULL,NULL,NULL),
- (73,188,2,0,0,'444A Lincoln Ave SE',444,'A',NULL,'Lincoln','Ave','SE',NULL,'c/o OPDC',NULL,NULL,'South Whitehall',1,1037,NULL,'18096',NULL,1228,40.633542,-75.583861,0,NULL,NULL,72),
- (74,111,3,1,0,'552K Dowlen Way N',552,'K',NULL,'Dowlen','Way','N',NULL,'c/o PO Plus',NULL,NULL,'Groveton',1,1028,NULL,'03582',NULL,1228,44.610605,-71.48147,0,NULL,NULL,NULL),
- (75,126,3,1,0,'401A Jackson Blvd S',401,'A',NULL,'Jackson','Blvd','S',NULL,'Cuffe Parade',NULL,NULL,'Crown Point',1,1031,NULL,'12928',NULL,1228,43.95037,-73.48357,0,NULL,NULL,NULL),
- (76,41,3,1,0,'644Q Lincoln Way NE',644,'Q',NULL,'Lincoln','Way','NE',NULL,'Payables Dept.',NULL,NULL,'Hutchinson',1,1015,NULL,'67504',NULL,1228,37.953219,-98.085924,0,NULL,NULL,NULL),
- (77,36,2,0,0,'644Q Lincoln Way NE',644,'Q',NULL,'Lincoln','Way','NE',NULL,'Payables Dept.',NULL,NULL,'Hutchinson',1,1015,NULL,'67504',NULL,1228,37.953219,-98.085924,0,NULL,NULL,76),
- (78,72,3,1,0,'622M Cadell St N',622,'M',NULL,'Cadell','St','N',NULL,'Urgent',NULL,NULL,'Lavina',1,1025,NULL,'59046',NULL,1228,46.418078,-109.03637,0,NULL,NULL,NULL),
- (79,147,3,1,0,'730F Martin Luther King Path S',730,'F',NULL,'Martin Luther King','Path','S',NULL,'Cuffe Parade',NULL,NULL,'Magnetic Springs',1,1034,NULL,'43036',NULL,1228,40.353133,-83.26289,0,NULL,NULL,NULL),
- (80,17,3,1,0,'71Z Martin Luther King Ave S',71,'Z',NULL,'Martin Luther King','Ave','S',NULL,'c/o OPDC',NULL,NULL,'Webb',1,1014,NULL,'51366',NULL,1228,42.951621,-95.01145,0,NULL,NULL,NULL),
- (81,73,3,1,0,'669P Jackson Path SW',669,'P',NULL,'Jackson','Path','SW',NULL,'Mailstop 101',NULL,NULL,'Niagara Falls',1,1031,NULL,'14301',NULL,1228,43.096555,-79.03925,0,NULL,NULL,NULL),
- (82,75,2,1,0,'669P Jackson Path SW',669,'P',NULL,'Jackson','Path','SW',NULL,'Mailstop 101',NULL,NULL,'Niagara Falls',1,1031,NULL,'14301',NULL,1228,43.096555,-79.03925,0,NULL,NULL,81),
- (83,107,3,1,0,'613G Second Pl NW',613,'G',NULL,'Second','Pl','NW',NULL,'Editorial Dept',NULL,NULL,'Lake City',1,1003,NULL,'72437',NULL,1228,35.82847,-90.44247,0,NULL,NULL,NULL),
- (84,10,2,1,0,'613G Second Pl NW',613,'G',NULL,'Second','Pl','NW',NULL,'Editorial Dept',NULL,NULL,'Lake City',1,1003,NULL,'72437',NULL,1228,35.82847,-90.44247,0,NULL,NULL,83),
- (85,18,3,1,0,'263X Main Way SE',263,'X',NULL,'Main','Way','SE',NULL,'c/o PO Plus',NULL,NULL,'Bellflower',1,1012,NULL,'61724',NULL,1228,40.336763,-88.52604,0,NULL,NULL,NULL),
- (86,164,3,1,0,'265R Dowlen Dr E',265,'R',NULL,'Dowlen','Dr','E',NULL,'Mailstop 101',NULL,NULL,'Overpeck',1,1034,NULL,'45055',NULL,1228,39.451806,-84.515245,0,NULL,NULL,NULL),
- (87,106,2,1,0,'265R Dowlen Dr E',265,'R',NULL,'Dowlen','Dr','E',NULL,'Mailstop 101',NULL,NULL,'Overpeck',1,1034,NULL,'45055',NULL,1228,39.451806,-84.515245,0,NULL,NULL,86),
- (88,80,3,1,0,'164M Jackson Dr NW',164,'M',NULL,'Jackson','Dr','NW',NULL,'Mailstop 101',NULL,NULL,'Cliffside Park',1,1029,NULL,'07010',NULL,1228,40.82154,-73.98949,0,NULL,NULL,NULL),
- (89,79,2,1,0,'164M Jackson Dr NW',164,'M',NULL,'Jackson','Dr','NW',NULL,'Mailstop 101',NULL,NULL,'Cliffside Park',1,1029,NULL,'07010',NULL,1228,40.82154,-73.98949,0,NULL,NULL,88),
- (90,134,3,1,0,'140Q Woodbridge St S',140,'Q',NULL,'Woodbridge','St','S',NULL,'Editorial Dept',NULL,NULL,'Harvard',1,1012,NULL,'60033',NULL,1228,42.424338,-88.61431,0,NULL,NULL,NULL),
- (91,46,1,1,0,'117D Martin Luther King Path NW',117,'D',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40218',NULL,1228,38.193769,-85.65733,0,NULL,NULL,39),
- (92,150,1,1,0,'117D Martin Luther King Path NW',117,'D',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40218',NULL,1228,38.193769,-85.65733,0,NULL,NULL,39),
- (93,28,1,1,0,'117D Martin Luther King Path NW',117,'D',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40218',NULL,1228,38.193769,-85.65733,0,NULL,NULL,39),
- (94,14,1,0,0,'117D Martin Luther King Path NW',117,'D',NULL,'Martin Luther King','Path','NW',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40218',NULL,1228,38.193769,-85.65733,0,NULL,NULL,39),
- (95,74,1,0,0,'295N Caulder Blvd N',295,'N',NULL,'Caulder','Blvd','N',NULL,NULL,NULL,NULL,'Samaria',1,1021,NULL,'48177',NULL,1228,41.807647,-83.579334,0,NULL,NULL,40),
- (96,168,1,1,0,'295N Caulder Blvd N',295,'N',NULL,'Caulder','Blvd','N',NULL,NULL,NULL,NULL,'Samaria',1,1021,NULL,'48177',NULL,1228,41.807647,-83.579334,0,NULL,NULL,40),
- (97,176,1,1,0,'295N Caulder Blvd N',295,'N',NULL,'Caulder','Blvd','N',NULL,NULL,NULL,NULL,'Samaria',1,1021,NULL,'48177',NULL,1228,41.807647,-83.579334,0,NULL,NULL,40),
- (98,68,1,1,0,'295N Caulder Blvd N',295,'N',NULL,'Caulder','Blvd','N',NULL,NULL,NULL,NULL,'Samaria',1,1021,NULL,'48177',NULL,1228,41.807647,-83.579334,0,NULL,NULL,40),
- (99,9,1,0,0,'752O States Way SW',752,'O',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Sugar Tree',1,1041,NULL,'38380',NULL,1228,35.77928,-88.02646,0,NULL,NULL,41),
- (100,84,1,1,0,'752O States Way SW',752,'O',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Sugar Tree',1,1041,NULL,'38380',NULL,1228,35.77928,-88.02646,0,NULL,NULL,41),
- (101,191,1,1,0,'752O States Way SW',752,'O',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Sugar Tree',1,1041,NULL,'38380',NULL,1228,35.77928,-88.02646,0,NULL,NULL,41),
- (102,61,1,1,0,'752O States Way SW',752,'O',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Sugar Tree',1,1041,NULL,'38380',NULL,1228,35.77928,-88.02646,0,NULL,NULL,41),
- (103,158,1,1,0,'722D Lincoln Rd S',722,'D',NULL,'Lincoln','Rd','S',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75709',NULL,1228,32.31265,-95.39191,0,NULL,NULL,42),
- (104,144,1,1,0,'722D Lincoln Rd S',722,'D',NULL,'Lincoln','Rd','S',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75709',NULL,1228,32.31265,-95.39191,0,NULL,NULL,42),
- (105,125,1,1,0,'722D Lincoln Rd S',722,'D',NULL,'Lincoln','Rd','S',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75709',NULL,1228,32.31265,-95.39191,0,NULL,NULL,42),
- (106,15,1,1,0,'101Z Cadell St N',101,'Z',NULL,'Cadell','St','N',NULL,NULL,NULL,NULL,'Uhrichsville',1,1034,NULL,'44683',NULL,1228,40.373604,-81.34146,0,NULL,NULL,NULL),
- (107,190,1,1,0,'905Q College Way W',905,'Q',NULL,'College','Way','W',NULL,NULL,NULL,NULL,'Huntly',1,1045,NULL,'22640',NULL,1228,38.808303,-78.13578,0,NULL,NULL,43),
- (108,86,1,1,0,'905Q College Way W',905,'Q',NULL,'College','Way','W',NULL,NULL,NULL,NULL,'Huntly',1,1045,NULL,'22640',NULL,1228,38.808303,-78.13578,0,NULL,NULL,43),
- (109,110,1,1,0,'905Q College Way W',905,'Q',NULL,'College','Way','W',NULL,NULL,NULL,NULL,'Huntly',1,1045,NULL,'22640',NULL,1228,38.808303,-78.13578,0,NULL,NULL,43),
- (110,120,1,0,0,'905Q College Way W',905,'Q',NULL,'College','Way','W',NULL,NULL,NULL,NULL,'Huntly',1,1045,NULL,'22640',NULL,1228,38.808303,-78.13578,0,NULL,NULL,43),
- (111,178,1,1,0,'593C Northpoint Rd E',593,'C',NULL,'Northpoint','Rd','E',NULL,NULL,NULL,NULL,'Downey',1,1004,NULL,'90239',NULL,1228,33.786594,-118.298662,0,NULL,NULL,44),
- (112,95,1,1,0,'593C Northpoint Rd E',593,'C',NULL,'Northpoint','Rd','E',NULL,NULL,NULL,NULL,'Downey',1,1004,NULL,'90239',NULL,1228,33.786594,-118.298662,0,NULL,NULL,44),
- (113,40,1,1,0,'593C Northpoint Rd E',593,'C',NULL,'Northpoint','Rd','E',NULL,NULL,NULL,NULL,'Downey',1,1004,NULL,'90239',NULL,1228,33.786594,-118.298662,0,NULL,NULL,44),
- (114,137,1,1,0,'404O Second Way E',404,'O',NULL,'Second','Way','E',NULL,NULL,NULL,NULL,'Kula',1,1010,NULL,'96790',NULL,1228,20.724391,-156.34031,0,NULL,NULL,NULL),
- (115,131,1,1,0,'540D Van Ness Dr NW',540,'D',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Walkersville',1,1047,NULL,'26447',NULL,1228,38.881069,-80.47432,0,NULL,NULL,45),
- (116,143,1,1,0,'540D Van Ness Dr NW',540,'D',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Walkersville',1,1047,NULL,'26447',NULL,1228,38.881069,-80.47432,0,NULL,NULL,45),
- (117,103,1,1,0,'540D Van Ness Dr NW',540,'D',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Walkersville',1,1047,NULL,'26447',NULL,1228,38.881069,-80.47432,0,NULL,NULL,45),
- (118,31,1,0,0,'540D Van Ness Dr NW',540,'D',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Walkersville',1,1047,NULL,'26447',NULL,1228,38.881069,-80.47432,0,NULL,NULL,45),
- (119,195,1,1,0,'711Z Dowlen Pl NW',711,'Z',NULL,'Dowlen','Pl','NW',NULL,NULL,NULL,NULL,'Wapakoneta',1,1034,NULL,'45895',NULL,1228,40.56914,-84.17288,0,NULL,NULL,46),
- (120,157,1,1,0,'711Z Dowlen Pl NW',711,'Z',NULL,'Dowlen','Pl','NW',NULL,NULL,NULL,NULL,'Wapakoneta',1,1034,NULL,'45895',NULL,1228,40.56914,-84.17288,0,NULL,NULL,46),
- (121,43,1,1,0,'711Z Dowlen Pl NW',711,'Z',NULL,'Dowlen','Pl','NW',NULL,NULL,NULL,NULL,'Wapakoneta',1,1034,NULL,'45895',NULL,1228,40.56914,-84.17288,0,NULL,NULL,46),
- (122,162,1,1,0,'711Z Dowlen Pl NW',711,'Z',NULL,'Dowlen','Pl','NW',NULL,NULL,NULL,NULL,'Wapakoneta',1,1034,NULL,'45895',NULL,1228,40.56914,-84.17288,0,NULL,NULL,46),
- (123,20,1,1,0,'953Y States Ave S',953,'Y',NULL,'States','Ave','S',NULL,NULL,NULL,NULL,'Lamar',1,1005,NULL,'81052',NULL,1228,38.08759,-102.61855,0,NULL,NULL,47),
- (124,104,1,1,0,'953Y States Ave S',953,'Y',NULL,'States','Ave','S',NULL,NULL,NULL,NULL,'Lamar',1,1005,NULL,'81052',NULL,1228,38.08759,-102.61855,0,NULL,NULL,47),
- (125,194,1,1,0,'953Y States Ave S',953,'Y',NULL,'States','Ave','S',NULL,NULL,NULL,NULL,'Lamar',1,1005,NULL,'81052',NULL,1228,38.08759,-102.61855,0,NULL,NULL,47),
- (126,171,1,1,0,'953Y States Ave S',953,'Y',NULL,'States','Ave','S',NULL,NULL,NULL,NULL,'Lamar',1,1005,NULL,'81052',NULL,1228,38.08759,-102.61855,0,NULL,NULL,47),
- (127,127,1,1,0,'363G Beech Pl N',363,'G',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Memphis',1,1041,NULL,'38173',NULL,1228,35.201738,-89.971538,0,NULL,NULL,48),
- (128,183,1,1,0,'363G Beech Pl N',363,'G',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Memphis',1,1041,NULL,'38173',NULL,1228,35.201738,-89.971538,0,NULL,NULL,48),
- (129,21,1,0,0,'363G Beech Pl N',363,'G',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Memphis',1,1041,NULL,'38173',NULL,1228,35.201738,-89.971538,0,NULL,NULL,48),
- (130,88,1,1,0,'363G Beech Pl N',363,'G',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Memphis',1,1041,NULL,'38173',NULL,1228,35.201738,-89.971538,0,NULL,NULL,48),
- (131,93,1,1,0,'665E Cadell Rd NE',665,'E',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'95829',NULL,1228,38.476196,-121.34715,0,NULL,NULL,49),
- (132,122,1,1,0,'665E Cadell Rd NE',665,'E',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'95829',NULL,1228,38.476196,-121.34715,0,NULL,NULL,49),
- (133,97,1,1,0,'665E Cadell Rd NE',665,'E',NULL,'Cadell','Rd','NE',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'95829',NULL,1228,38.476196,-121.34715,0,NULL,NULL,49),
- (134,63,1,1,0,'27H Van Ness Way S',27,'H',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Rincon',1,1030,NULL,'87940',NULL,1228,32.620805,-107.02161,0,NULL,NULL,NULL),
- (135,199,1,1,0,'367E Pine Ln SE',367,'E',NULL,'Pine','Ln','SE',NULL,NULL,NULL,NULL,'Tariff',1,1047,NULL,'25281',NULL,1228,38.682668,-81.18846,0,NULL,NULL,50),
- (136,123,1,1,0,'367E Pine Ln SE',367,'E',NULL,'Pine','Ln','SE',NULL,NULL,NULL,NULL,'Tariff',1,1047,NULL,'25281',NULL,1228,38.682668,-81.18846,0,NULL,NULL,50),
- (137,67,1,1,0,'367E Pine Ln SE',367,'E',NULL,'Pine','Ln','SE',NULL,NULL,NULL,NULL,'Tariff',1,1047,NULL,'25281',NULL,1228,38.682668,-81.18846,0,NULL,NULL,50),
- (138,92,1,1,0,'367E Pine Ln SE',367,'E',NULL,'Pine','Ln','SE',NULL,NULL,NULL,NULL,'Tariff',1,1047,NULL,'25281',NULL,1228,38.682668,-81.18846,0,NULL,NULL,50),
- (139,49,1,1,0,'833F Second Way NE',833,'F',NULL,'Second','Way','NE',NULL,NULL,NULL,NULL,'Leonard',1,1022,NULL,'56652',NULL,1228,47.702771,-95.22132,0,NULL,NULL,51),
- (140,47,1,1,0,'833F Second Way NE',833,'F',NULL,'Second','Way','NE',NULL,NULL,NULL,NULL,'Leonard',1,1022,NULL,'56652',NULL,1228,47.702771,-95.22132,0,NULL,NULL,51),
- (141,109,1,1,0,'833F Second Way NE',833,'F',NULL,'Second','Way','NE',NULL,NULL,NULL,NULL,'Leonard',1,1022,NULL,'56652',NULL,1228,47.702771,-95.22132,0,NULL,NULL,51),
- (142,113,1,1,0,'311H Bay Rd NW',311,'H',NULL,'Bay','Rd','NW',NULL,NULL,NULL,NULL,'Grand Junction',1,1041,NULL,'38039',NULL,1228,35.057728,-89.18599,0,NULL,NULL,NULL),
- (143,169,1,1,0,'535E Beech St SE',535,'E',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Eureka',1,1004,NULL,'95502',NULL,1228,40.814595,-124.08052,0,NULL,NULL,52),
- (144,138,1,1,0,'535E Beech St SE',535,'E',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Eureka',1,1004,NULL,'95502',NULL,1228,40.814595,-124.08052,0,NULL,NULL,52),
- (145,99,1,1,0,'535E Beech St SE',535,'E',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Eureka',1,1004,NULL,'95502',NULL,1228,40.814595,-124.08052,0,NULL,NULL,52),
- (146,64,1,1,0,'535E Beech St SE',535,'E',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Eureka',1,1004,NULL,'95502',NULL,1228,40.814595,-124.08052,0,NULL,NULL,52),
- (147,141,1,1,0,'801A College Ln SE',801,'A',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Cheswick',1,1037,NULL,'15024',NULL,1228,40.569723,-79.83242,0,NULL,NULL,53),
- (148,57,1,1,0,'801A College Ln SE',801,'A',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Cheswick',1,1037,NULL,'15024',NULL,1228,40.569723,-79.83242,0,NULL,NULL,53),
- (149,152,1,1,0,'801A College Ln SE',801,'A',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Cheswick',1,1037,NULL,'15024',NULL,1228,40.569723,-79.83242,0,NULL,NULL,53),
- (150,116,1,1,0,'801A College Ln SE',801,'A',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Cheswick',1,1037,NULL,'15024',NULL,1228,40.569723,-79.83242,0,NULL,NULL,53),
- (151,34,1,1,0,'338W Lincoln Ln NW',338,'W',NULL,'Lincoln','Ln','NW',NULL,NULL,NULL,NULL,'Argusville',1,1033,NULL,'58005',NULL,1228,47.057098,-96.95043,0,NULL,NULL,54),
- (152,48,1,1,0,'338W Lincoln Ln NW',338,'W',NULL,'Lincoln','Ln','NW',NULL,NULL,NULL,NULL,'Argusville',1,1033,NULL,'58005',NULL,1228,47.057098,-96.95043,0,NULL,NULL,54),
- (153,173,1,1,0,'338W Lincoln Ln NW',338,'W',NULL,'Lincoln','Ln','NW',NULL,NULL,NULL,NULL,'Argusville',1,1033,NULL,'58005',NULL,1228,47.057098,-96.95043,0,NULL,NULL,54),
- (154,23,1,1,0,'338W Lincoln Ln NW',338,'W',NULL,'Lincoln','Ln','NW',NULL,NULL,NULL,NULL,'Argusville',1,1033,NULL,'58005',NULL,1228,47.057098,-96.95043,0,NULL,NULL,54),
- (155,117,1,1,0,'751F Jackson Path S',751,'F',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Panora',1,1014,NULL,'50216',NULL,1228,41.701873,-94.36488,0,NULL,NULL,55),
- (156,89,1,1,0,'751F Jackson Path S',751,'F',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Panora',1,1014,NULL,'50216',NULL,1228,41.701873,-94.36488,0,NULL,NULL,55),
- (157,58,1,1,0,'751F Jackson Path S',751,'F',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Panora',1,1014,NULL,'50216',NULL,1228,41.701873,-94.36488,0,NULL,NULL,55),
- (158,35,1,1,0,'751F Jackson Path S',751,'F',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Panora',1,1014,NULL,'50216',NULL,1228,41.701873,-94.36488,0,NULL,NULL,55),
- (159,179,1,1,0,'405D Northpoint Way W',405,'D',NULL,'Northpoint','Way','W',NULL,NULL,NULL,NULL,'Bismarck',1,1033,NULL,'58503',NULL,1228,46.861794,-100.78026,0,NULL,NULL,56),
- (160,124,1,1,0,'405D Northpoint Way W',405,'D',NULL,'Northpoint','Way','W',NULL,NULL,NULL,NULL,'Bismarck',1,1033,NULL,'58503',NULL,1228,46.861794,-100.78026,0,NULL,NULL,56),
- (161,198,1,1,0,'405D Northpoint Way W',405,'D',NULL,'Northpoint','Way','W',NULL,NULL,NULL,NULL,'Bismarck',1,1033,NULL,'58503',NULL,1228,46.861794,-100.78026,0,NULL,NULL,56),
- (162,91,1,1,0,'195P El Camino Dr S',195,'P',NULL,'El Camino','Dr','S',NULL,NULL,NULL,NULL,'Alexandria',1,1045,NULL,'22313',NULL,1228,38.815762,-77.09005,0,NULL,NULL,NULL),
- (163,145,1,1,0,'212T States Rd N',212,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Berwyn',1,1037,NULL,'19312',NULL,1228,40.037958,-75.44986,0,NULL,NULL,57),
- (164,166,1,1,0,'212T States Rd N',212,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Berwyn',1,1037,NULL,'19312',NULL,1228,40.037958,-75.44986,0,NULL,NULL,57),
- (165,50,1,1,0,'212T States Rd N',212,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Berwyn',1,1037,NULL,'19312',NULL,1228,40.037958,-75.44986,0,NULL,NULL,57),
- (166,37,1,1,0,'212T States Rd N',212,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Berwyn',1,1037,NULL,'19312',NULL,1228,40.037958,-75.44986,0,NULL,NULL,57),
- (167,172,1,1,0,'568G Second Way N',568,'G',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85062',NULL,1228,33.276539,-112.18717,0,NULL,NULL,58),
- (168,132,1,1,0,'568G Second Way N',568,'G',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85062',NULL,1228,33.276539,-112.18717,0,NULL,NULL,58),
- (169,66,1,1,0,'568G Second Way N',568,'G',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85062',NULL,1228,33.276539,-112.18717,0,NULL,NULL,58),
- (170,77,1,1,0,'568G Second Way N',568,'G',NULL,'Second','Way','N',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85062',NULL,1228,33.276539,-112.18717,0,NULL,NULL,58),
- (171,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),
- (172,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),
- (173,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,177,1,1,0,'595O Main Ave SE',595,'O',NULL,'Main','Ave','SE',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97204',NULL,1228,45.51854,-122.6755,0,NULL,NULL,NULL),
+ (2,109,1,1,0,'377I Woodbridge Pl NE',377,'I',NULL,'Woodbridge','Pl','NE',NULL,NULL,NULL,NULL,'Madisonville',1,1042,NULL,'77864',NULL,1228,30.956147,-95.91606,0,NULL,NULL,NULL),
+ (3,35,1,1,0,'143D Van Ness Ave E',143,'D',NULL,'Van Ness','Ave','E',NULL,NULL,NULL,NULL,'Paulden',1,1002,NULL,'86344',NULL,1228,34.907296,-112.492365,0,NULL,NULL,NULL),
+ (4,171,1,1,0,'908V Lincoln Ave NE',908,'V',NULL,'Lincoln','Ave','NE',NULL,NULL,NULL,NULL,'Lloyd',1,1008,NULL,'32337',NULL,1228,30.478502,-84.02083,0,NULL,NULL,NULL),
+ (5,154,1,1,0,'722L El Camino Ave W',722,'L',NULL,'El Camino','Ave','W',NULL,NULL,NULL,NULL,'Liberty',1,1031,NULL,'12754',NULL,1228,41.798476,-74.7361,0,NULL,NULL,NULL),
+ (6,92,1,1,0,'411B Northpoint Blvd S',411,'B',NULL,'Northpoint','Blvd','S',NULL,NULL,NULL,NULL,'Hillsboro',1,1030,NULL,'88042',NULL,1228,32.834372,-107.59761,0,NULL,NULL,NULL),
+ (7,32,1,1,0,'128N Bay St NE',128,'N',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Allison',1,1014,NULL,'50602',NULL,1228,42.74806,-92.80277,0,NULL,NULL,NULL),
+ (8,132,1,1,0,'731M Woodbridge Path E',731,'M',NULL,'Woodbridge','Path','E',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70156',NULL,1228,30.032997,-89.882564,0,NULL,NULL,NULL),
+ (9,195,1,1,0,'485C Martin Luther King Rd E',485,'C',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Hardyville',1,1016,NULL,'42746',NULL,1228,37.199656,-85.73469,0,NULL,NULL,NULL),
+ (10,112,1,1,0,'34N Second Dr SE',34,'N',NULL,'Second','Dr','SE',NULL,NULL,NULL,NULL,'Amarillo',1,1042,NULL,'79166',NULL,1228,35.401475,-101.895089,0,NULL,NULL,NULL),
+ (11,82,1,1,0,'343C Woodbridge Rd W',343,'C',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75221',NULL,1228,32.814728,-96.787725,0,NULL,NULL,NULL),
+ (12,114,1,1,0,'782T Jackson Dr SW',782,'T',NULL,'Jackson','Dr','SW',NULL,NULL,NULL,NULL,'Lake Lure',1,1032,NULL,'28746',NULL,1228,35.451314,-82.185,0,NULL,NULL,NULL),
+ (13,20,1,1,0,'727T Lincoln Blvd E',727,'T',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Benham',1,1016,NULL,'40807',NULL,1228,36.963608,-82.95015,0,NULL,NULL,NULL),
+ (14,156,1,1,0,'394H Caulder Ave N',394,'H',NULL,'Caulder','Ave','N',NULL,NULL,NULL,NULL,'Palm Harbor',1,1008,NULL,'34684',NULL,1228,28.081325,-82.72751,0,NULL,NULL,NULL),
+ (15,155,1,1,0,'349V Cadell Blvd NW',349,'V',NULL,'Cadell','Blvd','NW',NULL,NULL,NULL,NULL,'Kulpmont',1,1037,NULL,'17834',NULL,1228,40.792365,-76.47131,0,NULL,NULL,NULL),
+ (16,42,1,1,0,'33W Caulder Ln SW',33,'W',NULL,'Caulder','Ln','SW',NULL,NULL,NULL,NULL,'Frontenac',1,1022,NULL,'55026',NULL,1228,44.523212,-92.33216,0,NULL,NULL,NULL),
+ (17,164,1,1,0,'653I Martin Luther King Ln E',653,'I',NULL,'Martin Luther King','Ln','E',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35295',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL),
+ (18,71,1,1,0,'585R Main Rd W',585,'R',NULL,'Main','Rd','W',NULL,NULL,NULL,NULL,'Feasterville Trevose',1,1037,NULL,'19053',NULL,1228,40.148759,-74.98228,0,NULL,NULL,NULL),
+ (19,16,1,1,0,'572X Main Pl W',572,'X',NULL,'Main','Pl','W',NULL,NULL,NULL,NULL,'Grand Rapids',1,1021,NULL,'49501',NULL,1228,42.984226,-85.629101,0,NULL,NULL,NULL),
+ (20,128,1,1,0,'465B Caulder Pl SW',465,'B',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Bellevue',1,1046,NULL,'98067',NULL,1228,47.617634,-122.140193,0,NULL,NULL,NULL),
+ (21,66,1,1,0,'865B Martin Luther King Path E',865,'B',NULL,'Martin Luther King','Path','E',NULL,NULL,NULL,NULL,'Eaton',1,1048,NULL,'53245',NULL,1228,44.056094,-87.985595,0,NULL,NULL,NULL),
+ (22,108,1,1,0,'322N Cadell Way W',322,'N',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Miami',1,1008,NULL,'33233',NULL,1228,25.558428,-80.458168,0,NULL,NULL,NULL),
+ (23,15,1,1,0,'353X Cadell Blvd SW',353,'X',NULL,'Cadell','Blvd','SW',NULL,NULL,NULL,NULL,'El Granada',1,1004,NULL,'94018',NULL,1228,37.510085,-122.473404,0,NULL,NULL,NULL),
+ (24,23,1,1,0,'333E Dowlen Pl SW',333,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Springfield',1,1020,NULL,'01138',NULL,1228,42.170731,-72.604842,0,NULL,NULL,NULL),
+ (25,6,1,1,0,'665O Dowlen Way SW',665,'O',NULL,'Dowlen','Way','SW',NULL,NULL,NULL,NULL,'Oxnard',1,1004,NULL,'93034',NULL,1228,34.032383,-119.1343,0,NULL,NULL,NULL),
+ (26,13,1,1,0,'101Q Jackson Dr S',101,'Q',NULL,'Jackson','Dr','S',NULL,NULL,NULL,NULL,'Duson',1,1017,NULL,'70529',NULL,1228,30.198258,-92.16211,0,NULL,NULL,NULL),
+ (27,121,1,1,0,'867O Pine Dr SW',867,'O',NULL,'Pine','Dr','SW',NULL,NULL,NULL,NULL,'China',1,1018,NULL,'04926',NULL,1228,44.391167,-69.538257,0,NULL,NULL,NULL),
+ (28,191,1,1,0,'910X Northpoint Blvd SW',910,'X',NULL,'Northpoint','Blvd','SW',NULL,NULL,NULL,NULL,'Tow',1,1042,NULL,'78672',NULL,1228,30.864936,-98.45361,0,NULL,NULL,NULL),
+ (29,196,1,1,0,'85J Dowlen Rd NE',85,'J',NULL,'Dowlen','Rd','NE',NULL,NULL,NULL,NULL,'Augusta',1,1024,NULL,'63332',NULL,1228,38.590155,-90.89093,0,NULL,NULL,NULL),
+ (30,81,1,1,0,'359Q Northpoint Ln E',359,'Q',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Stockton',1,1022,NULL,'55988',NULL,1228,44.025446,-91.77304,0,NULL,NULL,NULL),
+ (31,72,1,1,0,'696O Cadell Pl S',696,'O',NULL,'Cadell','Pl','S',NULL,NULL,NULL,NULL,'Detroit',1,1021,NULL,'48279',NULL,1228,42.239933,-83.150823,0,NULL,NULL,NULL),
+ (32,63,1,1,0,'486X Bay Ave NE',486,'X',NULL,'Bay','Ave','NE',NULL,NULL,NULL,NULL,'Loomis',1,1026,NULL,'68958',NULL,1228,40.507276,-99.50047,0,NULL,NULL,NULL),
+ (33,169,1,1,0,'469N Northpoint Rd E',469,'N',NULL,'Northpoint','Rd','E',NULL,NULL,NULL,NULL,'Biloxi',1,1023,NULL,'39534',NULL,1228,30.415795,-89.068448,0,NULL,NULL,NULL),
+ (34,131,1,1,0,'79J Cadell Ave N',79,'J',NULL,'Cadell','Ave','N',NULL,NULL,NULL,NULL,'Haralson',1,1009,NULL,'30229',NULL,1228,33.232156,-84.56854,0,NULL,NULL,NULL),
+ (35,178,1,1,0,'794Y Green Path W',794,'Y',NULL,'Green','Path','W',NULL,NULL,NULL,NULL,'Rodman',1,1031,NULL,'13682',NULL,1228,43.842808,-75.90347,0,NULL,NULL,NULL),
+ (36,147,1,1,0,'627V Jackson Path W',627,'V',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'Santa Paula',1,1004,NULL,'93060',NULL,1228,34.367474,-119.07317,0,NULL,NULL,NULL),
+ (37,140,1,1,0,'72P Bay Way N',72,'P',NULL,'Bay','Way','N',NULL,NULL,NULL,NULL,'Wingate',1,1019,NULL,'21675',NULL,1228,38.286828,-76.08221,0,NULL,NULL,NULL),
+ (38,73,1,1,0,'508G Van Ness Ln E',508,'G',NULL,'Van Ness','Ln','E',NULL,NULL,NULL,NULL,'College Corner',1,1034,NULL,'45003',NULL,1228,39.575126,-84.7905,0,NULL,NULL,NULL),
+ (39,138,1,1,0,'12A Main St S',12,'A',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Smethport',1,1037,NULL,'16749',NULL,1228,41.801302,-78.44419,0,NULL,NULL,NULL),
+ (40,47,1,1,0,'392T Green Rd E',392,'T',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Greenville',1,1032,NULL,'27858',NULL,1228,35.579216,-77.33836,0,NULL,NULL,NULL),
+ (41,184,1,1,0,'173N Maple Dr S',173,'N',NULL,'Maple','Dr','S',NULL,NULL,NULL,NULL,'Madill',1,1035,NULL,'73446',NULL,1228,34.092658,-96.74851,0,NULL,NULL,NULL),
+ (42,137,1,1,0,'228N Jackson Blvd W',228,'N',NULL,'Jackson','Blvd','W',NULL,NULL,NULL,NULL,'Lavon',1,1042,NULL,'75166',NULL,1228,33.022051,-96.43601,0,NULL,NULL,NULL),
+ (43,7,1,1,0,'452N Beech Blvd NW',452,'N',NULL,'Beech','Blvd','NW',NULL,NULL,NULL,NULL,'Lake Wales',1,1008,NULL,'33859',NULL,1228,27.885359,-81.522998,0,NULL,NULL,NULL),
+ (44,104,1,1,0,'87U Lincoln Way NE',87,'U',NULL,'Lincoln','Way','NE',NULL,NULL,NULL,NULL,'Bow',1,1046,NULL,'98232',NULL,1228,48.559548,-122.41375,0,NULL,NULL,NULL),
+ (45,14,1,1,0,'457U Dowlen Pl E',457,'U',NULL,'Dowlen','Pl','E',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60693',NULL,1228,42.096428,-87.71791,0,NULL,NULL,NULL),
+ (46,46,1,1,0,'971S Bay Ln W',971,'S',NULL,'Bay','Ln','W',NULL,NULL,NULL,NULL,'Elderton',1,1037,NULL,'15736',NULL,1228,40.694906,-79.34332,0,NULL,NULL,NULL),
+ (47,165,1,1,0,'220T Main St S',220,'T',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Pacific Junction',1,1014,NULL,'51561',NULL,1228,41.022849,-95.80303,0,NULL,NULL,NULL),
+ (48,39,1,1,0,'906E Martin Luther King Ave N',906,'E',NULL,'Martin Luther King','Ave','N',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93703',NULL,1228,36.767299,-119.765,0,NULL,NULL,NULL),
+ (49,126,1,1,0,'237P Caulder Rd SW',237,'P',NULL,'Caulder','Rd','SW',NULL,NULL,NULL,NULL,'Shelby',1,1025,NULL,'59474',NULL,1228,48.479975,-111.76863,0,NULL,NULL,NULL),
+ (50,76,1,1,0,'616Q Pine Blvd SW',616,'Q',NULL,'Pine','Blvd','SW',NULL,NULL,NULL,NULL,'Princeton',1,1014,NULL,'52768',NULL,1228,41.677679,-90.37338,0,NULL,NULL,NULL),
+ (51,125,1,1,0,'398W Caulder Ave S',398,'W',NULL,'Caulder','Ave','S',NULL,NULL,NULL,NULL,'Pablo',1,1025,NULL,'59855',NULL,1228,47.597618,-114.11853,0,NULL,NULL,NULL),
+ (52,95,1,1,0,'484V Green Ln E',484,'V',NULL,'Green','Ln','E',NULL,NULL,NULL,NULL,'Nichols',1,1031,NULL,'13812',NULL,1228,42.024157,-76.36558,0,NULL,NULL,NULL),
+ (53,199,1,1,0,'83H Woodbridge Path S',83,'H',NULL,'Woodbridge','Path','S',NULL,NULL,NULL,NULL,'Sarahsville',1,1034,NULL,'43779',NULL,1228,39.803205,-81.43368,0,NULL,NULL,NULL),
+ (54,33,1,1,0,'74A Maple St SW',74,'A',NULL,'Maple','St','SW',NULL,NULL,NULL,NULL,'Poughquag',1,1031,NULL,'12570',NULL,1228,41.614667,-73.67709,0,NULL,NULL,NULL),
+ (55,79,1,1,0,'640B Maple Blvd S',640,'B',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Jay',1,1018,NULL,'04239',NULL,1228,44.516475,-70.21933,0,NULL,NULL,NULL),
+ (56,102,1,1,0,'756A Pine Pl N',756,'A',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Morgan City',1,1017,NULL,'70380',NULL,1228,29.694806,-91.18252,0,NULL,NULL,NULL),
+ (57,190,1,1,0,'435R States Ave SE',435,'R',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,NULL),
+ (58,77,1,1,0,'570C Maple Way NE',570,'C',NULL,'Maple','Way','NE',NULL,NULL,NULL,NULL,'Carbondale',1,1005,NULL,'81623',NULL,1228,39.335504,-107.1882,0,NULL,NULL,NULL),
+ (59,118,1,1,0,'288V Lincoln Way S',288,'V',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Ormond Beach',1,1008,NULL,'32175',NULL,1228,29.022729,-81.172169,0,NULL,NULL,NULL),
+ (60,11,1,1,0,'129L Maple Dr NE',129,'L',NULL,'Maple','Dr','NE',NULL,NULL,NULL,NULL,'Hartford',1,1006,NULL,'06145',NULL,1228,41.791776,-72.718832,0,NULL,NULL,NULL),
+ (61,186,1,1,0,'628O Caulder Pl N',628,'O',NULL,'Caulder','Pl','N',NULL,NULL,NULL,NULL,'Moffit',1,1033,NULL,'58560',NULL,1228,46.677294,-100.28185,0,NULL,NULL,NULL),
+ (62,53,1,1,0,'631J Maple Blvd NE',631,'J',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Bridgeport',1,1006,NULL,'06699',NULL,1228,41.308873,-73.363661,0,NULL,NULL,NULL),
+ (63,152,1,1,0,'110P States Rd E',110,'P',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Schroeder',1,1022,NULL,'55613',NULL,1228,47.651374,-90.95917,0,NULL,NULL,NULL),
+ (64,57,1,1,0,'365S Main Blvd SW',365,'S',NULL,'Main','Blvd','SW',NULL,NULL,NULL,NULL,'Steele',1,1000,NULL,'35987',NULL,1228,33.9117,-86.24408,0,NULL,NULL,NULL),
+ (65,48,1,1,0,'92A College Rd SW',92,'A',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Payson',1,1002,NULL,'85541',NULL,1228,34.243578,-111.28137,0,NULL,NULL,NULL),
+ (66,58,1,1,0,'427L Beech Path S',427,'L',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Wessington Springs',1,1040,NULL,'57382',NULL,1228,44.051324,-98.63556,0,NULL,NULL,NULL),
+ (67,22,1,1,0,'758F Main Blvd W',758,'F',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Stewart',1,1034,NULL,'45778',NULL,1228,39.341224,-81.88561,0,NULL,NULL,NULL),
+ (68,43,1,1,0,'465H Northpoint Pl NW',465,'H',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Union City',1,1029,NULL,'07086',NULL,1228,40.769796,-74.022351,0,NULL,NULL,NULL),
+ (69,54,1,1,0,'345W States Way SE',345,'W',NULL,'States','Way','SE',NULL,NULL,NULL,NULL,'Berea',1,1016,NULL,'40403',NULL,1228,37.575568,-84.27767,0,NULL,NULL,NULL),
+ (70,21,1,1,0,'904C Caulder St NE',904,'C',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Thompson Falls',1,1025,NULL,'59873',NULL,1228,47.710209,-115.23463,0,NULL,NULL,NULL),
+ (71,36,1,1,0,'807B El Camino Dr E',807,'B',NULL,'El Camino','Dr','E',NULL,NULL,NULL,NULL,'Graysville',1,1009,NULL,'30726',NULL,1228,34.975939,-85.1416,0,NULL,NULL,NULL),
+ (72,49,1,1,0,'74D States Rd SE',74,'D',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Kingston',1,1003,NULL,'72742',NULL,1228,35.992386,-93.47918,0,NULL,NULL,NULL),
+ (73,170,1,1,0,'196W Martin Luther King Blvd S',196,'W',NULL,'Martin Luther King','Blvd','S',NULL,NULL,NULL,NULL,'New York Mills',1,1022,NULL,'56567',NULL,1228,46.534993,-95.38106,0,NULL,NULL,NULL),
+ (74,101,1,1,0,'556V Dowlen Ln NE',556,'V',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Abilene',1,1042,NULL,'79698',NULL,1228,32.475074,-99.73484,0,NULL,NULL,NULL),
+ (75,89,3,1,0,'820E Woodbridge Rd S',820,'E',NULL,'Woodbridge','Rd','S',NULL,'Editorial Dept',NULL,NULL,'Pearl River',1,1017,NULL,'70452',NULL,1228,30.401481,-89.76917,0,NULL,NULL,NULL),
+ (76,123,3,1,0,'449O Bay Path W',449,'O',NULL,'Bay','Path','W',NULL,'Disbursements',NULL,NULL,'Texico',1,1030,NULL,'88135',NULL,1228,34.511478,-103.06869,0,NULL,NULL,NULL),
+ (77,172,3,1,0,'920K Cadell Way E',920,'K',NULL,'Cadell','Way','E',NULL,'c/o OPDC',NULL,NULL,'Houston',1,1042,NULL,'77248',NULL,1228,29.83399,-95.434241,0,NULL,NULL,NULL),
+ (78,109,2,0,0,'920K Cadell Way E',920,'K',NULL,'Cadell','Way','E',NULL,'c/o OPDC',NULL,NULL,'Houston',1,1042,NULL,'77248',NULL,1228,29.83399,-95.434241,0,NULL,NULL,77),
+ (79,124,3,1,0,'429T Van Ness Way NE',429,'T',NULL,'Van Ness','Way','NE',NULL,'Mailstop 101',NULL,NULL,'Edgewood',1,1042,NULL,'75117',NULL,1228,32.696777,-95.86881,0,NULL,NULL,NULL),
+ (80,178,2,0,0,'429T Van Ness Way NE',429,'T',NULL,'Van Ness','Way','NE',NULL,'Mailstop 101',NULL,NULL,'Edgewood',1,1042,NULL,'75117',NULL,1228,32.696777,-95.86881,0,NULL,NULL,79),
+ (81,173,3,1,0,'125N Second St N',125,'N',NULL,'Second','St','N',NULL,'Urgent',NULL,NULL,'Lakeville',1,1013,NULL,'46536',NULL,1228,41.519839,-86.2795,0,NULL,NULL,NULL),
+ (82,84,2,1,0,'125N Second St N',125,'N',NULL,'Second','St','N',NULL,'Urgent',NULL,NULL,'Lakeville',1,1013,NULL,'46536',NULL,1228,41.519839,-86.2795,0,NULL,NULL,81),
+ (83,10,3,1,0,'583B El Camino Rd NE',583,'B',NULL,'El Camino','Rd','NE',NULL,'Attn: Development',NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,NULL),
+ (84,133,3,1,0,'553H Woodbridge Rd NE',553,'H',NULL,'Woodbridge','Rd','NE',NULL,'c/o OPDC',NULL,NULL,'Fayette',1,1043,NULL,'84630',NULL,1228,39.272741,-111.77838,0,NULL,NULL,NULL),
+ (85,146,2,1,0,'553H Woodbridge Rd NE',553,'H',NULL,'Woodbridge','Rd','NE',NULL,'c/o OPDC',NULL,NULL,'Fayette',1,1043,NULL,'84630',NULL,1228,39.272741,-111.77838,0,NULL,NULL,84),
+ (86,105,3,1,0,'789X Northpoint Dr S',789,'X',NULL,'Northpoint','Dr','S',NULL,'Receiving',NULL,NULL,'Loxahatchee',1,1008,NULL,'33470',NULL,1228,26.751094,-80.30156,0,NULL,NULL,NULL),
+ (87,70,2,1,0,'789X Northpoint Dr S',789,'X',NULL,'Northpoint','Dr','S',NULL,'Receiving',NULL,NULL,'Loxahatchee',1,1008,NULL,'33470',NULL,1228,26.751094,-80.30156,0,NULL,NULL,86),
+ (88,197,3,1,0,'630H Northpoint Path SW',630,'H',NULL,'Northpoint','Path','SW',NULL,'Attn: Accounting',NULL,NULL,'Horse Branch',1,1016,NULL,'42349',NULL,1228,37.433703,-86.66952,0,NULL,NULL,NULL),
+ (89,37,3,1,0,'697X College Rd E',697,'X',NULL,'College','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Newman Lake',1,1046,NULL,'99025',NULL,1228,47.751434,-117.06934,0,NULL,NULL,NULL),
+ (90,136,2,1,0,'697X College Rd E',697,'X',NULL,'College','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Newman Lake',1,1046,NULL,'99025',NULL,1228,47.751434,-117.06934,0,NULL,NULL,89),
+ (91,192,3,1,0,'775U Cadell Dr SW',775,'U',NULL,'Cadell','Dr','SW',NULL,'Subscriptions Dept',NULL,NULL,'Toano',1,1045,NULL,'23168',NULL,1228,37.403872,-76.81744,0,NULL,NULL,NULL),
+ (92,196,2,0,0,'775U Cadell Dr SW',775,'U',NULL,'Cadell','Dr','SW',NULL,'Subscriptions Dept',NULL,NULL,'Toano',1,1045,NULL,'23168',NULL,1228,37.403872,-76.81744,0,NULL,NULL,91),
+ (93,97,3,1,0,'890Z Beech Pl NE',890,'Z',NULL,'Beech','Pl','NE',NULL,'Mailstop 101',NULL,NULL,'Interlachen',1,1008,NULL,'32148',NULL,1228,29.640791,-81.88648,0,NULL,NULL,NULL),
+ (94,150,2,1,0,'890Z Beech Pl NE',890,'Z',NULL,'Beech','Pl','NE',NULL,'Mailstop 101',NULL,NULL,'Interlachen',1,1008,NULL,'32148',NULL,1228,29.640791,-81.88648,0,NULL,NULL,93),
+ (95,175,3,1,0,'354V Second Path W',354,'V',NULL,'Second','Path','W',NULL,'Receiving',NULL,NULL,'Springer',1,1030,NULL,'87747',NULL,1228,36.366344,-104.39211,0,NULL,NULL,NULL),
+ (96,201,3,1,0,'76M El Camino St NE',76,'M',NULL,'El Camino','St','NE',NULL,'c/o PO Plus',NULL,NULL,'Punta Gorda',1,1008,NULL,'33927',NULL,1228,26.901981,-82.000005,0,NULL,NULL,NULL),
+ (97,25,2,1,0,'76M El Camino St NE',76,'M',NULL,'El Camino','St','NE',NULL,'c/o PO Plus',NULL,NULL,'Punta Gorda',1,1008,NULL,'33927',NULL,1228,26.901981,-82.000005,0,NULL,NULL,96),
+ (98,159,3,1,0,'745Q Dowlen Rd NW',745,'Q',NULL,'Dowlen','Rd','NW',NULL,'c/o PO Plus',NULL,NULL,'Dallas',1,1042,NULL,'75312',NULL,1228,32.767268,-96.777626,0,NULL,NULL,NULL),
+ (99,157,3,1,0,'963G Woodbridge Path S',963,'G',NULL,'Woodbridge','Path','S',NULL,'Cuffe Parade',NULL,NULL,'Talbot',1,1013,NULL,'47984',NULL,1228,40.606301,-87.310042,0,NULL,NULL,NULL),
+ (100,134,2,1,0,'963G Woodbridge Path S',963,'G',NULL,'Woodbridge','Path','S',NULL,'Cuffe Parade',NULL,NULL,'Talbot',1,1013,NULL,'47984',NULL,1228,40.606301,-87.310042,0,NULL,NULL,99),
+ (101,24,3,1,0,'511K Jackson St E',511,'K',NULL,'Jackson','St','E',NULL,'c/o PO Plus',NULL,NULL,'Eolia',1,1024,NULL,'63344',NULL,1228,39.239548,-91.01577,0,NULL,NULL,NULL),
+ (102,139,3,1,0,'192G Van Ness Rd SW',192,'G',NULL,'Van Ness','Rd','SW',NULL,'Receiving',NULL,NULL,'Park River',1,1033,NULL,'58270',NULL,1228,48.39642,-97.78025,0,NULL,NULL,NULL),
+ (103,147,2,0,0,'192G Van Ness Rd SW',192,'G',NULL,'Van Ness','Rd','SW',NULL,'Receiving',NULL,NULL,'Park River',1,1033,NULL,'58270',NULL,1228,48.39642,-97.78025,0,NULL,NULL,102),
+ (104,168,3,1,0,'739X Jackson Pl SE',739,'X',NULL,'Jackson','Pl','SE',NULL,'Disbursements',NULL,NULL,'Geneva',1,1012,NULL,'60134',NULL,1228,41.885728,-88.31957,0,NULL,NULL,NULL),
+ (105,75,3,1,0,'69Z Cadell Ln W',69,'Z',NULL,'Cadell','Ln','W',NULL,'Subscriptions Dept',NULL,NULL,'Blakely',1,1009,NULL,'31723',NULL,1228,31.334337,-84.94899,0,NULL,NULL,NULL),
+ (106,26,2,1,0,'69Z Cadell Ln W',69,'Z',NULL,'Cadell','Ln','W',NULL,'Subscriptions Dept',NULL,NULL,'Blakely',1,1009,NULL,'31723',NULL,1228,31.334337,-84.94899,0,NULL,NULL,105),
+ (107,153,1,1,0,'640B Maple Blvd S',640,'B',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Jay',1,1018,NULL,'04239',NULL,1228,44.516475,-70.21933,0,NULL,NULL,55),
+ (108,94,1,1,0,'640B Maple Blvd S',640,'B',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Jay',1,1018,NULL,'04239',NULL,1228,44.516475,-70.21933,0,NULL,NULL,55),
+ (109,78,1,1,0,'640B Maple Blvd S',640,'B',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Jay',1,1018,NULL,'04239',NULL,1228,44.516475,-70.21933,0,NULL,NULL,55),
+ (110,33,1,0,0,'640B Maple Blvd S',640,'B',NULL,'Maple','Blvd','S',NULL,NULL,NULL,NULL,'Jay',1,1018,NULL,'04239',NULL,1228,44.516475,-70.21933,0,NULL,NULL,55),
+ (111,200,1,1,0,'756A Pine Pl N',756,'A',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Morgan City',1,1017,NULL,'70380',NULL,1228,29.694806,-91.18252,0,NULL,NULL,56),
+ (112,158,1,1,0,'756A Pine Pl N',756,'A',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Morgan City',1,1017,NULL,'70380',NULL,1228,29.694806,-91.18252,0,NULL,NULL,56),
+ (113,187,1,1,0,'756A Pine Pl N',756,'A',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Morgan City',1,1017,NULL,'70380',NULL,1228,29.694806,-91.18252,0,NULL,NULL,56),
+ (114,3,1,1,0,'270U Martin Luther King Ln NW',270,'U',NULL,'Martin Luther King','Ln','NW',NULL,NULL,NULL,NULL,'Walnut Creek',1,1034,NULL,'44687',NULL,1228,40.551575,-81.728416,0,NULL,NULL,NULL),
+ (115,60,1,1,0,'435R States Ave SE',435,'R',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,57),
+ (116,88,1,1,0,'435R States Ave SE',435,'R',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,57),
+ (117,160,1,1,0,'435R States Ave SE',435,'R',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,57),
+ (118,117,1,1,0,'435R States Ave SE',435,'R',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,57),
+ (119,120,1,1,0,'570C Maple Way NE',570,'C',NULL,'Maple','Way','NE',NULL,NULL,NULL,NULL,'Carbondale',1,1005,NULL,'81623',NULL,1228,39.335504,-107.1882,0,NULL,NULL,58),
+ (120,52,1,1,0,'570C Maple Way NE',570,'C',NULL,'Maple','Way','NE',NULL,NULL,NULL,NULL,'Carbondale',1,1005,NULL,'81623',NULL,1228,39.335504,-107.1882,0,NULL,NULL,58),
+ (121,28,1,1,0,'570C Maple Way NE',570,'C',NULL,'Maple','Way','NE',NULL,NULL,NULL,NULL,'Carbondale',1,1005,NULL,'81623',NULL,1228,39.335504,-107.1882,0,NULL,NULL,58),
+ (122,83,1,1,0,'570C Maple Way NE',570,'C',NULL,'Maple','Way','NE',NULL,NULL,NULL,NULL,'Carbondale',1,1005,NULL,'81623',NULL,1228,39.335504,-107.1882,0,NULL,NULL,58),
+ (123,185,1,1,0,'288V Lincoln Way S',288,'V',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Ormond Beach',1,1008,NULL,'32175',NULL,1228,29.022729,-81.172169,0,NULL,NULL,59),
+ (124,68,1,1,0,'288V Lincoln Way S',288,'V',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Ormond Beach',1,1008,NULL,'32175',NULL,1228,29.022729,-81.172169,0,NULL,NULL,59),
+ (125,19,1,1,0,'288V Lincoln Way S',288,'V',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Ormond Beach',1,1008,NULL,'32175',NULL,1228,29.022729,-81.172169,0,NULL,NULL,59),
+ (126,84,1,0,0,'288V Lincoln Way S',288,'V',NULL,'Lincoln','Way','S',NULL,NULL,NULL,NULL,'Ormond Beach',1,1008,NULL,'32175',NULL,1228,29.022729,-81.172169,0,NULL,NULL,59),
+ (127,141,1,1,0,'129L Maple Dr NE',129,'L',NULL,'Maple','Dr','NE',NULL,NULL,NULL,NULL,'Hartford',1,1006,NULL,'06145',NULL,1228,41.791776,-72.718832,0,NULL,NULL,60),
+ (128,179,1,1,0,'129L Maple Dr NE',129,'L',NULL,'Maple','Dr','NE',NULL,NULL,NULL,NULL,'Hartford',1,1006,NULL,'06145',NULL,1228,41.791776,-72.718832,0,NULL,NULL,60),
+ (129,99,1,1,0,'129L Maple Dr NE',129,'L',NULL,'Maple','Dr','NE',NULL,NULL,NULL,NULL,'Hartford',1,1006,NULL,'06145',NULL,1228,41.791776,-72.718832,0,NULL,NULL,60),
+ (130,61,1,1,0,'581B Jackson Blvd S',581,'B',NULL,'Jackson','Blvd','S',NULL,NULL,NULL,NULL,'Amarillo',1,1042,NULL,'79116',NULL,1228,35.245398,-101.999047,0,NULL,NULL,NULL),
+ (131,107,1,1,0,'628O Caulder Pl N',628,'O',NULL,'Caulder','Pl','N',NULL,NULL,NULL,NULL,'Moffit',1,1033,NULL,'58560',NULL,1228,46.677294,-100.28185,0,NULL,NULL,61),
+ (132,26,1,0,0,'628O Caulder Pl N',628,'O',NULL,'Caulder','Pl','N',NULL,NULL,NULL,NULL,'Moffit',1,1033,NULL,'58560',NULL,1228,46.677294,-100.28185,0,NULL,NULL,61),
+ (133,2,1,1,0,'628O Caulder Pl N',628,'O',NULL,'Caulder','Pl','N',NULL,NULL,NULL,NULL,'Moffit',1,1033,NULL,'58560',NULL,1228,46.677294,-100.28185,0,NULL,NULL,61),
+ (134,40,1,1,0,'628O Caulder Pl N',628,'O',NULL,'Caulder','Pl','N',NULL,NULL,NULL,NULL,'Moffit',1,1033,NULL,'58560',NULL,1228,46.677294,-100.28185,0,NULL,NULL,61),
+ (135,25,1,0,0,'631J Maple Blvd NE',631,'J',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Bridgeport',1,1006,NULL,'06699',NULL,1228,41.308873,-73.363661,0,NULL,NULL,62),
+ (136,62,1,1,0,'631J Maple Blvd NE',631,'J',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Bridgeport',1,1006,NULL,'06699',NULL,1228,41.308873,-73.363661,0,NULL,NULL,62),
+ (137,150,1,0,0,'631J Maple Blvd NE',631,'J',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Bridgeport',1,1006,NULL,'06699',NULL,1228,41.308873,-73.363661,0,NULL,NULL,62),
+ (138,148,1,1,0,'631J Maple Blvd NE',631,'J',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Bridgeport',1,1006,NULL,'06699',NULL,1228,41.308873,-73.363661,0,NULL,NULL,62),
+ (139,183,1,1,0,'110P States Rd E',110,'P',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Schroeder',1,1022,NULL,'55613',NULL,1228,47.651374,-90.95917,0,NULL,NULL,63),
+ (140,146,1,0,0,'110P States Rd E',110,'P',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Schroeder',1,1022,NULL,'55613',NULL,1228,47.651374,-90.95917,0,NULL,NULL,63),
+ (141,166,1,1,0,'110P States Rd E',110,'P',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Schroeder',1,1022,NULL,'55613',NULL,1228,47.651374,-90.95917,0,NULL,NULL,63),
+ (142,9,1,1,0,'110P States Rd E',110,'P',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Schroeder',1,1022,NULL,'55613',NULL,1228,47.651374,-90.95917,0,NULL,NULL,63),
+ (143,176,1,1,0,'365S Main Blvd SW',365,'S',NULL,'Main','Blvd','SW',NULL,NULL,NULL,NULL,'Steele',1,1000,NULL,'35987',NULL,1228,33.9117,-86.24408,0,NULL,NULL,64),
+ (144,127,1,1,0,'365S Main Blvd SW',365,'S',NULL,'Main','Blvd','SW',NULL,NULL,NULL,NULL,'Steele',1,1000,NULL,'35987',NULL,1228,33.9117,-86.24408,0,NULL,NULL,64),
+ (145,38,1,1,0,'365S Main Blvd SW',365,'S',NULL,'Main','Blvd','SW',NULL,NULL,NULL,NULL,'Steele',1,1000,NULL,'35987',NULL,1228,33.9117,-86.24408,0,NULL,NULL,64),
+ (146,18,1,1,0,'367C El Camino Rd NW',367,'C',NULL,'El Camino','Rd','NW',NULL,NULL,NULL,NULL,'Carolina',1,1047,NULL,'26563',NULL,1228,39.480838,-80.27183,0,NULL,NULL,NULL),
+ (147,8,1,1,0,'92A College Rd SW',92,'A',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Payson',1,1002,NULL,'85541',NULL,1228,34.243578,-111.28137,0,NULL,NULL,65),
+ (148,145,1,1,0,'92A College Rd SW',92,'A',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Payson',1,1002,NULL,'85541',NULL,1228,34.243578,-111.28137,0,NULL,NULL,65),
+ (149,130,1,1,0,'92A College Rd SW',92,'A',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Payson',1,1002,NULL,'85541',NULL,1228,34.243578,-111.28137,0,NULL,NULL,65),
+ (150,174,1,1,0,'92A College Rd SW',92,'A',NULL,'College','Rd','SW',NULL,NULL,NULL,NULL,'Payson',1,1002,NULL,'85541',NULL,1228,34.243578,-111.28137,0,NULL,NULL,65),
+ (151,161,1,1,0,'427L Beech Path S',427,'L',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Wessington Springs',1,1040,NULL,'57382',NULL,1228,44.051324,-98.63556,0,NULL,NULL,66),
+ (152,4,1,1,0,'427L Beech Path S',427,'L',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Wessington Springs',1,1040,NULL,'57382',NULL,1228,44.051324,-98.63556,0,NULL,NULL,66),
+ (153,45,1,1,0,'427L Beech Path S',427,'L',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Wessington Springs',1,1040,NULL,'57382',NULL,1228,44.051324,-98.63556,0,NULL,NULL,66),
+ (154,188,1,1,0,'302B Maple Blvd W',302,'B',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Wilmington',1,1007,NULL,'19805',NULL,1228,39.745377,-75.58251,0,NULL,NULL,NULL),
+ (155,65,1,1,0,'758F Main Blvd W',758,'F',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Stewart',1,1034,NULL,'45778',NULL,1228,39.341224,-81.88561,0,NULL,NULL,67),
+ (156,182,1,1,0,'758F Main Blvd W',758,'F',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Stewart',1,1034,NULL,'45778',NULL,1228,39.341224,-81.88561,0,NULL,NULL,67),
+ (157,134,1,0,0,'758F Main Blvd W',758,'F',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Stewart',1,1034,NULL,'45778',NULL,1228,39.341224,-81.88561,0,NULL,NULL,67),
+ (158,110,1,1,0,'758F Main Blvd W',758,'F',NULL,'Main','Blvd','W',NULL,NULL,NULL,NULL,'Stewart',1,1034,NULL,'45778',NULL,1228,39.341224,-81.88561,0,NULL,NULL,67),
+ (159,193,1,1,0,'465H Northpoint Pl NW',465,'H',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Union City',1,1029,NULL,'07086',NULL,1228,40.769796,-74.022351,0,NULL,NULL,68),
+ (160,56,1,1,0,'465H Northpoint Pl NW',465,'H',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Union City',1,1029,NULL,'07086',NULL,1228,40.769796,-74.022351,0,NULL,NULL,68),
+ (161,116,1,1,0,'465H Northpoint Pl NW',465,'H',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Union City',1,1029,NULL,'07086',NULL,1228,40.769796,-74.022351,0,NULL,NULL,68),
+ (162,198,1,1,0,'465H Northpoint Pl NW',465,'H',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Union City',1,1029,NULL,'07086',NULL,1228,40.769796,-74.022351,0,NULL,NULL,68),
+ (163,34,1,1,0,'345W States Way SE',345,'W',NULL,'States','Way','SE',NULL,NULL,NULL,NULL,'Berea',1,1016,NULL,'40403',NULL,1228,37.575568,-84.27767,0,NULL,NULL,69),
+ (164,80,1,1,0,'345W States Way SE',345,'W',NULL,'States','Way','SE',NULL,NULL,NULL,NULL,'Berea',1,1016,NULL,'40403',NULL,1228,37.575568,-84.27767,0,NULL,NULL,69),
+ (165,67,1,1,0,'345W States Way SE',345,'W',NULL,'States','Way','SE',NULL,NULL,NULL,NULL,'Berea',1,1016,NULL,'40403',NULL,1228,37.575568,-84.27767,0,NULL,NULL,69),
+ (166,50,1,1,0,'345W States Way SE',345,'W',NULL,'States','Way','SE',NULL,NULL,NULL,NULL,'Berea',1,1016,NULL,'40403',NULL,1228,37.575568,-84.27767,0,NULL,NULL,69),
+ (167,64,1,1,0,'904C Caulder St NE',904,'C',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Thompson Falls',1,1025,NULL,'59873',NULL,1228,47.710209,-115.23463,0,NULL,NULL,70),
+ (168,119,1,1,0,'904C Caulder St NE',904,'C',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Thompson Falls',1,1025,NULL,'59873',NULL,1228,47.710209,-115.23463,0,NULL,NULL,70),
+ (169,189,1,1,0,'904C Caulder St NE',904,'C',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Thompson Falls',1,1025,NULL,'59873',NULL,1228,47.710209,-115.23463,0,NULL,NULL,70),
+ (170,180,1,1,0,'904C Caulder St NE',904,'C',NULL,'Caulder','St','NE',NULL,NULL,NULL,NULL,'Thompson Falls',1,1025,NULL,'59873',NULL,1228,47.710209,-115.23463,0,NULL,NULL,70),
+ (171,143,1,1,0,'807B El Camino Dr E',807,'B',NULL,'El Camino','Dr','E',NULL,NULL,NULL,NULL,'Graysville',1,1009,NULL,'30726',NULL,1228,34.975939,-85.1416,0,NULL,NULL,71),
+ (172,135,1,1,0,'807B El Camino Dr E',807,'B',NULL,'El Camino','Dr','E',NULL,NULL,NULL,NULL,'Graysville',1,1009,NULL,'30726',NULL,1228,34.975939,-85.1416,0,NULL,NULL,71),
+ (173,90,1,1,0,'807B El Camino Dr E',807,'B',NULL,'El Camino','Dr','E',NULL,NULL,NULL,NULL,'Graysville',1,1009,NULL,'30726',NULL,1228,34.975939,-85.1416,0,NULL,NULL,71),
+ (174,70,1,0,0,'339H Beech Dr E',339,'H',NULL,'Beech','Dr','E',NULL,NULL,NULL,NULL,'Fargo',1,1035,NULL,'73840',NULL,1228,36.403804,-99.64674,0,NULL,NULL,NULL),
+ (175,106,1,1,0,'74D States Rd SE',74,'D',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Kingston',1,1003,NULL,'72742',NULL,1228,35.992386,-93.47918,0,NULL,NULL,72),
+ (176,100,1,1,0,'74D States Rd SE',74,'D',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Kingston',1,1003,NULL,'72742',NULL,1228,35.992386,-93.47918,0,NULL,NULL,72),
+ (177,86,1,1,0,'74D States Rd SE',74,'D',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Kingston',1,1003,NULL,'72742',NULL,1228,35.992386,-93.47918,0,NULL,NULL,72),
+ (178,181,1,1,0,'74D States Rd SE',74,'D',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Kingston',1,1003,NULL,'72742',NULL,1228,35.992386,-93.47918,0,NULL,NULL,72),
+ (179,149,1,1,0,'196W Martin Luther King Blvd S',196,'W',NULL,'Martin Luther King','Blvd','S',NULL,NULL,NULL,NULL,'New York Mills',1,1022,NULL,'56567',NULL,1228,46.534993,-95.38106,0,NULL,NULL,73),
+ (180,93,1,1,0,'196W Martin Luther King Blvd S',196,'W',NULL,'Martin Luther King','Blvd','S',NULL,NULL,NULL,NULL,'New York Mills',1,1022,NULL,'56567',NULL,1228,46.534993,-95.38106,0,NULL,NULL,73),
+ (181,122,1,1,0,'196W Martin Luther King Blvd S',196,'W',NULL,'Martin Luther King','Blvd','S',NULL,NULL,NULL,NULL,'New York Mills',1,1022,NULL,'56567',NULL,1228,46.534993,-95.38106,0,NULL,NULL,73),
+ (182,51,1,1,0,'392B Bay Pl SE',392,'B',NULL,'Bay','Pl','SE',NULL,NULL,NULL,NULL,'Kiefer',1,1035,NULL,'74041',NULL,1228,35.94876,-96.06237,0,NULL,NULL,NULL),
+ (183,144,1,1,0,'556V Dowlen Ln NE',556,'V',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Abilene',1,1042,NULL,'79698',NULL,1228,32.475074,-99.73484,0,NULL,NULL,74),
+ (184,142,1,1,0,'556V Dowlen Ln NE',556,'V',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Abilene',1,1042,NULL,'79698',NULL,1228,32.475074,-99.73484,0,NULL,NULL,74),
+ (185,29,1,1,0,'556V Dowlen Ln NE',556,'V',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Abilene',1,1042,NULL,'79698',NULL,1228,32.475074,-99.73484,0,NULL,NULL,74),
+ (186,30,1,1,0,'556V Dowlen Ln NE',556,'V',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Abilene',1,1042,NULL,'79698',NULL,1228,32.475074,-99.73484,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);
 /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -2145,208 +2071,208 @@ UNLOCK TABLES;
 LOCK TABLES `civicrm_contact` WRITE;
 /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */;
 INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `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`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES
- (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',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,'Default Organization',NULL,NULL,NULL,0,NULL,'2022-10-10 07:32:28'),
- (2,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,'3',NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:36','2022-10-10 07:32:41'),
- (3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Betty','Dr. Betty Yadav',NULL,NULL,NULL,'3',NULL,'Both','2726210000',NULL,'Sample Data','Betty','Q','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Yadav',NULL,1,'1935-02-23',1,'2021-12-17',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'robertss@example.com','robertss@example.com',NULL,NULL,NULL,'1',NULL,'Both','4015408478',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear robertss@example.com',1,NULL,'Dear robertss@example.com',1,NULL,'robertss@example.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Shad','Mr. Shad Lee III',NULL,NULL,NULL,NULL,NULL,'Both','2277508634',NULL,'Sample Data','Shad','E','Lee',3,4,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Mr. Shad Lee III',NULL,2,'1971-06-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (6,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Van Ness Literacy Fund','Van Ness Literacy Fund',NULL,NULL,NULL,'3',NULL,'Both','2119238159',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Van Ness Literacy Fund',NULL,NULL,NULL,0,NULL,NULL,21,'Van Ness Literacy Fund',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (7,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jameson.beula44@fishmail.biz','jameson.beula44@fishmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','3385738971',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jameson.beula44@fishmail.biz',1,NULL,'Dear jameson.beula44@fishmail.biz',1,NULL,'jameson.beula44@fishmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sherman','Sherman Prentice',NULL,NULL,NULL,NULL,NULL,'Both','2980148757',NULL,'Sample Data','Sherman','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Prentice',NULL,2,'1999-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Rebekah','Mrs. Rebekah Łąchowski',NULL,NULL,NULL,'5',NULL,'Both','237881396',NULL,'Sample Data','Rebekah','B','Łąchowski',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Łąchowski',NULL,1,'1993-09-19',0,NULL,NULL,NULL,'Colorado Food Fund',NULL,NULL,81,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (10,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Jackson','Mr. Jackson Jacobs',NULL,NULL,NULL,'4',NULL,'Both','96553680',NULL,'Sample Data','Jackson','C','Jacobs',3,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Jacobs',NULL,2,'1934-07-26',0,NULL,NULL,NULL,'Urban Arts Collective',NULL,NULL,107,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (11,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Łąchowski, Megan','Mrs. Megan Łąchowski',NULL,NULL,NULL,'3',NULL,'Both','1824434920',NULL,'Sample Data','Megan','I','Łąchowski',1,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Mrs. Megan Łąchowski',NULL,NULL,'1955-07-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Alexia','Alexia Nielsen',NULL,NULL,NULL,'1',NULL,'Both','164186955',NULL,'Sample Data','Alexia','N','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Nielsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Scarlet','Mrs. Scarlet Wattson',NULL,NULL,NULL,'5',NULL,'Both','2653124972',NULL,'Sample Data','Scarlet','M','Wattson',1,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Wattson',NULL,1,'1979-11-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Truman','Dr. Truman Deforest Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3698975048',NULL,'Sample Data','Truman','L','Deforest',4,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Deforest Jr.',NULL,NULL,'1977-05-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (15,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Clint','Mr. Clint Grant Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2449270383',NULL,'Sample Data','Clint','P','Grant',3,1,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Grant Jr.',NULL,2,'1984-04-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Junko','Mrs. Junko Terrell',NULL,NULL,NULL,NULL,NULL,'Both','3229402674',NULL,'Sample Data','Junko','O','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Mrs. Junko Terrell',NULL,1,'1941-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (17,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Iowa Legal Collective','Iowa Legal Collective',NULL,NULL,NULL,NULL,NULL,'Both','2105593002',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Iowa Legal Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'Iowa Legal Collective',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (18,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Creative Empowerment Partners','Creative Empowerment Partners',NULL,NULL,NULL,NULL,NULL,'Both','3818774052',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Empowerment Partners',NULL,NULL,NULL,0,NULL,NULL,NULL,'Creative Empowerment Partners',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (19,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Progressive Family Trust','Progressive Family Trust',NULL,NULL,NULL,NULL,NULL,'Both','3561913235',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Family Trust',NULL,NULL,NULL,0,NULL,NULL,31,'Progressive Family Trust',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Margaret','Margaret Wilson',NULL,NULL,NULL,'1',NULL,'Both','2853804377',NULL,'Sample Data','Margaret','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Wilson',NULL,1,'1966-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (21,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Craig','Dr. Craig Prentice',NULL,NULL,NULL,NULL,NULL,'Both','3778069057',NULL,'Sample Data','Craig','','Prentice',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Prentice',NULL,2,'1989-07-05',0,NULL,NULL,NULL,'Van Ness Literacy Fund',NULL,NULL,6,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (22,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wattson, Brent','Mr. Brent Wattson Sr.',NULL,NULL,NULL,'4',NULL,'Both','2094304763',NULL,'Sample Data','Brent','','Wattson',3,2,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Wattson Sr.',NULL,2,'1944-06-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (23,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Ashley','Mr. Ashley Ivanov',NULL,NULL,NULL,'5',NULL,'Both','2740657237',NULL,'Sample Data','Ashley','B','Ivanov',3,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Ivanov',NULL,2,'1983-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (24,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bachman.n.elizabeth67@fishmail.co.pl','bachman.n.elizabeth67@fishmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3737535739',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bachman.n.elizabeth67@fishmail.co.pl',1,NULL,'Dear bachman.n.elizabeth67@fishmail.co.pl',1,NULL,'bachman.n.elizabeth67@fishmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (25,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Ashley','Mr. Ashley Prentice',NULL,NULL,NULL,'3',NULL,'Both','3283878025',NULL,'Sample Data','Ashley','T','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Prentice',NULL,2,'1975-07-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (26,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Delana','Delana Roberts',NULL,NULL,NULL,NULL,NULL,'Both','944253151',NULL,'Sample Data','Delana','A','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Roberts',NULL,1,'1934-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Lawerence','Lawerence Nielsen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4276831129',NULL,'Sample Data','Lawerence','','Nielsen',NULL,1,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Nielsen Jr.',NULL,NULL,'1979-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Brigette','Mrs. Brigette Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1641283407',NULL,'Sample Data','Brigette','E','Blackwell',1,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Mrs. Brigette Blackwell',NULL,NULL,'1990-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (29,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Nielsen, Sherman','Dr. Sherman Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','2590733768',NULL,'Sample Data','Sherman','H','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Dr. Sherman Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (30,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Badger Poetry Academy','Badger Poetry Academy',NULL,NULL,NULL,'5',NULL,'Both','2766098459',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Badger Poetry Academy',NULL,NULL,NULL,0,NULL,NULL,NULL,'Badger Poetry Academy',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (31,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wilson, Rolando','Mr. Rolando Wilson Sr.',NULL,NULL,NULL,'2',NULL,'Both','3129579168',NULL,'Sample Data','Rolando','','Wilson',3,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Wilson Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,'Progressive Family Trust',NULL,NULL,19,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (32,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,NULL,NULL,'Both','3228000340',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:41'),
- (33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Errol','Dr. Errol Wagner Sr.',NULL,NULL,NULL,'2',NULL,'Both','700104039',NULL,'Sample Data','Errol','','Wagner',4,2,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Wagner Sr.',NULL,2,'1991-11-05',0,NULL,NULL,NULL,'Sierra Culture Partnership',NULL,NULL,72,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Santina','Mrs. Santina Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2989109013',NULL,'Sample Data','Santina','X','Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Mrs. Santina Jameson',NULL,1,'1961-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Winford','Winford Barkley',NULL,NULL,NULL,'3',NULL,'Both','573860066',NULL,'Sample Data','Winford','T','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Barkley',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (36,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Troy','Troy Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3534860834',NULL,'Sample Data','Troy','','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Zope Jr.',NULL,NULL,'1995-07-06',0,NULL,NULL,NULL,'Lincoln Sports Collective',NULL,NULL,41,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Santina','Ms. Santina Grant',NULL,NULL,NULL,'1',NULL,'Both','1763995673',NULL,'Sample Data','Santina','','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Ms. Santina Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Ashley','Ashley Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','3873693132',NULL,'Sample Data','Ashley','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Reynolds',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (39,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov-Jameson family','Ivanov-Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','473363544',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov-Jameson family',5,NULL,'Dear Ivanov-Jameson family',2,NULL,'Ivanov-Jameson family',NULL,NULL,NULL,0,NULL,'Ivanov-Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (40,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'jacksonl21@fakemail.org','jacksonl21@fakemail.org',NULL,NULL,NULL,NULL,NULL,'Both','4035599639',NULL,'Sample Data',NULL,NULL,NULL,4,1,NULL,NULL,1,NULL,'Dear jacksonl21@fakemail.org',1,NULL,'Dear jacksonl21@fakemail.org',1,NULL,'jacksonl21@fakemail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (41,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Lincoln Sports Collective','Lincoln Sports Collective',NULL,NULL,NULL,'4',NULL,'Both','3324733168',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lincoln Sports Collective',NULL,NULL,NULL,0,NULL,NULL,36,'Lincoln Sports Collective',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (42,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wagner, Ashley','Ashley Wagner Jr.',NULL,NULL,NULL,'3',NULL,'Both','1660268830',NULL,'Sample Data','Ashley','P','Wagner',NULL,1,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Wagner Jr.',NULL,2,'1940-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (43,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz-Terrell, Craig','Craig Díaz-Terrell Jr.',NULL,NULL,NULL,'4',NULL,'Both','501572115',NULL,'Sample Data','Craig','','Díaz-Terrell',NULL,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Díaz-Terrell Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (44,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz-Terrell family','Díaz-Terrell family',NULL,NULL,NULL,NULL,NULL,'Both','961823269',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Díaz-Terrell family',5,NULL,'Dear Díaz-Terrell family',2,NULL,'Díaz-Terrell family',NULL,NULL,NULL,0,NULL,'Díaz-Terrell family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brent','Brent Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2357186266',NULL,'Sample Data','Brent','Q','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jacobs',NULL,2,'1996-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Betty','Betty Blackwell',NULL,NULL,NULL,'2',NULL,'Both','1950991394',NULL,'Sample Data','Betty','E','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Blackwell',NULL,1,'1958-07-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Cruz, Josefa','Josefa Wagner-Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2091157813',NULL,'Sample Data','Josefa','K','Wagner-Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Wagner-Cruz',NULL,1,'1979-01-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-Jameson, Scott','Scott Ivanov-Jameson',NULL,NULL,NULL,'1',NULL,'Both','3247338462',NULL,'Sample Data','Scott','Y','Ivanov-Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Ivanov-Jameson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Ashlie','Ashlie Cruz',NULL,NULL,NULL,'3',NULL,'Both','3257002504',NULL,'Sample Data','Ashlie','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Ivanov, Winford','Dr. Winford Grant-Ivanov III',NULL,NULL,NULL,NULL,NULL,'Both','1849574703',NULL,'Sample Data','Winford','I','Grant-Ivanov',4,4,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Grant-Ivanov III',NULL,2,'1988-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (51,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,'2',NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (52,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Kathleen','Dr. Kathleen Wagner',NULL,NULL,NULL,'3',NULL,'Both','325058531',NULL,'Sample Data','Kathleen','','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Wagner',NULL,1,'1961-07-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Brittney','Ms. Brittney Cruz',NULL,NULL,NULL,'5',NULL,'Both','3852362968',NULL,'Sample Data','Brittney','Y','Cruz',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Cruz',NULL,1,'1990-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (54,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Lee family','Lee family',NULL,NULL,NULL,'5',NULL,'Both','845831176',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:41'),
- (55,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Allen','Mr. Allen Cooper Sr.',NULL,NULL,NULL,'3',NULL,'Both','1888383899',NULL,'Sample Data','Allen','Q','Cooper',3,2,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Mr. Allen Cooper Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (56,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Parker, Lincoln','Dr. Lincoln Parker',NULL,NULL,NULL,NULL,NULL,'Both','108314826',NULL,'Sample Data','Lincoln','','Parker',4,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Parker',NULL,2,'1949-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker-Prentice, Bernadette','Bernadette Parker-Prentice',NULL,NULL,NULL,'3',NULL,'Both','755313929',NULL,'Sample Data','Bernadette','E','Parker-Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Parker-Prentice',NULL,1,'1977-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (58,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Valene','Mrs. Valene Barkley',NULL,NULL,NULL,NULL,NULL,'Both','4039078340',NULL,'Sample Data','Valene','','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Mrs. Valene Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Kandace','Kandace Cruz',NULL,NULL,NULL,NULL,NULL,'Both','420480045',NULL,'Sample Data','Kandace','Q','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Cruz',NULL,1,'1952-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (60,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Maxwell','Dr. Maxwell Yadav',NULL,NULL,NULL,'5',NULL,'Both','1292324110',NULL,'Sample Data','Maxwell','U','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Yadav',NULL,2,'1985-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Toby','Toby Jensen',NULL,NULL,NULL,NULL,NULL,'Both','232378156',NULL,'Sample Data','Toby','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Jensen',NULL,2,'1969-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Junko','Dr. Junko Müller',NULL,NULL,NULL,NULL,NULL,'Both','3355176554',NULL,'Sample Data','Junko','','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Müller',NULL,1,'1992-07-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Bob','Bob Robertson II',NULL,NULL,NULL,NULL,NULL,'Both','2136994257',NULL,'Sample Data','Bob','S','Robertson',NULL,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Robertson II',NULL,NULL,'1972-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'grant.billy@testing.net','grant.billy@testing.net',NULL,NULL,NULL,'2',NULL,'Both','3825593526',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear grant.billy@testing.net',1,NULL,'Dear grant.billy@testing.net',1,NULL,'grant.billy@testing.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Felisha','Felisha Barkley',NULL,NULL,NULL,'4',NULL,'Both','1669802133',NULL,'Sample Data','Felisha','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'patel.bob39@testmail.co.in','patel.bob39@testmail.co.in',NULL,NULL,NULL,'5',NULL,'Both','1330172347',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear patel.bob39@testmail.co.in',1,NULL,'Dear patel.bob39@testmail.co.in',1,NULL,'patel.bob39@testmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (67,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'margarett@sample.co.uk','margarett@sample.co.uk',NULL,NULL,NULL,'2',NULL,'Both','2339124390',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear margarett@sample.co.uk',1,NULL,'Dear margarett@sample.co.uk',1,NULL,'margarett@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,'Community Arts Fund',NULL,NULL,134,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wattson.ashley5@fishmail.info','wattson.ashley5@fishmail.info',NULL,NULL,NULL,NULL,NULL,'Both','1608754438',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear wattson.ashley5@fishmail.info',1,NULL,'Dear wattson.ashley5@fishmail.info',1,NULL,'wattson.ashley5@fishmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Jina','Jina Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','4065988488',NULL,'Sample Data','Jina','Z','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Łąchowski',NULL,NULL,'1933-07-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (70,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Pennsylvania Poetry Fellowship','Pennsylvania Poetry Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','3773004269',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pennsylvania Poetry Fellowship',NULL,NULL,NULL,0,NULL,NULL,188,'Pennsylvania Poetry Fellowship',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Herminia','Mrs. Herminia Samson',NULL,NULL,NULL,'5',NULL,'Both','3411088357',NULL,'Sample Data','Herminia','F','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (72,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Sierra Culture Partnership','Sierra Culture Partnership',NULL,NULL,NULL,NULL,NULL,'Both','964205006',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Culture Partnership',NULL,NULL,NULL,0,NULL,NULL,33,'Sierra Culture Partnership',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (73,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'New York Agriculture Collective','New York Agriculture Collective',NULL,NULL,NULL,NULL,NULL,'Both','3527994091',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New York Agriculture Collective',NULL,NULL,NULL,0,NULL,NULL,75,'New York Agriculture Collective',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Justina','Dr. Justina Wattson',NULL,NULL,NULL,NULL,NULL,'Both','239281410',NULL,'Sample Data','Justina','P','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina Wattson',NULL,1,'1958-08-19',0,NULL,NULL,NULL,'Whitesburg Health Collective',NULL,NULL,78,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Alida','Mrs. Alida Grant',NULL,NULL,NULL,NULL,NULL,'Both','2081339758',NULL,'Sample Data','Alida','M','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Grant',NULL,1,'1998-03-10',0,NULL,NULL,NULL,'New York Agriculture Collective',NULL,NULL,73,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (76,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Florida Development Center','Florida Development Center',NULL,NULL,NULL,NULL,NULL,'Both','3771952971',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Florida Development Center',NULL,NULL,NULL,0,NULL,NULL,120,'Florida Development Center',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (77,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Maxwell','Maxwell Patel',NULL,NULL,NULL,NULL,NULL,'Both','1864121617',NULL,'Sample Data','Maxwell','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Patel',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (78,'Organization',NULL,0,1,0,0,1,0,NULL,NULL,'Whitesburg Health Collective','Whitesburg Health Collective',NULL,NULL,NULL,'5',NULL,'Both','2757856812',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Whitesburg Health Collective',NULL,NULL,NULL,0,NULL,NULL,74,'Whitesburg Health Collective',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Roland','Roland Roberts',NULL,NULL,NULL,'1',NULL,'Both','3609011575',NULL,'Sample Data','Roland','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Roberts',NULL,NULL,NULL,0,NULL,NULL,NULL,'Jackson Action Systems',NULL,NULL,80,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (80,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Jackson Action Systems','Jackson Action Systems',NULL,NULL,NULL,'2',NULL,'Both','1388554616',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Action Systems',NULL,NULL,NULL,0,NULL,NULL,79,'Jackson Action Systems',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (81,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Colorado Food Fund','Colorado Food Fund',NULL,NULL,NULL,NULL,NULL,'Both','2736669731',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Colorado Food Fund',NULL,NULL,NULL,0,NULL,NULL,9,'Colorado Food Fund',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (82,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Robertson family','Robertson family',NULL,NULL,NULL,NULL,NULL,'Both','3444393980',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'smith.princess87@spamalot.org','smith.princess87@spamalot.org',NULL,NULL,NULL,'5',NULL,'Both','458226488',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear smith.princess87@spamalot.org',1,NULL,'Dear smith.princess87@spamalot.org',1,NULL,'smith.princess87@spamalot.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (84,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen-Łąchowski, Magan','Magan Jensen-Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2872765813',NULL,'Sample Data','Magan','','Jensen-Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Jensen-Łąchowski',NULL,1,'1987-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Esta','Mrs. Esta Wagner',NULL,NULL,NULL,'1',NULL,'Both','3695079301',NULL,'Sample Data','Esta','M','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Wagner',NULL,1,'1982-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels-Deforest, Bernadette','Bernadette Samuels-Deforest',NULL,NULL,NULL,'3',NULL,'Both','2481978979',NULL,'Sample Data','Bernadette','','Samuels-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Samuels-Deforest',NULL,NULL,'2018-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Miguel','Miguel Smith III',NULL,NULL,NULL,NULL,NULL,'Both','3498855331',NULL,'Sample Data','Miguel','L','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Smith III',NULL,2,'1933-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (88,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Brent','Brent Prentice Jr.',NULL,NULL,NULL,'4',NULL,'Both','279352372',NULL,'Sample Data','Brent','','Prentice',NULL,1,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Prentice Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (89,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Billy','Billy Barkley',NULL,NULL,NULL,'3',NULL,'Both','3175995376',NULL,'Sample Data','Billy','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Barkley',NULL,NULL,'2010-08-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'msamson53@airmail.co.in','msamson53@airmail.co.in',NULL,NULL,NULL,'4',NULL,'Both','920285855',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear msamson53@airmail.co.in',1,NULL,'Dear msamson53@airmail.co.in',1,NULL,'msamson53@airmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (91,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Rodrigo','Mr. Rodrigo Zope III',NULL,NULL,NULL,'3',NULL,'Both','1659102983',NULL,'Sample Data','Rodrigo','','Zope',3,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Mr. Rodrigo Zope III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (92,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Billy','Mr. Billy Terrell III',NULL,NULL,NULL,'2',NULL,'Both','1389531692',NULL,'Sample Data','Billy','M','Terrell',3,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Terrell III',NULL,NULL,'1985-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'robertson.elizabeth@fakemail.org','robertson.elizabeth@fakemail.org',NULL,NULL,NULL,NULL,NULL,'Both','2697585528',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear robertson.elizabeth@fakemail.org',1,NULL,'Dear robertson.elizabeth@fakemail.org',1,NULL,'robertson.elizabeth@fakemail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Claudio','Claudio Parker',NULL,NULL,NULL,NULL,NULL,'Both','1375114544',NULL,'Sample Data','Claudio','L','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Parker',NULL,2,'1983-03-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (95,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Lee, Alida','Alida Lee',NULL,NULL,NULL,'1',NULL,'Both','2382595378',NULL,'Sample Data','Alida','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (96,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Andrew','Andrew Robertson',NULL,NULL,NULL,NULL,NULL,'Both','2591611250',NULL,'Sample Data','Andrew','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Robertson',NULL,NULL,'1980-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (98,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen-Łąchowski family','Jensen-Łąchowski family',NULL,NULL,NULL,'5',NULL,'Both','3349136717',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Łąchowski family',5,NULL,'Dear Jensen-Łąchowski family',2,NULL,'Jensen-Łąchowski family',NULL,NULL,NULL,0,NULL,'Jensen-Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:41'),
- (99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Wattson, Sherman','Sherman Grant-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','4125847803',NULL,'Sample Data','Sherman','D','Grant-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Grant-Wattson',NULL,2,'2004-05-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (100,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Global Music Fund','Global Music Fund',NULL,NULL,NULL,NULL,NULL,'Both','3594018623',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Music Fund',NULL,NULL,NULL,0,NULL,NULL,148,'Global Music Fund',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Brzęczysław','Brzęczysław Terry',NULL,NULL,NULL,NULL,NULL,'Both','884241841',NULL,'Sample Data','Brzęczysław','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Terry',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (102,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Jacob','Mr. Jacob Wilson III',NULL,NULL,NULL,'2',NULL,'Both','1516069791',NULL,'Sample Data','Jacob','V','Wilson',3,4,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Wilson III',NULL,NULL,'1972-08-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Alida','Mrs. Alida Wilson',NULL,NULL,NULL,'4',NULL,'Both','2827847668',NULL,'Sample Data','Alida','','Wilson',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Wilson',NULL,1,'1997-07-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Bob','Bob Wilson Sr.',NULL,NULL,NULL,'5',NULL,'Both','1455203229',NULL,'Sample Data','Bob','D','Wilson',NULL,2,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Wilson Sr.',NULL,2,'1993-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (105,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Dimitrov, Landon','Dr. Landon Dimitrov III',NULL,NULL,NULL,NULL,NULL,'Both','3544857327',NULL,'Sample Data','Landon','','Dimitrov',4,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Dimitrov III',NULL,2,'1971-08-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Laree','Ms. Laree Jensen',NULL,NULL,NULL,NULL,NULL,'Both','2534513195',NULL,'Sample Data','Laree','C','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Jensen',NULL,1,'1995-06-16',0,NULL,NULL,NULL,'Overpeck Arts Partnership',NULL,NULL,164,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (107,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Urban Arts Collective','Urban Arts Collective',NULL,NULL,NULL,NULL,NULL,'Both','3476907302',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Arts Collective',NULL,NULL,NULL,0,NULL,NULL,10,'Urban Arts Collective',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (108,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Nicole','Nicole Cooper',NULL,NULL,NULL,'5',NULL,'Both','3590550594',NULL,'Sample Data','Nicole','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Cooper',NULL,1,'1973-12-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Cruz, Bernadette','Dr. Bernadette Wagner-Cruz',NULL,NULL,NULL,'3',NULL,'Both','800554020',NULL,'Sample Data','Bernadette','','Wagner-Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Dr. Bernadette Wagner-Cruz',NULL,1,'1991-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (110,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels-Deforest, Elizabeth','Elizabeth Samuels-Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1588687622',NULL,'Sample Data','Elizabeth','G','Samuels-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Samuels-Deforest',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (111,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Global Literacy Partnership','Global Literacy Partnership',NULL,NULL,NULL,'5',NULL,'Both','286784216',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Literacy Partnership',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (112,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Daren','Dr. Daren Adams Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1164251190',NULL,'Sample Data','Daren','','Adams',4,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Adams Jr.',NULL,2,'1989-07-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (113,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Jacob','Dr. Jacob Wagner II',NULL,NULL,NULL,NULL,NULL,'Both','320484999',NULL,'Sample Data','Jacob','','Wagner',4,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Wagner II',NULL,NULL,'1957-06-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Erik','Dr. Erik Patel II',NULL,NULL,NULL,NULL,NULL,'Both','1879150423',NULL,'Sample Data','Erik','','Patel',4,3,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Dr. Erik Patel II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Troy','Mr. Troy Barkley Jr.',NULL,NULL,NULL,'4',NULL,'Both','3703467861',NULL,'Sample Data','Troy','K','Barkley',3,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Barkley Jr.',NULL,NULL,'1943-10-12',1,'2022-04-07',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Lou','Mr. Lou Parker',NULL,NULL,NULL,'4',NULL,'Both','4263866612',NULL,'Sample Data','Lou','Y','Parker',3,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Parker',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Kathlyn','Kathlyn Barkley',NULL,NULL,NULL,'5',NULL,'Both','2784062121',NULL,'Sample Data','Kathlyn','V','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Barkley',NULL,1,'1962-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (118,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Lee, Daren','Dr. Daren Lee Jr.',NULL,NULL,NULL,'5',NULL,'Both','761180894',NULL,'Sample Data','Daren','','Lee',4,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Lee Jr.',NULL,2,'1996-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (119,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels-Deforest family','Samuels-Deforest family',NULL,NULL,NULL,'5',NULL,'Both','3940533291',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels-Deforest family',5,NULL,'Dear Samuels-Deforest family',2,NULL,'Samuels-Deforest family',NULL,NULL,NULL,0,NULL,'Samuels-Deforest family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:41'),
- (120,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Scott','Dr. Scott Samuels II',NULL,NULL,NULL,'3',NULL,'Both','3378188824',NULL,'Sample Data','Scott','','Samuels',4,3,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Samuels II',NULL,2,NULL,0,NULL,NULL,NULL,'Florida Development Center',NULL,NULL,76,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (121,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Parker-Prentice family','Parker-Prentice family',NULL,NULL,NULL,'1',NULL,'Both','1284124866',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker-Prentice family',5,NULL,'Dear Parker-Prentice family',2,NULL,'Parker-Prentice family',NULL,NULL,NULL,0,NULL,'Parker-Prentice family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (122,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Kandace','Kandace Robertson',NULL,NULL,NULL,'3',NULL,'Both','302551139',NULL,'Sample Data','Kandace','U','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Robertson',NULL,1,'2011-09-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Kacey','Kacey Terrell',NULL,NULL,NULL,'2',NULL,'Both','1088955590',NULL,'Sample Data','Kacey','J','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Terrell',NULL,1,'2010-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (124,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Rosario','Rosario Zope',NULL,NULL,NULL,NULL,NULL,'Both','2088711675',NULL,'Sample Data','Rosario','X','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Zope',NULL,2,'2005-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Laree','Ms. Laree Grant',NULL,NULL,NULL,NULL,NULL,'Both','2029067467',NULL,'Sample Data','Laree','J','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Grant',NULL,NULL,'1989-10-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (126,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Crown Point Development School','Crown Point Development School',NULL,NULL,NULL,NULL,NULL,'Both','3464452046',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Crown Point Development School',NULL,NULL,NULL,0,NULL,NULL,NULL,'Crown Point Development School',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Betty','Betty Prentice',NULL,NULL,NULL,'4',NULL,'Both','235975731',NULL,'Sample Data','Betty','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Prentice',NULL,1,'1968-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (128,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,'4',NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Rodrigo','Rodrigo Robertson',NULL,NULL,NULL,'5',NULL,'Both','1865172302',NULL,'Sample Data','Rodrigo','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Robertson',NULL,2,'1987-05-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Maxwell','Maxwell Wattson',NULL,NULL,NULL,'4',NULL,'Both','1935352485',NULL,'Sample Data','Maxwell','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Justina','Justina Wilson',NULL,NULL,NULL,NULL,NULL,'Both','3516535042',NULL,'Sample Data','Justina','M','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Wilson',NULL,NULL,'1975-12-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Erik','Erik Patel',NULL,NULL,NULL,'4',NULL,'Both','1879150423',NULL,'Sample Data','Erik','P','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Patel',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (133,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, Iris','Iris Reynolds',NULL,NULL,NULL,'2',NULL,'Both','3509379571',NULL,'Sample Data','Iris','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Reynolds',NULL,NULL,'1988-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (134,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Community Arts Fund','Community Arts Fund',NULL,NULL,NULL,NULL,NULL,'Both','1277109449',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Arts Fund',NULL,NULL,NULL,0,NULL,NULL,67,'Community Arts Fund',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (135,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Truman','Dr. Truman Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3799954079',NULL,'Sample Data','Truman','','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Kacey','Mrs. Kacey Wagner',NULL,NULL,NULL,'3',NULL,'Both','1592802897',NULL,'Sample Data','Kacey','','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Mrs. Kacey Wagner',NULL,NULL,'1934-07-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (137,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Eleonor','Dr. Eleonor Lee',NULL,NULL,NULL,'3',NULL,'Both','2163724660',NULL,'Sample Data','Eleonor','X','Lee',4,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Dr. Eleonor Lee',NULL,1,'1979-07-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Wattson, Juliann','Juliann Grant-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3161452519',NULL,'Sample Data','Juliann','R','Grant-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Grant-Wattson',NULL,NULL,'1982-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Heidi','Heidi Terry',NULL,NULL,NULL,'2',NULL,'Both','3824053436',NULL,'Sample Data','Heidi','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Terry',NULL,1,'1985-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Allan','Allan Wagner Sr.',NULL,NULL,NULL,NULL,NULL,'Both','181008851',NULL,'Sample Data','Allan','','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wagner Sr.',NULL,2,'1963-08-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (141,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Carylon','Dr. Carylon Prentice',NULL,NULL,NULL,NULL,NULL,'Both','1810903097',NULL,'Sample Data','Carylon','T','Prentice',4,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (142,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Scarlet','Scarlet Deforest',NULL,NULL,NULL,'3',NULL,'Both','2259302728',NULL,'Sample Data','Scarlet','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Deforest',NULL,1,'1991-04-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (143,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Elbert','Elbert Wilson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','330239896',NULL,'Sample Data','Elbert','P','Wilson',NULL,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Wilson Jr.',NULL,2,'2011-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Scott','Dr. Scott Grant',NULL,NULL,NULL,NULL,NULL,'Both','501213138',NULL,'Sample Data','Scott','N','Grant',4,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Grant',NULL,2,'1997-07-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (145,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Justina','Ms. Justina Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2840548306',NULL,'Sample Data','Justina','','Ivanov',2,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Ms. Justina Ivanov',NULL,1,'1993-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (146,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Grant-Wattson family','Grant-Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','3936344725',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Grant-Wattson family',5,NULL,'Dear Grant-Wattson family',2,NULL,'Grant-Wattson family',NULL,NULL,NULL,0,NULL,'Grant-Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (147,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Martin Luther King Wellness Center','Martin Luther King Wellness Center',NULL,NULL,NULL,'2',NULL,'Both','4177402683',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Wellness Center',NULL,NULL,NULL,0,NULL,NULL,197,'Martin Luther King Wellness Center',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Claudio','Claudio Smith',NULL,NULL,NULL,'5',NULL,'Both','3003608161',NULL,'Sample Data','Claudio','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Smith',NULL,2,'1963-06-08',0,NULL,NULL,NULL,'Global Music Fund',NULL,NULL,100,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Lou','Lou Ivanov Sr.',NULL,NULL,NULL,'2',NULL,'Both','211844515',NULL,'Sample Data','Lou','','Ivanov',NULL,2,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Ivanov Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (150,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Sonny','Dr. Sonny Blackwell Jr.',NULL,NULL,NULL,'3',NULL,'Both','3890759177',NULL,'Sample Data','Sonny','M','Blackwell',4,1,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny Blackwell Jr.',NULL,NULL,'1986-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (151,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wilson, Juliann','Juliann Wilson',NULL,NULL,NULL,'1',NULL,'Both','267768378',NULL,'Sample Data','Juliann','J','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Wilson',NULL,1,'1950-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker-Prentice, Irvin','Irvin Parker-Prentice',NULL,NULL,NULL,NULL,NULL,'Both','1111360772',NULL,'Sample Data','Irvin','L','Parker-Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Parker-Prentice',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Brittney','Mrs. Brittney González',NULL,NULL,NULL,NULL,NULL,'Both','3632495561',NULL,'Sample Data','Brittney','P','González',1,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Mrs. Brittney González',NULL,1,'1944-03-02',1,'2022-03-30',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'andrewjones@spamalot.co.uk','andrewjones@spamalot.co.uk',NULL,NULL,NULL,'4',NULL,'Both','3812318799',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear andrewjones@spamalot.co.uk',1,NULL,'Dear andrewjones@spamalot.co.uk',1,NULL,'andrewjones@spamalot.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (155,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,'4',NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (156,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Jina','Dr. Jina Robertson',NULL,NULL,NULL,'5',NULL,'Both','1955600545',NULL,'Sample Data','Jina','','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Robertson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (157,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Díaz-Terrell, Norris','Norris Díaz-Terrell',NULL,NULL,NULL,'1',NULL,'Both','1998565940',NULL,'Sample Data','Norris','O','Díaz-Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Díaz-Terrell',NULL,2,'2002-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Kandace','Ms. Kandace Grant',NULL,NULL,NULL,NULL,NULL,'Both','3520863939',NULL,'Sample Data','Kandace','','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Grant',NULL,NULL,'1971-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Josefa','Ms. Josefa Samuels',NULL,NULL,NULL,'4',NULL,'Both','1709478630',NULL,'Sample Data','Josefa','Z','Samuels',2,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Ms. Josefa Samuels',NULL,1,'1969-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (160,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Josefa','Josefa Jensen',NULL,NULL,NULL,'2',NULL,'Both','3194240835',NULL,'Sample Data','Josefa','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Jensen',NULL,1,'1976-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:39'),
- (161,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Omar','Mr. Omar Terrell Jr.',NULL,NULL,NULL,'5',NULL,'Both','265836995',NULL,'Sample Data','Omar','Z','Terrell',3,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Terrell Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (162,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz, Jed','Dr. Jed Díaz III',NULL,NULL,NULL,NULL,NULL,'Both','3371840516',NULL,'Sample Data','Jed','','Díaz',4,4,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Díaz III',NULL,2,'1974-12-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:43'),
- (163,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner-Cruz family','Wagner-Cruz family',NULL,NULL,NULL,'3',NULL,'Both','953038600',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner-Cruz family',5,NULL,'Dear Wagner-Cruz family',2,NULL,'Wagner-Cruz family',NULL,NULL,NULL,0,NULL,'Wagner-Cruz family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (164,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Overpeck Arts Partnership','Overpeck Arts Partnership',NULL,NULL,NULL,NULL,NULL,'Both','2276942680',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Overpeck Arts Partnership',NULL,NULL,NULL,0,NULL,NULL,106,'Overpeck Arts Partnership',NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:42'),
- (165,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Alida','Alida Patel',NULL,NULL,NULL,'5',NULL,'Both','3742818616',NULL,'Sample Data','Alida','W','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Patel',NULL,NULL,'2019-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:38'),
- (166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Ivanov, Irvin','Mr. Irvin Grant-Ivanov Sr.',NULL,NULL,NULL,'2',NULL,'Both','2574227782',NULL,'Sample Data','Irvin','B','Grant-Ivanov',3,2,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Grant-Ivanov Sr.',NULL,NULL,'1984-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:44'),
- (167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'irisp19@lol.biz','irisp19@lol.biz',NULL,NULL,NULL,'1',NULL,'Both','102179965',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear irisp19@lol.biz',1,NULL,'Dear irisp19@lol.biz',1,NULL,'irisp19@lol.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:37','2022-10-10 07:32:40'),
- (168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Bob','Mr. Bob Wattson Jr.',NULL,NULL,NULL,'1',NULL,'Both','194645235',NULL,'Sample Data','Bob','','Wattson',3,1,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Wattson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Alexia','Alexia Wattson',NULL,NULL,NULL,NULL,NULL,'Both','2082974153',NULL,'Sample Data','Alexia','U','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Wattson',NULL,1,'1977-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Rodrigo','Dr. Rodrigo Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1057827767',NULL,'Sample Data','Rodrigo','X','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Bachman',NULL,2,'1978-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:38'),
- (171,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Clint','Clint Wilson',NULL,NULL,NULL,'1',NULL,'Both','1166006517',NULL,'Sample Data','Clint','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Wilson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (172,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'echowski-patel1@example.co.pl','echowski-patel1@example.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','1933338778',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear echowski-patel1@example.co.pl',1,NULL,'Dear echowski-patel1@example.co.pl',1,NULL,'echowski-patel1@example.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-Jameson, Scarlet','Mrs. Scarlet Ivanov-Jameson',NULL,NULL,NULL,'3',NULL,'Both','1356997332',NULL,'Sample Data','Scarlet','','Ivanov-Jameson',1,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Ivanov-Jameson',NULL,1,'1990-02-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (174,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Allen','Dr. Allen Müller II',NULL,NULL,NULL,'1',NULL,'Both','2000293400',NULL,'Sample Data','Allen','','Müller',4,3,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Müller II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:40'),
- (175,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'lawerenced45@spamalot.co.pl','lawerenced45@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2386284919',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear lawerenced45@spamalot.co.pl',1,NULL,'Dear lawerenced45@spamalot.co.pl',1,NULL,'lawerenced45@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Andrew','Andrew Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3954041415',NULL,'Sample Data','Andrew','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Wattson',NULL,2,'1992-12-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Betty','Ms. Betty Wilson',NULL,NULL,NULL,'5',NULL,'Both','3748989066',NULL,'Sample Data','Betty','J','Wilson',2,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Ms. Betty Wilson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (178,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Teresa','Mrs. Teresa Lee',NULL,NULL,NULL,NULL,NULL,'Both','2160842597',NULL,'Sample Data','Teresa','R','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Mrs. Teresa Lee',NULL,1,'1960-06-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav-Zope, Elina','Elina Yadav-Zope',NULL,NULL,NULL,'5',NULL,'Both','2326936364',NULL,'Sample Data','Elina','X','Yadav-Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Yadav-Zope',NULL,NULL,'1973-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (180,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,'3',NULL,'Both','2851339192',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:41'),
- (181,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Jay','Jay Deforest',NULL,NULL,NULL,NULL,NULL,'Both','3714093983',NULL,'Sample Data','Jay','U','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Deforest',NULL,NULL,'1974-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (182,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Ashlie','Ashlie Samson',NULL,NULL,NULL,'5',NULL,'Both','292449607',NULL,'Sample Data','Ashlie','','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Samson',NULL,1,'1965-06-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:38'),
- (183,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Prentice, Maxwell','Maxwell Prentice',NULL,NULL,NULL,'3',NULL,'Both','1532112278',NULL,'Sample Data','Maxwell','U','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Prentice',NULL,2,'1983-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (184,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,'5',NULL,'Both','1136333121',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:42'),
- (185,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Rodrigo','Rodrigo Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2012648674',NULL,'Sample Data','Rodrigo','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Jameson',NULL,2,'1951-12-14',1,'2022-04-24',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:38'),
- (186,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Princess','Princess Samuels',NULL,NULL,NULL,'3',NULL,'Both','2497332037',NULL,'Sample Data','Princess','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Samuels',NULL,NULL,'1991-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:38'),
- (187,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:41'),
- (188,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Teddy','Teddy Patel Jr.',NULL,NULL,NULL,'1',NULL,'Both','296402245',NULL,'Sample Data','Teddy','T','Patel',NULL,1,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Patel Jr.',NULL,NULL,'1954-08-04',0,NULL,NULL,NULL,'Pennsylvania Poetry Fellowship',NULL,NULL,70,0,'2022-10-10 07:32:38','2022-10-10 07:32:42'),
- (189,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels, Billy','Billy Samuels III',NULL,NULL,NULL,NULL,NULL,'Both','92935923',NULL,'Sample Data','Billy','','Samuels',NULL,4,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Samuels III',NULL,2,'1986-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:38'),
- (190,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Ray','Ray Deforest II',NULL,NULL,NULL,NULL,NULL,'Both','3478479191',NULL,'Sample Data','Ray','F','Deforest',NULL,3,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Deforest II',NULL,2,'1983-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (191,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jensen-chowskib@example.info','jensen-chowskib@example.info',NULL,NULL,NULL,'5',NULL,'Both','1928586663',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear jensen-chowskib@example.info',1,NULL,'Dear jensen-chowskib@example.info',1,NULL,'jensen-chowskib@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (192,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Scarlet','Scarlet Grant',NULL,NULL,NULL,'2',NULL,'Both','188081876',NULL,'Sample Data','Scarlet','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Grant',NULL,1,'1950-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (193,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,'1',NULL,'Both','1669281794',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:42'),
- (194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Kandace','Kandace Wilson',NULL,NULL,NULL,'3',NULL,'Both','2601760123',NULL,'Sample Data','Kandace','A','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Wilson',NULL,1,'2002-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (195,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Elizabeth','Mrs. Elizabeth Terrell',NULL,NULL,NULL,NULL,NULL,'Both','804464213',NULL,'Sample Data','Elizabeth','O','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Mrs. Elizabeth Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:43'),
- (196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Justina','Justina Díaz',NULL,NULL,NULL,'5',NULL,'Both','1160699704',NULL,'Sample Data','Justina','C','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Díaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'deforest.y.teresa30@infomail.co.in','deforest.y.teresa30@infomail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','2039917745',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear deforest.y.teresa30@infomail.co.in',1,NULL,'Dear deforest.y.teresa30@infomail.co.in',1,NULL,'deforest.y.teresa30@infomail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,'Martin Luther King Wellness Center',NULL,NULL,147,0,'2022-10-10 07:32:38','2022-10-10 07:32:42'),
- (198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'juliannzope@sample.com','juliannzope@sample.com',NULL,NULL,NULL,NULL,NULL,'Both','3509235288',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear juliannzope@sample.com',1,NULL,'Dear juliannzope@sample.com',1,NULL,'juliannzope@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Terrell, Iris','Dr. Iris Wagner-Terrell',NULL,NULL,NULL,NULL,NULL,'Both','2849664132',NULL,'Sample Data','Iris','R','Wagner-Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Wagner-Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:44'),
- (200,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Grant-Ivanov family','Grant-Ivanov family',NULL,NULL,NULL,NULL,NULL,'Both','2547756160',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Grant-Ivanov family',5,NULL,'Dear Grant-Ivanov family',2,NULL,'Grant-Ivanov family',NULL,NULL,NULL,0,NULL,'Grant-Ivanov family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:42'),
- (201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Elbert','Mr. Elbert Adams II',NULL,NULL,NULL,'4',NULL,'Both','3476535287',NULL,'Sample Data','Elbert','','Adams',3,3,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Adams II',NULL,NULL,'1935-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-10 07:32:38','2022-10-10 07:32:39'),
- (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','173c44521c78a7dc86bfaf3cd6264f0b',NULL,NULL,'Jenny',NULL,'Lee',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,NULL,0,'2022-10-10 07:32:46','2022-10-10 07:32:47');
+ (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',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,'Default Organization',NULL,NULL,NULL,0,NULL,'2022-10-09 15:29:33'),
+ (2,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Jerome','Jerome Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3652715063',NULL,'Sample Data','Jerome','O','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Jerome','Mr. Jerome Jones',NULL,NULL,NULL,NULL,NULL,'Both','3747689705',NULL,'Sample Data','Jerome','','Jones',3,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Jones',NULL,NULL,'1984-07-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (4,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman-Smith, Lawerence','Lawerence Bachman-Smith',NULL,NULL,NULL,NULL,NULL,'Both','462434129',NULL,'Sample Data','Lawerence','C','Bachman-Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Bachman-Smith',NULL,NULL,'1980-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Kenny','Kenny Adams III',NULL,NULL,NULL,'5',NULL,'Both','1028396712',NULL,'Sample Data','Kenny','','Adams',NULL,4,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Adams III',NULL,NULL,'1973-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Miguel','Miguel Zope II',NULL,NULL,NULL,NULL,NULL,'Both','1624097300',NULL,'Sample Data','Miguel','I','Zope',NULL,3,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Zope II',NULL,2,'1952-08-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Bernadette','Bernadette Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1252444601',NULL,'Sample Data','Bernadette','H','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Nielsen',NULL,1,'1998-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (8,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell-Patel, Justina','Justina Blackwell-Patel',NULL,NULL,NULL,NULL,NULL,'Both','4118786773',NULL,'Sample Data','Justina','D','Blackwell-Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Blackwell-Patel',NULL,1,'1960-03-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Landon','Landon Yadav',NULL,NULL,NULL,NULL,NULL,'Both','250177859',NULL,'Sample Data','Landon','M','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Yadav',NULL,2,'1984-11-02',0,NULL,NULL,NULL,'United Health Initiative',NULL,NULL,159,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (10,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'New York Sports Fund','New York Sports Fund',NULL,NULL,NULL,'5',NULL,'Both','4205203137',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New York Sports Fund',NULL,NULL,NULL,0,NULL,NULL,NULL,'New York Sports Fund',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (11,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,NULL,NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Alexia','Alexia Deforest',NULL,NULL,NULL,'5',NULL,'Both','1109457438',NULL,'Sample Data','Alexia','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Deforest',NULL,NULL,'1967-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (13,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'kandacejensen92@testmail.co.uk','kandacejensen92@testmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','2678731094',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kandacejensen92@testmail.co.uk',1,NULL,'Dear kandacejensen92@testmail.co.uk',1,NULL,'kandacejensen92@testmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Delana','Delana Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','4026480882',NULL,'Sample Data','Delana','G','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (15,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Bob','Dr. Bob Díaz Sr.',NULL,NULL,NULL,'2',NULL,'Both','3580176387',NULL,'Sample Data','Bob','','Díaz',4,2,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Díaz Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Ashley','Mr. Ashley Terry',NULL,NULL,NULL,NULL,NULL,'Both','3948576229',NULL,'Sample Data','Ashley','N','Terry',3,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Terry',NULL,NULL,'1952-08-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (17,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jameson, Herminia','Herminia Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2172372210',NULL,'Sample Data','Herminia','V','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Jameson',NULL,NULL,'1988-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (18,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Erik','Erik Jameson Sr.',NULL,NULL,NULL,'5',NULL,'Both','2835114394',NULL,'Sample Data','Erik','K','Jameson',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Jameson Sr.',NULL,2,'1955-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (19,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Maxwell','Maxwell Prentice III',NULL,NULL,NULL,NULL,NULL,'Both','1532112278',NULL,'Sample Data','Maxwell','','Prentice',NULL,4,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Prentice III',NULL,NULL,'1982-06-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (20,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Sharyn','Sharyn Jacobs',NULL,NULL,NULL,'4',NULL,'Both','3551005381',NULL,'Sample Data','Sharyn','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jacobs',NULL,1,'1992-06-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (21,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Adams-Ivanov family','Adams-Ivanov family',NULL,NULL,NULL,'5',NULL,'Both','2551315686',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-Ivanov family',5,NULL,'Dear Adams-Ivanov family',2,NULL,'Adams-Ivanov family',NULL,NULL,NULL,0,NULL,'Adams-Ivanov family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (22,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,'5',NULL,'Both','3228000340',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (23,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Josefa','Josefa Roberts',NULL,NULL,NULL,NULL,NULL,'Both','2404922387',NULL,'Sample Data','Josefa','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Roberts',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (24,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Missouri Action Association','Missouri Action Association',NULL,NULL,NULL,'2',NULL,'Both','2513832340',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Missouri Action Association',NULL,NULL,NULL,0,NULL,NULL,33,'Missouri Action Association',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (25,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Billy','Billy Cooper',NULL,NULL,NULL,'1',NULL,'Both','1390528503',NULL,'Sample Data','Billy','Z','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Cooper',NULL,2,'1954-03-20',0,NULL,NULL,NULL,'Punta Gorda Software Systems',NULL,NULL,201,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Teresa','Teresa Nielsen',NULL,NULL,NULL,'4',NULL,'Both','1054810060',NULL,'Sample Data','Teresa','T','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Nielsen',NULL,1,'1990-04-16',0,NULL,NULL,NULL,'Blakely Food Center',NULL,NULL,75,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (27,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Deforest, Felisha','Felisha Deforest',NULL,NULL,NULL,'4',NULL,'Both','3583247352',NULL,'Sample Data','Felisha','T','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Deforest',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (28,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Jerome','Jerome Samson',NULL,NULL,NULL,NULL,NULL,'Both','3448189696',NULL,'Sample Data','Jerome','O','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Samson',NULL,2,'2013-03-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (29,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope-Deforest, Tanya','Tanya Zope-Deforest',NULL,NULL,NULL,NULL,NULL,'Both','4271881640',NULL,'Sample Data','Tanya','A','Zope-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Zope-Deforest',NULL,1,'1997-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker-Zope, Claudio','Claudio Parker-Zope II',NULL,NULL,NULL,NULL,NULL,'Both','315377775',NULL,'Sample Data','Claudio','','Parker-Zope',NULL,3,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Parker-Zope II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Heidi','Heidi Zope',NULL,NULL,NULL,'3',NULL,'Both','2699150124',NULL,'Sample Data','Heidi','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Zope',NULL,1,'1989-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:37'),
+ (32,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Juliann','Ms. Juliann Cruz',NULL,NULL,NULL,'5',NULL,'Both','2381734764',NULL,'Sample Data','Juliann','','Cruz',2,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Ms. Juliann Cruz',NULL,NULL,'1964-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (33,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Justina','Justina Nielsen',NULL,NULL,NULL,'4',NULL,'Both','226503148',NULL,'Sample Data','Justina','E','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Nielsen',NULL,1,'1937-04-16',0,NULL,NULL,NULL,'Missouri Action Association',NULL,NULL,24,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Arlyne','Arlyne Jameson',NULL,NULL,NULL,'4',NULL,'Both','2337413035',NULL,'Sample Data','Arlyne','T','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Jameson',NULL,1,'1955-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Rolando','Dr. Rolando Jensen Sr.',NULL,NULL,NULL,'4',NULL,'Both','2867005185',NULL,'Sample Data','Rolando','F','Jensen',4,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando Jensen Sr.',NULL,NULL,'1935-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (36,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jacobs family','Smith-Jacobs family',NULL,NULL,NULL,NULL,NULL,'Both','2339753198',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith-Jacobs family',5,NULL,'Dear Smith-Jacobs family',2,NULL,'Smith-Jacobs family',NULL,NULL,NULL,0,NULL,'Smith-Jacobs family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (37,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'College Legal Collective','College Legal Collective',NULL,NULL,NULL,NULL,NULL,'Both','1653585015',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Legal Collective',NULL,NULL,NULL,0,NULL,NULL,136,'College Legal Collective',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Cruz, Toby','Toby Jameson-Cruz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2251116311',NULL,'Sample Data','Toby','L','Jameson-Cruz',NULL,2,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Jameson-Cruz Sr.',NULL,2,'2000-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (39,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Craig','Craig Parker',NULL,NULL,NULL,'1',NULL,'Both','1038716533',NULL,'Sample Data','Craig','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Parker',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (40,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'nielsend19@lol.co.pl','nielsend19@lol.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','53704857',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear nielsend19@lol.co.pl',1,NULL,'Dear nielsend19@lol.co.pl',1,NULL,'nielsend19@lol.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (41,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Rebekah','Mrs. Rebekah Müller',NULL,NULL,NULL,NULL,NULL,'Both','3543648262',NULL,'Sample Data','Rebekah','','Müller',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Müller',NULL,1,'1934-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Santina','Santina Díaz',NULL,NULL,NULL,'4',NULL,'Both','3076461979',NULL,'Sample Data','Santina','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Díaz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (43,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Wagner family','Blackwell-Wagner family',NULL,NULL,NULL,NULL,NULL,'Both','2651221976',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell-Wagner family',5,NULL,'Dear Blackwell-Wagner family',2,NULL,'Blackwell-Wagner family',NULL,NULL,NULL,0,NULL,'Blackwell-Wagner family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (44,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker, Russell','Russell Parker Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1852900847',NULL,'Sample Data','Russell','Y','Parker',NULL,1,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Parker Jr.',NULL,2,'1951-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Smith, Sharyn','Ms. Sharyn Bachman-Smith',NULL,NULL,NULL,'5',NULL,'Both','4089100248',NULL,'Sample Data','Sharyn','H','Bachman-Smith',2,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Ms. Sharyn Bachman-Smith',NULL,NULL,'1986-10-20',0,NULL,NULL,NULL,'New Mexico Music Network',NULL,NULL,175,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (46,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'heiditerry42@spamalot.co.nz','heiditerry42@spamalot.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','279448029',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear heiditerry42@spamalot.co.nz',1,NULL,'Dear heiditerry42@spamalot.co.nz',1,NULL,'heiditerry42@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (47,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Elina','Elina Smith',NULL,NULL,NULL,'1',NULL,'Both','1079819733',NULL,'Sample Data','Elina','S','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (48,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,NULL,NULL,'Both','1669281794',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (49,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,NULL,NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Sonny','Sonny Jameson III',NULL,NULL,NULL,NULL,NULL,'Both','3728912262',NULL,'Sample Data','Sonny','Q','Jameson',NULL,4,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Jameson III',NULL,2,'1989-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Norris','Dr. Norris Samuels',NULL,NULL,NULL,'1',NULL,'Both','729903079',NULL,'Sample Data','Norris','','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Dr. Norris Samuels',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Carylon','Mrs. Carylon Samson',NULL,NULL,NULL,'5',NULL,'Both','4170426842',NULL,'Sample Data','Carylon','','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Mrs. Carylon Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (53,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Cooper family','Łąchowski-Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','2602821584',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Cooper family',5,NULL,'Dear Łąchowski-Cooper family',2,NULL,'Łąchowski-Cooper family',NULL,NULL,NULL,0,NULL,'Łąchowski-Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (54,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,'5',NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (55,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'bsamuels@fakemail.com','bsamuels@fakemail.com',NULL,NULL,NULL,'1',NULL,'Both','1443656910',NULL,'Sample Data',NULL,NULL,NULL,3,3,NULL,NULL,1,NULL,'Dear bsamuels@fakemail.com',1,NULL,'Dear bsamuels@fakemail.com',1,NULL,'bsamuels@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Wagner, Princess','Princess Blackwell-Wagner',NULL,NULL,NULL,'2',NULL,'Both','3741232509',NULL,'Sample Data','Princess','W','Blackwell-Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Blackwell-Wagner',NULL,1,'2019-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (57,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson-Cruz family','Jameson-Cruz family',NULL,NULL,NULL,NULL,NULL,'Both','2651323152',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-Cruz family',5,NULL,'Dear Jameson-Cruz family',2,NULL,'Jameson-Cruz family',NULL,NULL,NULL,0,NULL,'Jameson-Cruz family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (58,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Bachman-Smith family','Bachman-Smith family',NULL,NULL,NULL,NULL,NULL,'Both','610277100',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman-Smith family',5,NULL,'Dear Bachman-Smith family',2,NULL,'Bachman-Smith family',NULL,NULL,NULL,0,NULL,'Bachman-Smith family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (59,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Alexia','Dr. Alexia Wattson',NULL,NULL,NULL,'5',NULL,'Both','2082974153',NULL,'Sample Data','Alexia','','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Dr. Alexia Wattson',NULL,1,'1943-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Mei','Mei Adams',NULL,NULL,NULL,'4',NULL,'Both','407770009',NULL,'Sample Data','Mei','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Adams',NULL,1,'1983-02-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (61,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Maria','Mr. Maria Müller',NULL,NULL,NULL,NULL,NULL,'Both','1779623715',NULL,'Sample Data','Maria','D','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Müller',NULL,NULL,'1967-04-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Cooper, Princess','Princess Łąchowski-Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1756576452',NULL,'Sample Data','Princess','','Łąchowski-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Łąchowski-Cooper',NULL,NULL,'2009-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Allen','Allen Díaz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2991200042',NULL,'Sample Data','Allen','','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Díaz Sr.',NULL,2,'1944-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (64,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'ivanov.alexia11@mymail.biz','ivanov.alexia11@mymail.biz',NULL,NULL,NULL,NULL,NULL,'Both','912121954',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ivanov.alexia11@mymail.biz',1,NULL,'Dear ivanov.alexia11@mymail.biz',1,NULL,'ivanov.alexia11@mymail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Kathleen','Mrs. Kathleen Grant',NULL,NULL,NULL,'2',NULL,'Both','3958277205',NULL,'Sample Data','Kathleen','','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Mrs. Kathleen Grant',NULL,1,'1951-06-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Ivey','Dr. Ivey Wagner',NULL,NULL,NULL,NULL,NULL,'Both','3499534736',NULL,'Sample Data','Ivey','N','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Wagner',NULL,1,'1962-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Margaret','Margaret Jameson',NULL,NULL,NULL,NULL,NULL,'Both','1719938872',NULL,'Sample Data','Margaret','A','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Jameson',NULL,1,'2002-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (68,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Prentice, Rosario','Mr. Rosario Prentice III',NULL,NULL,NULL,NULL,NULL,'Both','259754393',NULL,'Sample Data','Rosario','','Prentice',3,4,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Prentice III',NULL,2,'2000-08-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (69,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Smith, Errol','Mr. Errol Smith',NULL,NULL,NULL,'2',NULL,'Both','2269355028',NULL,'Sample Data','Errol','','Smith',3,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Mr. Errol Smith',NULL,2,'1946-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Scott','Mr. Scott Smith II',NULL,NULL,NULL,'4',NULL,'Both','786607395',NULL,'Sample Data','Scott','','Smith',3,3,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Smith II',NULL,2,NULL,0,NULL,NULL,NULL,'Northpoint Family Collective',NULL,NULL,105,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Erik','Erik Bachman II',NULL,NULL,NULL,NULL,NULL,'Both','620728720',NULL,'Sample Data','Erik','D','Bachman',NULL,3,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Bachman II',NULL,2,'1986-02-23',0,NULL,NULL,NULL,'Geneva Agriculture Center',NULL,NULL,168,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Lawerence','Lawerence Terrell Jr.',NULL,NULL,NULL,NULL,NULL,'Both','281284643',NULL,'Sample Data','Lawerence','I','Terrell',NULL,1,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Terrell Jr.',NULL,2,'1942-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Lawerence','Mr. Lawerence Patel Sr.',NULL,NULL,NULL,'1',NULL,'Both','973187101',NULL,'Sample Data','Lawerence','','Patel',3,2,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Mr. Lawerence Patel Sr.',NULL,2,'1975-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (74,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Brent','Brent Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1602969410',NULL,'Sample Data','Brent','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Cruz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (75,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Blakely Food Center','Blakely Food Center',NULL,NULL,NULL,NULL,NULL,'Both','2379741739',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Blakely Food Center',NULL,NULL,NULL,0,NULL,NULL,26,'Blakely Food Center',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Sherman','Mr. Sherman Adams Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2610997591',NULL,'Sample Data','Sherman','Z','Adams',3,1,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Adams Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (77,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,NULL,NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Betty','Betty Jameson',NULL,NULL,NULL,'4',NULL,'Both','1306733997',NULL,'Sample Data','Betty','K','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (79,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Troy','Dr. Troy Jameson',NULL,NULL,NULL,'4',NULL,'Both','3854208942',NULL,'Sample Data','Troy','','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Dr. Troy Jameson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (81,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'mcreynoldst77@spamalot.org','mcreynoldst77@spamalot.org',NULL,NULL,NULL,'5',NULL,'Both','793330560',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mcreynoldst77@spamalot.org',1,NULL,'Dear mcreynoldst77@spamalot.org',1,NULL,'mcreynoldst77@spamalot.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Irvin','Irvin Olsen Jr.',NULL,NULL,NULL,'5',NULL,'Both','2016030282',NULL,'Sample Data','Irvin','E','Olsen',NULL,1,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Olsen Jr.',NULL,2,'1959-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (83,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Samson, Billy','Mr. Billy Samson',NULL,NULL,NULL,'5',NULL,'Both','45489675',NULL,'Sample Data','Billy','','Samson',3,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Samson',NULL,2,'1956-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (84,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Andrew','Andrew Prentice',NULL,NULL,NULL,NULL,NULL,'Both','3759820671',NULL,'Sample Data','Andrew','U','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Prentice',NULL,NULL,NULL,0,NULL,NULL,NULL,'Rural Legal Fund',NULL,NULL,173,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Roland','Dr. Roland Robertson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2663656740',NULL,'Sample Data','Roland','','Robertson',4,1,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Robertson Jr.',NULL,2,'1999-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brent','Brent Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2357186266',NULL,'Sample Data','Brent','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jacobs',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Princess','Princess Olsen',NULL,NULL,NULL,NULL,NULL,'Both','13405309',NULL,'Sample Data','Princess','M','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Olsen',NULL,1,'1979-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels-Adams, Norris','Norris Samuels-Adams',NULL,NULL,NULL,'2',NULL,'Both','1507374636',NULL,'Sample Data','Norris','','Samuels-Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Samuels-Adams',NULL,NULL,'1982-10-26',0,NULL,NULL,NULL,'Bay Advocacy Alliance',NULL,NULL,123,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (89,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Literacy Academy','Global Literacy Academy',NULL,NULL,NULL,'1',NULL,'Both','1442278704',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Academy',NULL,NULL,NULL,0,NULL,NULL,189,'Global Literacy Academy',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jacobs, Megan','Megan Smith-Jacobs',NULL,NULL,NULL,'4',NULL,'Both','1756525441',NULL,'Sample Data','Megan','','Smith-Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Smith-Jacobs',NULL,1,'1980-01-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Arlyne','Dr. Arlyne Deforest',NULL,NULL,NULL,'1',NULL,'Both','2836833438',NULL,'Sample Data','Arlyne','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Dr. Arlyne Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (92,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Scarlet','Scarlet Díaz',NULL,NULL,NULL,'1',NULL,'Both','3578692438',NULL,'Sample Data','Scarlet','M','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Díaz',NULL,NULL,'1963-12-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ksamuels@sample.com','ksamuels@sample.com',NULL,NULL,NULL,'5',NULL,'Both','3569041459',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear ksamuels@sample.com',1,NULL,'Dear ksamuels@sample.com',1,NULL,'ksamuels@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (94,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jameson.damaris77@testing.co.uk','jameson.damaris77@testing.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','3015701056',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jameson.damaris77@testing.co.uk',1,NULL,'Dear jameson.damaris77@testing.co.uk',1,NULL,'jameson.damaris77@testing.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (95,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Terry, Bob','Dr. Bob Terry',NULL,NULL,NULL,'1',NULL,'Both','1793770176',NULL,'Sample Data','Bob','P','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Terry',NULL,NULL,'1964-01-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (96,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Bachman, Junko','Dr. Junko Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3857467004',NULL,'Sample Data','Junko','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Bachman',NULL,1,'1990-03-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (97,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Beech Legal Partners','Beech Legal Partners',NULL,NULL,NULL,'4',NULL,'Both','3416889874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Legal Partners',NULL,NULL,NULL,0,NULL,NULL,150,'Beech Legal Partners',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (98,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Allan','Allan Jameson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3508046316',NULL,'Sample Data','Allan','','Jameson',NULL,1,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jameson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (99,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Sonny','Mr. Sonny Müller',NULL,NULL,NULL,'2',NULL,'Both','470609270',NULL,'Sample Data','Sonny','M','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Jina','Jina Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','89454888',NULL,'Sample Data','Jina','E','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Jacobs',NULL,NULL,'1999-07-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (101,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Zope-Deforest family','Zope-Deforest family',NULL,NULL,NULL,NULL,NULL,'Both','3804225060',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Deforest family',5,NULL,'Dear Zope-Deforest family',2,NULL,'Zope-Deforest family',NULL,NULL,NULL,0,NULL,'Zope-Deforest family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (102,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,NULL,NULL,'Both','1110516799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jones family',5,NULL,'Dear Jones family',2,NULL,'Jones family',NULL,NULL,NULL,0,NULL,'Jones family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (103,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Russell','Mr. Russell Jacobs II',NULL,NULL,NULL,NULL,NULL,'Both','3782401323',NULL,'Sample Data','Russell','','Jacobs',3,3,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Mr. Russell Jacobs II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (104,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Esta','Esta Cruz',NULL,NULL,NULL,NULL,NULL,'Both','3738064484',NULL,'Sample Data','Esta','F','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Cruz',NULL,NULL,'1985-01-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (105,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Northpoint Family Collective','Northpoint Family Collective',NULL,NULL,NULL,NULL,NULL,'Both','2960248',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Family Collective',NULL,NULL,NULL,0,NULL,NULL,70,'Northpoint Family Collective',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Santina','Santina Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2675448515',NULL,'Sample Data','Santina','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Jacobs',NULL,1,'1960-01-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Junko','Mrs. Junko Nielsen',NULL,NULL,NULL,'5',NULL,'Both','2926916105',NULL,'Sample Data','Junko','X','Nielsen',1,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Mrs. Junko Nielsen',NULL,NULL,'1953-09-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (108,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Megan','Mrs. Megan Ivanov',NULL,NULL,NULL,'4',NULL,'Both','1909740679',NULL,'Sample Data','Megan','P','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Mrs. Megan Ivanov',NULL,1,NULL,1,'2022-01-20',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Scott','Mr. Scott Wilson',NULL,NULL,NULL,'5',NULL,'Both','3378305352',NULL,'Sample Data','Scott','','Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Wilson',NULL,2,'1977-01-13',0,NULL,NULL,NULL,'Texas Education Systems',NULL,NULL,172,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (110,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Bob','Bob Grant III',NULL,NULL,NULL,'3',NULL,'Both','2147877951',NULL,'Sample Data','Bob','','Grant',NULL,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Grant III',NULL,2,'1957-02-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (111,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov, Jina','Mrs. Jina Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','4192417839',NULL,'Sample Data','Jina','Y','Dimitrov',1,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Dimitrov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Miguel','Dr. Miguel Díaz II',NULL,NULL,NULL,NULL,NULL,'Both','3674141582',NULL,'Sample Data','Miguel','','Díaz',4,3,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Dr. Miguel Díaz II',NULL,NULL,'1966-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (113,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'patelr7@mymail.biz','patelr7@mymail.biz',NULL,NULL,NULL,NULL,NULL,'Both','2298057013',NULL,'Sample Data',NULL,NULL,NULL,4,3,NULL,NULL,1,NULL,'Dear patelr7@mymail.biz',1,NULL,'Dear patelr7@mymail.biz',1,NULL,'patelr7@mymail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (114,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Heidi','Heidi Smith',NULL,NULL,NULL,NULL,NULL,'Both','837834326',NULL,'Sample Data','Heidi','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Smith',NULL,NULL,NULL,1,'2022-04-12',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (115,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Scarlet','Ms. Scarlet González',NULL,NULL,NULL,NULL,NULL,'Both','108214879',NULL,'Sample Data','Scarlet','J','González',2,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Wagner, Russell','Russell Blackwell-Wagner',NULL,NULL,NULL,NULL,NULL,'Both','279388998',NULL,'Sample Data','Russell','O','Blackwell-Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Blackwell-Wagner',NULL,2,'1979-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Andrew','Dr. Andrew Samuels Sr.',NULL,NULL,NULL,'4',NULL,'Both','958232532',NULL,'Sample Data','Andrew','Q','Samuels',4,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Dr. Andrew Samuels Sr.',NULL,2,'1986-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (118,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,'4',NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (119,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Adams-Ivanov, Brigette','Brigette Adams-Ivanov',NULL,NULL,NULL,'1',NULL,'Both','2569066709',NULL,'Sample Data','Brigette','','Adams-Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Adams-Ivanov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (120,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'elinaj@infomail.co.pl','elinaj@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','212390276',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear elinaj@infomail.co.pl',1,NULL,'Dear elinaj@infomail.co.pl',1,NULL,'elinaj@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (121,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Mei','Mei Müller',NULL,NULL,NULL,NULL,NULL,'Both','726297805',NULL,'Sample Data','Mei','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Müller',NULL,1,'1934-04-13',1,'2022-03-14',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (122,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Allan','Allan Samuels Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1133078427',NULL,'Sample Data','Allan','D','Samuels',NULL,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Samuels Sr.',NULL,2,'2008-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (123,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Bay Advocacy Alliance','Bay Advocacy Alliance',NULL,NULL,NULL,'1',NULL,'Both','2555196302',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Advocacy Alliance',NULL,NULL,NULL,0,NULL,NULL,88,'Bay Advocacy Alliance',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (124,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Urban Agriculture Solutions','Urban Agriculture Solutions',NULL,NULL,NULL,NULL,NULL,'Both','358814903',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Agriculture Solutions',NULL,NULL,NULL,0,NULL,NULL,178,'Urban Agriculture Solutions',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Iris','Mrs. Iris Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3773138011',NULL,'Sample Data','Iris','Q','Nielsen',1,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris Nielsen',NULL,1,'1975-06-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (126,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Daren','Daren Müller II',NULL,NULL,NULL,NULL,NULL,'Both','1527306191',NULL,'Sample Data','Daren','','Müller',NULL,3,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Müller II',NULL,2,'1980-06-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson-Cruz, Scarlet','Scarlet Jameson-Cruz',NULL,NULL,NULL,NULL,NULL,'Both','4177361017',NULL,'Sample Data','Scarlet','','Jameson-Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Jameson-Cruz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (128,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Elbert','Dr. Elbert Łąchowski III',NULL,NULL,NULL,NULL,NULL,'Both','473197543',NULL,'Sample Data','Elbert','','Łąchowski',4,4,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Dr. Elbert Łąchowski III',NULL,NULL,'1992-10-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (129,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Ivanov, Ivey','Ivey Ivanov',NULL,NULL,NULL,'1',NULL,'Both','3672313510',NULL,'Sample Data','Ivey','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Ivanov',NULL,1,'1965-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (130,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'patel.erik64@fakemail.net','patel.erik64@fakemail.net',NULL,NULL,NULL,NULL,NULL,'Both','2210708717',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear patel.erik64@fakemail.net',1,NULL,'Dear patel.erik64@fakemail.net',1,NULL,'patel.erik64@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mariaadams@example.biz','mariaadams@example.biz',NULL,NULL,NULL,NULL,NULL,'Both','3139519194',NULL,'Sample Data',NULL,NULL,NULL,4,1,NULL,NULL,1,NULL,'Dear mariaadams@example.biz',1,NULL,'Dear mariaadams@example.biz',1,NULL,'mariaadams@example.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Rolando','Rolando Nielsen',NULL,NULL,NULL,'4',NULL,'Both','1720954446',NULL,'Sample Data','Rolando','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Nielsen',NULL,NULL,'1986-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (133,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Utah Action Alliance','Utah Action Alliance',NULL,NULL,NULL,'3',NULL,'Both','3632499291',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Utah Action Alliance',NULL,NULL,NULL,0,NULL,NULL,146,'Utah Action Alliance',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (134,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Santina','Santina Grant',NULL,NULL,NULL,'2',NULL,'Both','1763995673',NULL,'Sample Data','Santina','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Grant',NULL,1,'2005-04-09',0,NULL,NULL,NULL,'Woodbridge Development Association',NULL,NULL,157,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Jacobs, Errol','Errol Smith-Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','4285299295',NULL,'Sample Data','Errol','','Smith-Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Smith-Jacobs',NULL,2,'1983-06-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (136,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Jed','Dr. Jed Roberts Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1541419664',NULL,'Sample Data','Jed','','Roberts',4,1,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Roberts Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'College Legal Collective',NULL,NULL,37,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Betty','Betty Zope',NULL,NULL,NULL,NULL,NULL,'Both','2849696155',NULL,'Sample Data','Betty','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Zope',NULL,NULL,'1938-06-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (138,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Andrew','Andrew Díaz',NULL,NULL,NULL,'4',NULL,'Both','2189664098',NULL,'Sample Data','Andrew','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Díaz',NULL,2,'1974-08-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (139,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Van Ness Action Partners','Van Ness Action Partners',NULL,NULL,NULL,NULL,NULL,'Both','50537382',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Van Ness Action Partners',NULL,NULL,NULL,0,NULL,NULL,147,'Van Ness Action Partners',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (140,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Alida','Mrs. Alida Patel',NULL,NULL,NULL,'5',NULL,'Both','3742818616',NULL,'Sample Data','Alida','','Patel',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Patel',NULL,NULL,'1953-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Teresa','Teresa Müller',NULL,NULL,NULL,NULL,NULL,'Both','3926761970',NULL,'Sample Data','Teresa','R','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Müller',NULL,1,'1962-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (142,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope-Deforest, Teresa','Teresa Zope-Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2999152132',NULL,'Sample Data','Teresa','','Zope-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Zope-Deforest',NULL,NULL,'2009-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Alexia','Alexia Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','817763028',NULL,'Sample Data','Alexia','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Jacobs',NULL,1,'1955-02-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Carylon','Carylon Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1534099246',NULL,'Sample Data','Carylon','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Deforest',NULL,1,'1965-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Rolando','Rolando Patel Jr.',NULL,NULL,NULL,'2',NULL,'Both','2031598868',NULL,'Sample Data','Rolando','','Patel',NULL,1,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Patel Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav-Smith, Landon','Landon Yadav-Smith III',NULL,NULL,NULL,NULL,NULL,'Both','3418164485',NULL,'Sample Data','Landon','E','Yadav-Smith',NULL,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Yadav-Smith III',NULL,NULL,'1980-02-01',0,NULL,NULL,NULL,'Utah Action Alliance',NULL,NULL,133,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Shauna','Mrs. Shauna Terry',NULL,NULL,NULL,NULL,NULL,'Both','739503630',NULL,'Sample Data','Shauna','','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Terry',NULL,1,NULL,0,NULL,NULL,NULL,'Van Ness Action Partners',NULL,NULL,139,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Ashley','Ashley Łąchowski III',NULL,NULL,NULL,NULL,NULL,'Both','2118847074',NULL,'Sample Data','Ashley','','Łąchowski',NULL,4,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Łąchowski III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Rebekah','Mrs. Rebekah Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2023061910',NULL,'Sample Data','Rebekah','','Samuels',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Samuels',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (150,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski-Cooper, Claudio','Claudio Łąchowski-Cooper',NULL,NULL,NULL,'3',NULL,'Both','77215654',NULL,'Sample Data','Claudio','W','Łąchowski-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Łąchowski-Cooper',NULL,2,'1987-06-03',0,NULL,NULL,NULL,'Beech Legal Partners',NULL,NULL,97,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bachmant@spamalot.co.nz','bachmant@spamalot.co.nz',NULL,NULL,NULL,'4',NULL,'Both','2827277713',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear bachmant@spamalot.co.nz',1,NULL,'Dear bachmant@spamalot.co.nz',1,NULL,'bachmant@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (152,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav-Smith family','Yadav-Smith family',NULL,NULL,NULL,'2',NULL,'Both','2276460332',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav-Smith family',5,NULL,'Dear Yadav-Smith family',2,NULL,'Yadav-Smith family',NULL,NULL,NULL,0,NULL,'Yadav-Smith family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ee.jameson14@spamalot.com','ee.jameson14@spamalot.com',NULL,NULL,NULL,NULL,NULL,'Both','864310094',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ee.jameson14@spamalot.com',1,NULL,'Dear ee.jameson14@spamalot.com',1,NULL,'ee.jameson14@spamalot.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Rodrigo','Rodrigo Yadav II',NULL,NULL,NULL,'4',NULL,'Both','129121277',NULL,'Sample Data','Rodrigo','N','Yadav',NULL,3,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Yadav II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (155,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Maxwell','Maxwell Jameson',NULL,NULL,NULL,'2',NULL,'Both','1027858961',NULL,'Sample Data','Maxwell','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Jameson',NULL,2,'1978-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (156,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Lou','Lou Nielsen',NULL,NULL,NULL,'4',NULL,'Both','3533817831',NULL,'Sample Data','Lou','G','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Nielsen',NULL,NULL,'1964-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (157,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Woodbridge Development Association','Woodbridge Development Association',NULL,NULL,NULL,'1',NULL,'Both','1385154993',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Woodbridge Development Association',NULL,NULL,NULL,0,NULL,NULL,134,'Woodbridge Development Association',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Rosario','Dr. Rosario Jones Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1172090017',NULL,'Sample Data','Rosario','','Jones',4,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Jones Jr.',NULL,2,'1993-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (159,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'United Health Initiative','United Health Initiative',NULL,NULL,NULL,'5',NULL,'Both','3477462765',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Health Initiative',NULL,NULL,NULL,0,NULL,NULL,9,'United Health Initiative',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (160,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels-Adams, Brent','Mr. Brent Samuels-Adams',NULL,NULL,NULL,'2',NULL,'Both','2675617051',NULL,'Sample Data','Brent','Z','Samuels-Adams',3,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Samuels-Adams',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Ray','Ray Smith',NULL,NULL,NULL,'5',NULL,'Both','2980443594',NULL,'Sample Data','Ray','F','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Smith',NULL,2,'1996-04-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (162,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Alexia','Alexia Łąchowski',NULL,NULL,NULL,'4',NULL,'Both','3395751450',NULL,'Sample Data','Alexia','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (163,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Prentice, Santina','Santina Prentice',NULL,NULL,NULL,'2',NULL,'Both','3560693906',NULL,'Sample Data','Santina','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Prentice',NULL,NULL,'1950-07-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (164,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Heidi','Heidi Smith',NULL,NULL,NULL,'5',NULL,'Both','837834326',NULL,'Sample Data','Heidi','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (165,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Lincoln','Lincoln Cruz Sr.',NULL,NULL,NULL,'1',NULL,'Both','3085396026',NULL,'Sample Data','Lincoln','W','Cruz',NULL,2,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Cruz Sr.',NULL,2,'1952-06-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (166,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav-Smith, Daren','Daren Yadav-Smith',NULL,NULL,NULL,'3',NULL,'Both','2558847482',NULL,'Sample Data','Daren','','Yadav-Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Yadav-Smith',NULL,NULL,'1983-07-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Jina','Ms. Jina McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','644172968',NULL,'Sample Data','Jina','','McReynolds',2,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Ms. Jina McReynolds',NULL,NULL,'1941-10-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (168,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Geneva Agriculture Center','Geneva Agriculture Center',NULL,NULL,NULL,NULL,NULL,'Both','3430090695',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Geneva Agriculture Center',NULL,NULL,NULL,0,NULL,NULL,71,'Geneva Agriculture Center',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Merrie','Merrie Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2004976377',NULL,'Sample Data','Merrie','L','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Łąchowski',NULL,1,'1944-01-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (170,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,NULL,NULL,'Both','350459294',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels family',5,NULL,'Dear Samuels family',2,NULL,'Samuels family',NULL,NULL,NULL,0,NULL,'Samuels family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Kiara','Ms. Kiara Olsen',NULL,NULL,NULL,NULL,NULL,'Both','2769473098',NULL,'Sample Data','Kiara','','Olsen',2,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Ms. Kiara Olsen',NULL,1,'1979-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (172,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Texas Education Systems','Texas Education Systems',NULL,NULL,NULL,'1',NULL,'Both','2660677029',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Education Systems',NULL,NULL,NULL,0,NULL,NULL,109,'Texas Education Systems',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (173,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Rural Legal Fund','Rural Legal Fund',NULL,NULL,NULL,NULL,NULL,'Both','1672969017',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Legal Fund',NULL,NULL,NULL,0,NULL,NULL,84,'Rural Legal Fund',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (174,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Norris','Dr. Norris Patel',NULL,NULL,NULL,'2',NULL,'Both','3528404005',NULL,'Sample Data','Norris','','Patel',4,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Dr. Norris Patel',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (175,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'New Mexico Music Network','New Mexico Music Network',NULL,NULL,NULL,'4',NULL,'Both','288611616',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New Mexico Music Network',NULL,NULL,NULL,0,NULL,NULL,45,'New Mexico Music Network',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kc.cruz@sample.biz','kc.cruz@sample.biz',NULL,NULL,NULL,NULL,NULL,'Both','1564238878',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kc.cruz@sample.biz',1,NULL,'Dear kc.cruz@sample.biz',1,NULL,'kc.cruz@sample.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Brigette','Brigette Parker',NULL,NULL,NULL,'5',NULL,'Both','3240001853',NULL,'Sample Data','Brigette','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Parker',NULL,NULL,'1956-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (178,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Lee, Landon','Landon Lee III',NULL,NULL,NULL,NULL,NULL,'Both','4144706447',NULL,'Sample Data','Landon','','Lee',NULL,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Lee III',NULL,2,'1964-01-20',0,NULL,NULL,NULL,'Urban Agriculture Solutions',NULL,NULL,124,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Valene','Ms. Valene Müller',NULL,NULL,NULL,'4',NULL,'Both','444739216',NULL,'Sample Data','Valene','K','Müller',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Müller',NULL,1,'1980-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Nicole','Ms. Nicole Adams',NULL,NULL,NULL,'5',NULL,'Both','1724528090',NULL,'Sample Data','Nicole','','Adams',2,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Ms. Nicole Adams',NULL,1,'1970-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Iris','Mrs. Iris Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3144351192',NULL,'Sample Data','Iris','M','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris Jacobs',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Lashawnda','Ms. Lashawnda Grant',NULL,NULL,NULL,'1',NULL,'Both','2795633205',NULL,'Sample Data','Lashawnda','I','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Ms. Lashawnda Grant',NULL,1,'1984-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (183,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'smithk@fakemail.biz','smithk@fakemail.biz',NULL,NULL,NULL,'5',NULL,'Both','2359978779',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear smithk@fakemail.biz',1,NULL,'Dear smithk@fakemail.biz',1,NULL,'smithk@fakemail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Ashley','Ashley Jensen',NULL,NULL,NULL,NULL,NULL,'Both','3241907591',NULL,'Sample Data','Ashley','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jensen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (185,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Prentice, Delana','Delana Prentice',NULL,NULL,NULL,NULL,NULL,'Both','200521345',NULL,'Sample Data','Delana','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Prentice',NULL,1,'1964-03-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (186,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,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,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (187,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jones, Megan','Megan Jones',NULL,NULL,NULL,NULL,NULL,'Both','2717293392',NULL,'Sample Data','Megan','Z','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (188,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Rosario','Rosario Bachman III',NULL,NULL,NULL,'3',NULL,'Both','563214667',NULL,'Sample Data','Rosario','O','Bachman',NULL,4,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Bachman III',NULL,2,'1997-08-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (189,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams-Ivanov, Eleonor','Dr. Eleonor Adams-Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2531001989',NULL,'Sample Data','Eleonor','F','Adams-Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Dr. Eleonor Adams-Ivanov',NULL,NULL,'1994-04-16',0,NULL,NULL,NULL,'Global Literacy Academy',NULL,NULL,89,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (190,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels-Adams family','Samuels-Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1247664984',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels-Adams family',5,NULL,'Dear Samuels-Adams family',2,NULL,'Samuels-Adams family',NULL,NULL,NULL,0,NULL,'Samuels-Adams family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Kiara','Ms. Kiara Bachman',NULL,NULL,NULL,'3',NULL,'Both','3047638217',NULL,'Sample Data','Kiara','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Ms. Kiara Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (192,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Virginia Sustainability Fellowship','Virginia Sustainability Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','3427835035',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Virginia Sustainability Fellowship',NULL,NULL,NULL,0,NULL,NULL,196,'Virginia Sustainability Fellowship',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Magan','Dr. Magan Wagner',NULL,NULL,NULL,NULL,NULL,'Both','822485998',NULL,'Sample Data','Magan','','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Wagner',NULL,1,'1959-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (194,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Rodrigo','Dr. Rodrigo Deforest',NULL,NULL,NULL,NULL,NULL,'Both','560403570',NULL,'Sample Data','Rodrigo','G','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Deforest',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (195,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Parker, Beula','Mrs. Beula Parker',NULL,NULL,NULL,NULL,NULL,'Both','1115460159',NULL,'Sample Data','Beula','Z','Parker',1,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Parker',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (196,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wilson, Merrie','Dr. Merrie Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2015028870',NULL,'Sample Data','Merrie','','Wilson',4,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Dr. Merrie Wilson',NULL,NULL,'2000-06-30',0,NULL,NULL,NULL,'Virginia Sustainability Fellowship',NULL,NULL,192,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (197,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Education Center','Global Education Center',NULL,NULL,NULL,'2',NULL,'Both','3944717605',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Education Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Education Center',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'andrewb@sample.com','andrewb@sample.com',NULL,NULL,NULL,'3',NULL,'Both','3341810273',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear andrewb@sample.com',1,NULL,'Dear andrewb@sample.com',1,NULL,'andrewb@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:39'),
+ (199,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Dimitrov, Shad','Dr. Shad Dimitrov Jr.',NULL,NULL,NULL,'4',NULL,'Both','583180877',NULL,'Sample Data','Shad','E','Dimitrov',4,1,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Dimitrov Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (200,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson-Jones, Tanya','Tanya Wattson-Jones',NULL,NULL,NULL,'4',NULL,'Both','611678160',NULL,'Sample Data','Tanya','','Wattson-Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Wattson-Jones',NULL,1,'1962-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (201,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Punta Gorda Software Systems','Punta Gorda Software Systems',NULL,NULL,NULL,NULL,NULL,'Both','1560214983',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Punta Gorda Software Systems',NULL,NULL,NULL,0,NULL,NULL,25,'Punta Gorda Software Systems',NULL,NULL,NULL,0,'2022-10-09 15:29:37','2022-10-09 15:29:38'),
+ (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','cd080753122c6c7054ff30b0206583ed',NULL,NULL,'Jenny',NULL,'Lee',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,NULL,0,'2022-10-09 15:29:39','2022-10-09 15:29:39');
 /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -2375,117 +2301,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,'2012-10-10 07:32:55',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,NULL,NULL,0),
- (2,4,1,NULL,1,'2020-07-10 07:32:55',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,NULL,NULL,0),
- (3,6,1,NULL,4,'2016-09-14 18:32:55',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,NULL,NULL,0),
- (4,8,1,NULL,4,'2020-07-10 07:32:55',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,NULL,NULL,0),
- (5,4,1,NULL,1,'2020-07-10 07:32:55',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,NULL,NULL,0),
- (6,16,1,NULL,4,'2022-07-17 06:50:55',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,NULL,NULL,0),
- (7,19,1,NULL,1,'2022-10-08 07:32:55',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,NULL,NULL,0),
- (8,82,1,NULL,1,'2022-02-15 15:43:55',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,NULL,NULL,0),
- (9,92,1,NULL,1,'2021-11-10 07:32:55',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,NULL,NULL,0),
- (10,34,1,NULL,1,'2018-05-18 09:32:55',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,NULL,NULL,0),
- (11,71,1,NULL,1,'2022-10-09 03:32:55',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (12,43,1,NULL,1,'2021-07-09 20:59:35',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,NULL,NULL,0),
- (13,32,1,NULL,1,'2022-07-10 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,NULL,NULL,0),
- (14,32,1,NULL,1,'2022-08-10 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,NULL,NULL,0),
- (15,59,1,NULL,1,'2021-07-10 07:32:55',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,NULL,NULL,0),
- (16,59,1,NULL,1,'2021-08-10 07:32:55',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,NULL,NULL,0),
- (17,59,1,NULL,1,'2021-09-10 07:32:55',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,NULL,NULL,0),
- (18,59,1,NULL,1,'2021-10-10 07:32:55',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,NULL,NULL,0),
- (19,59,1,NULL,1,'2021-11-10 07:32:55',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,NULL,NULL,0),
- (20,59,1,NULL,1,'2021-12-10 07:32:55',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,NULL,NULL,0),
- (21,59,1,NULL,1,'2022-01-10 07:32:55',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,NULL,NULL,0),
- (22,59,1,NULL,1,'2022-02-10 07:32:55',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,NULL,NULL,0),
- (23,59,1,NULL,1,'2022-03-10 07:32:55',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,NULL,NULL,0),
- (24,59,1,NULL,1,'2022-04-10 07:32:55',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,NULL,NULL,0),
- (25,59,1,NULL,1,'2022-05-10 07:32:55',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,NULL,NULL,0),
- (26,99,1,NULL,1,'2022-02-10 07:32:55',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,NULL,NULL,0),
- (27,99,1,NULL,1,'2022-03-10 07:32:55',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,NULL,NULL,0),
- (28,99,1,NULL,1,'2022-04-10 07:32:55',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,NULL,NULL,0),
- (29,99,1,NULL,1,'2022-05-10 07:32:55',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,NULL,NULL,0),
- (30,99,1,NULL,1,'2022-06-10 07:32:55',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,NULL,NULL,0),
- (31,103,1,NULL,1,'2022-09-10 07:32:55',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,NULL,NULL,0),
- (32,58,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'92838f5d8ebe9d94',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (33,60,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'99bc3e45562483a9',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (34,176,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'b9ddb0cd34a54341',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (35,27,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'150c315152476e30',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (36,174,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'0573763e28583e79',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (37,166,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'72cc4062de6b9878',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (38,46,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'4361d49e662c1cf9',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (39,198,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'1c6bf23f58d27fba',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (40,31,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'8642002dda99d38c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (41,83,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'b3e4ddca6f1e863b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (42,140,2,NULL,1,'2022-10-10 07:32:55',0.00,1200.00,NULL,NULL,'98a733d2e0cb946e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (43,123,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'9456cb58f321b74b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (44,131,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'100a5eaa0bf94166',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (45,85,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'c8249e5447b6c529',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (46,159,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'d2db796b6aef25b4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (47,43,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'804a0704792ad35a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (48,49,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'e74688fc7c9977a1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (49,109,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'009a8fb7c96d523d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (50,61,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'c743f0e617c1d205',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (51,139,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'c83f61825e6f66d0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (52,130,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'f345bd6ac5e98fa3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (53,138,2,NULL,1,'2022-10-10 07:32:55',0.00,1200.00,NULL,NULL,'0b2d295e7f414cc4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (54,197,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'2c131e0cb5b3ffa2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (55,188,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'4208cab8920a1ae4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (56,11,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'3c56c4564b29ef53',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (57,170,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'808959426a422d2f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (58,71,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'1bbd55cc7ddf1a01',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (59,47,2,NULL,1,'2022-10-10 07:32:55',0.00,50.00,NULL,NULL,'36d873665eae9b42',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (60,97,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'ef909a5d959408a3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (61,120,2,NULL,1,'2022-10-10 07:32:55',0.00,100.00,NULL,NULL,'b675d0a6d10c67bf',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (63,2,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'2debe1ac2aa6911b',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (64,10,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'5aa0ee149ff38a66',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (65,16,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'7d3812139e537652',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (66,19,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'60f998e7cc7caf07',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (67,30,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'a5d924057370a61e',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (68,34,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'b24caae0eb13d81c',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (69,35,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'e258e0db4c2290e0',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (70,37,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'810cd865d177e2d2',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (71,39,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'a08e472949a547ae',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (72,42,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'e5af443a602f1c77',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (73,48,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'50cd4a6b85652561',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (74,50,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'30829d3b3e49b104',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (75,57,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'39d929ad70dbbb15',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (76,58,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'3fa5649932f70a53',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (77,61,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'23fe6138d27dc4ba',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (78,72,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'95635b05a708d63e',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (79,74,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'d70a1dec1db7094c',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (80,78,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'13c645d9954e796a',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (81,81,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'f99c4912d1838260',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (82,84,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'7f9e0f1d2f38cdca',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (83,90,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'0fbdcace67c4ff8d',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (84,97,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'ec7f5ddf2d743244',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (85,101,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'bde12c50b967813b',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (86,105,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'26c5bc64a7d570a6',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (87,109,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'d67e329b505d7aa0',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (88,112,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'da8cb36ebcb21077',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (89,119,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'6f63717235d81732',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (90,128,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'5ed3706afada6845',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (91,129,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'7dbcc2ff526d8b60',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (92,132,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'9dc59632b7147e9a',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (93,134,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'dfb80eb9824dab28',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (94,136,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'24b969d9c426e195',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (95,141,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'daf242502329637b',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (96,146,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'c84653ba23aebc16',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (97,151,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'8abe6b141dc845a0',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (98,152,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'bb598a78a9c3a362',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (99,154,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'dc76c7f88835cd42',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (100,160,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'e81341fba84718a0',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (101,163,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'3d00819536d635cb',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (102,166,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'7ec72c7adcb20bb6',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (103,174,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'c8e0e8d877714d35',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (104,175,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'409cd013544f313c',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (105,176,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'f98ccba169c15778',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (106,180,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'3cd093cef54afcff',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (107,186,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'39e72709673bfcd3',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (108,187,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'f0b3a5e03ac2842f',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (109,191,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'a09ad39c5d7ba252',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (110,194,4,NULL,1,'2022-10-10 07:32:56',0.00,800.00,NULL,NULL,'5af169c399240886',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (111,200,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'6df628c18d631fd9',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
- (112,202,4,NULL,1,'2022-10-10 07:32:56',0.00,50.00,NULL,NULL,'582d8539dfe79be8',NULL,NULL,'USD',NULL,NULL,'2022-10-10 07:32:56',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0);
+ (1,2,1,NULL,4,'2012-10-09 15:29:40',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,NULL,NULL,0),
+ (2,4,1,NULL,1,'2020-07-09 15:29:40',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,NULL,NULL,0),
+ (3,6,1,NULL,4,'2016-09-14 02:29:40',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,NULL,NULL,0),
+ (4,8,1,NULL,4,'2020-07-09 15:29:40',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,NULL,NULL,0),
+ (5,4,1,NULL,1,'2020-07-09 15:29:40',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,NULL,NULL,0),
+ (6,16,1,NULL,4,'2022-07-16 14:47:40',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,NULL,NULL,0),
+ (7,19,1,NULL,1,'2022-10-07 15:29:40',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,NULL,NULL,0),
+ (8,82,1,NULL,1,'2022-02-14 23:40:40',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,NULL,NULL,0),
+ (9,92,1,NULL,1,'2021-11-09 15:29:40',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,NULL,NULL,0),
+ (10,34,1,NULL,1,'2018-05-17 17:29:40',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,NULL,NULL,0),
+ (11,71,1,NULL,1,'2022-10-08 11:29:40',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (12,43,1,NULL,1,'2021-07-09 04:56:20',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,NULL,NULL,0),
+ (13,32,1,NULL,1,'2022-07-09 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,NULL,NULL,0),
+ (14,32,1,NULL,1,'2022-08-09 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,NULL,NULL,0),
+ (15,59,1,NULL,1,'2021-07-09 15:29:40',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,NULL,NULL,0),
+ (16,59,1,NULL,1,'2021-08-09 15:29:40',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,NULL,NULL,0),
+ (17,59,1,NULL,1,'2021-09-09 15:29:40',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,NULL,NULL,0),
+ (18,59,1,NULL,1,'2021-10-09 15:29:40',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,NULL,NULL,0),
+ (19,59,1,NULL,1,'2021-11-09 15:29:40',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,NULL,NULL,0),
+ (20,59,1,NULL,1,'2021-12-09 15:29:40',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,NULL,NULL,0),
+ (21,59,1,NULL,1,'2022-01-09 15:29:40',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,NULL,NULL,0),
+ (22,59,1,NULL,1,'2022-02-09 15:29:40',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,NULL,NULL,0),
+ (23,59,1,NULL,1,'2022-03-09 15:29:40',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,NULL,NULL,0),
+ (24,59,1,NULL,1,'2022-04-09 15:29:40',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,NULL,NULL,0),
+ (25,59,1,NULL,1,'2022-05-09 15:29:40',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,NULL,NULL,0),
+ (26,99,1,NULL,1,'2022-02-09 15:29:40',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,NULL,NULL,0),
+ (27,99,1,NULL,1,'2022-03-09 15:29:40',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,NULL,NULL,0),
+ (28,99,1,NULL,1,'2022-04-09 15:29:40',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,NULL,NULL,0),
+ (29,99,1,NULL,1,'2022-05-09 15:29:40',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,NULL,NULL,0),
+ (30,99,1,NULL,1,'2022-06-09 15:29:40',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,NULL,NULL,0),
+ (31,103,1,NULL,1,'2022-09-09 15:29:40',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,NULL,NULL,0),
+ (32,20,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'d11026cc4ebbc6ad',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (33,42,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'33417791b8608ceb',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (34,182,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'d691e5f17c2785ff',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (35,68,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'83aeb72cdc61cd69',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (36,196,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d7d00b6e92d32a2b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (37,200,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'fd1db30a77f2020c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (38,13,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'ecc33345af7b0c68',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (39,120,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'73f2ebe9fd0fb063',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (40,82,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'c744b166b6dd40ce',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (41,38,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'f04deab8c26183fe',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (42,109,2,NULL,1,'2022-10-09 15:29:40',0.00,1200.00,NULL,NULL,'7d161a4772465b96',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (43,65,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d925d893f34f4240',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (44,17,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'d4b54c53d136111e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (45,142,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'5804663af2565c66',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (46,5,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'6950b0d4a03731e6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (47,94,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'e7ecc9d7036c1a57',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (48,98,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'babd3da964521c69',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (49,70,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'ceea7cbf7156a1a6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (50,164,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'2d01ccf3e4122cb1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (51,93,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'9731f65ec2dd3764',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (52,121,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'b8c30bf0cb53f861',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (53,90,2,NULL,1,'2022-10-09 15:29:40',0.00,1200.00,NULL,NULL,'be4ea04fcd004f46',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (54,174,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'3af865280a167ba7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (55,9,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'b838531076f1f3b9',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (56,39,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d01160bd7be68906',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (57,27,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'221a0532a800a288',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (58,137,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'ceb53089f9ec8e2b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (59,129,2,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'38e5c06d8add4c4f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (60,167,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'0e04efc2867964b3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (61,198,2,NULL,1,'2022-10-09 15:29:40',0.00,100.00,NULL,NULL,'8dbcfe585b7ec35c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (63,61,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'176ef3b71a78b667',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (64,48,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'a971e415c7244827',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (65,39,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'4e8df32744e0a13b',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (66,111,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'7f5d54b11871323a',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (67,46,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'7a3edf9a93562951',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (68,201,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'53703daeaa36e6c4',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (69,172,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'b4498d1525e57531',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (70,54,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'7a359c403aee697d',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (71,30,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'3f69d93340c79d24',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (72,20,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'fd96ac746dfb4da4',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (73,112,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'0297b888fcb01713',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (74,146,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'d8b84f77c8f9eb4a',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (75,114,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d374803d68ca93e4',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (76,183,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'12852efc6e44bc1d',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (77,41,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'261c7c8c39051501',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (78,194,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'8b9a469d766c106a',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (79,17,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'70d048b3272887a8',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (80,133,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'e3c50f2cb4c324b2',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (81,153,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'f9c501195c3b4e60',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (82,78,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d9fdde466edd78c5',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (83,196,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'db7de8428d5d9bb7',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (84,2,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'a3f0861806fae5b6',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (85,60,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'3d40b604f0693c45',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (86,25,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'ec21e2e902d1c4b0',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (87,27,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'215b7931739e2b35',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (88,58,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'19e8a2746f1ebfef',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (89,165,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'27c17101b8d20339',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (90,47,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'15a9aa45f3a30cb8',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (91,56,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'b75dde44a6928d08',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (92,108,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'1913d0ea32adb3ec',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (93,33,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'7ef32694adff2b5a',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (94,125,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d28ad40f264aad99',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (95,122,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'4731ce291d52ad20',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (96,32,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'94b3d5a32815968a',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (97,99,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'b8bd31cec5c9aa18',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (98,198,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'d5af5139b1dbdfeb',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (99,186,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'d4f2caa2b57878e6',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (100,6,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'ce7234f2c7edc53f',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (101,151,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'7b325fdf487b11c8',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (102,88,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'3cc2f8203d5bb5f3',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (103,145,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'b5bd2332d219f091',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (104,154,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'1f2d864624a92425',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (105,93,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'b3d97b36b7403f61',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (106,160,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'91324173de21a885',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (107,91,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'976b2336355527c9',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (108,191,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'756777a45c0632b2',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (109,21,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'4431368a67fe6777',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (110,137,4,NULL,1,'2022-10-09 15:29:40',0.00,50.00,NULL,NULL,'a1a0c684f8a6d193',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (111,115,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'97f04963d9b62787',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0),
+ (112,95,4,NULL,1,'2022-10-09 15:29:40',0.00,800.00,NULL,NULL,'5207f351cda4ea69',NULL,NULL,'USD',NULL,NULL,'2022-10-09 15:29:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0);
 /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -2518,9 +2444,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,'2021-07-10 07:32:55','2022-10-10 07:32:55','2022-10-10 07:32:55',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,'2022-02-10 07:32:55','2022-10-10 07:32:55','2022-10-10 07:32:55','2022-09-10 07:32:55','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,'2022-09-10 07:32:55','2022-10-10 07:32:55','2022-10-10 07:32:55',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2022-12-10 07:32:55',0,NULL,0,1,NULL,NULL,NULL,1);
+ (1,59,25.00,'USD','month',1,12,'2021-07-09 15:29:40','2022-10-09 15:29:40','2022-10-09 15:29:40',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,'2022-02-09 15:29:40','2022-10-09 15:29:40','2022-10-09 15:29:40','2022-09-09 15:29:40','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,'2022-09-09 15:29:40','2022-10-09 15:29:40','2022-10-09 15:29:40',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2022-12-09 15:29:40',0,NULL,0,1,NULL,NULL,NULL,1);
 /*!40000 ALTER TABLE `civicrm_contribution_recur` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -2531,8 +2457,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,182,10.00,'USD',1,1,'Jones Family','Helping Hands',10),
- (2,10,182,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
+ (1,9,35,10.00,'USD',1,1,'Jones Family','Helping Hands',10),
+ (2,10,35,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
 /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3131,7 +3057,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,'5.54.1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
+ (1,'Default Domain Name',NULL,'5.55.0',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
 /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3143,186 +3069,182 @@ 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,26,1,'roberts.a.delana76@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (3,26,1,'robertsd34@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
- (4,5,1,'lee.e.shad53@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (5,154,1,'andrewjones@example.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (6,154,1,'andrewjones@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
- (7,27,1,'lawerencen@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (8,106,1,'jensenl@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (9,106,1,'lareej@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (10,161,1,'omarterrell@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (11,161,1,'terrell.z.omar@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (12,133,1,'irisr32@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (13,115,1,'tk.barkley65@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (14,115,1,'tk.barkley@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (15,36,1,'troyzope@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (16,36,1,'tzope@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
- (17,24,1,'bachman.n.elizabeth67@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (18,59,1,'kandacec@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (19,59,1,'kandacec78@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
- (20,7,1,'jameson.beula44@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (21,189,1,'bsamuels58@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (22,90,1,'msamson53@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (23,186,1,'samuels.princess@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (24,149,1,'ivanovl4@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (25,175,1,'lawerenced54@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (26,175,1,'lawerenced45@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
- (27,22,1,'wattson.brent@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (28,22,1,'brentw@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
- (29,114,1,'erikpatel66@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (30,114,1,'patel.erik@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),
- (31,11,1,'megan63@example.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (32,11,1,'mi.chowski49@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),
- (33,56,1,'parker.lincoln39@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (34,196,1,'daz.c.justina@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (35,201,1,'adams.elbert@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (36,197,1,'deforest.y.teresa30@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (37,105,1,'dimitrov.landon@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (38,52,1,'kathleenw@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (39,148,1,'smith.claudio@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (40,148,1,'smithc@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (41,192,1,'scarletgrant@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (42,192,1,'sgrant10@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (43,87,1,'miguelsmith36@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (44,118,1,'darenl@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (45,118,1,'dlee@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (46,45,1,'bq.jacobs@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (47,156,1,'robertson.jina@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (48,25,1,'ashleyprentice78@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (49,101,1,'brzczysawterry@example.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (50,101,1,'terry.brzczysaw@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (51,135,1,'trumanw@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (52,42,1,'ashleyw@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (53,42,1,'wagnera50@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),
- (54,12,1,'nielsen.n.alexia24@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (55,85,1,'estawagner80@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (56,83,1,'smithp@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (57,83,1,'smith.princess87@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (58,79,1,'rolandroberts36@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (59,140,1,'wagner.allan45@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (60,140,1,'allanwagner44@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (61,4,1,'shaunar@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (62,4,1,'robertss@example.com',0,0,0,0,NULL,NULL,NULL,NULL),
- (63,160,1,'jensenj96@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (64,160,1,'jensen.josefa21@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (65,130,1,'maxwellwattson@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (66,130,1,'wattson.maxwell@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
- (67,142,1,'deforest.scarlet@example.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (68,94,1,'claudiop@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (69,94,1,'parkerc68@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (70,62,1,'mller.junko@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (71,174,1,'mllera84@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (72,139,1,'terryh@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (73,139,1,'heiditerry@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (74,29,1,'shermannielsen90@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (75,29,1,'sh.nielsen@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (76,167,1,'irispatel@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (77,167,1,'irisp19@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL),
- (78,14,1,'deforest.truman39@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (79,46,1,'blackwell.betty85@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (80,46,1,'blackwell.e.betty19@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (81,28,1,'blackwellb@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (82,28,1,'be.blackwell@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (83,68,1,'wattson.ashley5@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (84,74,1,'justinaw@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (85,74,1,'wattson.justina@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
- (86,168,1,'bwattson91@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (87,176,1,'andreww@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (88,176,1,'wattson.andrew@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),
- (89,61,1,'jensent@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (90,9,1,'chowski.b.rebekah83@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (91,9,1,'rebekah1@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
- (92,191,1,'brzczysawj66@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (93,191,1,'jensen-chowskib@example.info',0,0,0,0,NULL,NULL,NULL,NULL),
- (94,15,1,'grant.clint@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (95,158,1,'grant.kandace69@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (96,144,1,'grant.scott@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (97,144,1,'scottg@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),
- (98,125,1,'grantl@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (99,110,1,'eg.samuels-deforest@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (100,178,1,'teresalee92@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (101,40,1,'leej@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (102,40,1,'jacksonl21@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (103,31,1,'wilsonr65@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (104,143,1,'ep.wilson31@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (105,103,1,'alidawilson33@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (106,195,1,'elizabetht@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (107,195,1,'elizabetht@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
- (108,157,1,'daz-terrelln@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (109,171,1,'clintwilson@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (110,20,1,'wilson.margaret@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (111,20,1,'wilson.margaret75@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),
- (112,104,1,'wilson.bob@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (113,104,1,'bd.wilson26@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (114,194,1,'kandacewilson@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (115,127,1,'bettyprentice@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (116,127,1,'prenticeb@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),
- (117,21,1,'prentice.craig98@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (118,63,1,'bobrobertson89@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (119,93,1,'robertson.elizabeth@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (120,122,1,'robertson.u.kandace72@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (121,97,1,'robertson.andrew@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (122,92,1,'billyt@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (123,92,1,'billyterrell@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (124,199,1,'ir.wagner-terrell@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (125,67,1,'margarett@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (126,49,1,'acruz13@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (127,49,1,'ashliecruz@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
- (128,47,1,'josefawagner-cruz@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (129,109,1,'wagner-cruz.bernadette34@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (130,64,1,'grant.billy@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),
- (131,169,1,'wattson.u.alexia@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (132,138,1,'jr.grant-wattson61@example.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (133,138,1,'grant-wattson.r.juliann61@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (134,57,1,'parker-prentice.e.bernadette@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (135,57,1,'bernadetteparker-prentice36@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (136,152,1,'parker-prenticei@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
- (137,23,1,'ab.ivanov@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
- (138,35,1,'winfordb22@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (139,35,1,'barkley.t.winford86@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
- (140,89,1,'barkleyb9@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),
- (141,89,1,'barkley.billy@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
- (142,179,1,'ex.yadav-zope@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (143,198,1,'juliannzope@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (144,37,1,'santinagrant57@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (145,166,1,'grant-ivanov.b.irvin@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
- (146,172,1,'chowski-patel.elina94@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
- (147,172,1,'echowski-patel1@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
- (148,132,1,'erikpatel@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (149,66,1,'patel.bob39@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
- (150,6,3,'contact@vnliteracyfund.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (151,21,2,'prentice.craig@vnliteracyfund.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (152,78,3,'contact@whitesburghealth.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (153,74,2,'justinaw14@whitesburghealth.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (154,30,3,'info@badgerpoetryacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (155,19,3,'sales@progressivefamily.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (156,31,2,'wilsonr@progressivefamily.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (157,81,3,'service@coloradofood.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (158,9,2,'chowski.rebekah@coloradofood.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (159,70,3,'sales@pennsylvaniafellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (160,188,2,'patelt@pennsylvaniafellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (161,111,3,'feedback@globalliteracypartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (162,126,3,'sales@cpdevelopmentschool.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (163,41,3,'feedback@lincolncollective.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (164,36,2,'zopet@lincolncollective.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (165,72,3,'feedback@sierraculture.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (166,33,2,'errolw@sierraculture.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (167,147,3,'info@mlkingwellness.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (168,197,2,'.12@mlkingwellness.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (169,73,3,'info@nyagriculturecollective.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (170,75,2,'alidagrant@nyagriculturecollective.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (171,107,3,'sales@urbanartscollective.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (172,10,2,'jacobsj60@urbanartscollective.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (173,18,3,'feedback@creativepartners.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (174,80,3,'service@jacksonsystems.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (175,79,2,'rolandr@jacksonsystems.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (176,134,3,'service@communityartsfund.org',1,0,0,0,NULL,NULL,NULL,NULL),
- (177,67,2,'@communityartsfund.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (178,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL),
- (179,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (180,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),
- (181,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
+ (2,31,1,'heidizope39@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (3,109,1,'scottw@example.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (4,171,1,'olsenk31@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
+ (5,171,1,'olsenk40@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (6,154,1,'yadavr@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (7,154,1,'yadav.n.rodrigo@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (8,151,1,'bachmant@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (9,74,1,'brentc@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
+ (10,74,1,'cruz.brent89@airmail.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (11,92,1,'daz.scarlet88@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (12,12,1,'deforesta@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (13,12,1,'deforest.alexia34@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (14,113,1,'patelr7@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (15,85,1,'rrobertson@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (16,132,1,'rolandon19@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (17,82,1,'ie.olsen@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (18,42,1,'sdaz40@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (19,42,1,'daz.santina96@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (20,164,1,'heidis@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (21,71,1,'erikb77@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (22,128,1,'elbertchowski@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (23,66,1,'iveywagner@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (24,66,1,'wagner.n.ivey73@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (25,108,1,'mp.ivanov@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (26,15,1,'daz.bob52@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (27,15,1,'bdaz@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (28,129,1,'iveyivanov@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (29,6,1,'mi.zope78@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (30,6,1,'miguelz38@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (31,13,1,'jensen.kandace@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (32,13,1,'kandacejensen92@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
+ (33,121,1,'mmller@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (34,121,1,'meim48@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (35,17,1,'jameson.herminia2@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (36,196,1,'wilson.merrie35@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
+ (37,81,1,'tmcreynolds@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),
+ (38,81,1,'mcreynoldst77@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (39,63,1,'allend@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (40,131,1,'mariaadams65@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (41,131,1,'mariaadams@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (42,178,1,'landonl@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (43,140,1,'alidap88@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (44,140,1,'apatel14@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (45,73,1,'lawerencepatel@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (46,73,1,'lpatel@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
+ (47,103,1,'jacobs.russell50@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (48,163,1,'prentice.santina13@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (49,163,1,'santinap@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (50,137,1,'zopeb@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (51,137,1,'bzope@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (52,7,1,'bernadetten@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (53,7,1,'nielsen.h.bernadette@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),
+ (54,104,1,'cruz.esta@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (55,104,1,'cruz.esta26@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (56,46,1,'terry.heidi@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (57,46,1,'heiditerry42@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (58,165,1,'lw.cruz@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (59,55,1,'billysamuels@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (60,55,1,'bsamuels@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (61,76,1,'shermanadams@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),
+ (62,76,1,'sz.adams@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (63,125,1,'iq.nielsen@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (64,69,1,'smith.errol@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),
+ (65,153,1,'ee.jameson14@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (66,94,1,'jameson.damaris@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (67,94,1,'jameson.damaris77@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
+ (68,3,1,'jeromejones31@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (69,3,1,'jones.jerome@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (70,200,1,'wattson-jones.tanya@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (71,200,1,'wattson-jones.tanya50@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),
+ (72,187,1,'meganjones38@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),
+ (73,117,1,'andrews@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (74,117,1,'aq.samuels@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (75,160,1,'samuels-adams.brent32@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (76,160,1,'samuels-adams.brent65@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (77,83,1,'samson.billy70@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (78,83,1,'billysamson80@infomail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (79,120,1,'elinaj@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (80,28,1,'samson.jerome@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (81,84,1,'prenticea55@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (82,185,1,'delanap@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (83,185,1,'prenticed@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (84,68,1,'rprentice@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (85,19,1,'prentice.maxwell5@example.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (86,61,1,'mariamller19@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (87,141,1,'mller.r.teresa@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (88,141,1,'teresamller@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (89,99,1,'sonnymller@example.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (90,99,1,'sm.mller@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (91,40,1,'nielsen.daren@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (92,40,1,'nielsend19@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (93,107,1,'nielsen.x.junko62@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (94,107,1,'nielsen.x.junko@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (95,2,1,'nielsen.jerome55@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (96,2,1,'jo.nielsen57@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL),
+ (97,148,1,'ashley@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (98,25,1,'billycooper@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (99,25,1,'billyc54@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (100,9,1,'yadavl81@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (101,183,1,'kathlynsmith@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (102,183,1,'smithk@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (103,146,1,'yadav-smithl@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (104,18,1,'erikjameson@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (105,176,1,'cruz.kacey97@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (106,176,1,'kc.cruz@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (107,127,1,'jameson-cruz.scarlet97@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (108,8,1,'blackwell-patel.justina@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (109,130,1,'erikpatel@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (110,130,1,'patel.erik64@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),
+ (111,188,1,'bachman.o.rosario5@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (112,188,1,'rosariob45@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (113,4,1,'bachman-smith.lawerence66@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (114,4,1,'lc.bachman-smith@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (115,45,1,'bachman-smith.h.sharyn22@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (116,45,1,'sh.bachman-smith25@lol.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (117,110,1,'grant.bob30@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (118,65,1,'grant.kathleen@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (119,65,1,'grant.kathleen@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (120,182,1,'grant.i.lashawnda@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (121,198,1,'andrewb@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (122,56,1,'blackwell-wagnerp@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (123,116,1,'russellblackwell-wagner72@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (124,50,1,'sonnyj@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (125,80,1,'tjameson65@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (126,80,1,'tjameson51@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (127,64,1,'ivanov.alexia@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (128,64,1,'ivanov.alexia11@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL),
+ (129,189,1,'ef.adams-ivanov29@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (130,70,1,'scotts86@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (131,70,1,'scotts@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),
+ (132,135,1,'smith-jacobse@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (133,90,1,'megans@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (134,90,1,'smith-jacobs.megan34@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),
+ (135,106,1,'jacobs.santina27@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),
+ (136,106,1,'jacobss@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),
+ (137,86,1,'brentj@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (138,86,1,'jacobsb@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (139,51,1,'samuelsn3@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (140,51,1,'samuels.norris@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),
+ (141,149,1,'rebekahs63@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),
+ (142,93,1,'ksamuels@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (143,122,1,'samuels.allan@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (144,30,1,'parker-zopec3@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),
+ (145,144,1,'carylond@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),
+ (146,29,1,'zope-deforest.a.tanya@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),
+ (147,29,1,'zope-deforest.tanya5@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (148,89,3,'sales@globalliteracyacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (149,189,2,'eleonoradams-ivanov10@globalliteracyacademy.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (150,123,3,'service@bayadvocacyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (151,88,2,'samuels-adams.norris@bayadvocacyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (152,172,3,'info@texassystems.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (153,109,2,'wilson.scott@texassystems.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (154,173,3,'feedback@ruralfund.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (155,84,2,'andrewprentice@ruralfund.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (156,10,3,'info@nysportsfund.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (157,133,3,'feedback@utahactionalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (158,146,2,'yadav-smith.e.landon@utahactionalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (159,105,3,'service@northpointfamily.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (160,70,2,'ssmith@northpointfamily.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (161,197,3,'info@globaleducation.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (162,97,3,'feedback@beechlegalpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (163,150,2,'chowski-cooper.w.claudio@beechlegalpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (164,201,3,'info@pgsoftwaresystems.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (165,25,2,'billycooper@pgsoftwaresystems.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (166,159,3,'sales@unitedhealth.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (167,9,2,'yadavl43@unitedhealth.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (168,139,3,'sales@vnactionpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (169,147,2,'terry.shauna@vnactionpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (170,168,3,'feedback@genevaagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (171,71,2,'bachman.d.erik@genevaagriculture.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (172,75,3,'service@blakelyfood.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (173,26,2,'tt.nielsen@blakelyfood.org',1,0,0,0,NULL,NULL,NULL,NULL),
+ (174,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL),
+ (175,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (176,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),
+ (177,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3464,39 +3386,39 @@ INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`,
  (78,'civicrm_financial_item',39,39,100.00),
  (79,'civicrm_contribution',50,40,100.00),
  (80,'civicrm_financial_item',40,40,100.00),
- (81,'civicrm_contribution',51,41,100.00),
+ (81,'civicrm_contribution',52,41,100.00),
  (82,'civicrm_financial_item',41,41,100.00),
- (83,'civicrm_contribution',52,42,100.00),
+ (83,'civicrm_contribution',54,42,100.00),
  (84,'civicrm_financial_item',42,42,100.00),
- (85,'civicrm_contribution',54,43,100.00),
+ (85,'civicrm_contribution',58,43,100.00),
  (86,'civicrm_financial_item',43,43,100.00),
- (87,'civicrm_contribution',56,44,100.00),
+ (87,'civicrm_contribution',60,44,100.00),
  (88,'civicrm_financial_item',44,44,100.00),
- (89,'civicrm_contribution',58,45,100.00),
+ (89,'civicrm_contribution',61,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),
+ (91,'civicrm_contribution',33,46,50.00),
+ (92,'civicrm_financial_item',46,46,50.00),
+ (93,'civicrm_contribution',35,47,50.00),
+ (94,'civicrm_financial_item',47,47,50.00),
+ (95,'civicrm_contribution',36,48,50.00),
  (96,'civicrm_financial_item',48,48,50.00),
- (97,'civicrm_contribution',35,49,50.00),
+ (97,'civicrm_contribution',37,49,50.00),
  (98,'civicrm_financial_item',49,49,50.00),
- (99,'civicrm_contribution',36,50,50.00),
+ (99,'civicrm_contribution',39,50,50.00),
  (100,'civicrm_financial_item',50,50,50.00),
- (101,'civicrm_contribution',37,51,50.00),
+ (101,'civicrm_contribution',43,51,50.00),
  (102,'civicrm_financial_item',51,51,50.00),
- (103,'civicrm_contribution',39,52,50.00),
+ (103,'civicrm_contribution',45,52,50.00),
  (104,'civicrm_financial_item',52,52,50.00),
- (105,'civicrm_contribution',43,53,50.00),
+ (105,'civicrm_contribution',47,53,50.00),
  (106,'civicrm_financial_item',53,53,50.00),
- (107,'civicrm_contribution',45,54,50.00),
+ (107,'civicrm_contribution',49,54,50.00),
  (108,'civicrm_financial_item',54,54,50.00),
- (109,'civicrm_contribution',47,55,50.00),
+ (109,'civicrm_contribution',51,55,50.00),
  (110,'civicrm_financial_item',55,55,50.00),
- (111,'civicrm_contribution',49,56,50.00),
+ (111,'civicrm_contribution',55,56,50.00),
  (112,'civicrm_financial_item',56,56,50.00),
- (113,'civicrm_contribution',55,57,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),
@@ -3506,105 +3428,105 @@ INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`,
  (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',100,62,50.00),
+ (123,'civicrm_contribution',64,62,50.00),
  (124,'civicrm_financial_item',62,62,50.00),
- (125,'civicrm_contribution',89,63,50.00),
+ (125,'civicrm_contribution',67,63,50.00),
  (126,'civicrm_financial_item',63,63,50.00),
- (127,'civicrm_contribution',99,64,50.00),
+ (127,'civicrm_contribution',70,64,50.00),
  (128,'civicrm_financial_item',64,64,50.00),
- (129,'civicrm_contribution',111,65,50.00),
+ (129,'civicrm_contribution',73,65,50.00),
  (130,'civicrm_financial_item',65,65,50.00),
- (131,'civicrm_contribution',66,66,50.00),
+ (131,'civicrm_contribution',76,66,50.00),
  (132,'civicrm_financial_item',66,66,50.00),
- (133,'civicrm_contribution',71,67,50.00),
+ (133,'civicrm_contribution',79,67,50.00),
  (134,'civicrm_financial_item',67,67,50.00),
- (135,'civicrm_contribution',63,68,50.00),
+ (135,'civicrm_contribution',82,68,50.00),
  (136,'civicrm_financial_item',68,68,50.00),
- (137,'civicrm_contribution',78,69,50.00),
+ (137,'civicrm_contribution',85,69,50.00),
  (138,'civicrm_financial_item',69,69,50.00),
- (139,'civicrm_contribution',97,70,50.00),
+ (139,'civicrm_contribution',89,70,50.00),
  (140,'civicrm_financial_item',70,70,50.00),
- (141,'civicrm_contribution',90,71,50.00),
+ (141,'civicrm_contribution',92,71,50.00),
  (142,'civicrm_financial_item',71,71,50.00),
- (143,'civicrm_contribution',102,72,50.00),
+ (143,'civicrm_contribution',95,72,50.00),
  (144,'civicrm_financial_item',72,72,50.00),
- (145,'civicrm_contribution',93,73,50.00),
+ (145,'civicrm_contribution',98,73,50.00),
  (146,'civicrm_financial_item',73,73,50.00),
- (147,'civicrm_contribution',112,74,50.00),
+ (147,'civicrm_contribution',101,74,50.00),
  (148,'civicrm_financial_item',74,74,50.00),
- (149,'civicrm_contribution',109,75,50.00),
+ (149,'civicrm_contribution',104,75,50.00),
  (150,'civicrm_financial_item',75,75,50.00),
- (151,'civicrm_contribution',95,76,50.00),
+ (151,'civicrm_contribution',107,76,50.00),
  (152,'civicrm_financial_item',76,76,50.00),
- (153,'civicrm_contribution',65,77,50.00),
+ (153,'civicrm_contribution',110,77,50.00),
  (154,'civicrm_financial_item',77,77,50.00),
- (155,'civicrm_contribution',82,78,800.00),
+ (155,'civicrm_contribution',65,78,800.00),
  (156,'civicrm_financial_item',78,78,800.00),
- (157,'civicrm_contribution',94,79,800.00),
+ (157,'civicrm_contribution',68,79,800.00),
  (158,'civicrm_financial_item',79,79,800.00),
- (159,'civicrm_contribution',75,80,800.00),
+ (159,'civicrm_contribution',71,80,800.00),
  (160,'civicrm_financial_item',80,80,800.00),
- (161,'civicrm_contribution',107,81,800.00),
+ (161,'civicrm_contribution',74,81,800.00),
  (162,'civicrm_financial_item',81,81,800.00),
- (163,'civicrm_contribution',76,82,800.00),
+ (163,'civicrm_contribution',77,82,800.00),
  (164,'civicrm_financial_item',82,82,800.00),
- (165,'civicrm_contribution',96,83,800.00),
+ (165,'civicrm_contribution',80,83,800.00),
  (166,'civicrm_financial_item',83,83,800.00),
- (167,'civicrm_contribution',92,84,800.00),
+ (167,'civicrm_contribution',83,84,800.00),
  (168,'civicrm_financial_item',84,84,800.00),
- (169,'civicrm_contribution',85,85,800.00),
+ (169,'civicrm_contribution',86,85,800.00),
  (170,'civicrm_financial_item',85,85,800.00),
- (171,'civicrm_contribution',104,86,800.00),
+ (171,'civicrm_contribution',87,86,800.00),
  (172,'civicrm_financial_item',86,86,800.00),
- (173,'civicrm_contribution',105,87,800.00),
+ (173,'civicrm_contribution',90,87,800.00),
  (174,'civicrm_financial_item',87,87,800.00),
- (175,'civicrm_contribution',86,88,800.00),
+ (175,'civicrm_contribution',93,88,800.00),
  (176,'civicrm_financial_item',88,88,800.00),
- (177,'civicrm_contribution',110,89,800.00),
+ (177,'civicrm_contribution',96,89,800.00),
  (178,'civicrm_financial_item',89,89,800.00),
- (179,'civicrm_contribution',103,90,800.00),
+ (179,'civicrm_contribution',99,90,800.00),
  (180,'civicrm_financial_item',90,90,800.00),
- (181,'civicrm_contribution',81,91,800.00),
+ (181,'civicrm_contribution',102,91,800.00),
  (182,'civicrm_financial_item',91,91,800.00),
- (183,'civicrm_contribution',101,92,800.00),
+ (183,'civicrm_contribution',105,92,800.00),
  (184,'civicrm_financial_item',92,92,800.00),
- (185,'civicrm_contribution',67,93,800.00),
+ (185,'civicrm_contribution',108,93,800.00),
  (186,'civicrm_financial_item',93,93,800.00),
- (187,'civicrm_contribution',83,94,800.00),
+ (187,'civicrm_contribution',111,94,800.00),
  (188,'civicrm_financial_item',94,94,800.00),
- (189,'civicrm_contribution',87,95,800.00),
+ (189,'civicrm_contribution',112,95,800.00),
  (190,'civicrm_financial_item',95,95,800.00),
- (191,'civicrm_contribution',80,96,50.00),
+ (191,'civicrm_contribution',63,96,50.00),
  (192,'civicrm_financial_item',96,96,50.00),
- (193,'civicrm_contribution',79,97,50.00),
+ (193,'civicrm_contribution',66,97,50.00),
  (194,'civicrm_financial_item',97,97,50.00),
- (195,'civicrm_contribution',88,98,50.00),
+ (195,'civicrm_contribution',69,98,50.00),
  (196,'civicrm_financial_item',98,98,50.00),
- (197,'civicrm_contribution',77,99,50.00),
+ (197,'civicrm_contribution',72,99,50.00),
  (198,'civicrm_financial_item',99,99,50.00),
- (199,'civicrm_contribution',98,100,50.00),
+ (199,'civicrm_contribution',75,100,50.00),
  (200,'civicrm_financial_item',100,100,50.00),
- (201,'civicrm_contribution',68,101,50.00),
+ (201,'civicrm_contribution',78,101,50.00),
  (202,'civicrm_financial_item',101,101,50.00),
- (203,'civicrm_contribution',106,102,50.00),
+ (203,'civicrm_contribution',81,102,50.00),
  (204,'civicrm_financial_item',102,102,50.00),
- (205,'civicrm_contribution',74,103,50.00),
+ (205,'civicrm_contribution',84,103,50.00),
  (206,'civicrm_financial_item',103,103,50.00),
- (207,'civicrm_contribution',70,104,50.00),
+ (207,'civicrm_contribution',88,104,50.00),
  (208,'civicrm_financial_item',104,104,50.00),
- (209,'civicrm_contribution',72,105,50.00),
+ (209,'civicrm_contribution',91,105,50.00),
  (210,'civicrm_financial_item',105,105,50.00),
- (211,'civicrm_contribution',73,106,50.00),
+ (211,'civicrm_contribution',94,106,50.00),
  (212,'civicrm_financial_item',106,106,50.00),
- (213,'civicrm_contribution',69,107,50.00),
+ (213,'civicrm_contribution',97,107,50.00),
  (214,'civicrm_financial_item',107,107,50.00),
- (215,'civicrm_contribution',84,108,50.00),
+ (215,'civicrm_contribution',100,108,50.00),
  (216,'civicrm_financial_item',108,108,50.00),
- (217,'civicrm_contribution',108,109,50.00),
+ (217,'civicrm_contribution',103,109,50.00),
  (218,'civicrm_financial_item',109,109,50.00),
- (219,'civicrm_contribution',91,110,50.00),
+ (219,'civicrm_contribution',106,110,50.00),
  (220,'civicrm_financial_item',110,110,50.00),
- (221,'civicrm_contribution',64,111,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;
@@ -3616,124 +3538,122 @@ 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
- (56,'civicrm_contact',4,5),
- (13,'civicrm_contact',5,5),
- (1,'civicrm_contact',6,2),
- (27,'civicrm_contact',7,4),
- (33,'civicrm_contact',11,4),
- (41,'civicrm_contact',13,5),
- (64,'civicrm_contact',14,5),
- (73,'civicrm_contact',15,4),
- (74,'civicrm_contact',15,5),
- (9,'civicrm_contact',18,2),
- (31,'civicrm_contact',22,4),
- (107,'civicrm_contact',23,4),
- (25,'civicrm_contact',24,4),
- (26,'civicrm_contact',24,5),
- (82,'civicrm_contact',31,5),
- (110,'civicrm_contact',35,4),
- (23,'civicrm_contact',36,4),
- (24,'civicrm_contact',36,5),
- (114,'civicrm_contact',37,5),
- (6,'civicrm_contact',41,3),
- (51,'civicrm_contact',42,4),
- (52,'civicrm_contact',42,5),
- (46,'civicrm_contact',45,4),
- (47,'civicrm_contact',45,5),
- (100,'civicrm_contact',47,5),
- (108,'civicrm_contact',48,4),
- (109,'civicrm_contact',48,5),
- (105,'civicrm_contact',57,4),
- (106,'civicrm_contact',57,5),
- (43,'civicrm_contact',60,4),
- (44,'civicrm_contact',60,5),
- (70,'civicrm_contact',61,4),
- (59,'civicrm_contact',62,4),
- (93,'civicrm_contact',63,4),
- (94,'civicrm_contact',63,5),
- (101,'civicrm_contact',64,4),
- (67,'civicrm_contact',68,4),
- (34,'civicrm_contact',71,5),
- (8,'civicrm_contact',73,3),
- (15,'civicrm_contact',75,4),
- (16,'civicrm_contact',75,5),
- (3,'civicrm_contact',76,1),
- (116,'civicrm_contact',77,5),
- (2,'civicrm_contact',78,2),
- (10,'civicrm_contact',80,2),
- (4,'civicrm_contact',81,1),
- (54,'civicrm_contact',83,5),
- (71,'civicrm_contact',84,4),
- (72,'civicrm_contact',84,5),
- (53,'civicrm_contact',85,4),
- (79,'civicrm_contact',86,4),
- (90,'civicrm_contact',88,5),
- (111,'civicrm_contact',89,5),
- (28,'civicrm_contact',90,4),
- (29,'civicrm_contact',90,5),
- (112,'civicrm_contact',91,4),
- (96,'civicrm_contact',92,5),
- (81,'civicrm_contact',95,5),
- (50,'civicrm_contact',101,4),
- (48,'civicrm_contact',102,4),
- (49,'civicrm_contact',102,5),
- (89,'civicrm_contact',104,4),
- (18,'civicrm_contact',106,5),
- (5,'civicrm_contact',111,1),
- (37,'civicrm_contact',112,5),
- (99,'civicrm_contact',113,5),
- (104,'civicrm_contact',116,4),
- (45,'civicrm_contact',118,5),
- (77,'civicrm_contact',120,4),
- (78,'civicrm_contact',120,5),
- (95,'civicrm_contact',122,5),
- (97,'civicrm_contact',123,4),
- (98,'civicrm_contact',123,5),
- (113,'civicrm_contact',124,5),
- (20,'civicrm_contact',129,4),
- (21,'civicrm_contact',129,5),
- (117,'civicrm_contact',132,4),
- (118,'civicrm_contact',132,5),
- (19,'civicrm_contact',133,4),
- (80,'civicrm_contact',137,4),
- (102,'civicrm_contact',138,4),
- (103,'civicrm_contact',138,5),
- (62,'civicrm_contact',139,5),
- (58,'civicrm_contact',142,4),
- (83,'civicrm_contact',143,5),
- (75,'civicrm_contact',144,4),
- (76,'civicrm_contact',144,5),
- (7,'civicrm_contact',147,3),
- (42,'civicrm_contact',148,5),
- (30,'civicrm_contact',149,4),
- (65,'civicrm_contact',150,4),
- (66,'civicrm_contact',150,5),
- (55,'civicrm_contact',151,4),
- (14,'civicrm_contact',154,5),
- (86,'civicrm_contact',157,5),
- (57,'civicrm_contact',160,4),
- (84,'civicrm_contact',162,4),
- (85,'civicrm_contact',162,5),
- (11,'civicrm_contact',165,4),
- (12,'civicrm_contact',165,5),
- (115,'civicrm_contact',166,5),
- (63,'civicrm_contact',167,5),
- (68,'civicrm_contact',168,4),
- (69,'civicrm_contact',168,5),
- (87,'civicrm_contact',171,4),
- (88,'civicrm_contact',171,5),
- (60,'civicrm_contact',174,4),
- (61,'civicrm_contact',174,5),
- (39,'civicrm_contact',177,4),
- (40,'civicrm_contact',177,5),
- (32,'civicrm_contact',181,4),
- (91,'civicrm_contact',183,4),
- (92,'civicrm_contact',183,5),
- (17,'civicrm_contact',185,5),
- (22,'civicrm_contact',188,4),
- (38,'civicrm_contact',197,5),
- (35,'civicrm_contact',201,4),
- (36,'civicrm_contact',201,5);
+ (67,'civicrm_contact',3,4),
+ (68,'civicrm_contact',3,5),
+ (94,'civicrm_contact',4,4),
+ (28,'civicrm_contact',5,4),
+ (37,'civicrm_contact',6,4),
+ (38,'civicrm_contact',6,5),
+ (53,'civicrm_contact',7,5),
+ (84,'civicrm_contact',9,4),
+ (85,'civicrm_contact',9,5),
+ (33,'civicrm_contact',15,4),
+ (34,'civicrm_contact',15,5),
+ (30,'civicrm_contact',16,4),
+ (87,'civicrm_contact',18,4),
+ (88,'civicrm_contact',18,5),
+ (9,'civicrm_contact',24,1),
+ (81,'civicrm_contact',26,4),
+ (114,'civicrm_contact',30,4),
+ (115,'civicrm_contact',30,5),
+ (11,'civicrm_contact',31,4),
+ (64,'civicrm_contact',33,4),
+ (65,'civicrm_contact',33,5),
+ (80,'civicrm_contact',40,4),
+ (47,'civicrm_contact',44,5),
+ (55,'civicrm_contact',46,5),
+ (100,'civicrm_contact',50,5),
+ (110,'civicrm_contact',51,4),
+ (111,'civicrm_contact',51,5),
+ (74,'civicrm_contact',52,5),
+ (57,'civicrm_contact',55,4),
+ (99,'civicrm_contact',56,5),
+ (56,'civicrm_contact',59,4),
+ (78,'civicrm_contact',61,4),
+ (83,'civicrm_contact',62,4),
+ (31,'civicrm_contact',66,4),
+ (32,'civicrm_contact',66,5),
+ (77,'civicrm_contact',68,4),
+ (62,'civicrm_contact',69,4),
+ (63,'civicrm_contact',69,5),
+ (105,'civicrm_contact',70,5),
+ (42,'civicrm_contact',72,4),
+ (43,'civicrm_contact',72,5),
+ (16,'civicrm_contact',74,5),
+ (60,'civicrm_contact',76,4),
+ (101,'civicrm_contact',80,4),
+ (73,'civicrm_contact',83,4),
+ (75,'civicrm_contact',84,4),
+ (76,'civicrm_contact',84,5),
+ (20,'civicrm_contact',85,5),
+ (72,'civicrm_contact',88,5),
+ (1,'civicrm_contact',89,3),
+ (112,'civicrm_contact',93,4),
+ (113,'civicrm_contact',93,5),
+ (66,'civicrm_contact',94,5),
+ (61,'civicrm_contact',95,5),
+ (17,'civicrm_contact',96,4),
+ (18,'civicrm_contact',96,5),
+ (52,'civicrm_contact',98,4),
+ (109,'civicrm_contact',100,5),
+ (48,'civicrm_contact',103,4),
+ (12,'civicrm_contact',109,5),
+ (95,'civicrm_contact',110,4),
+ (23,'civicrm_contact',112,5),
+ (19,'civicrm_contact',113,5),
+ (24,'civicrm_contact',114,4),
+ (25,'civicrm_contact',114,5),
+ (70,'civicrm_contact',117,4),
+ (71,'civicrm_contact',117,5),
+ (104,'civicrm_contact',119,5),
+ (39,'civicrm_contact',121,5),
+ (58,'civicrm_contact',126,4),
+ (59,'civicrm_contact',126,5),
+ (89,'civicrm_contact',127,5),
+ (35,'civicrm_contact',129,4),
+ (36,'civicrm_contact',129,5),
+ (4,'civicrm_contact',133,2),
+ (106,'civicrm_contact',135,4),
+ (107,'civicrm_contact',135,5),
+ (49,'civicrm_contact',138,4),
+ (50,'civicrm_contact',138,5),
+ (46,'civicrm_contact',140,4),
+ (116,'civicrm_contact',142,5),
+ (92,'civicrm_contact',145,5),
+ (86,'civicrm_contact',146,4),
+ (82,'civicrm_contact',148,4),
+ (15,'civicrm_contact',154,5),
+ (26,'civicrm_contact',156,4),
+ (27,'civicrm_contact',156,5),
+ (69,'civicrm_contact',158,5),
+ (8,'civicrm_contact',159,1),
+ (29,'civicrm_contact',164,5),
+ (10,'civicrm_contact',168,1),
+ (44,'civicrm_contact',169,4),
+ (13,'civicrm_contact',171,4),
+ (14,'civicrm_contact',171,5),
+ (2,'civicrm_contact',172,3),
+ (3,'civicrm_contact',173,3),
+ (90,'civicrm_contact',174,4),
+ (91,'civicrm_contact',174,5),
+ (7,'civicrm_contact',175,3),
+ (45,'civicrm_contact',178,5),
+ (79,'civicrm_contact',179,4),
+ (102,'civicrm_contact',180,4),
+ (103,'civicrm_contact',180,5),
+ (108,'civicrm_contact',181,5),
+ (96,'civicrm_contact',182,4),
+ (51,'civicrm_contact',184,4),
+ (93,'civicrm_contact',188,4),
+ (40,'civicrm_contact',191,5),
+ (6,'civicrm_contact',192,2),
+ (54,'civicrm_contact',194,4),
+ (21,'civicrm_contact',195,4),
+ (22,'civicrm_contact',195,5),
+ (41,'civicrm_contact',196,4),
+ (5,'civicrm_contact',197,3),
+ (97,'civicrm_contact',198,4),
+ (98,'civicrm_contact',198,5);
 /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3744,9 +3664,9 @@ 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`) 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,'2023-04-10 17:00:00','2023-04-12 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!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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),
- (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,'2022-10-09 12:00:00','2022-10-09 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!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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),
- (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,'2023-05-10 07:00:00','2023-05-13 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.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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,'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,'2023-04-09 17:00:00','2023-04-11 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!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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),
+ (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,'2022-10-08 12:00:00','2022-10-08 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!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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),
+ (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,'2023-05-09 07:00:00','2023-05-12 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.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=https://civicrm.org>Back to CiviCRM Home Page</a></p>',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),
  (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),
  (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),
  (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);
@@ -3782,11 +3702,10 @@ INSERT INTO `civicrm_extension` (`id`, `type`, `full_name`, `name`, `label`, `fi
  (2,'module','greenwich','Theme: Greenwich','Theme: Greenwich','greenwich',NULL,1),
  (3,'module','eventcart','Event cart','Event cart','eventcart',NULL,1),
  (4,'module','financialacls','Financial ACLs','Financial ACLs','financialacls',NULL,1),
- (5,'module','contributioncancelactions','Contribution cancel actions','Contribution cancel actions','contributioncancelactions',NULL,1),
- (6,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1),
- (7,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1),
- (8,'module','legacycustomsearches','Custom search framework','Custom search framework','legacycustomsearches',NULL,1),
- (9,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1);
+ (5,'module','recaptcha','reCAPTCHA','reCAPTCHA','recaptcha',NULL,1),
+ (6,'module','ckeditor4','CKEditor4','CKEditor4','ckeditor4',NULL,1),
+ (7,'module','legacycustomsearches','Custom search framework','Custom search framework','legacycustomsearches',NULL,1),
+ (8,'module','org.civicrm.flexmailer','FlexMailer','FlexMailer','flexmailer',NULL,1);
 /*!40000 ALTER TABLE `civicrm_extension` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3830,117 +3749,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,'2022-10-10 07:32:56','2012-10-10 07:32:55',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),
- (2,'2022-10-10 07:32:56','2020-07-10 07:32:55',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),
- (3,'2022-10-10 07:32:56','2016-09-14 18:32:55',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3),
- (4,'2022-10-10 07:32:56','2020-07-10 07:32:55',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),
- (5,'2022-10-10 07:32:56','2020-07-10 07:32:55',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5),
- (6,'2022-10-10 07:32:56','2022-07-17 06:50:55',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6),
- (7,'2022-10-10 07:32:56','2022-10-08 07:32:55',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7),
- (8,'2022-10-10 07:32:56','2022-02-15 15:43:55',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8),
- (9,'2022-10-10 07:32:56','2021-11-10 07:32:55',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9),
- (10,'2022-10-10 07:32:56','2018-05-18 09:32:55',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10),
- (11,'2022-10-10 07:32:56','2022-10-09 03:32:55',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11),
- (12,'2022-10-10 07:32:56','2021-07-09 20:59:35',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12),
- (13,'2022-10-10 07:32:56','2022-07-10 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13),
- (14,'2022-10-10 07:32:56','2022-08-10 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14),
- (15,'2022-10-10 07:32:56','2021-07-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15),
- (16,'2022-10-10 07:32:56','2021-08-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16),
- (17,'2022-10-10 07:32:56','2021-09-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17),
- (18,'2022-10-10 07:32:56','2021-10-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18),
- (19,'2022-10-10 07:32:56','2021-11-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19),
- (20,'2022-10-10 07:32:56','2021-12-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20),
- (21,'2022-10-10 07:32:56','2022-01-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21),
- (22,'2022-10-10 07:32:56','2022-02-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22),
- (23,'2022-10-10 07:32:56','2022-03-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23),
- (24,'2022-10-10 07:32:56','2022-04-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24),
- (25,'2022-10-10 07:32:56','2022-05-10 07:32:55',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25),
- (26,'2022-10-10 07:32:56','2022-02-10 07:32:55',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26),
- (27,'2022-10-10 07:32:56','2022-03-10 07:32:55',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27),
- (28,'2022-10-10 07:32:56','2022-04-10 07:32:55',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28),
- (29,'2022-10-10 07:32:56','2022-05-10 07:32:55',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29),
- (30,'2022-10-10 07:32:56','2022-06-10 07:32:55',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30),
- (31,'2022-10-10 07:32:56','2022-09-10 07:32:55',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31),
- (32,'2022-10-10 07:32:56','2022-10-10 07:32:55',58,'General',100.00,'USD',2,1,'civicrm_line_item',32),
- (33,'2022-10-10 07:32:56','2022-10-10 07:32:55',176,'General',100.00,'USD',2,1,'civicrm_line_item',33),
- (34,'2022-10-10 07:32:56','2022-10-10 07:32:55',46,'General',100.00,'USD',2,1,'civicrm_line_item',34),
- (35,'2022-10-10 07:32:56','2022-10-10 07:32:55',31,'General',100.00,'USD',2,1,'civicrm_line_item',35),
- (36,'2022-10-10 07:32:56','2022-10-10 07:32:55',83,'General',100.00,'USD',2,1,'civicrm_line_item',36),
- (37,'2022-10-10 07:32:56','2022-10-10 07:32:55',131,'General',100.00,'USD',2,1,'civicrm_line_item',37),
- (38,'2022-10-10 07:32:56','2022-10-10 07:32:55',159,'General',100.00,'USD',2,1,'civicrm_line_item',38),
- (39,'2022-10-10 07:32:56','2022-10-10 07:32:55',49,'General',100.00,'USD',2,1,'civicrm_line_item',39),
- (40,'2022-10-10 07:32:56','2022-10-10 07:32:55',61,'General',100.00,'USD',2,1,'civicrm_line_item',40),
- (41,'2022-10-10 07:32:56','2022-10-10 07:32:55',139,'General',100.00,'USD',2,1,'civicrm_line_item',41),
- (42,'2022-10-10 07:32:56','2022-10-10 07:32:55',130,'General',100.00,'USD',2,1,'civicrm_line_item',42),
- (43,'2022-10-10 07:32:56','2022-10-10 07:32:55',197,'General',100.00,'USD',2,1,'civicrm_line_item',43),
- (44,'2022-10-10 07:32:56','2022-10-10 07:32:55',11,'General',100.00,'USD',2,1,'civicrm_line_item',44),
- (45,'2022-10-10 07:32:56','2022-10-10 07:32:55',71,'General',100.00,'USD',2,1,'civicrm_line_item',45),
- (46,'2022-10-10 07:32:56','2022-10-10 07:32:55',97,'General',100.00,'USD',2,1,'civicrm_line_item',46),
- (47,'2022-10-10 07:32:56','2022-10-10 07:32:55',120,'General',100.00,'USD',2,1,'civicrm_line_item',47),
- (48,'2022-10-10 07:32:56','2022-10-10 07:32:55',60,'Student',50.00,'USD',2,1,'civicrm_line_item',48),
- (49,'2022-10-10 07:32:56','2022-10-10 07:32:55',27,'Student',50.00,'USD',2,1,'civicrm_line_item',49),
- (50,'2022-10-10 07:32:56','2022-10-10 07:32:55',174,'Student',50.00,'USD',2,1,'civicrm_line_item',50),
- (51,'2022-10-10 07:32:57','2022-10-10 07:32:55',166,'Student',50.00,'USD',2,1,'civicrm_line_item',51),
- (52,'2022-10-10 07:32:57','2022-10-10 07:32:55',198,'Student',50.00,'USD',2,1,'civicrm_line_item',52),
- (53,'2022-10-10 07:32:57','2022-10-10 07:32:55',123,'Student',50.00,'USD',2,1,'civicrm_line_item',53),
- (54,'2022-10-10 07:32:57','2022-10-10 07:32:55',85,'Student',50.00,'USD',2,1,'civicrm_line_item',54),
- (55,'2022-10-10 07:32:57','2022-10-10 07:32:55',43,'Student',50.00,'USD',2,1,'civicrm_line_item',55),
- (56,'2022-10-10 07:32:57','2022-10-10 07:32:55',109,'Student',50.00,'USD',2,1,'civicrm_line_item',56),
- (57,'2022-10-10 07:32:57','2022-10-10 07:32:55',188,'Student',50.00,'USD',2,1,'civicrm_line_item',57),
- (58,'2022-10-10 07:32:57','2022-10-10 07:32:55',170,'Student',50.00,'USD',2,1,'civicrm_line_item',58),
- (59,'2022-10-10 07:32:57','2022-10-10 07:32:55',47,'Student',50.00,'USD',2,1,'civicrm_line_item',59),
- (60,'2022-10-10 07:32:57','2022-10-10 07:32:55',140,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60),
- (61,'2022-10-10 07:32:57','2022-10-10 07:32:55',138,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61),
- (62,'2022-10-10 07:32:57','2022-10-10 07:32:56',160,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97),
- (63,'2022-10-10 07:32:57','2022-10-10 07:32:56',119,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98),
- (64,'2022-10-10 07:32:57','2022-10-10 07:32:56',154,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99),
- (65,'2022-10-10 07:32:57','2022-10-10 07:32:56',200,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100),
- (66,'2022-10-10 07:32:57','2022-10-10 07:32:56',19,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101),
- (67,'2022-10-10 07:32:57','2022-10-10 07:32:56',39,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102),
- (68,'2022-10-10 07:32:57','2022-10-10 07:32:56',2,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103),
- (69,'2022-10-10 07:32:57','2022-10-10 07:32:56',72,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104),
- (70,'2022-10-10 07:32:57','2022-10-10 07:32:56',151,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105),
- (71,'2022-10-10 07:32:57','2022-10-10 07:32:56',128,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106),
- (72,'2022-10-10 07:32:57','2022-10-10 07:32:56',166,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107),
- (73,'2022-10-10 07:32:57','2022-10-10 07:32:56',134,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108),
- (74,'2022-10-10 07:32:57','2022-10-10 07:32:56',202,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109),
- (75,'2022-10-10 07:32:57','2022-10-10 07:32:56',191,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110),
- (76,'2022-10-10 07:32:57','2022-10-10 07:32:56',141,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111),
- (77,'2022-10-10 07:32:57','2022-10-10 07:32:56',16,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112),
- (78,'2022-10-10 07:32:57','2022-10-10 07:32:56',84,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),
- (79,'2022-10-10 07:32:57','2022-10-10 07:32:56',136,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),
- (80,'2022-10-10 07:32:57','2022-10-10 07:32:56',57,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65),
- (81,'2022-10-10 07:32:57','2022-10-10 07:32:56',186,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66),
- (82,'2022-10-10 07:32:57','2022-10-10 07:32:56',58,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67),
- (83,'2022-10-10 07:32:57','2022-10-10 07:32:56',146,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68),
- (84,'2022-10-10 07:32:57','2022-10-10 07:32:56',132,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69),
- (85,'2022-10-10 07:32:57','2022-10-10 07:32:56',101,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70),
- (86,'2022-10-10 07:32:57','2022-10-10 07:32:56',175,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71),
- (87,'2022-10-10 07:32:57','2022-10-10 07:32:56',176,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72),
- (88,'2022-10-10 07:32:57','2022-10-10 07:32:56',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73),
- (89,'2022-10-10 07:32:57','2022-10-10 07:32:56',194,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74),
- (90,'2022-10-10 07:32:57','2022-10-10 07:32:56',174,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75),
- (91,'2022-10-10 07:32:58','2022-10-10 07:32:56',81,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76),
- (92,'2022-10-10 07:32:58','2022-10-10 07:32:56',163,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77),
- (93,'2022-10-10 07:32:58','2022-10-10 07:32:56',30,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78),
- (94,'2022-10-10 07:32:58','2022-10-10 07:32:56',90,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79),
- (95,'2022-10-10 07:32:58','2022-10-10 07:32:56',109,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80),
- (96,'2022-10-10 07:32:58','2022-10-10 07:32:56',78,'Single',50.00,'USD',4,1,'civicrm_line_item',81),
- (97,'2022-10-10 07:32:58','2022-10-10 07:32:56',74,'Single',50.00,'USD',4,1,'civicrm_line_item',82),
- (98,'2022-10-10 07:32:58','2022-10-10 07:32:56',112,'Single',50.00,'USD',4,1,'civicrm_line_item',83),
- (99,'2022-10-10 07:32:58','2022-10-10 07:32:56',61,'Single',50.00,'USD',4,1,'civicrm_line_item',84),
- (100,'2022-10-10 07:32:58','2022-10-10 07:32:56',152,'Single',50.00,'USD',4,1,'civicrm_line_item',85),
- (101,'2022-10-10 07:32:58','2022-10-10 07:32:56',34,'Single',50.00,'USD',4,1,'civicrm_line_item',86),
- (102,'2022-10-10 07:32:58','2022-10-10 07:32:56',180,'Single',50.00,'USD',4,1,'civicrm_line_item',87),
- (103,'2022-10-10 07:32:58','2022-10-10 07:32:56',50,'Single',50.00,'USD',4,1,'civicrm_line_item',88),
- (104,'2022-10-10 07:32:58','2022-10-10 07:32:56',37,'Single',50.00,'USD',4,1,'civicrm_line_item',89),
- (105,'2022-10-10 07:32:58','2022-10-10 07:32:56',42,'Single',50.00,'USD',4,1,'civicrm_line_item',90),
- (106,'2022-10-10 07:32:58','2022-10-10 07:32:56',48,'Single',50.00,'USD',4,1,'civicrm_line_item',91),
- (107,'2022-10-10 07:32:58','2022-10-10 07:32:56',35,'Single',50.00,'USD',4,1,'civicrm_line_item',92),
- (108,'2022-10-10 07:32:58','2022-10-10 07:32:56',97,'Single',50.00,'USD',4,1,'civicrm_line_item',93),
- (109,'2022-10-10 07:32:58','2022-10-10 07:32:56',187,'Single',50.00,'USD',4,1,'civicrm_line_item',94),
- (110,'2022-10-10 07:32:58','2022-10-10 07:32:56',129,'Single',50.00,'USD',4,1,'civicrm_line_item',95),
- (111,'2022-10-10 07:32:58','2022-10-10 07:32:56',10,'Single',50.00,'USD',4,1,'civicrm_line_item',96);
+ (1,'2022-10-09 15:29:41','2012-10-09 15:29:40',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),
+ (2,'2022-10-09 15:29:41','2020-07-09 15:29:40',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),
+ (3,'2022-10-09 15:29:41','2016-09-14 02:29:40',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3),
+ (4,'2022-10-09 15:29:41','2020-07-09 15:29:40',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),
+ (5,'2022-10-09 15:29:41','2020-07-09 15:29:40',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5),
+ (6,'2022-10-09 15:29:41','2022-07-16 14:47:40',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6),
+ (7,'2022-10-09 15:29:41','2022-10-07 15:29:40',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7),
+ (8,'2022-10-09 15:29:41','2022-02-14 23:40:40',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8),
+ (9,'2022-10-09 15:29:41','2021-11-09 15:29:40',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9),
+ (10,'2022-10-09 15:29:41','2018-05-17 17:29:40',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10),
+ (11,'2022-10-09 15:29:41','2022-10-08 11:29:40',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11),
+ (12,'2022-10-09 15:29:41','2021-07-09 04:56:20',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12),
+ (13,'2022-10-09 15:29:41','2022-07-09 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13),
+ (14,'2022-10-09 15:29:41','2022-08-09 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14),
+ (15,'2022-10-09 15:29:41','2021-07-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15),
+ (16,'2022-10-09 15:29:41','2021-08-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16),
+ (17,'2022-10-09 15:29:41','2021-09-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17),
+ (18,'2022-10-09 15:29:41','2021-10-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18),
+ (19,'2022-10-09 15:29:41','2021-11-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19),
+ (20,'2022-10-09 15:29:41','2021-12-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20),
+ (21,'2022-10-09 15:29:41','2022-01-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21),
+ (22,'2022-10-09 15:29:41','2022-02-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22),
+ (23,'2022-10-09 15:29:41','2022-03-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23),
+ (24,'2022-10-09 15:29:41','2022-04-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24),
+ (25,'2022-10-09 15:29:41','2022-05-09 15:29:40',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25),
+ (26,'2022-10-09 15:29:41','2022-02-09 15:29:40',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26),
+ (27,'2022-10-09 15:29:41','2022-03-09 15:29:40',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27),
+ (28,'2022-10-09 15:29:41','2022-04-09 15:29:40',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28),
+ (29,'2022-10-09 15:29:41','2022-05-09 15:29:40',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29),
+ (30,'2022-10-09 15:29:41','2022-06-09 15:29:40',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30),
+ (31,'2022-10-09 15:29:41','2022-09-09 15:29:40',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31),
+ (32,'2022-10-09 15:29:41','2022-10-09 15:29:40',20,'General',100.00,'USD',2,1,'civicrm_line_item',32),
+ (33,'2022-10-09 15:29:41','2022-10-09 15:29:40',182,'General',100.00,'USD',2,1,'civicrm_line_item',33),
+ (34,'2022-10-09 15:29:41','2022-10-09 15:29:40',13,'General',100.00,'USD',2,1,'civicrm_line_item',34),
+ (35,'2022-10-09 15:29:41','2022-10-09 15:29:40',82,'General',100.00,'USD',2,1,'civicrm_line_item',35),
+ (36,'2022-10-09 15:29:41','2022-10-09 15:29:40',38,'General',100.00,'USD',2,1,'civicrm_line_item',36),
+ (37,'2022-10-09 15:29:41','2022-10-09 15:29:40',17,'General',100.00,'USD',2,1,'civicrm_line_item',37),
+ (38,'2022-10-09 15:29:41','2022-10-09 15:29:40',5,'General',100.00,'USD',2,1,'civicrm_line_item',38),
+ (39,'2022-10-09 15:29:41','2022-10-09 15:29:40',98,'General',100.00,'USD',2,1,'civicrm_line_item',39),
+ (40,'2022-10-09 15:29:41','2022-10-09 15:29:40',164,'General',100.00,'USD',2,1,'civicrm_line_item',40),
+ (41,'2022-10-09 15:29:41','2022-10-09 15:29:40',121,'General',100.00,'USD',2,1,'civicrm_line_item',41),
+ (42,'2022-10-09 15:29:41','2022-10-09 15:29:40',174,'General',100.00,'USD',2,1,'civicrm_line_item',42),
+ (43,'2022-10-09 15:29:41','2022-10-09 15:29:40',137,'General',100.00,'USD',2,1,'civicrm_line_item',43),
+ (44,'2022-10-09 15:29:41','2022-10-09 15:29:40',167,'General',100.00,'USD',2,1,'civicrm_line_item',44),
+ (45,'2022-10-09 15:29:41','2022-10-09 15:29:40',198,'General',100.00,'USD',2,1,'civicrm_line_item',45),
+ (46,'2022-10-09 15:29:41','2022-10-09 15:29:40',42,'Student',50.00,'USD',2,1,'civicrm_line_item',46),
+ (47,'2022-10-09 15:29:41','2022-10-09 15:29:40',68,'Student',50.00,'USD',2,1,'civicrm_line_item',47),
+ (48,'2022-10-09 15:29:41','2022-10-09 15:29:40',196,'Student',50.00,'USD',2,1,'civicrm_line_item',48),
+ (49,'2022-10-09 15:29:41','2022-10-09 15:29:40',200,'Student',50.00,'USD',2,1,'civicrm_line_item',49),
+ (50,'2022-10-09 15:29:41','2022-10-09 15:29:40',120,'Student',50.00,'USD',2,1,'civicrm_line_item',50),
+ (51,'2022-10-09 15:29:41','2022-10-09 15:29:40',65,'Student',50.00,'USD',2,1,'civicrm_line_item',51),
+ (52,'2022-10-09 15:29:41','2022-10-09 15:29:40',142,'Student',50.00,'USD',2,1,'civicrm_line_item',52),
+ (53,'2022-10-09 15:29:41','2022-10-09 15:29:40',94,'Student',50.00,'USD',2,1,'civicrm_line_item',53),
+ (54,'2022-10-09 15:29:41','2022-10-09 15:29:40',70,'Student',50.00,'USD',2,1,'civicrm_line_item',54),
+ (55,'2022-10-09 15:29:41','2022-10-09 15:29:40',93,'Student',50.00,'USD',2,1,'civicrm_line_item',55),
+ (56,'2022-10-09 15:29:41','2022-10-09 15:29:40',9,'Student',50.00,'USD',2,1,'civicrm_line_item',56),
+ (57,'2022-10-09 15:29:41','2022-10-09 15:29:40',39,'Student',50.00,'USD',2,1,'civicrm_line_item',57),
+ (58,'2022-10-09 15:29:41','2022-10-09 15:29:40',27,'Student',50.00,'USD',2,1,'civicrm_line_item',58),
+ (59,'2022-10-09 15:29:41','2022-10-09 15:29:40',129,'Student',50.00,'USD',2,1,'civicrm_line_item',59),
+ (60,'2022-10-09 15:29:41','2022-10-09 15:29:40',109,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60),
+ (61,'2022-10-09 15:29:41','2022-10-09 15:29:40',90,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61),
+ (62,'2022-10-09 15:29:41','2022-10-09 15:29:40',48,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97),
+ (63,'2022-10-09 15:29:41','2022-10-09 15:29:40',46,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98),
+ (64,'2022-10-09 15:29:41','2022-10-09 15:29:40',54,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99),
+ (65,'2022-10-09 15:29:41','2022-10-09 15:29:40',112,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100),
+ (66,'2022-10-09 15:29:41','2022-10-09 15:29:40',183,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101),
+ (67,'2022-10-09 15:29:41','2022-10-09 15:29:40',17,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102),
+ (68,'2022-10-09 15:29:41','2022-10-09 15:29:40',78,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103),
+ (69,'2022-10-09 15:29:41','2022-10-09 15:29:40',60,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104),
+ (70,'2022-10-09 15:29:41','2022-10-09 15:29:40',165,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105),
+ (71,'2022-10-09 15:29:41','2022-10-09 15:29:40',108,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106),
+ (72,'2022-10-09 15:29:41','2022-10-09 15:29:40',122,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107),
+ (73,'2022-10-09 15:29:41','2022-10-09 15:29:40',198,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108),
+ (74,'2022-10-09 15:29:41','2022-10-09 15:29:40',151,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109),
+ (75,'2022-10-09 15:29:41','2022-10-09 15:29:40',154,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110),
+ (76,'2022-10-09 15:29:41','2022-10-09 15:29:40',91,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111),
+ (77,'2022-10-09 15:29:41','2022-10-09 15:29:40',137,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112),
+ (78,'2022-10-09 15:29:41','2022-10-09 15:29:40',39,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),
+ (79,'2022-10-09 15:29:41','2022-10-09 15:29:40',201,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),
+ (80,'2022-10-09 15:29:41','2022-10-09 15:29:40',30,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65),
+ (81,'2022-10-09 15:29:41','2022-10-09 15:29:40',146,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66),
+ (82,'2022-10-09 15:29:41','2022-10-09 15:29:40',41,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67),
+ (83,'2022-10-09 15:29:41','2022-10-09 15:29:40',133,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68),
+ (84,'2022-10-09 15:29:41','2022-10-09 15:29:40',196,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69),
+ (85,'2022-10-09 15:29:41','2022-10-09 15:29:40',25,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70),
+ (86,'2022-10-09 15:29:41','2022-10-09 15:29:40',27,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71),
+ (87,'2022-10-09 15:29:41','2022-10-09 15:29:40',47,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72),
+ (88,'2022-10-09 15:29:41','2022-10-09 15:29:40',33,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73),
+ (89,'2022-10-09 15:29:41','2022-10-09 15:29:40',32,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74),
+ (90,'2022-10-09 15:29:41','2022-10-09 15:29:40',186,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75),
+ (91,'2022-10-09 15:29:41','2022-10-09 15:29:40',88,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76),
+ (92,'2022-10-09 15:29:41','2022-10-09 15:29:40',93,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77),
+ (93,'2022-10-09 15:29:41','2022-10-09 15:29:40',191,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78),
+ (94,'2022-10-09 15:29:41','2022-10-09 15:29:40',115,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79),
+ (95,'2022-10-09 15:29:41','2022-10-09 15:29:40',95,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80),
+ (96,'2022-10-09 15:29:41','2022-10-09 15:29:40',61,'Single',50.00,'USD',4,1,'civicrm_line_item',81),
+ (97,'2022-10-09 15:29:41','2022-10-09 15:29:40',111,'Single',50.00,'USD',4,1,'civicrm_line_item',82),
+ (98,'2022-10-09 15:29:41','2022-10-09 15:29:40',172,'Single',50.00,'USD',4,1,'civicrm_line_item',83),
+ (99,'2022-10-09 15:29:41','2022-10-09 15:29:40',20,'Single',50.00,'USD',4,1,'civicrm_line_item',84),
+ (100,'2022-10-09 15:29:41','2022-10-09 15:29:40',114,'Single',50.00,'USD',4,1,'civicrm_line_item',85),
+ (101,'2022-10-09 15:29:41','2022-10-09 15:29:40',194,'Single',50.00,'USD',4,1,'civicrm_line_item',86),
+ (102,'2022-10-09 15:29:41','2022-10-09 15:29:40',153,'Single',50.00,'USD',4,1,'civicrm_line_item',87),
+ (103,'2022-10-09 15:29:41','2022-10-09 15:29:40',2,'Single',50.00,'USD',4,1,'civicrm_line_item',88),
+ (104,'2022-10-09 15:29:41','2022-10-09 15:29:40',58,'Single',50.00,'USD',4,1,'civicrm_line_item',89),
+ (105,'2022-10-09 15:29:41','2022-10-09 15:29:40',56,'Single',50.00,'USD',4,1,'civicrm_line_item',90),
+ (106,'2022-10-09 15:29:41','2022-10-09 15:29:40',125,'Single',50.00,'USD',4,1,'civicrm_line_item',91),
+ (107,'2022-10-09 15:29:41','2022-10-09 15:29:40',99,'Single',50.00,'USD',4,1,'civicrm_line_item',92),
+ (108,'2022-10-09 15:29:41','2022-10-09 15:29:40',6,'Single',50.00,'USD',4,1,'civicrm_line_item',93),
+ (109,'2022-10-09 15:29:41','2022-10-09 15:29:40',145,'Single',50.00,'USD',4,1,'civicrm_line_item',94),
+ (110,'2022-10-09 15:29:41','2022-10-09 15:29:40',160,'Single',50.00,'USD',4,1,'civicrm_line_item',95),
+ (111,'2022-10-09 15:29:41','2022-10-09 15:29:40',21,'Single',50.00,'USD',4,1,'civicrm_line_item',96);
 /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -3951,117 +3870,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,'2012-10-10 07:32:55',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL),
- (2,NULL,6,'2020-07-10 07:32:55',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (3,NULL,6,'2016-09-14 18:32:55',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL),
- (4,NULL,6,'2020-07-10 07:32:55',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL),
- (5,NULL,6,'2020-07-10 07:32:55',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (6,NULL,6,'2022-07-17 06:50:55',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL),
- (7,NULL,6,'2022-10-08 07:32:55',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL),
- (8,NULL,6,'2022-02-15 15:43:55',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (9,NULL,6,'2021-11-10 07:32:55',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (10,NULL,6,'2018-05-18 09:32:55',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (11,NULL,6,'2022-10-09 03:32:55',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (12,NULL,6,'2021-07-09 20:59:35',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (13,NULL,6,'2022-07-10 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (14,NULL,6,'2022-08-10 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (15,NULL,6,'2021-07-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (16,NULL,6,'2021-08-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (17,NULL,6,'2021-09-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (18,NULL,6,'2021-10-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (19,NULL,6,'2021-11-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (20,NULL,6,'2021-12-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (21,NULL,6,'2022-01-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (22,NULL,6,'2022-02-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (23,NULL,6,'2022-03-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (24,NULL,6,'2022-04-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (25,NULL,6,'2022-05-10 07:32:55',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (26,NULL,6,'2022-02-10 07:32:55',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (27,NULL,6,'2022-03-10 07:32:55',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (28,NULL,6,'2022-04-10 07:32:55',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (29,NULL,6,'2022-05-10 07:32:55',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (30,NULL,6,'2022-06-10 07:32:55',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (31,NULL,6,'2022-09-10 07:32:55',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (32,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'92838f5d8ebe9d94',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (33,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'b9ddb0cd34a54341',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (34,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'4361d49e662c1cf9',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (35,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'8642002dda99d38c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (36,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'b3e4ddca6f1e863b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (37,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'100a5eaa0bf94166',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (38,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'d2db796b6aef25b4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (39,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'e74688fc7c9977a1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (40,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'c743f0e617c1d205',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (41,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'c83f61825e6f66d0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (42,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'f345bd6ac5e98fa3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (43,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'2c131e0cb5b3ffa2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (44,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'3c56c4564b29ef53',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (45,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'1bbd55cc7ddf1a01',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (46,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'ef909a5d959408a3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (47,NULL,6,'2022-10-10 07:32:55',100.00,NULL,NULL,'USD',1,'b675d0a6d10c67bf',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (48,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'99bc3e45562483a9',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (49,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'150c315152476e30',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (50,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'0573763e28583e79',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (51,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'72cc4062de6b9878',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (52,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'1c6bf23f58d27fba',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (53,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'9456cb58f321b74b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (54,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'c8249e5447b6c529',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (55,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'804a0704792ad35a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (56,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'009a8fb7c96d523d',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (57,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'4208cab8920a1ae4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (58,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'808959426a422d2f',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (59,NULL,6,'2022-10-10 07:32:55',50.00,NULL,NULL,'USD',1,'36d873665eae9b42',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (60,NULL,6,'2022-10-10 07:32:55',1200.00,NULL,NULL,'USD',1,'98a733d2e0cb946e',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (61,NULL,6,'2022-10-10 07:32:55',1200.00,NULL,NULL,'USD',1,'0b2d295e7f414cc4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (62,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'e81341fba84718a0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (63,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'6f63717235d81732',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (64,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'dc76c7f88835cd42',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (65,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'6df628c18d631fd9',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (66,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'60f998e7cc7caf07',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (67,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'a08e472949a547ae',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (68,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'2debe1ac2aa6911b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (69,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'95635b05a708d63e',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (70,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'8abe6b141dc845a0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (71,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'5ed3706afada6845',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (72,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'7ec72c7adcb20bb6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (73,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'dfb80eb9824dab28',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (74,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'582d8539dfe79be8',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (75,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'a09ad39c5d7ba252',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (76,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'daf242502329637b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (77,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'7d3812139e537652',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (78,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'7f9e0f1d2f38cdca',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (79,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'24b969d9c426e195',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (80,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'39d929ad70dbbb15',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (81,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'39e72709673bfcd3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (82,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'3fa5649932f70a53',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (83,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'c84653ba23aebc16',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (84,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'9dc59632b7147e9a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (85,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'bde12c50b967813b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (86,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'409cd013544f313c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (87,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'f98ccba169c15778',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (88,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'26c5bc64a7d570a6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (89,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'5af169c399240886',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (90,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'c8e0e8d877714d35',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (91,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'f99c4912d1838260',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (92,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'3d00819536d635cb',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (93,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'a5d924057370a61e',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (94,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'0fbdcace67c4ff8d',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (95,NULL,6,'2022-10-10 07:32:56',800.00,NULL,NULL,'USD',1,'d67e329b505d7aa0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (96,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'13c645d9954e796a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (97,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'d70a1dec1db7094c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (98,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'da8cb36ebcb21077',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (99,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'23fe6138d27dc4ba',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (100,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'bb598a78a9c3a362',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (101,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'b24caae0eb13d81c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (102,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'3cd093cef54afcff',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (103,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'30829d3b3e49b104',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (104,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'810cd865d177e2d2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (105,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'e5af443a602f1c77',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (106,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'50cd4a6b85652561',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (107,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'e258e0db4c2290e0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (108,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'ec7f5ddf2d743244',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (109,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'f0b3a5e03ac2842f',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (110,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'7dbcc2ff526d8b60',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
- (111,NULL,6,'2022-10-10 07:32:56',50.00,NULL,NULL,'USD',1,'5aa0ee149ff38a66',NULL,1,NULL,1,NULL,NULL,NULL,NULL);
+ (1,NULL,6,'2012-10-09 15:29:40',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL),
+ (2,NULL,6,'2020-07-09 15:29:40',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (3,NULL,6,'2016-09-14 02:29:40',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL),
+ (4,NULL,6,'2020-07-09 15:29:40',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL),
+ (5,NULL,6,'2020-07-09 15:29:40',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (6,NULL,6,'2022-07-16 14:47:40',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL),
+ (7,NULL,6,'2022-10-07 15:29:40',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL),
+ (8,NULL,6,'2022-02-14 23:40:40',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (9,NULL,6,'2021-11-09 15:29:40',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (10,NULL,6,'2018-05-17 17:29:40',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (11,NULL,6,'2022-10-08 11:29:40',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (12,NULL,6,'2021-07-09 04:56:20',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (13,NULL,6,'2022-07-09 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (14,NULL,6,'2022-08-09 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (15,NULL,6,'2021-07-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (16,NULL,6,'2021-08-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (17,NULL,6,'2021-09-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (18,NULL,6,'2021-10-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (19,NULL,6,'2021-11-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (20,NULL,6,'2021-12-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (21,NULL,6,'2022-01-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (22,NULL,6,'2022-02-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (23,NULL,6,'2022-03-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (24,NULL,6,'2022-04-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (25,NULL,6,'2022-05-09 15:29:40',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (26,NULL,6,'2022-02-09 15:29:40',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (27,NULL,6,'2022-03-09 15:29:40',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (28,NULL,6,'2022-04-09 15:29:40',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (29,NULL,6,'2022-05-09 15:29:40',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (30,NULL,6,'2022-06-09 15:29:40',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (31,NULL,6,'2022-09-09 15:29:40',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (32,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'d11026cc4ebbc6ad',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (33,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'d691e5f17c2785ff',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (34,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'ecc33345af7b0c68',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (35,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'c744b166b6dd40ce',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (36,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'f04deab8c26183fe',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (37,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'d4b54c53d136111e',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (38,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'6950b0d4a03731e6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (39,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'babd3da964521c69',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (40,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'2d01ccf3e4122cb1',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (41,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'b8c30bf0cb53f861',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (42,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'3af865280a167ba7',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (43,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'ceb53089f9ec8e2b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (44,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'0e04efc2867964b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (45,NULL,6,'2022-10-09 15:29:40',100.00,NULL,NULL,'USD',1,'8dbcfe585b7ec35c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (46,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'33417791b8608ceb',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (47,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'83aeb72cdc61cd69',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (48,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d7d00b6e92d32a2b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (49,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'fd1db30a77f2020c',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (50,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'73f2ebe9fd0fb063',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (51,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d925d893f34f4240',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (52,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'5804663af2565c66',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (53,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'e7ecc9d7036c1a57',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (54,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'ceea7cbf7156a1a6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (55,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'9731f65ec2dd3764',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (56,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'b838531076f1f3b9',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (57,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d01160bd7be68906',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (58,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'221a0532a800a288',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (59,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'38e5c06d8add4c4f',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (60,NULL,6,'2022-10-09 15:29:40',1200.00,NULL,NULL,'USD',1,'7d161a4772465b96',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (61,NULL,6,'2022-10-09 15:29:40',1200.00,NULL,NULL,'USD',1,'be4ea04fcd004f46',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (62,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'a971e415c7244827',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (63,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'7a3edf9a93562951',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (64,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'7a359c403aee697d',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (65,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'0297b888fcb01713',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (66,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'12852efc6e44bc1d',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (67,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'70d048b3272887a8',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (68,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d9fdde466edd78c5',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (69,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'3d40b604f0693c45',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (70,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'27c17101b8d20339',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (71,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'1913d0ea32adb3ec',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (72,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'4731ce291d52ad20',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (73,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d5af5139b1dbdfeb',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (74,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'7b325fdf487b11c8',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (75,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'1f2d864624a92425',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (76,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'976b2336355527c9',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (77,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'a1a0c684f8a6d193',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (78,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'4e8df32744e0a13b',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (79,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'53703daeaa36e6c4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (80,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'3f69d93340c79d24',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (81,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'d8b84f77c8f9eb4a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (82,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'261c7c8c39051501',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (83,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'e3c50f2cb4c324b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (84,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'db7de8428d5d9bb7',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (85,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'ec21e2e902d1c4b0',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (86,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'215b7931739e2b35',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (87,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'15a9aa45f3a30cb8',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (88,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'7ef32694adff2b5a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (89,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'94b3d5a32815968a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (90,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'d4f2caa2b57878e6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (91,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'3cc2f8203d5bb5f3',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (92,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'b3d97b36b7403f61',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (93,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'756777a45c0632b2',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (94,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'97f04963d9b62787',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (95,NULL,6,'2022-10-09 15:29:40',800.00,NULL,NULL,'USD',1,'5207f351cda4ea69',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (96,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'176ef3b71a78b667',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (97,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'7f5d54b11871323a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (98,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'b4498d1525e57531',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (99,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'fd96ac746dfb4da4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (100,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d374803d68ca93e4',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (101,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'8b9a469d766c106a',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (102,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'f9c501195c3b4e60',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (103,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'a3f0861806fae5b6',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (104,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'19e8a2746f1ebfef',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (105,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'b75dde44a6928d08',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (106,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'d28ad40f264aad99',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (107,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'b8bd31cec5c9aa18',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (108,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'ce7234f2c7edc53f',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (109,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'b5bd2332d219f091',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (110,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'91324173de21a885',NULL,1,NULL,1,NULL,NULL,NULL,NULL),
+ (111,NULL,6,'2022-10-09 15:29:40',50.00,NULL,NULL,'USD',1,'4431368a67fe6777',NULL,1,NULL,1,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4100,89 +4019,89 @@ 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,165,'Added',NULL,NULL),
- (2,2,26,'Added',NULL,NULL),
- (3,2,5,'Added',NULL,NULL),
- (4,2,182,'Added',NULL,NULL),
- (5,2,154,'Added',NULL,NULL),
- (6,2,170,'Added',NULL,NULL),
- (7,2,75,'Added',NULL,NULL),
- (8,2,153,'Added',NULL,NULL),
- (9,2,185,'Added',NULL,NULL),
- (10,2,27,'Added',NULL,NULL),
- (11,2,106,'Added',NULL,NULL),
- (12,2,161,'Added',NULL,NULL),
- (13,2,133,'Added',NULL,NULL),
- (14,2,3,'Added',NULL,NULL),
- (15,2,129,'Added',NULL,NULL),
- (16,2,115,'Added',NULL,NULL),
- (17,2,188,'Added',NULL,NULL),
- (18,2,65,'Added',NULL,NULL),
- (19,2,36,'Added',NULL,NULL),
- (20,2,108,'Added',NULL,NULL),
- (21,2,24,'Added',NULL,NULL),
- (22,2,59,'Added',NULL,NULL),
- (23,2,7,'Added',NULL,NULL),
- (24,2,189,'Added',NULL,NULL),
- (25,2,90,'Added',NULL,NULL),
- (26,2,186,'Added',NULL,NULL),
- (27,2,149,'Added',NULL,NULL),
- (28,2,175,'Added',NULL,NULL),
- (29,2,22,'Added',NULL,NULL),
- (30,2,16,'Added',NULL,NULL),
- (31,2,181,'Added',NULL,NULL),
- (32,2,114,'Added',NULL,NULL),
- (33,2,11,'Added',NULL,NULL),
- (34,2,56,'Added',NULL,NULL),
- (35,2,71,'Added',NULL,NULL),
- (36,2,196,'Added',NULL,NULL),
- (37,2,201,'Added',NULL,NULL),
- (38,2,8,'Added',NULL,NULL),
- (39,2,112,'Added',NULL,NULL),
- (40,2,33,'Added',NULL,NULL),
- (41,2,197,'Added',NULL,NULL),
- (42,2,10,'Added',NULL,NULL),
- (43,2,177,'Added',NULL,NULL),
- (44,2,105,'Added',NULL,NULL),
- (45,2,13,'Added',NULL,NULL),
- (46,2,52,'Added',NULL,NULL),
- (47,2,148,'Added',NULL,NULL),
- (48,2,192,'Added',NULL,NULL),
- (49,2,60,'Added',NULL,NULL),
- (50,2,87,'Added',NULL,NULL),
- (51,2,118,'Added',NULL,NULL),
- (52,2,38,'Added',NULL,NULL),
- (53,2,45,'Added',NULL,NULL),
- (54,2,156,'Added',NULL,NULL),
- (55,2,102,'Added',NULL,NULL),
- (56,2,25,'Added',NULL,NULL),
- (57,2,101,'Added',NULL,NULL),
- (58,2,135,'Added',NULL,NULL),
- (59,2,42,'Added',NULL,NULL),
- (60,2,12,'Added',NULL,NULL),
- (61,3,85,'Added',NULL,NULL),
- (62,3,136,'Added',NULL,NULL),
- (63,3,83,'Added',NULL,NULL),
- (64,3,79,'Added',NULL,NULL),
- (65,3,151,'Added',NULL,NULL),
- (66,3,140,'Added',NULL,NULL),
- (67,3,4,'Added',NULL,NULL),
- (68,3,53,'Added',NULL,NULL),
- (69,3,160,'Added',NULL,NULL),
- (70,3,130,'Added',NULL,NULL),
- (71,3,142,'Added',NULL,NULL),
- (72,3,94,'Added',NULL,NULL),
- (73,3,62,'Added',NULL,NULL),
- (74,3,55,'Added',NULL,NULL),
- (75,3,174,'Added',NULL,NULL),
- (76,4,165,'Added',NULL,NULL),
- (77,4,153,'Added',NULL,NULL),
- (78,4,129,'Added',NULL,NULL),
- (79,4,59,'Added',NULL,NULL),
- (80,4,22,'Added',NULL,NULL),
- (81,4,196,'Added',NULL,NULL),
- (82,4,177,'Added',NULL,NULL),
- (83,4,87,'Added',NULL,NULL),
+ (1,2,31,'Added',NULL,NULL),
+ (2,2,177,'Added',NULL,NULL),
+ (3,2,109,'Added',NULL,NULL),
+ (4,2,35,'Added',NULL,NULL),
+ (5,2,171,'Added',NULL,NULL),
+ (6,2,87,'Added',NULL,NULL),
+ (7,2,154,'Added',NULL,NULL),
+ (8,2,151,'Added',NULL,NULL),
+ (9,2,74,'Added',NULL,NULL),
+ (10,2,92,'Added',NULL,NULL),
+ (11,2,96,'Added',NULL,NULL),
+ (12,2,12,'Added',NULL,NULL),
+ (13,2,113,'Added',NULL,NULL),
+ (14,2,32,'Added',NULL,NULL),
+ (15,2,85,'Added',NULL,NULL),
+ (16,2,132,'Added',NULL,NULL),
+ (17,2,195,'Added',NULL,NULL),
+ (18,2,115,'Added',NULL,NULL),
+ (19,2,112,'Added',NULL,NULL),
+ (20,2,82,'Added',NULL,NULL),
+ (21,2,114,'Added',NULL,NULL),
+ (22,2,20,'Added',NULL,NULL),
+ (23,2,156,'Added',NULL,NULL),
+ (24,2,155,'Added',NULL,NULL),
+ (25,2,5,'Added',NULL,NULL),
+ (26,2,42,'Added',NULL,NULL),
+ (27,2,164,'Added',NULL,NULL),
+ (28,2,71,'Added',NULL,NULL),
+ (29,2,16,'Added',NULL,NULL),
+ (30,2,128,'Added',NULL,NULL),
+ (31,2,66,'Added',NULL,NULL),
+ (32,2,108,'Added',NULL,NULL),
+ (33,2,15,'Added',NULL,NULL),
+ (34,2,167,'Added',NULL,NULL),
+ (35,2,129,'Added',NULL,NULL),
+ (36,2,23,'Added',NULL,NULL),
+ (37,2,6,'Added',NULL,NULL),
+ (38,2,13,'Added',NULL,NULL),
+ (39,2,121,'Added',NULL,NULL),
+ (40,2,17,'Added',NULL,NULL),
+ (41,2,191,'Added',NULL,NULL),
+ (42,2,162,'Added',NULL,NULL),
+ (43,2,196,'Added',NULL,NULL),
+ (44,2,81,'Added',NULL,NULL),
+ (45,2,72,'Added',NULL,NULL),
+ (46,2,63,'Added',NULL,NULL),
+ (47,2,169,'Added',NULL,NULL),
+ (48,2,131,'Added',NULL,NULL),
+ (49,2,178,'Added',NULL,NULL),
+ (50,2,147,'Added',NULL,NULL),
+ (51,2,140,'Added',NULL,NULL),
+ (52,2,27,'Added',NULL,NULL),
+ (53,2,44,'Added',NULL,NULL),
+ (54,2,73,'Added',NULL,NULL),
+ (55,2,103,'Added',NULL,NULL),
+ (56,2,163,'Added',NULL,NULL),
+ (57,2,138,'Added',NULL,NULL),
+ (58,2,47,'Added',NULL,NULL),
+ (59,2,184,'Added',NULL,NULL),
+ (60,2,137,'Added',NULL,NULL),
+ (61,3,98,'Added',NULL,NULL),
+ (62,3,111,'Added',NULL,NULL),
+ (63,3,7,'Added',NULL,NULL),
+ (64,3,104,'Added',NULL,NULL),
+ (65,3,194,'Added',NULL,NULL),
+ (66,3,14,'Added',NULL,NULL),
+ (67,3,46,'Added',NULL,NULL),
+ (68,3,165,'Added',NULL,NULL),
+ (69,3,59,'Added',NULL,NULL),
+ (70,3,136,'Added',NULL,NULL),
+ (71,3,55,'Added',NULL,NULL),
+ (72,3,39,'Added',NULL,NULL),
+ (73,3,126,'Added',NULL,NULL),
+ (74,3,41,'Added',NULL,NULL),
+ (75,3,76,'Added',NULL,NULL),
+ (76,4,31,'Added',NULL,NULL),
+ (77,4,151,'Added',NULL,NULL),
+ (78,4,85,'Added',NULL,NULL),
+ (79,4,20,'Added',NULL,NULL),
+ (80,4,16,'Added',NULL,NULL),
+ (81,4,23,'Added',NULL,NULL),
+ (82,4,196,'Added',NULL,NULL),
+ (83,4,147,'Added',NULL,NULL),
  (84,4,202,'Added',NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */;
 UNLOCK TABLES;
@@ -4306,77 +4225,77 @@ INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contributio
  (38,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
  (39,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
  (40,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (41,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (42,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (43,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (44,'civicrm_membership',25,56,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (45,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (46,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (47,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
- (48,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (49,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (50,'civicrm_membership',5,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (51,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (52,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (53,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (54,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (55,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (56,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
- (57,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (41,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
+ (42,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
+ (43,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
+ (44,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
+ (45,'civicrm_membership',30,61,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL),
+ (46,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (47,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (48,'civicrm_membership',5,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (49,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (50,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (51,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (52,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (53,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (54,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (55,'civicrm_membership',20,51,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (56,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
+ (57,'civicrm_membership',25,56,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
  (58,'civicrm_membership',26,57,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
  (59,'civicrm_membership',28,59,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL),
  (60,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL,NULL),
  (61,'civicrm_membership',22,53,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL,NULL),
- (63,'civicrm_participant',3,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (64,'civicrm_participant',6,94,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (65,'civicrm_participant',9,75,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (66,'civicrm_participant',12,107,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (67,'civicrm_participant',15,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (68,'civicrm_participant',18,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (69,'civicrm_participant',21,92,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (70,'civicrm_participant',24,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (71,'civicrm_participant',25,104,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (72,'civicrm_participant',28,105,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (73,'civicrm_participant',31,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (74,'civicrm_participant',34,110,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (75,'civicrm_participant',37,103,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (76,'civicrm_participant',40,81,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (77,'civicrm_participant',43,101,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (78,'civicrm_participant',46,67,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (79,'civicrm_participant',49,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (80,'civicrm_participant',50,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
- (81,'civicrm_participant',1,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (82,'civicrm_participant',4,79,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (83,'civicrm_participant',7,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (84,'civicrm_participant',10,77,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (85,'civicrm_participant',13,98,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (86,'civicrm_participant',16,68,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (87,'civicrm_participant',19,106,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (88,'civicrm_participant',22,74,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (89,'civicrm_participant',26,70,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (90,'civicrm_participant',29,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (91,'civicrm_participant',32,73,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (92,'civicrm_participant',35,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (93,'civicrm_participant',38,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (94,'civicrm_participant',41,108,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (95,'civicrm_participant',44,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (96,'civicrm_participant',47,64,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
- (97,'civicrm_participant',2,100,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (98,'civicrm_participant',5,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (99,'civicrm_participant',8,99,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (100,'civicrm_participant',11,111,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (101,'civicrm_participant',14,66,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (102,'civicrm_participant',17,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (103,'civicrm_participant',20,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (104,'civicrm_participant',23,78,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (105,'civicrm_participant',27,97,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (106,'civicrm_participant',30,90,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (107,'civicrm_participant',33,102,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (108,'civicrm_participant',36,93,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (109,'civicrm_participant',39,112,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (110,'civicrm_participant',42,109,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (111,'civicrm_participant',45,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
- (112,'civicrm_participant',48,65,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL);
+ (63,'civicrm_participant',3,65,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (64,'civicrm_participant',6,68,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (65,'civicrm_participant',9,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (66,'civicrm_participant',12,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (67,'civicrm_participant',15,77,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (68,'civicrm_participant',18,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (69,'civicrm_participant',21,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (70,'civicrm_participant',24,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (71,'civicrm_participant',25,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (72,'civicrm_participant',28,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (73,'civicrm_participant',31,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (74,'civicrm_participant',34,96,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (75,'civicrm_participant',37,99,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (76,'civicrm_participant',40,102,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (77,'civicrm_participant',43,105,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (78,'civicrm_participant',46,108,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (79,'civicrm_participant',49,111,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (80,'civicrm_participant',50,112,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL,NULL),
+ (81,'civicrm_participant',1,63,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (82,'civicrm_participant',4,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (83,'civicrm_participant',7,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (84,'civicrm_participant',10,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (85,'civicrm_participant',13,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (86,'civicrm_participant',16,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (87,'civicrm_participant',19,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (88,'civicrm_participant',22,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (89,'civicrm_participant',26,88,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (90,'civicrm_participant',29,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (91,'civicrm_participant',32,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (92,'civicrm_participant',35,97,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (93,'civicrm_participant',38,100,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (94,'civicrm_participant',41,103,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (95,'civicrm_participant',44,106,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (96,'civicrm_participant',47,109,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL,NULL),
+ (97,'civicrm_participant',2,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (98,'civicrm_participant',5,67,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (99,'civicrm_participant',8,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (100,'civicrm_participant',11,73,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (101,'civicrm_participant',14,76,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (102,'civicrm_participant',17,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (103,'civicrm_participant',20,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (104,'civicrm_participant',23,85,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (105,'civicrm_participant',27,89,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (106,'civicrm_participant',30,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (107,'civicrm_participant',33,95,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (108,'civicrm_participant',36,98,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (109,'civicrm_participant',39,101,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (110,'civicrm_participant',42,104,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (111,'civicrm_participant',45,107,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL),
+ (112,'civicrm_participant',48,110,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4387,9 +4306,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,171,179,168,NULL,NULL,NULL,NULL,NULL),
- (2,172,180,169,NULL,NULL,NULL,NULL,NULL),
- (3,173,181,170,NULL,NULL,NULL,NULL,NULL);
+ (1,187,175,166,NULL,NULL,NULL,NULL,NULL),
+ (2,188,176,167,NULL,NULL,NULL,NULL,NULL),
+ (3,189,177,168,NULL,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4415,7 +4334,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,'2022-10-10 07:32:46');
+ (1,'civicrm_contact',202,'civicrm_contact,202',202,'2022-10-09 15:29:39');
 /*!40000 ALTER TABLE `civicrm_log` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4834,36 +4753,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,58,1,'2022-10-10','2022-10-10','2024-10-09','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (2,60,2,'2022-10-09','2022-10-09','2023-10-08','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (3,176,1,'2022-10-08','2022-10-08','2024-10-07','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (4,27,2,'2022-10-07','2022-10-07','2023-10-06','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (5,174,2,'2021-10-06','2021-10-06','2022-10-05','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (6,166,2,'2022-10-05','2022-10-05','2023-10-04','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (7,46,1,'2022-10-04','2022-10-04','2024-10-03','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (8,198,2,'2022-10-03','2022-10-03','2023-10-02','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (9,31,1,'2022-10-02','2022-10-02','2024-10-01','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (10,83,1,'2020-07-30','2020-07-30','2022-07-29','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (11,140,3,'2022-09-30','2022-09-30',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (12,123,2,'2022-09-29','2022-09-29','2023-09-28','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (13,131,1,'2022-09-28','2022-09-28','2024-09-27','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (14,85,2,'2022-09-27','2022-09-27','2023-09-26','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (15,159,1,'2020-06-20','2020-06-20','2022-06-19','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (16,43,2,'2022-09-25','2022-09-25','2023-09-24','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (17,49,1,'2022-09-24','2022-09-24','2024-09-23','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (18,109,2,'2022-09-23','2022-09-23','2023-09-22','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (19,61,1,'2022-09-22','2022-09-22','2024-09-21','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (20,139,1,'2020-05-11','2020-05-11','2022-05-10','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (21,130,1,'2022-09-20','2022-09-20','2024-09-19','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (22,138,3,'2022-09-19','2022-09-19',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (23,197,1,'2022-09-18','2022-09-18','2024-09-17','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (24,188,2,'2022-09-17','2022-09-17','2023-09-16','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (25,11,1,'2020-04-01','2020-04-01','2022-03-31','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (26,170,2,'2022-09-15','2022-09-15','2023-09-14','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (27,71,1,'2022-09-14','2022-09-14','2024-09-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (28,47,2,'2022-09-13','2022-09-13','2023-09-12','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (29,97,1,'2022-09-12','2022-09-12','2024-09-11','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
- (30,120,1,'2020-02-21','2020-02-21','2022-02-20','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL);
+ (1,20,1,'2022-10-09','2022-10-09','2024-10-08','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (2,42,2,'2022-10-08','2022-10-08','2023-10-07','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (3,182,1,'2022-10-07','2022-10-07','2024-10-06','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (4,68,2,'2022-10-06','2022-10-06','2023-10-05','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (5,196,2,'2021-10-05','2021-10-05','2022-10-04','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (6,200,2,'2022-10-04','2022-10-04','2023-10-03','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (7,13,1,'2022-10-03','2022-10-03','2024-10-02','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (8,120,2,'2022-10-02','2022-10-02','2023-10-01','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (9,82,1,'2022-10-01','2022-10-01','2024-09-30','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (10,38,1,'2020-07-29','2020-07-29','2022-07-28','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (11,109,3,'2022-09-29','2022-09-29',NULL,'Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (12,65,2,'2022-09-28','2022-09-28','2023-09-27','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (13,17,1,'2022-09-27','2022-09-27','2024-09-26','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (14,142,2,'2022-09-26','2022-09-26','2023-09-25','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (15,5,1,'2020-06-19','2020-06-19','2022-06-18','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (16,94,2,'2022-09-24','2022-09-24','2023-09-23','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (17,98,1,'2022-09-23','2022-09-23','2024-09-22','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (18,70,2,'2022-09-22','2022-09-22','2023-09-21','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (19,164,1,'2022-09-21','2022-09-21','2024-09-20','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (20,93,2,'2021-09-20','2021-09-20','2022-09-19','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (21,121,1,'2022-09-19','2022-09-19','2024-09-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (22,90,3,'2022-09-18','2022-09-18',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (23,174,1,'2022-09-17','2022-09-17','2024-09-16','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (24,9,2,'2022-09-16','2022-09-16','2023-09-15','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (25,39,2,'2021-09-15','2021-09-15','2022-09-14','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (26,27,2,'2022-09-14','2022-09-14','2023-09-13','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (27,137,1,'2022-09-13','2022-09-13','2024-09-12','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (28,129,2,'2022-09-12','2022-09-12','2023-09-11','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (29,167,1,'2022-09-11','2022-09-11','2024-09-10','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL),
+ (30,198,1,'2020-02-20','2020-02-20','2022-02-19','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4885,36 +4804,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,25,3,'2020-04-01','2022-03-31',11,'2022-10-10',1,NULL),
- (2,4,1,'2022-10-07','2023-10-06',27,'2022-10-10',2,NULL),
- (3,9,1,'2022-10-02','2024-10-01',31,'2022-10-10',1,NULL),
- (4,16,1,'2022-09-25','2023-09-24',43,'2022-10-10',2,NULL),
- (5,7,1,'2022-10-04','2024-10-03',46,'2022-10-10',1,NULL),
- (6,28,1,'2022-09-13','2023-09-12',47,'2022-10-10',2,NULL),
- (7,17,1,'2022-09-24','2024-09-23',49,'2022-10-10',1,NULL),
- (8,1,1,'2022-10-10','2024-10-09',58,'2022-10-10',1,NULL),
- (9,2,1,'2022-10-09','2023-10-08',60,'2022-10-10',2,NULL),
- (10,19,1,'2022-09-22','2024-09-21',61,'2022-10-10',1,NULL),
- (11,27,1,'2022-09-14','2024-09-13',71,'2022-10-10',1,NULL),
- (12,10,3,'2020-07-30','2022-07-29',83,'2022-10-10',1,NULL),
- (13,14,1,'2022-09-27','2023-09-26',85,'2022-10-10',2,NULL),
- (14,29,1,'2022-09-12','2024-09-11',97,'2022-10-10',1,NULL),
- (15,18,1,'2022-09-23','2023-09-22',109,'2022-10-10',2,NULL),
- (16,30,3,'2020-02-21','2022-02-20',120,'2022-10-10',1,NULL),
- (17,12,1,'2022-09-29','2023-09-28',123,'2022-10-10',2,NULL),
- (18,21,1,'2022-09-20','2024-09-19',130,'2022-10-10',1,NULL),
- (19,13,1,'2022-09-28','2024-09-27',131,'2022-10-10',1,NULL),
- (20,22,1,'2022-09-19',NULL,138,'2022-10-10',3,NULL),
- (21,20,3,'2020-05-11','2022-05-10',139,'2022-10-10',1,NULL),
- (22,11,1,'2022-09-30',NULL,140,'2022-10-10',3,NULL),
- (23,15,3,'2020-06-20','2022-06-19',159,'2022-10-10',1,NULL),
- (24,6,1,'2022-10-05','2023-10-04',166,'2022-10-10',2,NULL),
- (25,26,1,'2022-09-15','2023-09-14',170,'2022-10-10',2,NULL),
- (26,5,4,'2021-10-06','2022-10-05',174,'2022-10-10',2,NULL),
- (27,3,1,'2022-10-08','2024-10-07',176,'2022-10-10',1,NULL),
- (28,24,1,'2022-09-17','2023-09-16',188,'2022-10-10',2,NULL),
- (29,23,1,'2022-09-18','2024-09-17',197,'2022-10-10',1,NULL),
- (30,8,1,'2022-10-03','2023-10-02',198,'2022-10-10',2,NULL);
+ (1,15,3,'2020-06-19','2022-06-18',5,'2022-10-09',1,NULL),
+ (2,24,1,'2022-09-16','2023-09-15',9,'2022-10-09',2,NULL),
+ (3,7,1,'2022-10-03','2024-10-02',13,'2022-10-09',1,NULL),
+ (4,13,1,'2022-09-27','2024-09-26',17,'2022-10-09',1,NULL),
+ (5,1,1,'2022-10-09','2024-10-08',20,'2022-10-09',1,NULL),
+ (6,26,1,'2022-09-14','2023-09-13',27,'2022-10-09',2,NULL),
+ (7,10,3,'2020-07-29','2022-07-28',38,'2022-10-09',1,NULL),
+ (8,25,4,'2021-09-15','2022-09-14',39,'2022-10-09',2,NULL),
+ (9,2,1,'2022-10-08','2023-10-07',42,'2022-10-09',2,NULL),
+ (10,12,1,'2022-09-28','2023-09-27',65,'2022-10-09',2,NULL),
+ (11,4,1,'2022-10-06','2023-10-05',68,'2022-10-09',2,NULL),
+ (12,18,1,'2022-09-22','2023-09-21',70,'2022-10-09',2,NULL),
+ (13,9,1,'2022-10-01','2024-09-30',82,'2022-10-09',1,NULL),
+ (14,22,1,'2022-09-18',NULL,90,'2022-10-09',3,NULL),
+ (15,20,4,'2021-09-20','2022-09-19',93,'2022-10-09',2,NULL),
+ (16,16,1,'2022-09-24','2023-09-23',94,'2022-10-09',2,NULL),
+ (17,17,1,'2022-09-23','2024-09-22',98,'2022-10-09',1,NULL),
+ (18,11,1,'2022-09-29',NULL,109,'2022-10-09',3,NULL),
+ (19,8,1,'2022-10-02','2023-10-01',120,'2022-10-09',2,NULL),
+ (20,21,1,'2022-09-19','2024-09-18',121,'2022-10-09',1,NULL),
+ (21,28,1,'2022-09-12','2023-09-11',129,'2022-10-09',2,NULL),
+ (22,27,1,'2022-09-13','2024-09-12',137,'2022-10-09',1,NULL),
+ (23,14,1,'2022-09-26','2023-09-25',142,'2022-10-09',2,NULL),
+ (24,19,1,'2022-09-21','2024-09-20',164,'2022-10-09',1,NULL),
+ (25,29,1,'2022-09-11','2024-09-10',167,'2022-10-09',1,NULL),
+ (26,23,1,'2022-09-17','2024-09-16',174,'2022-10-09',1,NULL),
+ (27,3,1,'2022-10-07','2024-10-06',182,'2022-10-09',1,NULL),
+ (28,5,4,'2021-10-05','2022-10-04',196,'2022-10-09',2,NULL),
+ (29,30,3,'2020-02-20','2022-02-19',198,'2022-10-09',1,NULL),
+ (30,6,1,'2022-10-04','2023-10-03',200,'2022-10-09',2,NULL);
 /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -4925,36 +4844,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
- (8,1,32),
- (9,2,33),
- (27,3,34),
- (2,4,35),
- (26,5,36),
- (24,6,37),
- (5,7,38),
- (30,8,39),
- (3,9,40),
- (12,10,41),
- (22,11,42),
- (17,12,43),
- (19,13,44),
- (13,14,45),
- (23,15,46),
- (4,16,47),
- (7,17,48),
- (15,18,49),
- (10,19,50),
- (21,20,51),
- (18,21,52),
- (20,22,53),
- (29,23,54),
- (28,24,55),
- (1,25,56),
- (25,26,57),
- (11,27,58),
- (6,28,59),
- (14,29,60),
- (16,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;
 
@@ -4995,260 +4914,260 @@ 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/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:{}'),
- (2,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\";}'),
- (3,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:{}'),
- (4,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:{}'),
- (5,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:29:\"CRM_Contact_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:{}'),
- (6,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:29:\"CRM_Contact_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:{}'),
- (7,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:{}'),
- (8,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:{}'),
- (9,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:30:\"CRM_Activity_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:{}'),
- (10,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:28:\"CRM_Custom_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:{}'),
- (11,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:{}'),
- (12,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:{}'),
- (13,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:18:\"Administer CiviCRM\";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\";}'),
- (14,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:18:\"Administer CiviCRM\";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/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:18:\"Administer CiviCRM\";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/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:18:\"Administer CiviCRM\";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/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:18:\"Administer CiviCRM\";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:{}'),
- (18,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:18:\"Administer CiviCRM\";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:{}'),
- (19,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:18:\"Administer CiviCRM\";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:{}'),
- (20,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:18:\"Administer CiviCRM\";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:{}'),
- (21,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:18:\"Administer CiviCRM\";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:{}'),
- (22,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:18:\"Administer CiviCRM\";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:{}'),
- (23,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:18:\"Administer CiviCRM\";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\";}'),
- (24,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:18:\"Administer CiviCRM\";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:{}'),
- (25,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:18:\"Administer CiviCRM\";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:{}'),
- (26,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:18:\"Administer CiviCRM\";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:{}'),
- (27,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:18:\"Administer CiviCRM\";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:{}'),
- (28,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:18:\"Administer CiviCRM\";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:{}'),
- (29,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:18:\"Administer CiviCRM\";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:{}'),
- (30,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:18:\"Administer CiviCRM\";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\";}'),
- (31,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:18:\"Administer CiviCRM\";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\";}'),
- (32,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:18:\"Administer CiviCRM\";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\";}'),
- (33,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:18:\"Administer CiviCRM\";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:{}'),
- (34,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:18:\"Administer CiviCRM\";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\";}'),
- (35,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:18:\"Administer CiviCRM\";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\";}'),
- (36,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:18:\"Administer CiviCRM\";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\";}'),
- (37,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:18:\"Administer CiviCRM\";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\";}'),
- (38,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:18:\"Administer CiviCRM\";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\";}'),
- (39,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:18:\"Administer CiviCRM\";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\";}'),
- (40,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:18:\"Administer CiviCRM\";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\";}'),
- (41,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:18:\"Administer CiviCRM\";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\";}'),
- (42,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:18:\"Administer CiviCRM\";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\";}'),
- (43,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:18:\"Administer CiviCRM\";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\";}'),
- (44,1,'civicrm/admin/setting/preferences/date',NULL,'View 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:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
- (45,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:18:\"Administer CiviCRM\";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\";}'),
- (46,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:18:\"Administer CiviCRM\";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\";}'),
- (47,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;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:18:\"Administer CiviCRM\";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,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),
- (48,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:18:\"Administer CiviCRM\";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\";}'),
- (49,1,'civicrm/admin/options/from_email_address',NULL,'From 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_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:18:\"Administer CiviCRM\";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\";}'),
- (50,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:18:\"Administer CiviCRM\";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\";}'),
- (51,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:18:\"Administer CiviCRM\";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\";}'),
- (52,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','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_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:18:\"Administer CiviCRM\";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\";}'),
- (53,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:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
- (54,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:18:\"Administer CiviCRM\";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\";}'),
- (55,1,'civicrm/admin/labelFormats',NULL,'Label 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:18:\"Administer CiviCRM\";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:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'),
- (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:18:\"Administer CiviCRM\";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/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:18:\"Administer CiviCRM\";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\";}'),
- (58,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:18:\"Administer CiviCRM\";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\";}'),
- (59,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:18:\"Administer CiviCRM\";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\";}'),
- (60,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:18:\"Administer CiviCRM\";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\";}'),
- (61,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:18:\"Administer CiviCRM\";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\";}'),
- (62,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:18:\"Administer CiviCRM\";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\";}'),
- (63,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:18:\"Administer CiviCRM\";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\";}'),
- (64,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:18:\"Administer CiviCRM\";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\";}'),
- (65,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:18:\"Administer CiviCRM\";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\";}'),
- (66,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:18:\"Administer CiviCRM\";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.\";}'),
- (67,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:18:\"Administer CiviCRM\";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\";}'),
- (68,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:18:\"Administer CiviCRM\";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\";}'),
- (69,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:18:\"Administer CiviCRM\";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\";}'),
- (70,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:18:\"Administer CiviCRM\";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\";}'),
- (71,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:18:\"Administer CiviCRM\";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:{}'),
- (72,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:18:\"Administer CiviCRM\";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\";}'),
- (73,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:18:\"Administer CiviCRM\";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\";}'),
- (74,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:18:\"Administer CiviCRM\";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\";}'),
- (75,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:18:\"Administer CiviCRM\";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\";}'),
- (76,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:18:\"Administer CiviCRM\";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\";}'),
- (77,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:18:\"Administer CiviCRM\";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\";}'),
- (78,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:18:\"Administer CiviCRM\";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\";}'),
- (79,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:18:\"Administer CiviCRM\";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\";}'),
- (80,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:18:\"Administer CiviCRM\";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\";}'),
- (81,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:18:\"Administer CiviCRM\";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\";}'),
- (82,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:18:\"Administer CiviCRM\";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\";}'),
- (83,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:18:\"Administer CiviCRM\";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\";}'),
- (84,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:18:\"Administer CiviCRM\";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\";}'),
- (85,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:18:\"Administer CiviCRM\";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\";}'),
- (86,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:18:\"Administer CiviCRM\";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\";}'),
- (87,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:18:\"Administer CiviCRM\";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\";}'),
- (88,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:18:\"Administer CiviCRM\";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\";}'),
- (89,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:18:\"Administer CiviCRM\";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.\";}'),
- (90,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:18:\"Administer CiviCRM\";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\";}'),
- (91,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:18:\"Administer CiviCRM\";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\";}'),
- (92,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:18:\"Administer CiviCRM\";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 > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'),
- (93,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:18:\"Administer CiviCRM\";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\";}'),
- (94,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;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:{}'),
- (95,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:{}'),
- (96,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:{}'),
- (97,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:{}'),
- (98,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:14:\"access CiviCRM\";i:1;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:18:\"Administer CiviCRM\";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\";}'),
- (99,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:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}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:18:\"Administer CiviCRM\";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.\";}'),
- (100,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:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','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:18:\"Administer CiviCRM\";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:{}'),
- (101,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:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','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:18:\"Administer CiviCRM\";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:{}'),
- (102,1,'civicrm/ajax/mapping',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:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";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/ajax/recipientListing',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:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";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/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:18:\"Administer CiviCRM\";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\";}'),
- (105,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:{}'),
- (106,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:{}'),
- (107,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:18:\"Administer CiviCRM\";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\";}'),
- (108,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:18:\"Administer CiviCRM\";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&amp;action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
- (109,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:{}'),
- (110,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:{}'),
- (111,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:{}'),
- (112,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:{}'),
- (113,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:{}'),
- (114,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:{}'),
- (115,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:{}'),
- (116,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:{}'),
- (117,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:{}'),
- (118,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:{}'),
- (119,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:{}'),
- (120,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:{}'),
- (121,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:{}'),
- (122,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:18:\"Administer CiviCRM\";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:{}'),
- (123,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:{}'),
- (124,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:{}'),
- (125,1,'civicrm/acl/basic',NULL,'ACL','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:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;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:{}'),
- (126,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:{}'),
- (127,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:{}'),
- (128,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_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,1,1,0,1,1,0,0,'a:0:{}'),
- (129,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:{}'),
- (130,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:{}'),
- (131,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:{}'),
- (132,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:{}'),
- (133,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:{}'),
- (134,1,'civicrm/ajax/apiexample',NULL,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:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";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/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:{}'),
- (136,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:{}'),
- (137,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:{}'),
- (138,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:{}'),
- (139,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:{}'),
- (140,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,0,1,0,1,1,0,0,'a:0:{}'),
- (141,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:{}'),
- (142,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&amp;action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'),
- (143,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:{}'),
- (144,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:{}'),
- (145,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:{}'),
- (146,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:{}'),
- (147,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:{}'),
- (148,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:{}'),
- (149,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:{}'),
- (150,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:{}'),
- (151,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:{}'),
- (152,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:{}'),
- (153,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:{}'),
- (154,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:{}'),
- (155,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:{}'),
- (156,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:{}'),
- (157,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:{}'),
- (158,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:{}'),
- (159,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:{}'),
- (160,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:{}'),
- (161,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:{}'),
- (162,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:{}'),
- (163,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:{}'),
- (164,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:{}'),
- (165,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:{}'),
- (166,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:{}'),
- (167,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:{}'),
- (168,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:{}'),
- (169,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:{}'),
- (170,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:{}'),
- (171,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:{}'),
- (172,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:{}'),
- (173,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:{}'),
- (174,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:{}'),
- (175,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:{}'),
- (176,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:{}'),
- (177,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:{}'),
- (178,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:{}'),
- (179,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:{}'),
- (180,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:{}'),
- (181,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:{}'),
- (182,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:{}'),
- (183,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:{}'),
- (184,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:{}'),
- (185,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:{}'),
- (186,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:{}'),
- (187,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (188,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (189,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (190,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (191,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (192,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (193,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (194,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (195,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','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_Contact_Page_View_Note\";',NULL,'a:2:{i:0;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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (196,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (197,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (198,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (199,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (200,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (201,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (202,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:{}'),
- (203,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:{}'),
- (204,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:{}'),
- (205,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_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:{}'),
- (206,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:{}'),
- (207,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:{}'),
- (208,1,'civicrm/ajax/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\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";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/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:{}'),
- (210,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:{}'),
- (211,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:{}'),
- (212,1,'civicrm/ajax/checkphone',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:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (213,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:{}'),
- (214,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:{}'),
- (215,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:{}'),
- (216,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:{}'),
- (217,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:{}'),
- (218,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:{}'),
- (219,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:{}'),
- (220,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:{}'),
- (221,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','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\";}'),
- (222,1,'civicrm/contact/dedupefind',NULL,'Find and 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: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:{}'),
- (223,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:{}'),
- (224,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:{}'),
- (225,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\";}'),
- (226,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:{}'),
- (227,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (228,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:{}'),
- (229,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:{}'),
- (230,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:{}'),
- (231,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (232,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:{}'),
- (233,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','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:{}'),
- (234,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:{}'),
- (235,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:{}'),
- (236,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (237,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:{}'),
- (238,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:{}'),
- (239,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:{}'),
- (240,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:{}'),
- (241,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:{}'),
- (242,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:{}'),
- (243,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
- (244,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\";}'),
- (245,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:{}'),
- (246,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:{}'),
- (247,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:{}'),
- (248,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:{}'),
- (249,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:{}'),
- (250,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:{}'),
- (251,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:18:\"Administer CiviCRM\";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\";}'),
- (252,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&amp;action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'),
- (253,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&amp;action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),
- (254,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:{}'),
+ (1,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:{}'),
+ (2,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:{}'),
+ (3,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:{}'),
+ (4,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:{}'),
+ (5,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:18:\"Administer CiviCRM\";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:{}'),
+ (6,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:{}'),
+ (7,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:{}'),
+ (8,1,'civicrm/acl/basic',NULL,'ACL','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:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;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:{}'),
+ (9,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:{}'),
+ (10,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:{}'),
+ (11,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_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,1,1,0,1,1,0,0,'a:0:{}'),
+ (12,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:{}'),
+ (13,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:{}'),
+ (14,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:{}'),
+ (15,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:{}'),
+ (16,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:{}'),
+ (17,1,'civicrm/ajax/apiexample',NULL,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:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (18,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:{}'),
+ (19,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:{}'),
+ (20,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:{}'),
+ (21,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:{}'),
+ (22,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:{}'),
+ (23,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,0,1,0,1,1,0,0,'a:0:{}'),
+ (24,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:{}'),
+ (25,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&amp;action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'),
+ (26,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:{}'),
+ (27,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:{}'),
+ (28,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:{}'),
+ (29,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:{}'),
+ (30,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:{}'),
+ (31,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:{}'),
+ (32,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:{}'),
+ (33,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:{}'),
+ (34,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:{}'),
+ (35,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:{}'),
+ (36,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:{}'),
+ (37,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:{}'),
+ (38,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:{}'),
+ (39,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:{}'),
+ (40,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:{}'),
+ (41,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:{}'),
+ (42,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:{}'),
+ (43,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:{}'),
+ (44,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:{}'),
+ (45,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:{}'),
+ (46,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:{}'),
+ (47,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:{}'),
+ (48,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:{}'),
+ (49,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:{}'),
+ (50,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:{}'),
+ (51,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:{}'),
+ (52,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:18:\"Administer CiviCRM\";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\";}'),
+ (53,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:18:\"Administer CiviCRM\";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:{}'),
+ (54,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:18:\"Administer CiviCRM\";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:{}'),
+ (55,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:18:\"Administer CiviCRM\";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:{}'),
+ (56,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:18:\"Administer CiviCRM\";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:{}'),
+ (57,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:18:\"Administer CiviCRM\";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:{}'),
+ (58,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:18:\"Administer CiviCRM\";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:{}'),
+ (59,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:18:\"Administer CiviCRM\";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:{}'),
+ (60,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:18:\"Administer CiviCRM\";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:{}'),
+ (61,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:18:\"Administer CiviCRM\";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:{}'),
+ (62,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:18:\"Administer CiviCRM\";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\";}'),
+ (63,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:18:\"Administer CiviCRM\";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:{}'),
+ (64,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:18:\"Administer CiviCRM\";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:{}'),
+ (65,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:18:\"Administer CiviCRM\";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:{}'),
+ (66,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:18:\"Administer CiviCRM\";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:{}'),
+ (67,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:18:\"Administer CiviCRM\";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:{}'),
+ (68,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:18:\"Administer CiviCRM\";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:{}'),
+ (69,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:18:\"Administer CiviCRM\";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\";}'),
+ (70,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:18:\"Administer CiviCRM\";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\";}'),
+ (71,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:18:\"Administer CiviCRM\";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\";}'),
+ (72,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:18:\"Administer CiviCRM\";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:{}'),
+ (73,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:18:\"Administer CiviCRM\";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\";}'),
+ (74,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:18:\"Administer CiviCRM\";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\";}'),
+ (75,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:18:\"Administer CiviCRM\";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\";}'),
+ (76,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:18:\"Administer CiviCRM\";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\";}'),
+ (77,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:18:\"Administer CiviCRM\";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\";}'),
+ (78,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:18:\"Administer CiviCRM\";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\";}'),
+ (79,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:18:\"Administer CiviCRM\";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\";}'),
+ (80,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:18:\"Administer CiviCRM\";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\";}'),
+ (81,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:18:\"Administer CiviCRM\";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\";}'),
+ (82,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:18:\"Administer CiviCRM\";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\";}'),
+ (83,1,'civicrm/admin/setting/preferences/date',NULL,'View 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:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
+ (84,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:18:\"Administer CiviCRM\";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\";}'),
+ (85,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:18:\"Administer CiviCRM\";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\";}'),
+ (86,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;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:18:\"Administer CiviCRM\";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,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'),
+ (87,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:18:\"Administer CiviCRM\";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\";}'),
+ (88,1,'civicrm/admin/options/from_email_address',NULL,'From 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_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:18:\"Administer CiviCRM\";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\";}'),
+ (89,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:18:\"Administer CiviCRM\";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\";}'),
+ (90,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:18:\"Administer CiviCRM\";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\";}'),
+ (91,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','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_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:18:\"Administer CiviCRM\";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\";}'),
+ (92,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:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
+ (93,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:18:\"Administer CiviCRM\";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\";}'),
+ (94,1,'civicrm/admin/labelFormats',NULL,'Label 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:18:\"Administer CiviCRM\";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:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'),
+ (95,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:18:\"Administer CiviCRM\";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\";}'),
+ (96,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:18:\"Administer CiviCRM\";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\";}'),
+ (97,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:18:\"Administer CiviCRM\";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\";}'),
+ (98,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:18:\"Administer CiviCRM\";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\";}'),
+ (99,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:18:\"Administer CiviCRM\";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\";}'),
+ (100,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:18:\"Administer CiviCRM\";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\";}'),
+ (101,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:18:\"Administer CiviCRM\";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\";}'),
+ (102,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:18:\"Administer CiviCRM\";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\";}'),
+ (103,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:18:\"Administer CiviCRM\";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\";}'),
+ (104,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:18:\"Administer CiviCRM\";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\";}'),
+ (105,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:18:\"Administer CiviCRM\";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.\";}'),
+ (106,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:18:\"Administer CiviCRM\";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\";}'),
+ (107,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:18:\"Administer CiviCRM\";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\";}'),
+ (108,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:18:\"Administer CiviCRM\";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\";}'),
+ (109,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:18:\"Administer CiviCRM\";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\";}'),
+ (110,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:18:\"Administer CiviCRM\";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:{}'),
+ (111,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:18:\"Administer CiviCRM\";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\";}'),
+ (112,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:18:\"Administer CiviCRM\";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\";}'),
+ (113,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:18:\"Administer CiviCRM\";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\";}'),
+ (114,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:18:\"Administer CiviCRM\";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\";}'),
+ (115,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:18:\"Administer CiviCRM\";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\";}'),
+ (116,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:18:\"Administer CiviCRM\";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\";}'),
+ (117,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:18:\"Administer CiviCRM\";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\";}'),
+ (118,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:18:\"Administer CiviCRM\";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\";}'),
+ (119,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:18:\"Administer CiviCRM\";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\";}'),
+ (120,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:18:\"Administer CiviCRM\";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\";}'),
+ (121,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:18:\"Administer CiviCRM\";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\";}'),
+ (122,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:18:\"Administer CiviCRM\";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\";}'),
+ (123,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:18:\"Administer CiviCRM\";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\";}'),
+ (124,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:18:\"Administer CiviCRM\";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\";}'),
+ (125,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:18:\"Administer CiviCRM\";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\";}'),
+ (126,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:18:\"Administer CiviCRM\";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\";}'),
+ (127,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:18:\"Administer CiviCRM\";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\";}'),
+ (128,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:18:\"Administer CiviCRM\";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.\";}'),
+ (129,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:18:\"Administer CiviCRM\";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\";}'),
+ (130,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:18:\"Administer CiviCRM\";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\";}'),
+ (131,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:18:\"Administer CiviCRM\";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 > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'),
+ (132,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:18:\"Administer CiviCRM\";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\";}'),
+ (133,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;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:{}'),
+ (134,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:{}'),
+ (135,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:{}'),
+ (136,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:{}'),
+ (137,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:14:\"access CiviCRM\";i:1;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:18:\"Administer CiviCRM\";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\";}'),
+ (138,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:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}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:18:\"Administer CiviCRM\";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.\";}'),
+ (139,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:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','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:18:\"Administer CiviCRM\";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:{}'),
+ (140,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:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','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:18:\"Administer CiviCRM\";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:{}'),
+ (141,1,'civicrm/ajax/mapping',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:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (142,1,'civicrm/ajax/recipientListing',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:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (143,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:18:\"Administer CiviCRM\";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\";}'),
+ (144,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:{}'),
+ (145,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:{}'),
+ (146,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:18:\"Administer CiviCRM\";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\";}'),
+ (147,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:18:\"Administer CiviCRM\";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&amp;action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'),
+ (148,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:{}'),
+ (149,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (150,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:{}'),
+ (151,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:{}'),
+ (152,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:{}'),
+ (153,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:{}'),
+ (154,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:{}'),
+ (155,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:{}'),
+ (156,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (157,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:{}'),
+ (158,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:{}'),
+ (159,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:{}'),
+ (160,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:{}'),
+ (161,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:{}'),
+ (162,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:{}'),
+ (163,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:{}'),
+ (164,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:{}'),
+ (165,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:{}'),
+ (166,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:{}'),
+ (167,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:{}'),
+ (168,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:{}'),
+ (169,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:{}'),
+ (170,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:{}'),
+ (171,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:{}'),
+ (172,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:{}'),
+ (173,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:{}'),
+ (174,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:{}'),
+ (175,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (176,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (177,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (178,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (179,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (180,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (181,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (182,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (183,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','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_Contact_Page_View_Note\";',NULL,'a:2:{i:0;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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (184,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (185,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (186,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (187,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (188,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (189,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (190,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:{}'),
+ (191,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:{}'),
+ (192,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:{}'),
+ (193,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_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:{}'),
+ (194,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:{}'),
+ (195,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:{}'),
+ (196,1,'civicrm/ajax/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\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";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/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:{}'),
+ (198,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:{}'),
+ (199,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:{}'),
+ (200,1,'civicrm/ajax/checkphone',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:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (201,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:{}'),
+ (202,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:{}'),
+ (203,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:{}'),
+ (204,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:{}'),
+ (205,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:{}'),
+ (206,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:{}'),
+ (207,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:{}'),
+ (208,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:{}'),
+ (209,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','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\";}'),
+ (210,1,'civicrm/contact/dedupefind',NULL,'Find and 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: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:{}'),
+ (211,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:{}'),
+ (212,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:{}'),
+ (213,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\";}'),
+ (214,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:{}'),
+ (215,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&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (216,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:{}'),
+ (217,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:{}'),
+ (218,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:{}'),
+ (219,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&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'),
+ (220,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:{}'),
+ (221,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:{}'),
+ (222,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\";}'),
+ (223,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:{}'),
+ (224,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:{}'),
+ (225,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:{}'),
+ (226,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:{}'),
+ (227,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:{}'),
+ (228,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:{}'),
+ (229,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','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:{}'),
+ (230,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:{}'),
+ (231,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&amp;action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'),
+ (232,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&amp;action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'),
+ (233,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:{}'),
+ (234,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:{}'),
+ (235,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:{}'),
+ (236,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:{}'),
+ (237,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\";}'),
+ (238,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:{}'),
+ (239,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:{}'),
+ (240,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:{}'),
+ (241,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:29:\"CRM_Contact_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:{}'),
+ (242,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:29:\"CRM_Contact_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:{}'),
+ (243,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:{}'),
+ (244,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:{}'),
+ (245,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:30:\"CRM_Activity_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:{}'),
+ (246,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:28:\"CRM_Custom_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:{}'),
+ (247,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:{}'),
+ (248,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:{}'),
+ (249,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:{}'),
+ (250,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:{}'),
+ (251,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:{}'),
+ (252,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:{}'),
+ (253,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:{}'),
+ (254,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:18:\"Administer CiviCRM\";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\";}'),
  (255,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\";}'),
  (256,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\";}'),
  (257,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:{}'),
@@ -5457,70 +5376,70 @@ UNLOCK TABLES;
 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{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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    <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Activity Summary{/ts} - {$activityTypeName}\n              </th>\n            </tr>\n            {if !empty($isCaseActivity)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Your Case Role(s){/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$contact.role|default:\'\'}\n                </td>\n              </tr>\n              {if !empty($manageCaseURL)}\n                <tr>\n                  <td colspan=\"2\" {$valueStyle}>\n                    <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n                  </td>\n                </tr>\n              {/if}\n            {/if}\n            {if !empty($editActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$editActURL}\" title=\"{ts}Edit activity{/ts}\">{ts}Edit activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {if !empty($viewActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$viewActURL}\" title=\"{ts}View activity{/ts}\">{ts}View activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {foreach from=$activity.fields item=field}\n              <tr>\n                <td {$labelStyle}>\n                  {$field.label}\n                </td>\n                <td {$valueStyle}>\n                  {if $field.type eq \'Date\'}\n                    {$field.value|crmDate:$config->dateformatDatetime}\n                  {else}\n                    {$field.value}\n                  {/if}\n                </td>\n              </tr>\n            {/foreach}\n\n            {if !empty($activity.customGroups)}\n              {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n                <tr>\n                  <th {$headerStyle}>\n                    {$customGroupName}\n                  </th>\n                </tr>\n                {foreach from=$customGroup item=field}\n                  <tr>\n                    <td {$labelStyle}>\n                      {$field.label}\n                    </td>\n                    <td {$valueStyle}>\n                      {if $field.type eq \'Date\'}\n                        {$field.value|crmDate:$config->dateformatDatetime}\n                      {else}\n                        {$field.value}\n                      {/if}\n                    </td>\n                  </tr>\n                {/foreach}\n              {/foreach}\n            {/if}\n          </table>\n        </td>\n      </tr>\n    </table>\n</body>\n</html>\n',1,813,'case_activity',1,0,0,NULL),
- (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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    <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Activity Summary{/ts} - {$activityTypeName}\n              </th>\n            </tr>\n            {if !empty($isCaseActivity)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Your Case Role(s){/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$contact.role|default:\'\'}\n                </td>\n              </tr>\n              {if !empty($manageCaseURL)}\n                <tr>\n                  <td colspan=\"2\" {$valueStyle}>\n                    <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n                  </td>\n                </tr>\n              {/if}\n            {/if}\n            {if !empty($editActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$editActURL}\" title=\"{ts}Edit activity{/ts}\">{ts}Edit activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {if !empty($viewActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$viewActURL}\" title=\"{ts}View activity{/ts}\">{ts}View activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {foreach from=$activity.fields item=field}\n              <tr>\n                <td {$labelStyle}>\n                  {$field.label}\n                </td>\n                <td {$valueStyle}>\n                  {if $field.type eq \'Date\'}\n                    {$field.value|crmDate:$config->dateformatDatetime}\n                  {else}\n                    {$field.value}\n                  {/if}\n                </td>\n              </tr>\n            {/foreach}\n\n            {if !empty($activity.customGroups)}\n              {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n                <tr>\n                  <th {$headerStyle}>\n                    {$customGroupName}\n                  </th>\n                </tr>\n                {foreach from=$customGroup item=field}\n                  <tr>\n                    <td {$labelStyle}>\n                      {$field.label}\n                    </td>\n                    <td {$valueStyle}>\n                      {if $field.type eq \'Date\'}\n                        {$field.value|crmDate:$config->dateformatDatetime}\n                      {else}\n                        {$field.value}\n                      {/if}\n                    </td>\n                  </tr>\n                {/foreach}\n              {/foreach}\n            {/if}\n          </table>\n        </td>\n      </tr>\n    </table>\n</body>\n</html>\n',1,813,'case_activity',0,1,0,NULL),
- (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\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{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact ID{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</body>\n</html>\n',1,814,'contribution_dupalert',1,0,0,NULL),
- (4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\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{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact ID{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</body>\n</html>\n',1,814,'contribution_dupalert',0,1,0,NULL),
- (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} %   {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else}                  {/if} {/if}   {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($ccContribution)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($formValues.product_name)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($formValues.receipt_text)}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contributor Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {contact.display_name}\n      </td>\n     </tr>\n     <tr>\n      {if \'{contribution.financial_type_id}\'}\n        <td {$labelStyle}>\n         {ts}Financial Type{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.financial_type_id:label}\n        </td>\n      {/if}\n     </tr>\n\n     {if $isShowLineItems}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table>\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n             <th>{ts}Subtotal{/ts}</th>\n             <th>{ts}Tax Rate{/ts}</th>\n             <th>{ts}Tax Amount{/ts}</th>\n           {/if}\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$lineItems item=line}\n           <tr>\n            <td>\n              {$line.title}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n            </td>\n            {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n              <td>\n                {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n              </td>\n              {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                  {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                  {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n                </td>\n              {else}\n                <td></td>\n                <td></td>\n              {/if}\n            {/if}\n            <td>\n             {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n\n     {/if}\n     {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n       <tr>\n         <td {$labelStyle}>\n           {ts} Amount before Tax : {/ts}\n         </td>\n         <td {$valueStyle}>\n           {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n         </td>\n       </tr>\n\n       {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n         <tr>\n          <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n          <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShowTax}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.tax_amount}\n        </td>\n      </tr>\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n        {contribution.total_amount}\n      </td>\n     </tr>\n\n     {if \'{contribution.receive_date}\'}\n       <tr>\n       <td {$labelStyle}>\n        {ts}Date Received{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receive_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n      {if \'{contribution.receipt_date}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receipt_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n     {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.payment_instrument_id:label}\n       </td>\n      </tr>\n      {if \'{contribution.check_number}\'}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if \'{contribution.trxn_id}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($ccContribution)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($formValues.product_name)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($fulfilled_date)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,815,'contribution_offline_receipt',1,0,0,NULL),
- (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} %   {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else}                  {/if} {/if}   {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($ccContribution)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($formValues.product_name)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($formValues.receipt_text)}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contributor Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {contact.display_name}\n      </td>\n     </tr>\n     <tr>\n      {if \'{contribution.financial_type_id}\'}\n        <td {$labelStyle}>\n         {ts}Financial Type{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.financial_type_id:label}\n        </td>\n      {/if}\n     </tr>\n\n     {if $isShowLineItems}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table>\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n             <th>{ts}Subtotal{/ts}</th>\n             <th>{ts}Tax Rate{/ts}</th>\n             <th>{ts}Tax Amount{/ts}</th>\n           {/if}\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$lineItems item=line}\n           <tr>\n            <td>\n              {$line.title}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n            </td>\n            {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n              <td>\n                {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n              </td>\n              {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                  {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                  {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n                </td>\n              {else}\n                <td></td>\n                <td></td>\n              {/if}\n            {/if}\n            <td>\n             {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n\n     {/if}\n     {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n       <tr>\n         <td {$labelStyle}>\n           {ts} Amount before Tax : {/ts}\n         </td>\n         <td {$valueStyle}>\n           {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n         </td>\n       </tr>\n\n       {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n         <tr>\n          <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n          <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShowTax}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.tax_amount}\n        </td>\n      </tr>\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n        {contribution.total_amount}\n      </td>\n     </tr>\n\n     {if \'{contribution.receive_date}\'}\n       <tr>\n       <td {$labelStyle}>\n        {ts}Date Received{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receive_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n      {if \'{contribution.receipt_date}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receipt_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n     {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.payment_instrument_id:label}\n       </td>\n      </tr>\n      {if \'{contribution.check_number}\'}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if \'{contribution.trxn_id}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($ccContribution)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($formValues.product_name)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($fulfilled_date)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,815,'contribution_offline_receipt',0,1,0,NULL),
- (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n  {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n    {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n  {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium )}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n  {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n      </th>\n    </tr>\n\n    {if $isShowLineItems}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          <table>\n            <tr>\n              <th>{ts}Item{/ts}</th>\n              <th>{ts}Qty{/ts}</th>\n              <th>{ts}Each{/ts}</th>\n              {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                <th>{ts}Subtotal{/ts}</th>\n                <th>{ts}Tax Rate{/ts}</th>\n                <th>{ts}Tax Amount{/ts}</th>\n              {/if}\n              <th>{ts}Total{/ts}</th>\n            </tr>\n            {foreach from=$lineItems item=line}\n              <tr>\n                <td>{$line.title}</td>\n                <td>{$line.qty}</td>\n                <td>{$line.unit_price|crmMoney:$currency}</td>\n                {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                  <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n                  {if $line.tax_rate || $line.tax_amount != \"\"}\n                    <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n                    <td>{$line.tax_amount|crmMoney:$currency}</td>\n                  {else}\n                    <td></td>\n                    <td></td>\n                  {/if}\n                {/if}\n                <td>\n                  {$line.line_total+$line.tax_amount|crmMoney:$currency}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n\n      {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts} Amount before Tax : {/ts}\n          </td>\n          <td {$valueStyle}>\n            {$amount-$totalTaxAmount|crmMoney:$currency}\n          </td>\n        </tr>\n\n        {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n          <tr>\n            <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n            <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n          </tr>\n        {/foreach}\n\n      {/if}\n      {if $isShowTax}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n        </tr>\n      {/if}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.total_amount}\n        </td>\n      </tr>\n    {else}\n      {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n         </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n  {/if}\n\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($is_recur)}\n      <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n          {ts}This is a recurring contribution.{/ts}\n          {if $cancelSubscriptionUrl}\n            {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n          {/if}\n        </td>\n      </tr>\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n    {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n      {elseif !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($isShare)}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n            {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n            {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n        </td>\n      </tr>\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n     {elseif !empty($email)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n     {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,816,'contribution_online_receipt',1,0,0,NULL),
- (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n  {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n    {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n  {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium )}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n  {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n      </th>\n    </tr>\n\n    {if $isShowLineItems}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          <table>\n            <tr>\n              <th>{ts}Item{/ts}</th>\n              <th>{ts}Qty{/ts}</th>\n              <th>{ts}Each{/ts}</th>\n              {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                <th>{ts}Subtotal{/ts}</th>\n                <th>{ts}Tax Rate{/ts}</th>\n                <th>{ts}Tax Amount{/ts}</th>\n              {/if}\n              <th>{ts}Total{/ts}</th>\n            </tr>\n            {foreach from=$lineItems item=line}\n              <tr>\n                <td>{$line.title}</td>\n                <td>{$line.qty}</td>\n                <td>{$line.unit_price|crmMoney:$currency}</td>\n                {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                  <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n                  {if $line.tax_rate || $line.tax_amount != \"\"}\n                    <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n                    <td>{$line.tax_amount|crmMoney:$currency}</td>\n                  {else}\n                    <td></td>\n                    <td></td>\n                  {/if}\n                {/if}\n                <td>\n                  {$line.line_total+$line.tax_amount|crmMoney:$currency}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n\n      {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts} Amount before Tax : {/ts}\n          </td>\n          <td {$valueStyle}>\n            {$amount-$totalTaxAmount|crmMoney:$currency}\n          </td>\n        </tr>\n\n        {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n          <tr>\n            <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n            <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n          </tr>\n        {/foreach}\n\n      {/if}\n      {if $isShowTax}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n        </tr>\n      {/if}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.total_amount}\n        </td>\n      </tr>\n    {else}\n      {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n         </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n  {/if}\n\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($is_recur)}\n      <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n          {ts}This is a recurring contribution.{/ts}\n          {if $cancelSubscriptionUrl}\n            {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n          {/if}\n        </td>\n      </tr>\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n    {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n      {elseif !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($isShare)}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n            {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n            {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n        </td>\n      </tr>\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n     {elseif !empty($email)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n     {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,816,'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','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n      <title></title>\n  </head>\n  <body>\n  <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n    {if $config->empoweredBy}\n      <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n    <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n        <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n        <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n        <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n      </tr>\n    </table>\n\n    <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n      </tr>\n      {foreach from=$lineItems item=line}\n        <tr>\n          <td style=\"text-align:left;nowrap\"><font size=\"1\">\n            {$line.title}\n          </font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n            {if $line.tax_amount != \'\'}\n              <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n            {else}\n              <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n            {/if}\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n        </tr>\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n      </tr>\n      {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n        {if $taxRate != 0}\n          <tr>\n            <td colspan=\"3\"></td>\n            <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n            <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n          </tr>\n        {/if}\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n          {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n            {ts}Amount Credited{/ts}\n          {else}\n            {ts}Amount Paid{/ts}\n          {/if}\n        </font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td colspan=\"2\"><hr></hr></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n      </tr>\n      <tr>\n        <td colspan=\"5\"></td>\n      </tr>\n      {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n        <tr>\n          <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n          <td colspan=\"2\"></td>\n        </tr>\n      {/if}\n    </table>\n\n    {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n      <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n        </tr>\n      </table>\n\n      <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n        <tr>\n          <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n            <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n              {domain.name}<br />\n              {domain.street_address} {domain.supplemental_address_1}<br />\n              {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n              {domain.city} {domain.postal_code}<br />\n              {domain.country_id:label}<br />\n              {domain.email}</div>\n              {domain.phone}<br />\n            </font>\n            <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n          </td>\n          <td width=\"40%\">\n            <table cellpadding=\"5\" cellspacing=\"0\"  width=\"100%\" border=\"0\">\n              <tr>\n                <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n                <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n              </tr>\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n              </tr>\n              <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n              {if $is_pay_later == 1}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n                </tr>\n              {else}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n                </tr>\n              {/if}\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n              </tr>\n            </table>\n          </td>\n        </tr>\n      </table>\n    {/if}\n\n    {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n    {if $config->empoweredBy}\n      <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n\n    <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n      <tr>\n        <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n         </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address}   {$supplemental_address_1}</font></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2}  {$stateProvinceAbbreviation}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.country_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.email}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.phone}\n        </font></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td colspan=\"2\">\n          <table>\n            <tr>\n              <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n            </tr>\n            {foreach from=$lineItems item=line key=index}\n              <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n              <tr>\n                <td style =\"text-align:left;\"  ><font size=\"1\">\n                  {$line.title}\n                </font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n                {if $line.tax_amount != \'\'}\n                  <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n                {else}\n                  <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n                {/if}\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n              </tr>\n            {/foreach}\n            <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n            </tr>\n            {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n                {if $taxRate != 0}\n                  <tr>\n                    <td colspan=\"3\"></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n                  </tr>\n                {/if}\n              {/foreach}\n            <tr>\n              <td colspan=\"3\"></td>\n              <td colspan=\"2\"><hr></hr></td>\n            </tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n            {if \'{contribution.is_pay_later}\' == 0}\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td colspan=\"2\"><hr></hr></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n                <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n              </tr>\n            {/if}\n            <br/><br/><br/>\n            <tr>\n              <td colspan=\"3\"></td>\n            </tr>\n            <tr>\n              <td></td>\n              <td colspan=\"3\"></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n\n    <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n      <tr>\n        <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n        <td width=\"40%\">\n          <table align=\"right\">\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n            </tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n            </tr>\n            <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n              <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n  {/if}\n\n  </div>\n  </body>\n</html>\n',1,817,'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','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n      <title></title>\n  </head>\n  <body>\n  <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n    {if $config->empoweredBy}\n      <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n    <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n        <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n        <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n        <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n      </tr>\n    </table>\n\n    <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n      </tr>\n      {foreach from=$lineItems item=line}\n        <tr>\n          <td style=\"text-align:left;nowrap\"><font size=\"1\">\n            {$line.title}\n          </font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n            {if $line.tax_amount != \'\'}\n              <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n            {else}\n              <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n            {/if}\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n        </tr>\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n      </tr>\n      {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n        {if $taxRate != 0}\n          <tr>\n            <td colspan=\"3\"></td>\n            <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n            <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n          </tr>\n        {/if}\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n          {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n            {ts}Amount Credited{/ts}\n          {else}\n            {ts}Amount Paid{/ts}\n          {/if}\n        </font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td colspan=\"2\"><hr></hr></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n      </tr>\n      <tr>\n        <td colspan=\"5\"></td>\n      </tr>\n      {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n        <tr>\n          <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n          <td colspan=\"2\"></td>\n        </tr>\n      {/if}\n    </table>\n\n    {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n      <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n        </tr>\n      </table>\n\n      <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n        <tr>\n          <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n            <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n              {domain.name}<br />\n              {domain.street_address} {domain.supplemental_address_1}<br />\n              {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n              {domain.city} {domain.postal_code}<br />\n              {domain.country_id:label}<br />\n              {domain.email}</div>\n              {domain.phone}<br />\n            </font>\n            <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n          </td>\n          <td width=\"40%\">\n            <table cellpadding=\"5\" cellspacing=\"0\"  width=\"100%\" border=\"0\">\n              <tr>\n                <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n                <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n              </tr>\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n              </tr>\n              <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n              {if $is_pay_later == 1}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n                </tr>\n              {else}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n                </tr>\n              {/if}\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n              </tr>\n            </table>\n          </td>\n        </tr>\n      </table>\n    {/if}\n\n    {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n    {if $config->empoweredBy}\n      <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n\n    <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n      <tr>\n        <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n         </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address}   {$supplemental_address_1}</font></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2}  {$stateProvinceAbbreviation}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.country_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.email}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.phone}\n        </font></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td colspan=\"2\">\n          <table>\n            <tr>\n              <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n            </tr>\n            {foreach from=$lineItems item=line key=index}\n              <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n              <tr>\n                <td style =\"text-align:left;\"  ><font size=\"1\">\n                  {$line.title}\n                </font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n                {if $line.tax_amount != \'\'}\n                  <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n                {else}\n                  <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n                {/if}\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n              </tr>\n            {/foreach}\n            <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n            </tr>\n            {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n                {if $taxRate != 0}\n                  <tr>\n                    <td colspan=\"3\"></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n                  </tr>\n                {/if}\n              {/foreach}\n            <tr>\n              <td colspan=\"3\"></td>\n              <td colspan=\"2\"><hr></hr></td>\n            </tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n            {if \'{contribution.is_pay_later}\' == 0}\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td colspan=\"2\"><hr></hr></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n                <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n              </tr>\n            {/if}\n            <br/><br/><br/>\n            <tr>\n              <td colspan=\"3\"></td>\n            </tr>\n            <tr>\n              <td></td>\n              <td colspan=\"3\"></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n\n    <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n      <tr>\n        <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n        <td width=\"40%\">\n          <table align=\"right\">\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n            </tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n            </tr>\n            <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n              <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n  {/if}\n\n  </div>\n  </body>\n</html>\n',1,817,'contribution_invoice_receipt',0,1,0,NULL),
- (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}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\n{ts}Start Date{/ts}:  {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       {if $cancelSubscriptionUrl}\n       <tr>\n         <td {$labelStyle}>\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n       </tr>\n       {/if}\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}.</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      {if $cancelSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n\n</body>\n</html>\n',1,818,'contribution_recurring_notify',1,0,0,NULL),
- (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}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\n{ts}Start Date{/ts}:  {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       {if $cancelSubscriptionUrl}\n       <tr>\n         <td {$labelStyle}>\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n       </tr>\n       {/if}\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}.</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      {if $cancelSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n\n</body>\n</html>\n',1,818,'contribution_recurring_notify',0,1,0,NULL),
- (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,819,'contribution_recurring_cancelled',1,0,0,NULL),
- (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,819,'contribution_recurring_cancelled',0,1,0,NULL),
- (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n    <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n\n</body>\n</html>\n',1,820,'contribution_recurring_billing',1,0,0,NULL),
- (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n    <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n\n</body>\n</html>\n',1,820,'contribution_recurring_billing',0,1,0,NULL),
- (17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your recurring contribution has been updated as requested:{/ts}\n    <p>{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}.</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,821,'contribution_recurring_edit',1,0,0,NULL),
- (18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your recurring contribution has been updated as requested:{/ts}\n    <p>{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}.</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,821,'contribution_recurring_edit',0,1,0,NULL),
- (19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,822,'pcp_notify',1,0,0,NULL),
- (20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,822,'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','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\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\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,823,'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','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\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\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,823,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\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\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n\n</body>\n</html>\n',1,824,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\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\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n\n</body>\n</html>\n',1,824,'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{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\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{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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}<p>{$greeting},</p>{/if}\n  <p>{ts}You have received a donation at your personal page{/ts}: <a href=\"{$pcpInfoURL}\">{$page_title}</a></p>\n  <p>{ts}Your fundraising total has been updated.{/ts}<br/>\n    {ts}The donor\'s information is listed below.  You can choose to contact them and convey your thanks if you wish.{/ts} <br/>\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}<br/>\n    {/if}\n  </p>\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n    <tr><td>{ts}Received{/ts}:</td><td> {$receive_date|crmDate}</td></tr>\n    <tr><td>{ts}Amount{/ts}:</td><td> {$total_amount|crmMoney:$currency}</td></tr>\n    <tr><td>{ts}Name{/ts}:</td><td> {$donors_display_name}</td></tr>\n    <tr><td>{ts}Email{/ts}:</td><td> {$donors_email}</td></tr>\n  </table>\n</body>\n</html>\n',1,825,'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{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\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{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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}<p>{$greeting},</p>{/if}\n  <p>{ts}You have received a donation at your personal page{/ts}: <a href=\"{$pcpInfoURL}\">{$page_title}</a></p>\n  <p>{ts}Your fundraising total has been updated.{/ts}<br/>\n    {ts}The donor\'s information is listed below.  You can choose to contact them and convey your thanks if you wish.{/ts} <br/>\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}<br/>\n    {/if}\n  </p>\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n    <tr><td>{ts}Received{/ts}:</td><td> {$receive_date|crmDate}</td></tr>\n    <tr><td>{ts}Amount{/ts}:</td><td> {$total_amount|crmMoney:$currency}</td></tr>\n    <tr><td>{ts}Name{/ts}:</td><td> {$donors_display_name}</td></tr>\n    <tr><td>{ts}Email{/ts}:</td><td> {$donors_email}</td></tr>\n  </table>\n</body>\n</html>\n',1,825,'pcp_owner_notify',0,1,0,NULL),
- (27,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\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}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n  <tr>\n    <td>\n      {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n      {if $isRefund}\n        <p>{ts}A refund has been issued based on changes in your registration selections.{/ts}</p>\n      {else}\n        <p>{ts}Below you will find a receipt for this payment.{/ts}</p>\n        {if $paymentsComplete}\n          <p>{ts}Thank you for completing this contribution.{/ts}</p>\n        {/if}\n      {/if}\n    </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if $isRefund}\n      <tr>\n        <th {$headerStyle}>{ts}Refund Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Refund Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$refundAmount|crmMoney}\n        </td>\n      </tr>\n    {else}\n      <tr>\n        <th {$headerStyle}>{ts}Payment Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Payment Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paymentAmount|crmMoney}\n        </td>\n      </tr>\n    {/if}\n    {if $receive_date}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction Date{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$receive_date|crmDate}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($trxn_id)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$trxn_id}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($paidBy)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Paid By{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paidBy}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($checkNumber)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$checkNumber}\n        </td>\n      </tr>\n    {/if}\n\n  <tr>\n    <th {$headerStyle}>{ts}Contribution Details{/ts}</th>\n  </tr>\n  {if $totalAmount}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Fee{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalAmount|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $totalPaid}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Paid{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalPaid|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $amountOwed}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Balance Owed{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$amountOwed|crmMoney}\n    </td> {* This will be zero after final payment. *}\n  </tr>\n  {/if}\n  </table>\n\n  </td>\n  </tr>\n    <tr>\n      <td>\n  <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if !empty($billingName) || !empty($address)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {if !empty($billingName)}{$billingName}{/if}<br />\n        {if !empty($address)}{$address|nl2br}{/if}\n            </td>\n          </tr>\n    {/if}\n    {if !empty($credit_card_number)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n            </td>\n          </tr>\n    {/if}\n    {if $component eq \'event\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Event Information and Location{/ts}\n      </th>\n    </tr>\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n         {$event.event_title}<br />\n        {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n    </tr>\n\n    {if !empty($event.participant_role)}\n    <tr>\n      <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n      </td>\n      <td {$valueStyle}>\n        {$event.participant_role}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($isShowLocation)}\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n    <tr>\n      <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n      </td>\n    </tr>\n    {foreach from=$location.phone item=phone}\n    {if $phone.phone}\n          <tr>\n            <td {$labelStyle}>\n        {if $phone.phone_type}\n        {$phone.phone_type_display}\n        {else}\n        {ts}Phone{/ts}\n        {/if}\n            </td>\n            <td {$valueStyle}>\n        {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {foreach from=$location.email item=eventEmail}\n    {if $eventEmail.email}\n          <tr>\n            <td {$labelStyle}>\n        {ts}Email{/ts}\n            </td>\n            <td {$valueStyle}>\n        {$eventEmail.email}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {/if} {*phone block close*}\n    {/if}\n  </table>\n      </td>\n    </tr>\n\n    </table>\n\n </body>\n</html>\n',1,826,'payment_or_refund_notification',1,0,0,NULL),
- (28,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\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}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n  <tr>\n    <td>\n      {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n      {if $isRefund}\n        <p>{ts}A refund has been issued based on changes in your registration selections.{/ts}</p>\n      {else}\n        <p>{ts}Below you will find a receipt for this payment.{/ts}</p>\n        {if $paymentsComplete}\n          <p>{ts}Thank you for completing this contribution.{/ts}</p>\n        {/if}\n      {/if}\n    </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if $isRefund}\n      <tr>\n        <th {$headerStyle}>{ts}Refund Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Refund Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$refundAmount|crmMoney}\n        </td>\n      </tr>\n    {else}\n      <tr>\n        <th {$headerStyle}>{ts}Payment Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Payment Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paymentAmount|crmMoney}\n        </td>\n      </tr>\n    {/if}\n    {if $receive_date}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction Date{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$receive_date|crmDate}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($trxn_id)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$trxn_id}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($paidBy)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Paid By{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paidBy}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($checkNumber)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$checkNumber}\n        </td>\n      </tr>\n    {/if}\n\n  <tr>\n    <th {$headerStyle}>{ts}Contribution Details{/ts}</th>\n  </tr>\n  {if $totalAmount}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Fee{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalAmount|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $totalPaid}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Paid{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalPaid|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $amountOwed}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Balance Owed{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$amountOwed|crmMoney}\n    </td> {* This will be zero after final payment. *}\n  </tr>\n  {/if}\n  </table>\n\n  </td>\n  </tr>\n    <tr>\n      <td>\n  <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if !empty($billingName) || !empty($address)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {if !empty($billingName)}{$billingName}{/if}<br />\n        {if !empty($address)}{$address|nl2br}{/if}\n            </td>\n          </tr>\n    {/if}\n    {if !empty($credit_card_number)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n            </td>\n          </tr>\n    {/if}\n    {if $component eq \'event\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Event Information and Location{/ts}\n      </th>\n    </tr>\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n         {$event.event_title}<br />\n        {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n    </tr>\n\n    {if !empty($event.participant_role)}\n    <tr>\n      <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n      </td>\n      <td {$valueStyle}>\n        {$event.participant_role}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($isShowLocation)}\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n    <tr>\n      <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n      </td>\n    </tr>\n    {foreach from=$location.phone item=phone}\n    {if $phone.phone}\n          <tr>\n            <td {$labelStyle}>\n        {if $phone.phone_type}\n        {$phone.phone_type_display}\n        {else}\n        {ts}Phone{/ts}\n        {/if}\n            </td>\n            <td {$valueStyle}>\n        {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {foreach from=$location.email item=eventEmail}\n    {if $eventEmail.email}\n          <tr>\n            <td {$labelStyle}>\n        {ts}Email{/ts}\n            </td>\n            <td {$valueStyle}>\n        {$eventEmail.email}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {/if} {*phone block close*}\n    {/if}\n  </table>\n      </td>\n    </tr>\n\n    </table>\n\n </body>\n</html>\n',1,826,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if}  {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n        {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n        {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if !empty($event.is_monetary)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              {if !empty($dataArray)}\n               <td>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n        {if  !empty($pricesetFieldsCount) }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if $totalAmount and $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n          <tr>\n           {if $priceset || $priceset == 0}\n            <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {else}\n            <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {/if}\n          </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amount) && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $totalTaxAmount}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n        {if isset($balanceAmount)}\n           {ts}Total Paid{/ts}\n        {else}\n           {ts}Total Amount{/ts}\n         {/if}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n      {if isset($balanceAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Balance{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$balanceAmount|crmMoney}\n        </td>\n       </tr>\n      {/if}\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\n   {assign var=\"count\" value= 0}\n         {foreach from=$lineItem item=pcount}\n         {assign var=\"lineItemCount\" value=0}\n         {if $pcount neq \'skip\'}\n           {foreach from=$pcount item=p_count}\n           {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n           {/foreach}\n           {if $lineItemCount < 1 }\n           assign var=\"lineItemCount\" value=1}\n           {/if}\n           {assign var=\"count\" value=$count+$lineItemCount}\n         {/if}\n         {/foreach}\n   {$count}\n       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customProfile)}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,827,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if}  {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n        {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n        {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if !empty($event.is_monetary)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              {if !empty($dataArray)}\n               <td>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n        {if  !empty($pricesetFieldsCount) }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if $totalAmount and $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n          <tr>\n           {if $priceset || $priceset == 0}\n            <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {else}\n            <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {/if}\n          </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amount) && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $totalTaxAmount}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n        {if isset($balanceAmount)}\n           {ts}Total Paid{/ts}\n        {else}\n           {ts}Total Amount{/ts}\n         {/if}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n      {if isset($balanceAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Balance{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$balanceAmount|crmMoney}\n        </td>\n       </tr>\n      {/if}\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\n   {assign var=\"count\" value= 0}\n         {foreach from=$lineItem item=pcount}\n         {assign var=\"lineItemCount\" value=0}\n         {if $pcount neq \'skip\'}\n           {foreach from=$pcount item=p_count}\n           {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n           {/foreach}\n           {if $lineItemCount < 1 }\n           assign var=\"lineItemCount\" value=1}\n           {/if}\n           {assign var=\"count\" value=$count+$lineItemCount}\n         {/if}\n         {/foreach}\n   {$count}\n       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customProfile)}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,827,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\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}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n  {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($conference_sessions)}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($event.allow_selfcancelxfer) }\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} {if !empty($totalAmount)}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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=participantTotal}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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n     <p>{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 <strong> %1</strong>.{/ts}\n     {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>waitlisted</strong>.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>registered<strong>.{/ts}{/if}{/if}</p>\n\n    {/if}\n\n    <p>\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n     <p>{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"width:100%; max-width:700px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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        <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($event.is_share)}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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 title=$event.title pageURL=$eventUrl}\n            </td>\n        </tr>\n    {/if}\n    {if !empty($payer.name)}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if  !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td {$tdfirstStyle}>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td {$tdStyle} align=\"middle\">\n               {$line.qty}\n              </td>\n              <td {$tdStyle}>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              {if !empty($dataArray)}\n               <td {$tdStyle}>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td {$tdStyle}>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td {$tdStyle}>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td {$tdStyle}>\n               {$line.line_total+$line.tax_amount|crmMoney:$currency}\n              </td>\n        {if !empty($pricesetFieldsCount) }<td {$tdStyle}>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n            {if !empty($individual)}\n              <tr {$participantTotal}>\n                <td colspan=3>{ts}Participant Total{/ts}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=1>{$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax|crmMoney}</td>\n              </tr>\n            {/if}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if isset($totalAmount) and isset($totalTaxAmount)}\n        <tr>\n         <td {$labelStyle}>\n          {ts} Amount Before Tax: {/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n          {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {else}\n           <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {/if}\n         </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amounts) && empty($lineItem)}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n    {if isset($totalTaxAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n     {$count}\n     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customProfile)}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    </table>\n    {if !empty($event.allow_selfcancelxfer) }\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\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} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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        <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n      </td>\n     </tr>\n    {/if}\n </table>\n\n</body>\n</html>\n',1,828,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\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}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n  {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($conference_sessions)}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($event.allow_selfcancelxfer) }\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} {if !empty($totalAmount)}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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=participantTotal}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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n     <p>{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 <strong> %1</strong>.{/ts}\n     {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>waitlisted</strong>.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>registered<strong>.{/ts}{/if}{/if}</p>\n\n    {/if}\n\n    <p>\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n     <p>{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"width:100%; max-width:700px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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        <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($event.is_share)}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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 title=$event.title pageURL=$eventUrl}\n            </td>\n        </tr>\n    {/if}\n    {if !empty($payer.name)}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if  !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td {$tdfirstStyle}>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td {$tdStyle} align=\"middle\">\n               {$line.qty}\n              </td>\n              <td {$tdStyle}>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              {if !empty($dataArray)}\n               <td {$tdStyle}>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td {$tdStyle}>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td {$tdStyle}>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td {$tdStyle}>\n               {$line.line_total+$line.tax_amount|crmMoney:$currency}\n              </td>\n        {if !empty($pricesetFieldsCount) }<td {$tdStyle}>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n            {if !empty($individual)}\n              <tr {$participantTotal}>\n                <td colspan=3>{ts}Participant Total{/ts}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=1>{$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax|crmMoney}</td>\n              </tr>\n            {/if}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if isset($totalAmount) and isset($totalTaxAmount)}\n        <tr>\n         <td {$labelStyle}>\n          {ts} Amount Before Tax: {/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n          {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {else}\n           <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {/if}\n         </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amounts) && empty($lineItem)}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n    {if isset($totalTaxAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n     {$count}\n     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customProfile)}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    </table>\n    {if !empty($event.allow_selfcancelxfer) }\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\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} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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        <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n      </td>\n     </tr>\n    {/if}\n </table>\n\n</body>\n</html>\n',1,828,'event_online_receipt',0,1,0,NULL),
- (33,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $is_pay_later}\n  This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n  This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n  {$pay_later_receipt}\n{/if}\n\n  Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if !empty($source)}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n  {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n\n  Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n  {foreach from=$line_item.participants item=participant}\n    {$participant.display_name}\n  {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n  Waitlisted:\n    {foreach from=$line_item.waiting_participants item=participant}\n      {$participant.display_name}\n    {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n  {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n  If you have questions about the status of your registration or purchase please feel free to contact us.\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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}<p>{$greeting},</p>{/if}\n    {if $is_pay_later}\n      <p>\n        This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n      </p>\n    {else}\n      <p>\n        This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n  Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:</p>\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if !empty($source)}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"700\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {$line_item.location.address.1.display|nl2br}\n      {/if}{*End of isShowLocation condition*}<br /><br />\n      {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,829,'event_registration_receipt',1,0,0,NULL),
- (34,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $is_pay_later}\n  This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n  This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n  {$pay_later_receipt}\n{/if}\n\n  Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if !empty($source)}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n  {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n\n  Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n  {foreach from=$line_item.participants item=participant}\n    {$participant.display_name}\n  {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n  Waitlisted:\n    {foreach from=$line_item.waiting_participants item=participant}\n      {$participant.display_name}\n    {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n  {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n  If you have questions about the status of your registration or purchase please feel free to contact us.\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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}<p>{$greeting},</p>{/if}\n    {if $is_pay_later}\n      <p>\n        This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n      </p>\n    {else}\n      <p>\n        This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n  Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:</p>\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if !empty($source)}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"700\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {$line_item.location.address.1.display|nl2br}\n      {/if}{*End of isShowLocation condition*}<br /><br />\n      {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,829,'event_registration_receipt',0,1,0,NULL),
- (35,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {participant.role_id:label}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty(\'{participant.register_date}\')}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {participant.register_date}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,830,'participant_cancelled',1,0,0,NULL),
- (36,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {participant.role_id:label}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty(\'{participant.register_date}\')}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {participant.register_date}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,830,'participant_cancelled',0,1,0,NULL),
- (37,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\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}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n{if $event.allow_selfcancelxfer }\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} {if $totalAmount}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">{ts}Click here to confirm and complete your registration{/ts}</a>\n    </td>\n   </tr>\n  {/if}\n  {if $event.allow_selfcancelxfer }\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       <a href=\"{$selfService}\"> {ts}self service cancel or transfer{/ts}</a>\n  {/if}\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $event.is_public}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n           {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n         <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n  {if $event.allow_selfcancelxfer }\n   <tr>\n     <td colspan=\"2\" {$valueStyle}>\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} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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       <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n     </td>\n   </tr>\n  {/if}\n  <tr>\n   <td colspan=\"2\" {$valueStyle}>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,831,'participant_confirm',1,0,0,NULL),
- (38,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\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}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n{if $event.allow_selfcancelxfer }\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} {if $totalAmount}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">{ts}Click here to confirm and complete your registration{/ts}</a>\n    </td>\n   </tr>\n  {/if}\n  {if $event.allow_selfcancelxfer }\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       <a href=\"{$selfService}\"> {ts}self service cancel or transfer{/ts}</a>\n  {/if}\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $event.is_public}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n           {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n         <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n  {if $event.allow_selfcancelxfer }\n   <tr>\n     <td colspan=\"2\" {$valueStyle}>\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} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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       <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n     </td>\n   </tr>\n  {/if}\n  <tr>\n   <td colspan=\"2\" {$valueStyle}>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,831,'participant_confirm',0,1,0,NULL),
- (39,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\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 want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,832,'participant_expired',1,0,0,NULL),
- (40,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\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 want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,832,'participant_expired',0,1,0,NULL),
- (41,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,833,'participant_transferred',1,0,0,NULL),
- (42,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,833,'participant_transferred',0,1,0,NULL),
- (43,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,834,'friend',1,0,0,NULL),
- (44,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,834,'friend',0,1,0,NULL),
- (45,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}  {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif  $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if !empty($customValues)}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n  <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\"\n         style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n    <tr>\n      <td>\n        {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n        {if $receipt_text}\n          <p>{$receipt_text|htmlize}</p>\n          <p>{ts}Thank you for this contribution.{/ts}</p>\n        {/if}\n      </td>\n    </tr>\n    <tr>\n      <td>\n        <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n          {if empty($lineItem)}\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Information{/ts}\n              </th>\n            </tr>\n            <tr>\n              <td {$labelStyle}>\n                {ts}Membership Type{/ts}\n              </td>\n              <td {$valueStyle}>\n                {$membership_name}\n              </td>\n            </tr>\n          {/if}\n          {if empty($cancelled)}\n            {if empty($lineItem)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership Start Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_start_date}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership End Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_end_date}\n                </td>\n              </tr>\n            {/if}\n            {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Membership Fee{/ts}\n                </th>\n              </tr>\n              {if !empty($formValues.contributionType_name)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Financial Type{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.contributionType_name}\n                  </td>\n                </tr>\n              {/if}\n\n              {if !empty($lineItem)}\n                {foreach from=$lineItem item=value key=priceset}\n                  <tr>\n                    <td colspan=\"2\" {$valueStyle}>\n                      <table>\n                        <tr>\n                          <th>{ts}Item{/ts}</th>\n                          <th>{ts}Fee{/ts}</th>\n                          {if !empty($dataArray)}\n                            <th>{ts}SubTotal{/ts}</th>\n                            <th>{ts}Tax Rate{/ts}</th>\n                            <th>{ts}Tax Amount{/ts}</th>\n                            <th>{ts}Total{/ts}</th>\n                          {/if}\n                          <th>{ts}Membership Start Date{/ts}</th>\n                          <th>{ts}Membership End Date{/ts}</th>\n                        </tr>\n                        {foreach from=$value item=line}\n                          <tr>\n                            <td>\n                              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n                                <div>{$line.description|truncate:30:\"...\"}</div>{/if}\n                            </td>\n                            <td>\n                              {$line.line_total|crmMoney}\n                            </td>\n                            {if !empty($dataArray)}\n                              <td>\n                                {$line.unit_price*$line.qty|crmMoney}\n                              </td>\n                              {if $line.tax_rate || $line.tax_amount != \"\"}\n                                <td>\n                                  {$line.tax_rate|string_format:\"%.2f\"}%\n                                </td>\n                                <td>\n                                  {$line.tax_amount|crmMoney}\n                                </td>\n                              {else}\n                                <td></td>\n                                <td></td>\n                              {/if}\n                              <td>\n                                {$line.line_total+$line.tax_amount|crmMoney}\n                              </td>\n                            {/if}\n                            <td>\n                              {$line.start_date}\n                            </td>\n                            <td>\n                              {$line.end_date}\n                            </td>\n                          </tr>\n                        {/foreach}\n                      </table>\n                    </td>\n                  </tr>\n                {/foreach}\n                {if !empty($dataArray)}\n                  {if $formValues.total_amount and $totalTaxAmount}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Amount Before Tax:{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.total_amount-$totalTaxAmount|crmMoney}\n                    </td>\n                  </tr>\n                  {/if}\n                  {foreach from=$dataArray item=value key=priceset}\n                    <tr>\n                      {if $priceset}\n                        <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {elseif  $priceset == 0}\n                        <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {/if}\n                    </tr>\n                  {/foreach}\n                {/if}\n              {/if}\n              {if $totalTaxAmount}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Total Tax Amount{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$totalTaxAmount|crmMoney:$currency}\n                  </td>\n                </tr>\n              {/if}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Amount{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$formValues.total_amount|crmMoney}\n                </td>\n              </tr>\n              {if !empty($receive_date)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Date Received{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$receive_date|truncate:10:\'\'|crmDate}\n                  </td>\n                </tr>\n              {/if}\n              {if !empty($formValues.paidBy)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Paid By{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.paidBy}\n                  </td>\n                </tr>\n                {if !empty($formValues.check_number)}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Check Number{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.check_number}\n                    </td>\n                  </tr>\n                {/if}\n              {/if}\n            {/if}\n          {/if}\n        </table>\n      </td>\n    </tr>\n\n    {if !empty($isPrimary)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n            {if !empty($billingName)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Billing Name and Address{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {$billingName}<br/>\n                  {$address}\n                </td>\n              </tr>\n            {/if}\n\n            {if !empty($credit_card_type)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Credit Card Information{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$valueStyle}>\n                  {$credit_card_type}<br/>\n                  {$credit_card_number}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Expires{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n                </td>\n              </tr>\n            {/if}\n\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n    {if !empty($customValues)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Options{/ts}\n              </th>\n            </tr>\n            {foreach from=$customValues item=value key=customName}\n              <tr>\n                <td {$labelStyle}>\n                  {$customName}\n                </td>\n                <td {$valueStyle}>\n                  {$value}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n  </table>\n\n</body>\n</html>\n',1,835,'membership_offline_receipt',1,0,0,NULL),
- (46,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}  {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif  $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if !empty($customValues)}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n  <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\"\n         style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n    <tr>\n      <td>\n        {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n        {if $receipt_text}\n          <p>{$receipt_text|htmlize}</p>\n          <p>{ts}Thank you for this contribution.{/ts}</p>\n        {/if}\n      </td>\n    </tr>\n    <tr>\n      <td>\n        <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n          {if empty($lineItem)}\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Information{/ts}\n              </th>\n            </tr>\n            <tr>\n              <td {$labelStyle}>\n                {ts}Membership Type{/ts}\n              </td>\n              <td {$valueStyle}>\n                {$membership_name}\n              </td>\n            </tr>\n          {/if}\n          {if empty($cancelled)}\n            {if empty($lineItem)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership Start Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_start_date}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership End Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_end_date}\n                </td>\n              </tr>\n            {/if}\n            {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Membership Fee{/ts}\n                </th>\n              </tr>\n              {if !empty($formValues.contributionType_name)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Financial Type{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.contributionType_name}\n                  </td>\n                </tr>\n              {/if}\n\n              {if !empty($lineItem)}\n                {foreach from=$lineItem item=value key=priceset}\n                  <tr>\n                    <td colspan=\"2\" {$valueStyle}>\n                      <table>\n                        <tr>\n                          <th>{ts}Item{/ts}</th>\n                          <th>{ts}Fee{/ts}</th>\n                          {if !empty($dataArray)}\n                            <th>{ts}SubTotal{/ts}</th>\n                            <th>{ts}Tax Rate{/ts}</th>\n                            <th>{ts}Tax Amount{/ts}</th>\n                            <th>{ts}Total{/ts}</th>\n                          {/if}\n                          <th>{ts}Membership Start Date{/ts}</th>\n                          <th>{ts}Membership End Date{/ts}</th>\n                        </tr>\n                        {foreach from=$value item=line}\n                          <tr>\n                            <td>\n                              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n                                <div>{$line.description|truncate:30:\"...\"}</div>{/if}\n                            </td>\n                            <td>\n                              {$line.line_total|crmMoney}\n                            </td>\n                            {if !empty($dataArray)}\n                              <td>\n                                {$line.unit_price*$line.qty|crmMoney}\n                              </td>\n                              {if $line.tax_rate || $line.tax_amount != \"\"}\n                                <td>\n                                  {$line.tax_rate|string_format:\"%.2f\"}%\n                                </td>\n                                <td>\n                                  {$line.tax_amount|crmMoney}\n                                </td>\n                              {else}\n                                <td></td>\n                                <td></td>\n                              {/if}\n                              <td>\n                                {$line.line_total+$line.tax_amount|crmMoney}\n                              </td>\n                            {/if}\n                            <td>\n                              {$line.start_date}\n                            </td>\n                            <td>\n                              {$line.end_date}\n                            </td>\n                          </tr>\n                        {/foreach}\n                      </table>\n                    </td>\n                  </tr>\n                {/foreach}\n                {if !empty($dataArray)}\n                  {if $formValues.total_amount and $totalTaxAmount}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Amount Before Tax:{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.total_amount-$totalTaxAmount|crmMoney}\n                    </td>\n                  </tr>\n                  {/if}\n                  {foreach from=$dataArray item=value key=priceset}\n                    <tr>\n                      {if $priceset}\n                        <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {elseif  $priceset == 0}\n                        <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {/if}\n                    </tr>\n                  {/foreach}\n                {/if}\n              {/if}\n              {if $totalTaxAmount}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Total Tax Amount{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$totalTaxAmount|crmMoney:$currency}\n                  </td>\n                </tr>\n              {/if}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Amount{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$formValues.total_amount|crmMoney}\n                </td>\n              </tr>\n              {if !empty($receive_date)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Date Received{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$receive_date|truncate:10:\'\'|crmDate}\n                  </td>\n                </tr>\n              {/if}\n              {if !empty($formValues.paidBy)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Paid By{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.paidBy}\n                  </td>\n                </tr>\n                {if !empty($formValues.check_number)}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Check Number{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.check_number}\n                    </td>\n                  </tr>\n                {/if}\n              {/if}\n            {/if}\n          {/if}\n        </table>\n      </td>\n    </tr>\n\n    {if !empty($isPrimary)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n            {if !empty($billingName)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Billing Name and Address{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {$billingName}<br/>\n                  {$address}\n                </td>\n              </tr>\n            {/if}\n\n            {if !empty($credit_card_type)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Credit Card Information{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$valueStyle}>\n                  {$credit_card_type}<br/>\n                  {$credit_card_number}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Expires{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n                </td>\n              </tr>\n            {/if}\n\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n    {if !empty($customValues)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Options{/ts}\n              </th>\n            </tr>\n            {foreach from=$customValues item=value key=customName}\n              <tr>\n                <td {$labelStyle}>\n                  {$customName}\n                </td>\n                <td {$valueStyle}>\n                  {$value}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n  </table>\n\n</body>\n</html>\n',1,835,'membership_offline_receipt',0,1,0,NULL),
- (47,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount && !$is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n         <tr>\n           <td {$labelStyle}>\n           {ts}Total{/ts}\n            </td>\n            <td {$valueStyle}>\n            {$amount+$membership_amount|crmMoney}\n           </td>\n         </tr>\n       {/if}\n\n      {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($is_quick_config)}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and empty($is_quick_config)}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n            {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n              <th>{ts}Total{/ts}</th>\n            {/if}\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             {if !empty($dataArray)}\n              <td>\n               {$line.unit_price*$line.qty|crmMoney}\n              </td>\n              {if ($line.tax_rate || $line.tax_amount != \"\")}\n               <td>\n                {$line.tax_rate|string_format:\"%.2f\"}%\n               </td>\n               <td>\n                {$line.tax_amount|crmMoney}\n               </td>\n              {else}\n               <td></td>\n               <td></td>\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n             {/if}\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {if !empty($dataArray)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$amount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n         {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {else}\n           <td>&nbsp;{ts}NO{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {/if}\n         </tr>\n        {/foreach}\n       {/if}\n       {/if}\n       {if $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalTaxAmount|crmMoney:$currency}\n         </td>\n        </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if isset($amount_level)} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif isset($membership_amount)}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($membership_trx_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if !empty($is_recur)}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts}This membership will be renewed automatically.{/ts}\n         {if $cancelSubscriptionUrl}\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         {/if}\n        </td>\n       </tr>\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n         <th {$headerStyle}>\n           {ts}Billing Name and Address{/ts}\n         </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}<br />\n          {$email}\n        </td>\n      </tr>\n    {elseif !empty($email)}\n      <tr>\n        <th {$headerStyle}>\n          {ts}Registered Email{/ts}\n        </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$email}\n        </td>\n      </tr>\n    {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,836,'membership_online_receipt',1,0,0,NULL),
- (48,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount && !$is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n         <tr>\n           <td {$labelStyle}>\n           {ts}Total{/ts}\n            </td>\n            <td {$valueStyle}>\n            {$amount+$membership_amount|crmMoney}\n           </td>\n         </tr>\n       {/if}\n\n      {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($is_quick_config)}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and empty($is_quick_config)}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n            {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n              <th>{ts}Total{/ts}</th>\n            {/if}\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             {if !empty($dataArray)}\n              <td>\n               {$line.unit_price*$line.qty|crmMoney}\n              </td>\n              {if ($line.tax_rate || $line.tax_amount != \"\")}\n               <td>\n                {$line.tax_rate|string_format:\"%.2f\"}%\n               </td>\n               <td>\n                {$line.tax_amount|crmMoney}\n               </td>\n              {else}\n               <td></td>\n               <td></td>\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n             {/if}\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {if !empty($dataArray)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$amount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n         {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {else}\n           <td>&nbsp;{ts}NO{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {/if}\n         </tr>\n        {/foreach}\n       {/if}\n       {/if}\n       {if $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalTaxAmount|crmMoney:$currency}\n         </td>\n        </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if isset($amount_level)} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif isset($membership_amount)}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($membership_trx_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if !empty($is_recur)}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts}This membership will be renewed automatically.{/ts}\n         {if $cancelSubscriptionUrl}\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         {/if}\n        </td>\n       </tr>\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n         <th {$headerStyle}>\n           {ts}Billing Name and Address{/ts}\n         </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}<br />\n          {$email}\n        </td>\n      </tr>\n    {elseif !empty($email)}\n      <tr>\n        <th {$headerStyle}>\n          {ts}Registered Email{/ts}\n        </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$email}\n        </td>\n      </tr>\n    {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,836,'membership_online_receipt',0,1,0,NULL),
- (49,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n\n</body>\n</html>\n',1,837,'membership_autorenew_cancelled',1,0,0,NULL),
- (50,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n\n</body>\n</html>\n',1,837,'membership_autorenew_cancelled',0,1,0,NULL),
- (51,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n   <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n\n</body>\n</html>\n',1,838,'membership_autorenew_billing',1,0,0,NULL),
- (52,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n   <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n\n</body>\n</html>\n',1,838,'membership_autorenew_billing',0,1,0,NULL),
- (53,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n',' <table id=\"crm-event_receipt_test\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n',1,839,'test_preview',1,0,0,NULL),
- (54,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n',' <table id=\"crm-event_receipt_test\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n',1,839,'test_preview',0,1,0,NULL),
- (55,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Thank you for your generous pledge.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\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\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$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{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\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\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Thank you for your generous pledge.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,840,'pledge_acknowledge',1,0,0,NULL),
- (56,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Thank you for your generous pledge.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\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\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$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{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\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\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Thank you for your generous pledge.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,840,'pledge_acknowledge',0,1,0,NULL),
- (57,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\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}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\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\n{ts}Thank your for your generous support.{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,841,'pledge_reminder',1,0,0,NULL),
- (58,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\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}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\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\n{ts}Thank your for your generous support.{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,841,'pledge_reminder',0,1,0,NULL),
- (59,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,842,'uf_notify',1,0,0,NULL),
- (60,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,842,'uf_notify',0,1,0,NULL),
- (61,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,843,'petition_sign',1,0,0,NULL),
- (62,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,843,'petition_sign',0,1,0,NULL),
- (63,'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\nThank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl}\">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,844,'petition_confirmation_needed',1,0,0,NULL),
- (64,'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\nThank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl}\">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,844,'petition_confirmation_needed',0,1,0,NULL),
+ (1,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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    <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Activity Summary{/ts} - {$activityTypeName}\n              </th>\n            </tr>\n            {if !empty($isCaseActivity)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Your Case Role(s){/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$contact.role|default:\'\'}\n                </td>\n              </tr>\n              {if !empty($manageCaseURL)}\n                <tr>\n                  <td colspan=\"2\" {$valueStyle}>\n                    <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n                  </td>\n                </tr>\n              {/if}\n            {/if}\n            {if !empty($editActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$editActURL}\" title=\"{ts}Edit activity{/ts}\">{ts}Edit activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {if !empty($viewActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$viewActURL}\" title=\"{ts}View activity{/ts}\">{ts}View activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {foreach from=$activity.fields item=field}\n              <tr>\n                <td {$labelStyle}>\n                  {$field.label}\n                </td>\n                <td {$valueStyle}>\n                  {if $field.type eq \'Date\'}\n                    {$field.value|crmDate:$config->dateformatDatetime}\n                  {else}\n                    {$field.value}\n                  {/if}\n                </td>\n              </tr>\n            {/foreach}\n\n            {if !empty($activity.customGroups)}\n              {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n                <tr>\n                  <th {$headerStyle}>\n                    {$customGroupName}\n                  </th>\n                </tr>\n                {foreach from=$customGroup item=field}\n                  <tr>\n                    <td {$labelStyle}>\n                      {$field.label}\n                    </td>\n                    <td {$valueStyle}>\n                      {if $field.type eq \'Date\'}\n                        {$field.value|crmDate:$config->dateformatDatetime}\n                      {else}\n                        {$field.value}\n                      {/if}\n                    </td>\n                  </tr>\n                {/foreach}\n              {/foreach}\n            {/if}\n          </table>\n        </td>\n      </tr>\n    </table>\n</body>\n</html>\n',1,811,'case_activity',1,0,0,NULL),
+ (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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    <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Activity Summary{/ts} - {$activityTypeName}\n              </th>\n            </tr>\n            {if !empty($isCaseActivity)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Your Case Role(s){/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$contact.role|default:\'\'}\n                </td>\n              </tr>\n              {if !empty($manageCaseURL)}\n                <tr>\n                  <td colspan=\"2\" {$valueStyle}>\n                    <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n                  </td>\n                </tr>\n              {/if}\n            {/if}\n            {if !empty($editActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$editActURL}\" title=\"{ts}Edit activity{/ts}\">{ts}Edit activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {if !empty($viewActURL)}\n              <tr>\n                <td colspan=\"2\" {$valueStyle}>\n                  <a href=\"{$viewActURL}\" title=\"{ts}View activity{/ts}\">{ts}View activity{/ts}</a>\n                </td>\n              </tr>\n            {/if}\n            {foreach from=$activity.fields item=field}\n              <tr>\n                <td {$labelStyle}>\n                  {$field.label}\n                </td>\n                <td {$valueStyle}>\n                  {if $field.type eq \'Date\'}\n                    {$field.value|crmDate:$config->dateformatDatetime}\n                  {else}\n                    {$field.value}\n                  {/if}\n                </td>\n              </tr>\n            {/foreach}\n\n            {if !empty($activity.customGroups)}\n              {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n                <tr>\n                  <th {$headerStyle}>\n                    {$customGroupName}\n                  </th>\n                </tr>\n                {foreach from=$customGroup item=field}\n                  <tr>\n                    <td {$labelStyle}>\n                      {$field.label}\n                    </td>\n                    <td {$valueStyle}>\n                      {if $field.type eq \'Date\'}\n                        {$field.value|crmDate:$config->dateformatDatetime}\n                      {else}\n                        {$field.value}\n                      {/if}\n                    </td>\n                  </tr>\n                {/foreach}\n              {/foreach}\n            {/if}\n          </table>\n        </td>\n      </tr>\n    </table>\n</body>\n</html>\n',1,811,'case_activity',0,1,0,NULL),
+ (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\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{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact ID{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</body>\n</html>\n',1,812,'contribution_dupalert',1,0,0,NULL),
+ (4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\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{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact ID{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</body>\n</html>\n',1,812,'contribution_dupalert',0,1,0,NULL),
+ (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} %   {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else}                  {/if} {/if}   {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($ccContribution)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($formValues.product_name)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($formValues.receipt_text)}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contributor Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {contact.display_name}\n      </td>\n     </tr>\n     <tr>\n      {if \'{contribution.financial_type_id}\'}\n        <td {$labelStyle}>\n         {ts}Financial Type{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.financial_type_id:label}\n        </td>\n      {/if}\n     </tr>\n\n     {if $isShowLineItems}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table>\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n             <th>{ts}Subtotal{/ts}</th>\n             <th>{ts}Tax Rate{/ts}</th>\n             <th>{ts}Tax Amount{/ts}</th>\n           {/if}\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$lineItems item=line}\n           <tr>\n            <td>\n              {$line.title}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n            </td>\n            {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n              <td>\n                {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n              </td>\n              {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                  {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                  {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n                </td>\n              {else}\n                <td></td>\n                <td></td>\n              {/if}\n            {/if}\n            <td>\n             {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n\n     {/if}\n     {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n       <tr>\n         <td {$labelStyle}>\n           {ts} Amount before Tax : {/ts}\n         </td>\n         <td {$valueStyle}>\n           {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n         </td>\n       </tr>\n\n       {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n         <tr>\n          <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n          <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShowTax}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.tax_amount}\n        </td>\n      </tr>\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n        {contribution.total_amount}\n      </td>\n     </tr>\n\n     {if \'{contribution.receive_date}\'}\n       <tr>\n       <td {$labelStyle}>\n        {ts}Date Received{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receive_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n      {if \'{contribution.receipt_date}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receipt_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n     {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.payment_instrument_id:label}\n       </td>\n      </tr>\n      {if \'{contribution.check_number}\'}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if \'{contribution.trxn_id}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($ccContribution)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($formValues.product_name)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($fulfilled_date)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,813,'contribution_offline_receipt',1,0,0,NULL),
+ (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} %   {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else}                  {/if} {/if}   {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($ccContribution)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($formValues.product_name)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if !empty($fulfilled_date)}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($formValues.receipt_text)}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Below you will find a receipt for this contribution.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contributor Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {contact.display_name}\n      </td>\n     </tr>\n     <tr>\n      {if \'{contribution.financial_type_id}\'}\n        <td {$labelStyle}>\n         {ts}Financial Type{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.financial_type_id:label}\n        </td>\n      {/if}\n     </tr>\n\n     {if $isShowLineItems}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table>\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n             <th>{ts}Subtotal{/ts}</th>\n             <th>{ts}Tax Rate{/ts}</th>\n             <th>{ts}Tax Amount{/ts}</th>\n           {/if}\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$lineItems item=line}\n           <tr>\n            <td>\n              {$line.title}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n            </td>\n            {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n              <td>\n                {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n              </td>\n              {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                  {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                  {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n                </td>\n              {else}\n                <td></td>\n                <td></td>\n              {/if}\n            {/if}\n            <td>\n             {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n\n     {/if}\n     {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n       <tr>\n         <td {$labelStyle}>\n           {ts} Amount before Tax : {/ts}\n         </td>\n         <td {$valueStyle}>\n           {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n         </td>\n       </tr>\n\n       {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n         <tr>\n          <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n          <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShowTax}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.tax_amount}\n        </td>\n      </tr>\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n        {contribution.total_amount}\n      </td>\n     </tr>\n\n     {if \'{contribution.receive_date}\'}\n       <tr>\n       <td {$labelStyle}>\n        {ts}Date Received{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receive_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n      {if \'{contribution.receipt_date}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.receipt_date|crmDate:\"shortdate\"}\n       </td>\n      </tr>\n     {/if}\n\n     {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.payment_instrument_id:label}\n       </td>\n      </tr>\n      {if \'{contribution.check_number}\'}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if \'{contribution.trxn_id}\'}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n         {contribution.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($ccContribution)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($formValues.product_name)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($fulfilled_date)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,813,'contribution_offline_receipt',0,1,0,NULL),
+ (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n  {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n    {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n  {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium )}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n  {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n      </th>\n    </tr>\n\n    {if $isShowLineItems}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          <table>\n            <tr>\n              <th>{ts}Item{/ts}</th>\n              <th>{ts}Qty{/ts}</th>\n              <th>{ts}Each{/ts}</th>\n              {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                <th>{ts}Subtotal{/ts}</th>\n                <th>{ts}Tax Rate{/ts}</th>\n                <th>{ts}Tax Amount{/ts}</th>\n              {/if}\n              <th>{ts}Total{/ts}</th>\n            </tr>\n            {foreach from=$lineItems item=line}\n              <tr>\n                <td>{$line.title}</td>\n                <td>{$line.qty}</td>\n                <td>{$line.unit_price|crmMoney:$currency}</td>\n                {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                  <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n                  {if $line.tax_rate || $line.tax_amount != \"\"}\n                    <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n                    <td>{$line.tax_amount|crmMoney:$currency}</td>\n                  {else}\n                    <td></td>\n                    <td></td>\n                  {/if}\n                {/if}\n                <td>\n                  {$line.line_total+$line.tax_amount|crmMoney:$currency}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n\n      {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts} Amount before Tax : {/ts}\n          </td>\n          <td {$valueStyle}>\n            {$amount-$totalTaxAmount|crmMoney:$currency}\n          </td>\n        </tr>\n\n        {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n          <tr>\n            <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n            <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n          </tr>\n        {/foreach}\n\n      {/if}\n      {if $isShowTax}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n        </tr>\n      {/if}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.total_amount}\n        </td>\n      </tr>\n    {else}\n      {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n         </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n  {/if}\n\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($is_recur)}\n      <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n          {ts}This is a recurring contribution.{/ts}\n          {if $cancelSubscriptionUrl}\n            {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n          {/if}\n        </td>\n      </tr>\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n    {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n      {elseif !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($isShare)}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n            {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n            {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n        </td>\n      </tr>\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n     {elseif !empty($email)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n     {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,814,'contribution_online_receipt',1,0,0,NULL),
+ (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n  {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n    {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n  {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium )}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n</table>\n<table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n  {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n      </th>\n    </tr>\n\n    {if $isShowLineItems}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          <table>\n            <tr>\n              <th>{ts}Item{/ts}</th>\n              <th>{ts}Qty{/ts}</th>\n              <th>{ts}Each{/ts}</th>\n              {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                <th>{ts}Subtotal{/ts}</th>\n                <th>{ts}Tax Rate{/ts}</th>\n                <th>{ts}Tax Amount{/ts}</th>\n              {/if}\n              <th>{ts}Total{/ts}</th>\n            </tr>\n            {foreach from=$lineItems item=line}\n              <tr>\n                <td>{$line.title}</td>\n                <td>{$line.qty}</td>\n                <td>{$line.unit_price|crmMoney:$currency}</td>\n                {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n                  <td>{$line.unit_price*$line.qty|crmMoney:$currency}</td>\n                  {if $line.tax_rate || $line.tax_amount != \"\"}\n                    <td>{$line.tax_rate|string_format:\"%.2f\"}%</td>\n                    <td>{$line.tax_amount|crmMoney:$currency}</td>\n                  {else}\n                    <td></td>\n                    <td></td>\n                  {/if}\n                {/if}\n                <td>\n                  {$line.line_total+$line.tax_amount|crmMoney:$currency}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n\n      {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts} Amount before Tax : {/ts}\n          </td>\n          <td {$valueStyle}>\n            {$amount-$totalTaxAmount|crmMoney:$currency}\n          </td>\n        </tr>\n\n        {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n          <tr>\n            <td>{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}</td>\n            <td>{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</td>\n          </tr>\n        {/foreach}\n\n      {/if}\n      {if $isShowTax}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n        </tr>\n      {/if}\n      <tr>\n        <td {$labelStyle}>\n          {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n          {contribution.total_amount}\n        </td>\n      </tr>\n    {else}\n      {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n        <tr>\n          <td {$labelStyle}>\n            {ts}Total Tax Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n            {contribution.tax_amount}\n          </td>\n         </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n  {/if}\n\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($is_recur)}\n      <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n          {ts}This is a recurring contribution.{/ts}\n          {if $cancelSubscriptionUrl}\n            {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n          {/if}\n        </td>\n      </tr>\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n        <tr>\n          <td colspan=\"2\" {$labelStyle}>\n            {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n    {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n      {elseif !empty($softCreditTypes) and !empty($softCredits)}\n      {foreach from=$softCreditTypes item=softCreditType key=n}\n       <tr>\n        <th {$headerStyle}>\n         {$softCreditType}\n        </th>\n       </tr>\n       {foreach from=$softCredits.$n item=value key=label}\n         <tr>\n          <td {$labelStyle}>\n           {$label}\n          </td>\n          <td {$valueStyle}>\n           {$value}\n          </td>\n         </tr>\n        {/foreach}\n       {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($isShare)}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n            {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n            {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n        </td>\n      </tr>\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n     {elseif !empty($email)}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n     {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,814,'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','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n      <title></title>\n  </head>\n  <body>\n  <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n    {if $config->empoweredBy}\n      <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n    <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n        <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n        <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n        <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n      </tr>\n    </table>\n\n    <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n      </tr>\n      {foreach from=$lineItems item=line}\n        <tr>\n          <td style=\"text-align:left;nowrap\"><font size=\"1\">\n            {$line.title}\n          </font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n            {if $line.tax_amount != \'\'}\n              <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n            {else}\n              <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n            {/if}\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n        </tr>\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n      </tr>\n      {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n        {if $taxRate != 0}\n          <tr>\n            <td colspan=\"3\"></td>\n            <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n            <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n          </tr>\n        {/if}\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n          {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n            {ts}Amount Credited{/ts}\n          {else}\n            {ts}Amount Paid{/ts}\n          {/if}\n        </font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td colspan=\"2\"><hr></hr></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n      </tr>\n      <tr>\n        <td colspan=\"5\"></td>\n      </tr>\n      {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n        <tr>\n          <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n          <td colspan=\"2\"></td>\n        </tr>\n      {/if}\n    </table>\n\n    {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n      <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n        </tr>\n      </table>\n\n      <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n        <tr>\n          <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n            <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n              {domain.name}<br />\n              {domain.street_address} {domain.supplemental_address_1}<br />\n              {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n              {domain.city} {domain.postal_code}<br />\n              {domain.country_id:label}<br />\n              {domain.email}</div>\n              {domain.phone}<br />\n            </font>\n            <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n          </td>\n          <td width=\"40%\">\n            <table cellpadding=\"5\" cellspacing=\"0\"  width=\"100%\" border=\"0\">\n              <tr>\n                <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n                <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n              </tr>\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n              </tr>\n              <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n              {if $is_pay_later == 1}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n                </tr>\n              {else}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n                </tr>\n              {/if}\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n              </tr>\n            </table>\n          </td>\n        </tr>\n      </table>\n    {/if}\n\n    {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n    {if $config->empoweredBy}\n      <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n\n    <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n      <tr>\n        <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n         </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address}   {$supplemental_address_1}</font></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2}  {$stateProvinceAbbreviation}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.country_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.email}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.phone}\n        </font></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td colspan=\"2\">\n          <table>\n            <tr>\n              <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n            </tr>\n            {foreach from=$lineItems item=line key=index}\n              <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n              <tr>\n                <td style =\"text-align:left;\"  ><font size=\"1\">\n                  {$line.title}\n                </font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n                {if $line.tax_amount != \'\'}\n                  <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n                {else}\n                  <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n                {/if}\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n              </tr>\n            {/foreach}\n            <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n            </tr>\n            {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n                {if $taxRate != 0}\n                  <tr>\n                    <td colspan=\"3\"></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n                  </tr>\n                {/if}\n              {/foreach}\n            <tr>\n              <td colspan=\"3\"></td>\n              <td colspan=\"2\"><hr></hr></td>\n            </tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n            {if \'{contribution.is_pay_later}\' == 0}\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td colspan=\"2\"><hr></hr></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n                <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n              </tr>\n            {/if}\n            <br/><br/><br/>\n            <tr>\n              <td colspan=\"3\"></td>\n            </tr>\n            <tr>\n              <td></td>\n              <td colspan=\"3\"></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n\n    <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n      <tr>\n        <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n        <td width=\"40%\">\n          <table align=\"right\">\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n            </tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n            </tr>\n            <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n              <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n  {/if}\n\n  </div>\n  </body>\n</html>\n',1,815,'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','{ts}Contribution Invoice{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n      <title></title>\n  </head>\n  <body>\n  <div style=\"padding-top:100px;margin-right:50px;border-style: none;\">\n    {if $config->empoweredBy}\n      <table style=\"margin-top:5px;padding-bottom:50px;\" cellpadding=\"5\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{domain.empowered_by_civicrm_image_url}\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n    <table style=\"font-family: Arial, Verdana, sans-serif;\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <td width=\"30%\"><b><font size=\"4\" align=\"center\">{ts}INVOICE{/ts}</font></b></td>\n        <td width=\"50%\" valign=\"bottom\"><b><font size=\"1\" align=\"center\">{ts}Invoice Date:{/ts}</font></b></td>\n        <td valign=\"bottom\" style=\"white-space: nowrap\"><b><font size=\"1\" align=\"right\">{domain.name}</font></b></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$street_address} {$supplemental_address_1}</font></td>\n        <td><b><font size=\"1\" align=\"right\">{ts}Invoice Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"center\">{$supplemental_address_2} {$stateProvinceAbbreviation}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n        <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.country_id:label}</font></td>\n      </tr>\n      <tr>\n        <td><font size=\"1\" align=\"right\"> {$country}</font></td>\n        <td><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td valign=\"top\" style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{domain.email}</font> </td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td valign=\"top\"><font size=\"1\" align=\"right\">{domain.phone}</font> </td>\n      </tr>\n    </table>\n\n    <table style=\"padding-top:75px;font-family: Arial, Verdana, sans-serif;\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\">\n      <tr>\n        <th style=\"text-align:left;font-weight:bold;width:100%\"><font size=\"1\">{ts}Description{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{domain.tax_term}</font></th>\n        <th style=\"text-align:right;font-weight:bold;white-space: nowrap\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n      </tr>\n      {foreach from=$lineItems item=line}\n        <tr>\n          <td style=\"text-align:left;nowrap\"><font size=\"1\">\n            {$line.title}\n          </font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n            {if $line.tax_amount != \'\'}\n              <td style=\"text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n            {else}\n              <td style=\"text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}</font></td>\n            {/if}\n          <td style=\"text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n        </tr>\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n      </tr>\n      {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n        {if $taxRate != 0}\n          <tr>\n            <td colspan=\"3\"></td>\n            <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n            <td style=\"text-align:right\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n          </tr>\n        {/if}\n      {/foreach}\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\"><font size=\"1\">\n          {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n            {ts}Amount Credited{/ts}\n          {else}\n            {ts}Amount Paid{/ts}\n          {/if}\n        </font></td>\n        <td style=\"text-align:right;\"><font size=\"1\">{$amountPaid|crmMoney:$currency}</font></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td colspan=\"2\"><hr></hr></td>\n      </tr>\n      <tr>\n        <td colspan=\"3\"></td>\n        <td style=\"text-align:right;white-space: nowrap\" ><b><font size=\"1\">{ts}AMOUNT DUE:{/ts}</font></b></td>\n        <td style=\"text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n      </tr>\n      <tr>\n        <td colspan=\"5\"></td>\n      </tr>\n      {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n        <tr>\n          <td colspan=\"3\"><b><font size=\"1\" align=\"center\">{ts 1=$dueDate}DUE DATE: %1{/ts}</font></b></td>\n          <td colspan=\"2\"></td>\n        </tr>\n      {/if}\n    </table>\n\n    {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n      <table style=\"margin-top:5px;\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\"></td>\n        </tr>\n      </table>\n\n      <table style=\"margin-top:5px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" id=\"desc\">\n        <tr>\n          <td width=\"60%\"><b><font size=\"4\" align=\"right\">{ts}PAYMENT ADVICE{/ts}</font></b><br/><br/>\n            <font size=\"1\" align=\"left\"><b>{ts}To:{/ts}</b><div style=\"width:24em;word-wrap:break-word;\">\n              {domain.name}<br />\n              {domain.street_address} {domain.supplemental_address_1}<br />\n              {domain.supplemental_address_2} {domain.state_province_id:label}<br />\n              {domain.city} {domain.postal_code}<br />\n              {domain.country_id:label}<br />\n              {domain.email}</div>\n              {domain.phone}<br />\n            </font>\n            <br/><br/><font size=\"1\" align=\"left\">{$notes}</font>\n          </td>\n          <td width=\"40%\">\n            <table cellpadding=\"5\" cellspacing=\"0\"  width=\"100%\" border=\"0\">\n              <tr>\n                <td width=\"100%\"><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n                <td style=\"white-space: nowrap\"><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n              </tr>\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Invoice Number:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{contribution.invoice_number}</font></td>\n              </tr>\n              <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td></tr>\n              {if $is_pay_later == 1}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n                </tr>\n              {else}\n                <tr>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Amount Due:{/ts}</font></td>\n                  <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amountDue|crmMoney:$currency}</font></td>\n                </tr>\n              {/if}\n              <tr>\n                <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Due Date:{/ts}</font></td>\n                <td><font size=\"1\" align=\"right\">{$dueDate}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></td>\n              </tr>\n            </table>\n          </td>\n        </tr>\n      </table>\n    {/if}\n\n    {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n    {if $config->empoweredBy}\n      <table style=\"margin-top:2px;padding-left:7px;page-break-before: always;\">\n        <tr>\n          <td><img src=\"{$resourceBase}/i/civi99.png\" height=\"34px\" width=\"99px\"></td>\n        </tr>\n      </table>\n    {/if}\n\n    <table style=\"font-family: Arial, Verdana, sans-serif\" width=\"100%\" height=\"100\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n      <tr>\n        <td style=\"padding-left:15px;\"><b><font size=\"4\" align=\"center\">{ts}CREDIT NOTE{/ts}</font></b></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Date:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">{domain.name}</font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{$invoice_date}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.street_address}\n          {domain.supplemental_address_1}\n         </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$street_address}   {$supplemental_address_1}</font></td>\n        <td style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Credit Note Number:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.supplemental_address_2}\n          {domain.state_province_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"center\">{$supplemental_address_2}  {$stateProvinceAbbreviation}</font></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.city}\n          {domain.postal_code}\n        </font></td>\n      </tr>\n      <tr>\n        <td style=\"padding-left:17px;\"><font size=\"1\" align=\"right\">{$city}  {$postal_code}</font></td>\n        <td height=\"10\" style=\"padding-left:30px;\"><b><font size=\"1\" align=\"right\">{ts}Reference:{/ts}</font></b></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.country_id:label}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td style=\"padding-left:30px;\"><font size=\"1\" align=\"right\">{contribution.source}</font></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.email}\n        </font></td>\n      </tr>\n      <tr>\n        <td></td>\n        <td></td>\n        <td><font size=\"1\" align=\"right\">\n          {domain.phone}\n        </font></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:75px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td colspan=\"2\">\n          <table>\n            <tr>\n              <th style=\"padding-right:28px;text-align:left;font-weight:bold;width:200px;\"><font size=\"1\">{ts}Description{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Quantity{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts}Unit Price{/ts}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{domain.tax_term}</font></th>\n              <th style=\"padding-left:28px;text-align:right;font-weight:bold;\"><font size=\"1\">{ts 1=$currency}Amount %1{/ts}</font></th>\n            </tr>\n            {foreach from=$lineItems item=line key=index}\n              <tr><td colspan=\"5\"><hr {if $index == 0}size=\"3\" style=\"color:#000;\"{else}style=\"color:#F5F5F5;\"{/if}></hr></td></tr>\n              <tr>\n                <td style =\"text-align:left;\"  ><font size=\"1\">\n                  {$line.title}\n                </font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.qty}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.unit_price|crmMoney:$currency}</font></td>\n                {if $line.tax_amount != \'\'}\n                  <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}</font></td>\n                {else}\n                  <td style=\"padding-left:28px;text-align:right\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}</font></td>\n                {/if}\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$line.line_total|crmMoney:\'{contribution.currency}\'}</font></td>\n              </tr>\n            {/foreach}\n            <tr><td colspan=\"5\" style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}Sub Total{/ts}</font></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$subTotal|crmMoney:$currency}</font></td>\n            </tr>\n            {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n                {if $taxRate != 0}\n                  <tr>\n                    <td colspan=\"3\"></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}</font></td>\n                    <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\" align=\"right\">{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}</font> </td>\n                  </tr>\n                {/if}\n              {/foreach}\n            <tr>\n              <td colspan=\"3\"></td>\n              <td colspan=\"2\"><hr></hr></td>\n            </tr>\n            <tr>\n              <td colspan=\"3\"></td>\n              <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts 1=$currency}TOTAL %1{/ts}</font></b></td>\n              <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n            {if \'{contribution.is_pay_later}\' == 0}\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{ts}LESS Credit to invoice(s){/ts}</font></td>\n                <td style=\"padding-left:28px;text-align:right;\"><font size=\"1\">{$amount|crmMoney:$currency}</font></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td colspan=\"2\"><hr></hr></td>\n              </tr>\n              <tr>\n                <td colspan=\"3\"></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{ts}REMAINING CREDIT{/ts}</font></b></td>\n                <td style=\"padding-left:28px;text-align:right;\"><b><font size=\"1\">{$amountDue|crmMoney:$currency}</font></b></td>\n                <td style=\"padding-left:28px;\"><font size=\"1\" align=\"right\"></font></td>\n              </tr>\n            {/if}\n            <br/><br/><br/>\n            <tr>\n              <td colspan=\"3\"></td>\n            </tr>\n            <tr>\n              <td></td>\n              <td colspan=\"3\"></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n\n    <table width=\"100%\" style=\"margin-top:5px;padding-right:45px;\">\n      <tr>\n        <td><img src=\"{$resourceBase}/i/contribute/cut_line.png\" height=\"15\" width=\"100%\"></td>\n      </tr>\n    </table>\n\n    <table style=\"margin-top:6px;font-family: Arial, Verdana, sans-serif\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"5\" id=\"desc\">\n      <tr>\n        <td width=\"60%\"><font size=\"4\" align=\"right\"><b>{ts}CREDIT ADVICE{/ts}</b><br/><br /><div style=\"font-size:10px;max-width:300px;\">{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}</div><br/></font></td>\n        <td width=\"40%\">\n          <table align=\"right\">\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Customer:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contact.display_name}</font></td>\n            </tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Note#:{/ts}</font></td>\n              <td><font size=\"1\" align=\"right\">{contribution.creditnote_id}</font></td>\n            </tr>\n            <tr><td colspan=\"5\"style=\"color:#F5F5F5;\"><hr></hr></td></tr>\n            <tr>\n              <td colspan=\"2\"></td>\n              <td><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{ts}Credit Amount:{/ts}</font></td>\n              <td width=\'50px\'><font size=\"1\" align=\"right\" style=\"font-weight:bold;\">{$amount|crmMoney:$currency}</font></td>\n            </tr>\n          </table>\n        </td>\n      </tr>\n    </table>\n  {/if}\n\n  </div>\n  </body>\n</html>\n',1,815,'contribution_invoice_receipt',0,1,0,NULL),
+ (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}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\n{ts}Start Date{/ts}:  {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       {if $cancelSubscriptionUrl}\n       <tr>\n         <td {$labelStyle}>\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n       </tr>\n       {/if}\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}.</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      {if $cancelSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_recurring_notify',1,0,0,NULL),
+ (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}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\n{ts}Start Date{/ts}:  {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{/if}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       {if $cancelSubscriptionUrl}\n       <tr>\n         <td {$labelStyle}>\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n       </tr>\n       {/if}\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}.</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      {if $cancelSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n      {if $updateSubscriptionBillingUrl}\n        <tr>\n          <td {$labelStyle}>\n            {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n        </tr>\n      {/if}\n      {if $updateSubscriptionUrl}\n      <tr>\n        <td {$labelStyle}>\n          {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      {/if}\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n\n</body>\n</html>\n',1,816,'contribution_recurring_notify',0,1,0,NULL),
+ (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,817,'contribution_recurring_cancelled',1,0,0,NULL),
+ (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,817,'contribution_recurring_cancelled',0,1,0,NULL),
+ (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n    <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n\n</body>\n</html>\n',1,818,'contribution_recurring_billing',1,0,0,NULL),
+ (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n    <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n\n</body>\n</html>\n',1,818,'contribution_recurring_billing',0,1,0,NULL),
+ (17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your recurring contribution has been updated as requested:{/ts}\n    <p>{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}.</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,819,'contribution_recurring_edit',1,0,0,NULL),
+ (18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your recurring contribution has been updated as requested:{/ts}\n    <p>{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}.</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n</body>\n</html>\n',1,819,'contribution_recurring_edit',0,1,0,NULL),
+ (19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,820,'pcp_notify',1,0,0,NULL),
+ (20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1 fe=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,820,'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','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\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\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,821,'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','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\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\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,821,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\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\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n\n</body>\n</html>\n',1,822,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\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{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\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\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n\n</body>\n</html>\n',1,822,'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{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\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{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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}<p>{$greeting},</p>{/if}\n  <p>{ts}You have received a donation at your personal page{/ts}: <a href=\"{$pcpInfoURL}\">{$page_title}</a></p>\n  <p>{ts}Your fundraising total has been updated.{/ts}<br/>\n    {ts}The donor\'s information is listed below.  You can choose to contact them and convey your thanks if you wish.{/ts} <br/>\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}<br/>\n    {/if}\n  </p>\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n    <tr><td>{ts}Received{/ts}:</td><td> {$receive_date|crmDate}</td></tr>\n    <tr><td>{ts}Amount{/ts}:</td><td> {$total_amount|crmMoney:$currency}</td></tr>\n    <tr><td>{ts}Name{/ts}:</td><td> {$donors_display_name}</td></tr>\n    <tr><td>{ts}Email{/ts}:</td><td> {$donors_email}</td></tr>\n  </table>\n</body>\n</html>\n',1,823,'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{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\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{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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}<p>{$greeting},</p>{/if}\n  <p>{ts}You have received a donation at your personal page{/ts}: <a href=\"{$pcpInfoURL}\">{$page_title}</a></p>\n  <p>{ts}Your fundraising total has been updated.{/ts}<br/>\n    {ts}The donor\'s information is listed below.  You can choose to contact them and convey your thanks if you wish.{/ts} <br/>\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}<br/>\n    {/if}\n  </p>\n  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n    <tr><td>{ts}Received{/ts}:</td><td> {$receive_date|crmDate}</td></tr>\n    <tr><td>{ts}Amount{/ts}:</td><td> {$total_amount|crmMoney:$currency}</td></tr>\n    <tr><td>{ts}Name{/ts}:</td><td> {$donors_display_name}</td></tr>\n    <tr><td>{ts}Email{/ts}:</td><td> {$donors_email}</td></tr>\n  </table>\n</body>\n</html>\n',1,823,'pcp_owner_notify',0,1,0,NULL),
+ (27,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\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}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n  <tr>\n    <td>\n      {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n      {if $isRefund}\n        <p>{ts}A refund has been issued based on changes in your registration selections.{/ts}</p>\n      {else}\n        <p>{ts}Below you will find a receipt for this payment.{/ts}</p>\n        {if $paymentsComplete}\n          <p>{ts}Thank you for completing this contribution.{/ts}</p>\n        {/if}\n      {/if}\n    </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if $isRefund}\n      <tr>\n        <th {$headerStyle}>{ts}Refund Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Refund Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$refundAmount|crmMoney}\n        </td>\n      </tr>\n    {else}\n      <tr>\n        <th {$headerStyle}>{ts}Payment Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Payment Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paymentAmount|crmMoney}\n        </td>\n      </tr>\n    {/if}\n    {if $receive_date}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction Date{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$receive_date|crmDate}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($trxn_id)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$trxn_id}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($paidBy)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Paid By{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paidBy}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($checkNumber)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$checkNumber}\n        </td>\n      </tr>\n    {/if}\n\n  <tr>\n    <th {$headerStyle}>{ts}Contribution Details{/ts}</th>\n  </tr>\n  {if $totalAmount}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Fee{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalAmount|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $totalPaid}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Paid{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalPaid|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $amountOwed}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Balance Owed{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$amountOwed|crmMoney}\n    </td> {* This will be zero after final payment. *}\n  </tr>\n  {/if}\n  </table>\n\n  </td>\n  </tr>\n    <tr>\n      <td>\n  <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if !empty($billingName) || !empty($address)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {if !empty($billingName)}{$billingName}{/if}<br />\n        {if !empty($address)}{$address|nl2br}{/if}\n            </td>\n          </tr>\n    {/if}\n    {if !empty($credit_card_number)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n            </td>\n          </tr>\n    {/if}\n    {if $component eq \'event\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Event Information and Location{/ts}\n      </th>\n    </tr>\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n         {$event.event_title}<br />\n        {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n    </tr>\n\n    {if !empty($event.participant_role)}\n    <tr>\n      <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n      </td>\n      <td {$valueStyle}>\n        {$event.participant_role}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($isShowLocation)}\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n    <tr>\n      <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n      </td>\n    </tr>\n    {foreach from=$location.phone item=phone}\n    {if $phone.phone}\n          <tr>\n            <td {$labelStyle}>\n        {if $phone.phone_type}\n        {$phone.phone_type_display}\n        {else}\n        {ts}Phone{/ts}\n        {/if}\n            </td>\n            <td {$valueStyle}>\n        {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {foreach from=$location.email item=eventEmail}\n    {if $eventEmail.email}\n          <tr>\n            <td {$labelStyle}>\n        {ts}Email{/ts}\n            </td>\n            <td {$valueStyle}>\n        {$eventEmail.email}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {/if} {*phone block close*}\n    {/if}\n  </table>\n      </td>\n    </tr>\n\n    </table>\n\n </body>\n</html>\n',1,824,'payment_or_refund_notification',1,0,0,NULL),
+ (28,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\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}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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 <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n  <tr>\n    <td>\n      {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n      {if $isRefund}\n        <p>{ts}A refund has been issued based on changes in your registration selections.{/ts}</p>\n      {else}\n        <p>{ts}Below you will find a receipt for this payment.{/ts}</p>\n        {if $paymentsComplete}\n          <p>{ts}Thank you for completing this contribution.{/ts}</p>\n        {/if}\n      {/if}\n    </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if $isRefund}\n      <tr>\n        <th {$headerStyle}>{ts}Refund Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Refund Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$refundAmount|crmMoney}\n        </td>\n      </tr>\n    {else}\n      <tr>\n        <th {$headerStyle}>{ts}Payment Details{/ts}</th>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n        {ts}This Payment Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paymentAmount|crmMoney}\n        </td>\n      </tr>\n    {/if}\n    {if $receive_date}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction Date{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$receive_date|crmDate}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($trxn_id)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$trxn_id}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($paidBy)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Paid By{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$paidBy}\n        </td>\n      </tr>\n    {/if}\n    {if !empty($checkNumber)}\n      <tr>\n        <td {$labelStyle}>\n        {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n        {$checkNumber}\n        </td>\n      </tr>\n    {/if}\n\n  <tr>\n    <th {$headerStyle}>{ts}Contribution Details{/ts}</th>\n  </tr>\n  {if $totalAmount}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Fee{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalAmount|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $totalPaid}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Total Paid{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$totalPaid|crmMoney}\n    </td>\n  </tr>\n  {/if}\n  {if $amountOwed}\n  <tr>\n    <td {$labelStyle}>\n      {ts}Balance Owed{/ts}\n    </td>\n    <td {$valueStyle}>\n      {$amountOwed|crmMoney}\n    </td> {* This will be zero after final payment. *}\n  </tr>\n  {/if}\n  </table>\n\n  </td>\n  </tr>\n    <tr>\n      <td>\n  <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n    {if !empty($billingName) || !empty($address)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {if !empty($billingName)}{$billingName}{/if}<br />\n        {if !empty($address)}{$address|nl2br}{/if}\n            </td>\n          </tr>\n    {/if}\n    {if !empty($credit_card_number)}\n          <tr>\n            <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n            </th>\n          </tr>\n          <tr>\n            <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n            </td>\n          </tr>\n    {/if}\n    {if $component eq \'event\'}\n    <tr>\n      <th {$headerStyle}>\n        {ts}Event Information and Location{/ts}\n      </th>\n    </tr>\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n         {$event.event_title}<br />\n        {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n    </tr>\n\n    {if !empty($event.participant_role)}\n    <tr>\n      <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n      </td>\n      <td {$valueStyle}>\n        {$event.participant_role}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($isShowLocation)}\n    <tr>\n      <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n      </td>\n    </tr>\n    {/if}\n\n    {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n    <tr>\n      <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n      </td>\n    </tr>\n    {foreach from=$location.phone item=phone}\n    {if $phone.phone}\n          <tr>\n            <td {$labelStyle}>\n        {if $phone.phone_type}\n        {$phone.phone_type_display}\n        {else}\n        {ts}Phone{/ts}\n        {/if}\n            </td>\n            <td {$valueStyle}>\n        {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {foreach from=$location.email item=eventEmail}\n    {if $eventEmail.email}\n          <tr>\n            <td {$labelStyle}>\n        {ts}Email{/ts}\n            </td>\n            <td {$valueStyle}>\n        {$eventEmail.email}\n            </td>\n          </tr>\n    {/if}\n    {/foreach}\n    {/if} {*phone block close*}\n    {/if}\n  </table>\n      </td>\n    </tr>\n\n    </table>\n\n </body>\n</html>\n',1,824,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if}  {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n        {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n        {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if !empty($event.is_monetary)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              {if !empty($dataArray)}\n               <td>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n        {if  !empty($pricesetFieldsCount) }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if $totalAmount and $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n          <tr>\n           {if $priceset || $priceset == 0}\n            <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {else}\n            <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {/if}\n          </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amount) && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $totalTaxAmount}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n        {if isset($balanceAmount)}\n           {ts}Total Paid{/ts}\n        {else}\n           {ts}Total Amount{/ts}\n         {/if}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n      {if isset($balanceAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Balance{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$balanceAmount|crmMoney}\n        </td>\n       </tr>\n      {/if}\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\n   {assign var=\"count\" value= 0}\n         {foreach from=$lineItem item=pcount}\n         {assign var=\"lineItemCount\" value=0}\n         {if $pcount neq \'skip\'}\n           {foreach from=$pcount item=p_count}\n           {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n           {/foreach}\n           {if $lineItemCount < 1 }\n           assign var=\"lineItemCount\" value=1}\n           {/if}\n           {assign var=\"count\" value=$count+$lineItemCount}\n         {/if}\n         {/foreach}\n   {$count}\n       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customProfile)}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,825,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if}  {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n        {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n        {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if !empty($event.is_monetary)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              {if !empty($dataArray)}\n               <td>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n        {if  !empty($pricesetFieldsCount) }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if $totalAmount and $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n          <tr>\n           {if $priceset || $priceset == 0}\n            <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {else}\n            <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n            <td>&nbsp;{$value|crmMoney:$currency}</td>\n           {/if}\n          </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amount) && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $totalTaxAmount}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n        {if isset($balanceAmount)}\n           {ts}Total Paid{/ts}\n        {else}\n           {ts}Total Amount{/ts}\n         {/if}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n      {if isset($balanceAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Balance{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$balanceAmount|crmMoney}\n        </td>\n       </tr>\n      {/if}\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\n   {assign var=\"count\" value= 0}\n         {foreach from=$lineItem item=pcount}\n         {assign var=\"lineItemCount\" value=0}\n         {if $pcount neq \'skip\'}\n           {foreach from=$pcount item=p_count}\n           {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n           {/foreach}\n           {if $lineItemCount < 1 }\n           assign var=\"lineItemCount\" value=1}\n           {/if}\n           {assign var=\"count\" value=$count+$lineItemCount}\n         {/if}\n         {/foreach}\n   {$count}\n       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customProfile)}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if !empty($customGroup)}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,825,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\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}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n  {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($conference_sessions)}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($event.allow_selfcancelxfer) }\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} {if !empty($totalAmount)}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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=participantTotal}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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n     <p>{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 <strong> %1</strong>.{/ts}\n     {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>waitlisted</strong>.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>registered<strong>.{/ts}{/if}{/if}</p>\n\n    {/if}\n\n    <p>\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n     <p>{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"width:100%; max-width:700px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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        <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($event.is_share)}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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 title=$event.title pageURL=$eventUrl}\n            </td>\n        </tr>\n    {/if}\n    {if !empty($payer.name)}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if  !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td {$tdfirstStyle}>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td {$tdStyle} align=\"middle\">\n               {$line.qty}\n              </td>\n              <td {$tdStyle}>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              {if !empty($dataArray)}\n               <td {$tdStyle}>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td {$tdStyle}>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td {$tdStyle}>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td {$tdStyle}>\n               {$line.line_total+$line.tax_amount|crmMoney:$currency}\n              </td>\n        {if !empty($pricesetFieldsCount) }<td {$tdStyle}>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n            {if !empty($individual)}\n              <tr {$participantTotal}>\n                <td colspan=3>{ts}Participant Total{/ts}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=1>{$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax|crmMoney}</td>\n              </tr>\n            {/if}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if isset($totalAmount) and isset($totalTaxAmount)}\n        <tr>\n         <td {$labelStyle}>\n          {ts} Amount Before Tax: {/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n          {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {else}\n           <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {/if}\n         </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amounts) && empty($lineItem)}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n    {if isset($totalTaxAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n     {$count}\n     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customProfile)}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    </table>\n    {if !empty($event.allow_selfcancelxfer) }\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\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} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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        <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n      </td>\n     </tr>\n    {/if}\n </table>\n\n</body>\n</html>\n',1,826,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\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}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n  {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($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==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($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\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($conference_sessions)}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}  {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($pricesetFieldsCount) }\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($event.allow_selfcancelxfer) }\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} {if !empty($totalAmount)}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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=participantTotal}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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n    {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n     <p>{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 <strong> %1</strong>.{/ts}\n     {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>waitlisted</strong>.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to <strong>registered<strong>.{/ts}{/if}{/if}</p>\n\n    {/if}\n\n    <p>\n    {if !empty($isOnWaitlist)}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if !empty($isPrimary)}\n       <p>{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif !empty($isRequireApproval)}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if !empty($isPrimary)}\n      <p>{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}</p>\n     {/if}\n    {elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n     <p>{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"width:100%; max-width:700px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {event.title}<br />\n       {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($isShowLocation)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($event.is_public)}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n        <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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        <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n      </tr>\n     {/if}\n\n    {if !empty($event.is_share)}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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 title=$event.title pageURL=$eventUrl}\n            </td>\n        </tr>\n    {/if}\n    {if !empty($payer.name)}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n      <tr>\n       <th {$headerStyle}>\n        {if !empty($event.fee_label)}{$event.fee_label}{/if}\n       </th>\n      </tr>\n\n      {if !empty($lineItem)}\n       {foreach from=$lineItem item=value key=priceset}\n        {if $value neq \'skip\'}\n         {if !empty($isPrimary)}\n          {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table>\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n             {/if}\n             <th>{ts}Total{/ts}</th>\n       {if  !empty($pricesetFieldsCount) }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td {$tdfirstStyle}>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td {$tdStyle} align=\"middle\">\n               {$line.qty}\n              </td>\n              <td {$tdStyle}>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              {if !empty($dataArray)}\n               <td {$tdStyle}>\n                {$line.unit_price*$line.qty|crmMoney}\n               </td>\n               {if $line.tax_rate || $line.tax_amount != \"\"}\n                <td {$tdStyle}>\n                 {$line.tax_rate|string_format:\"%.2f\"}%\n                </td>\n                <td {$tdStyle}>\n                 {$line.tax_amount|crmMoney}\n                </td>\n               {else}\n                <td></td>\n                <td></td>\n               {/if}\n              {/if}\n              <td {$tdStyle}>\n               {$line.line_total+$line.tax_amount|crmMoney:$currency}\n              </td>\n        {if !empty($pricesetFieldsCount) }<td {$tdStyle}>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n            {if !empty($individual)}\n              <tr {$participantTotal}>\n                <td colspan=3>{ts}Participant Total{/ts}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=1>{$individual.$priceset.totalTaxAmt|crmMoney}</td>\n                <td colspan=2>{$individual.$priceset.totalAmtWithTax|crmMoney}</td>\n              </tr>\n            {/if}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n       {if !empty($dataArray)}\n        {if isset($totalAmount) and isset($totalTaxAmount)}\n        <tr>\n         <td {$labelStyle}>\n          {ts} Amount Before Tax: {/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalAmount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {/if}\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n          {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {else}\n           <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n          {/if}\n         </tr>\n        {/foreach}\n       {/if}\n      {/if}\n\n      {if !empty($amounts) && empty($lineItem)}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n    {if isset($totalTaxAmount)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Tax Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalTaxAmount|crmMoney:$currency}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($isPrimary)}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if !empty($pricesetFieldsCount) }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\n      {assign var=\"count\" value= 0}\n      {foreach from=$lineItem item=pcount}\n      {assign var=\"lineItemCount\" value=0}\n      {if $pcount neq \'skip\'}\n        {foreach from=$pcount item=p_count}\n        {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n        {/foreach}\n      {if $lineItemCount < 1 }\n        {assign var=\"lineItemCount\" value=1}\n      {/if}\n      {assign var=\"count\" value=$count+$lineItemCount}\n      {/if}\n      {/foreach}\n     {$count}\n     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($receive_date)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($financialTypeName)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$financialTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($trxn_id)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($paidBy)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($checkNumber)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($billingName)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if !empty($credit_card_type)}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n\n{if !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customProfile)}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    </table>\n    {if !empty($event.allow_selfcancelxfer) }\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\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} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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        <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n      </td>\n     </tr>\n    {/if}\n </table>\n\n</body>\n</html>\n',1,826,'event_online_receipt',0,1,0,NULL),
+ (33,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $is_pay_later}\n  This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n  This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n  {$pay_later_receipt}\n{/if}\n\n  Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if !empty($source)}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n  {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n\n  Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n  {foreach from=$line_item.participants item=participant}\n    {$participant.display_name}\n  {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n  Waitlisted:\n    {foreach from=$line_item.waiting_participants item=participant}\n      {$participant.display_name}\n    {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n  {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n  If you have questions about the status of your registration or purchase please feel free to contact us.\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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}<p>{$greeting},</p>{/if}\n    {if $is_pay_later}\n      <p>\n        This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n      </p>\n    {else}\n      <p>\n        This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n  Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:</p>\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if !empty($source)}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"700\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {$line_item.location.address.1.display|nl2br}\n      {/if}{*End of isShowLocation condition*}<br /><br />\n      {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,827,'event_registration_receipt',1,0,0,NULL),
+ (34,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $is_pay_later}\n  This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n  This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n  {$pay_later_receipt}\n{/if}\n\n  Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if !empty($source)}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n  {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n\n  Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n  {foreach from=$line_item.participants item=participant}\n    {$participant.display_name}\n  {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n  Waitlisted:\n    {foreach from=$line_item.waiting_participants item=participant}\n      {$participant.display_name}\n    {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n  {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n  If you have questions about the status of your registration or purchase please feel free to contact us.\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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}<p>{$greeting},</p>{/if}\n    {if $is_pay_later}\n      <p>\n        This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n      </p>\n    {else}\n      <p>\n        This is being sent to you as a {if !empty($is_refund)}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>Your order number is #{$transaction_id}. {if !empty($line_items) && empty($is_refund)} Information about the workshops will be sent separately to each participant.{/if}\n  Here\'s a summary of your transaction placed on {$transaction_date|crmDate:\"%D %I:%M %p %Z\"}:</p>\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if !empty($source)}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"700\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|crmDate:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {$line_item.location.address.1.display|nl2br}\n      {/if}{*End of isShowLocation condition*}<br /><br />\n      {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,827,'event_registration_receipt',0,1,0,NULL),
+ (35,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {participant.role_id:label}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty(\'{participant.register_date}\')}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {participant.register_date}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,828,'participant_cancelled',1,0,0,NULL),
+ (36,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {participant.role_id:label}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty(\'{participant.register_date}\')}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {participant.register_date}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,828,'participant_cancelled',0,1,0,NULL),
+ (37,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\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}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n{if $event.allow_selfcancelxfer }\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} {if $totalAmount}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">{ts}Click here to confirm and complete your registration{/ts}</a>\n    </td>\n   </tr>\n  {/if}\n  {if $event.allow_selfcancelxfer }\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       <a href=\"{$selfService}\"> {ts}self service cancel or transfer{/ts}</a>\n  {/if}\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $event.is_public}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n           {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n         <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n  {if $event.allow_selfcancelxfer }\n   <tr>\n     <td colspan=\"2\" {$valueStyle}>\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} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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       <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n     </td>\n   </tr>\n  {/if}\n  <tr>\n   <td colspan=\"2\" {$valueStyle}>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,829,'participant_confirm',1,0,0,NULL),
+ (38,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\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}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n{if $event.allow_selfcancelxfer }\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} {if $totalAmount}{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}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\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} {$icalFeed}\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} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">{ts}Click here to confirm and complete your registration{/ts}</a>\n    </td>\n   </tr>\n  {/if}\n  {if $event.allow_selfcancelxfer }\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       <a href=\"{$selfService}\"> {ts}self service cancel or transfer{/ts}</a>\n  {/if}\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n  {assign var=\'group_by_day\' value=\'NA\'}\n  {foreach from=$conference_sessions item=session}\n   {if $session.start_date|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n    {assign var=\'group_by_day\' value=$session.start_date}\n          <em>{$group_by_day|crmDate:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $event.is_public}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n           {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n         <a href=\"{$icalFeed}\">{ts}Download iCalendar entry for this event.{/ts}</a>\n       </td>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\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         <a href=\"{$gCalendar}\">{ts}Add event to Google Calendar{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n  {if $event.allow_selfcancelxfer }\n   <tr>\n     <td colspan=\"2\" {$valueStyle}>\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} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}<br />\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       <a href=\"{$selfService}\">{ts}Click here to transfer or cancel your registration.{/ts}</a>\n     </td>\n   </tr>\n  {/if}\n  <tr>\n   <td colspan=\"2\" {$valueStyle}>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,829,'participant_confirm',0,1,0,NULL),
+ (39,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\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 want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,830,'participant_expired',1,0,0,NULL),
+ (40,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\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 want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,830,'participant_expired',0,1,0,NULL),
+ (41,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,831,'participant_transferred',1,0,0,NULL),
+ (42,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\n       {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$event.location.address.1.display|nl2br}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if \'{contact.email}\'}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,831,'participant_transferred',0,1,0,NULL),
+ (43,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,832,'friend',1,0,0,NULL),
+ (44,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n\n</body>\n</html>\n',1,832,'friend',0,1,0,NULL),
+ (45,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}  {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif  $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if !empty($customValues)}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n  <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\"\n         style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n    <tr>\n      <td>\n        {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n        {if $receipt_text}\n          <p>{$receipt_text|htmlize}</p>\n          <p>{ts}Thank you for this contribution.{/ts}</p>\n        {/if}\n      </td>\n    </tr>\n    <tr>\n      <td>\n        <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n          {if empty($lineItem)}\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Information{/ts}\n              </th>\n            </tr>\n            <tr>\n              <td {$labelStyle}>\n                {ts}Membership Type{/ts}\n              </td>\n              <td {$valueStyle}>\n                {$membership_name}\n              </td>\n            </tr>\n          {/if}\n          {if empty($cancelled)}\n            {if empty($lineItem)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership Start Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_start_date}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership End Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_end_date}\n                </td>\n              </tr>\n            {/if}\n            {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Membership Fee{/ts}\n                </th>\n              </tr>\n              {if !empty($formValues.contributionType_name)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Financial Type{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.contributionType_name}\n                  </td>\n                </tr>\n              {/if}\n\n              {if !empty($lineItem)}\n                {foreach from=$lineItem item=value key=priceset}\n                  <tr>\n                    <td colspan=\"2\" {$valueStyle}>\n                      <table>\n                        <tr>\n                          <th>{ts}Item{/ts}</th>\n                          <th>{ts}Fee{/ts}</th>\n                          {if !empty($dataArray)}\n                            <th>{ts}SubTotal{/ts}</th>\n                            <th>{ts}Tax Rate{/ts}</th>\n                            <th>{ts}Tax Amount{/ts}</th>\n                            <th>{ts}Total{/ts}</th>\n                          {/if}\n                          <th>{ts}Membership Start Date{/ts}</th>\n                          <th>{ts}Membership End Date{/ts}</th>\n                        </tr>\n                        {foreach from=$value item=line}\n                          <tr>\n                            <td>\n                              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n                                <div>{$line.description|truncate:30:\"...\"}</div>{/if}\n                            </td>\n                            <td>\n                              {$line.line_total|crmMoney}\n                            </td>\n                            {if !empty($dataArray)}\n                              <td>\n                                {$line.unit_price*$line.qty|crmMoney}\n                              </td>\n                              {if $line.tax_rate || $line.tax_amount != \"\"}\n                                <td>\n                                  {$line.tax_rate|string_format:\"%.2f\"}%\n                                </td>\n                                <td>\n                                  {$line.tax_amount|crmMoney}\n                                </td>\n                              {else}\n                                <td></td>\n                                <td></td>\n                              {/if}\n                              <td>\n                                {$line.line_total+$line.tax_amount|crmMoney}\n                              </td>\n                            {/if}\n                            <td>\n                              {$line.start_date}\n                            </td>\n                            <td>\n                              {$line.end_date}\n                            </td>\n                          </tr>\n                        {/foreach}\n                      </table>\n                    </td>\n                  </tr>\n                {/foreach}\n                {if !empty($dataArray)}\n                  {if $formValues.total_amount and $totalTaxAmount}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Amount Before Tax:{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.total_amount-$totalTaxAmount|crmMoney}\n                    </td>\n                  </tr>\n                  {/if}\n                  {foreach from=$dataArray item=value key=priceset}\n                    <tr>\n                      {if $priceset}\n                        <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {elseif  $priceset == 0}\n                        <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {/if}\n                    </tr>\n                  {/foreach}\n                {/if}\n              {/if}\n              {if $totalTaxAmount}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Total Tax Amount{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$totalTaxAmount|crmMoney:$currency}\n                  </td>\n                </tr>\n              {/if}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Amount{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$formValues.total_amount|crmMoney}\n                </td>\n              </tr>\n              {if !empty($receive_date)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Date Received{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$receive_date|truncate:10:\'\'|crmDate}\n                  </td>\n                </tr>\n              {/if}\n              {if !empty($formValues.paidBy)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Paid By{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.paidBy}\n                  </td>\n                </tr>\n                {if !empty($formValues.check_number)}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Check Number{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.check_number}\n                    </td>\n                  </tr>\n                {/if}\n              {/if}\n            {/if}\n          {/if}\n        </table>\n      </td>\n    </tr>\n\n    {if !empty($isPrimary)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n            {if !empty($billingName)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Billing Name and Address{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {$billingName}<br/>\n                  {$address}\n                </td>\n              </tr>\n            {/if}\n\n            {if !empty($credit_card_type)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Credit Card Information{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$valueStyle}>\n                  {$credit_card_type}<br/>\n                  {$credit_card_number}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Expires{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n                </td>\n              </tr>\n            {/if}\n\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n    {if !empty($customValues)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Options{/ts}\n              </th>\n            </tr>\n            {foreach from=$customValues item=value key=customName}\n              <tr>\n                <td {$labelStyle}>\n                  {$customName}\n                </td>\n                <td {$valueStyle}>\n                  {$value}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n  </table>\n\n</body>\n</html>\n',1,833,'membership_offline_receipt',1,0,0,NULL),
+ (46,'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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}  {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif  $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if !empty($customValues)}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\n  <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\"\n         style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n    <!-- BEGIN HEADER -->\n    <!-- You can add table row(s) here with logo or other header elements -->\n    <!-- END HEADER -->\n\n    <!-- BEGIN CONTENT -->\n\n    <tr>\n      <td>\n        {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n        {if $receipt_text}\n          <p>{$receipt_text|htmlize}</p>\n          <p>{ts}Thank you for this contribution.{/ts}</p>\n        {/if}\n      </td>\n    </tr>\n    <tr>\n      <td>\n        <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n          {if empty($lineItem)}\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Information{/ts}\n              </th>\n            </tr>\n            <tr>\n              <td {$labelStyle}>\n                {ts}Membership Type{/ts}\n              </td>\n              <td {$valueStyle}>\n                {$membership_name}\n              </td>\n            </tr>\n          {/if}\n          {if empty($cancelled)}\n            {if empty($lineItem)}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership Start Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_start_date}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Membership End Date{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$mem_end_date}\n                </td>\n              </tr>\n            {/if}\n            {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Membership Fee{/ts}\n                </th>\n              </tr>\n              {if !empty($formValues.contributionType_name)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Financial Type{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.contributionType_name}\n                  </td>\n                </tr>\n              {/if}\n\n              {if !empty($lineItem)}\n                {foreach from=$lineItem item=value key=priceset}\n                  <tr>\n                    <td colspan=\"2\" {$valueStyle}>\n                      <table>\n                        <tr>\n                          <th>{ts}Item{/ts}</th>\n                          <th>{ts}Fee{/ts}</th>\n                          {if !empty($dataArray)}\n                            <th>{ts}SubTotal{/ts}</th>\n                            <th>{ts}Tax Rate{/ts}</th>\n                            <th>{ts}Tax Amount{/ts}</th>\n                            <th>{ts}Total{/ts}</th>\n                          {/if}\n                          <th>{ts}Membership Start Date{/ts}</th>\n                          <th>{ts}Membership End Date{/ts}</th>\n                        </tr>\n                        {foreach from=$value item=line}\n                          <tr>\n                            <td>\n                              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n                                <div>{$line.description|truncate:30:\"...\"}</div>{/if}\n                            </td>\n                            <td>\n                              {$line.line_total|crmMoney}\n                            </td>\n                            {if !empty($dataArray)}\n                              <td>\n                                {$line.unit_price*$line.qty|crmMoney}\n                              </td>\n                              {if $line.tax_rate || $line.tax_amount != \"\"}\n                                <td>\n                                  {$line.tax_rate|string_format:\"%.2f\"}%\n                                </td>\n                                <td>\n                                  {$line.tax_amount|crmMoney}\n                                </td>\n                              {else}\n                                <td></td>\n                                <td></td>\n                              {/if}\n                              <td>\n                                {$line.line_total+$line.tax_amount|crmMoney}\n                              </td>\n                            {/if}\n                            <td>\n                              {$line.start_date}\n                            </td>\n                            <td>\n                              {$line.end_date}\n                            </td>\n                          </tr>\n                        {/foreach}\n                      </table>\n                    </td>\n                  </tr>\n                {/foreach}\n                {if !empty($dataArray)}\n                  {if $formValues.total_amount and $totalTaxAmount}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Amount Before Tax:{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.total_amount-$totalTaxAmount|crmMoney}\n                    </td>\n                  </tr>\n                  {/if}\n                  {foreach from=$dataArray item=value key=priceset}\n                    <tr>\n                      {if $priceset}\n                        <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {elseif  $priceset == 0}\n                        <td>&nbsp;{ts}No{/ts} {$taxTerm}</td>\n                        <td>&nbsp;{$value|crmMoney:$currency}</td>\n                      {/if}\n                    </tr>\n                  {/foreach}\n                {/if}\n              {/if}\n              {if $totalTaxAmount}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Total Tax Amount{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$totalTaxAmount|crmMoney:$currency}\n                  </td>\n                </tr>\n              {/if}\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Amount{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$formValues.total_amount|crmMoney}\n                </td>\n              </tr>\n              {if !empty($receive_date)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Date Received{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$receive_date|truncate:10:\'\'|crmDate}\n                  </td>\n                </tr>\n              {/if}\n              {if !empty($formValues.paidBy)}\n                <tr>\n                  <td {$labelStyle}>\n                    {ts}Paid By{/ts}\n                  </td>\n                  <td {$valueStyle}>\n                    {$formValues.paidBy}\n                  </td>\n                </tr>\n                {if !empty($formValues.check_number)}\n                  <tr>\n                    <td {$labelStyle}>\n                      {ts}Check Number{/ts}\n                    </td>\n                    <td {$valueStyle}>\n                      {$formValues.check_number}\n                    </td>\n                  </tr>\n                {/if}\n              {/if}\n            {/if}\n          {/if}\n        </table>\n      </td>\n    </tr>\n\n    {if !empty($isPrimary)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n            {if !empty($billingName)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Billing Name and Address{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {$billingName}<br/>\n                  {$address}\n                </td>\n              </tr>\n            {/if}\n\n            {if !empty($credit_card_type)}\n              <tr>\n                <th {$headerStyle}>\n                  {ts}Credit Card Information{/ts}\n                </th>\n              </tr>\n              <tr>\n                <td {$valueStyle}>\n                  {$credit_card_type}<br/>\n                  {$credit_card_number}\n                </td>\n              </tr>\n              <tr>\n                <td {$labelStyle}>\n                  {ts}Expires{/ts}\n                </td>\n                <td {$valueStyle}>\n                  {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n                </td>\n              </tr>\n            {/if}\n\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n    {if !empty($customValues)}\n      <tr>\n        <td>\n          <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n            <tr>\n              <th {$headerStyle}>\n                {ts}Membership Options{/ts}\n              </th>\n            </tr>\n            {foreach from=$customValues item=value key=customName}\n              <tr>\n                <td {$labelStyle}>\n                  {$customName}\n                </td>\n                <td {$valueStyle}>\n                  {$value}\n                </td>\n              </tr>\n            {/foreach}\n          </table>\n        </td>\n      </tr>\n    {/if}\n\n  </table>\n\n</body>\n</html>\n',1,833,'membership_offline_receipt',0,1,0,NULL),
+ (47,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount && !$is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n         <tr>\n           <td {$labelStyle}>\n           {ts}Total{/ts}\n            </td>\n            <td {$valueStyle}>\n            {$amount+$membership_amount|crmMoney}\n           </td>\n         </tr>\n       {/if}\n\n      {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($is_quick_config)}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and empty($is_quick_config)}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n            {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n              <th>{ts}Total{/ts}</th>\n            {/if}\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             {if !empty($dataArray)}\n              <td>\n               {$line.unit_price*$line.qty|crmMoney}\n              </td>\n              {if ($line.tax_rate || $line.tax_amount != \"\")}\n               <td>\n                {$line.tax_rate|string_format:\"%.2f\"}%\n               </td>\n               <td>\n                {$line.tax_amount|crmMoney}\n               </td>\n              {else}\n               <td></td>\n               <td></td>\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n             {/if}\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {if !empty($dataArray)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$amount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n         {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {else}\n           <td>&nbsp;{ts}NO{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {/if}\n         </tr>\n        {/foreach}\n       {/if}\n       {/if}\n       {if $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalTaxAmount|crmMoney:$currency}\n         </td>\n        </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if isset($amount_level)} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif isset($membership_amount)}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($membership_trx_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if !empty($is_recur)}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts}This membership will be renewed automatically.{/ts}\n         {if $cancelSubscriptionUrl}\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         {/if}\n        </td>\n       </tr>\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n         <th {$headerStyle}>\n           {ts}Billing Name and Address{/ts}\n         </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}<br />\n          {$email}\n        </td>\n      </tr>\n    {elseif !empty($email)}\n      <tr>\n        <th {$headerStyle}>\n          {ts}Registered Email{/ts}\n        </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$email}\n        </td>\n      </tr>\n    {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,834,'membership_online_receipt',1,0,0,NULL),
+ (48,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}  {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"}  {$line.tax_rate|string_format:\"%.2f\"} %  {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else}                  {/if}   {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($onBehalfProfile)}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if !empty($selectPremium)}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n  {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n  {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($price)}\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}{/if}\n{/if}\n\n{if !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n     {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    {if !empty($receipt_text)}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount && !$is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n         <tr>\n           <td {$labelStyle}>\n           {ts}Total{/ts}\n            </td>\n            <td {$valueStyle}>\n            {$amount+$membership_amount|crmMoney}\n           </td>\n         </tr>\n       {/if}\n\n      {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($is_quick_config)}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and empty($is_quick_config)}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table>\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n            {if !empty($dataArray)}\n              <th>{ts}SubTotal{/ts}</th>\n              <th>{ts}Tax Rate{/ts}</th>\n              <th>{ts}Tax Amount{/ts}</th>\n              <th>{ts}Total{/ts}</th>\n            {/if}\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             {if !empty($dataArray)}\n              <td>\n               {$line.unit_price*$line.qty|crmMoney}\n              </td>\n              {if ($line.tax_rate || $line.tax_amount != \"\")}\n               <td>\n                {$line.tax_rate|string_format:\"%.2f\"}%\n               </td>\n               <td>\n                {$line.tax_amount|crmMoney}\n               </td>\n              {else}\n               <td></td>\n               <td></td>\n              {/if}\n              <td>\n               {$line.line_total+$line.tax_amount|crmMoney}\n              </td>\n             {/if}\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {if !empty($dataArray)}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Amount Before Tax:{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$amount-$totalTaxAmount|crmMoney}\n         </td>\n        </tr>\n        {foreach from=$dataArray item=value key=priceset}\n         <tr>\n         {if $priceset || $priceset == 0}\n           <td>&nbsp;{$taxTerm} {$priceset|string_format:\"%.2f\"}%</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {else}\n           <td>&nbsp;{ts}NO{/ts} {$taxTerm}</td>\n           <td>&nbsp;{$value|crmMoney:$currency}</td>\n         {/if}\n         </tr>\n        {/foreach}\n       {/if}\n       {/if}\n       {if $totalTaxAmount}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Total Tax Amount{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$totalTaxAmount|crmMoney:$currency}\n         </td>\n        </tr>\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if isset($amount_level)} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif isset($membership_amount)}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if !empty($receive_date)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($is_monetary) and !empty($trxn_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($membership_trx_id)}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if !empty($is_recur)}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts}This membership will be renewed automatically.{/ts}\n         {if $cancelSubscriptionUrl}\n           {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n         {/if}\n        </td>\n       </tr>\n       {if $updateSubscriptionBillingUrl}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n          </td>\n         </tr>\n       {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$soft_credit_type}\n       </th>\n      </tr>\n      {foreach from=$honoreeProfile item=value key=label}\n        <tr>\n         <td {$labelStyle}>\n          {$label}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($pcpBlock)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if !empty($onBehalfProfile)}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if !empty($billingName)}\n       <tr>\n         <th {$headerStyle}>\n           {ts}Billing Name and Address{/ts}\n         </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}<br />\n          {$email}\n        </td>\n      </tr>\n    {elseif !empty($email)}\n      <tr>\n        <th {$headerStyle}>\n          {ts}Registered Email{/ts}\n        </th>\n      </tr>\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\n          {$email}\n        </td>\n      </tr>\n    {/if}\n\n     {if !empty($credit_card_type)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if !empty($selectPremium)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($contact_email) OR !empty($contact_phone)}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if !empty($contact_email)}\n          <p>{$contact_email}</p>\n         {/if}\n         {if !empty($contact_phone)}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if !empty($is_deductible) AND !empty($price)}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if !empty($customPre)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if !empty($customPost)}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n\n</body>\n</html>\n',1,834,'membership_online_receipt',0,1,0,NULL),
+ (49,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n\n</body>\n</html>\n',1,835,'membership_autorenew_cancelled',1,0,0,NULL),
+ (50,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n\n</body>\n</html>\n',1,835,'membership_autorenew_cancelled',0,1,0,NULL),
+ (51,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n   <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n\n</body>\n</html>\n',1,836,'membership_autorenew_billing',1,0,0,NULL),
+ (52,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table style=\"width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n   <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n\n</body>\n</html>\n',1,836,'membership_autorenew_billing',0,1,0,NULL),
+ (53,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n',' <table id=\"crm-event_receipt_test\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n',1,837,'test_preview',1,0,0,NULL),
+ (54,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n',' <table id=\"crm-event_receipt_test\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n',1,837,'test_preview',0,1,0,NULL),
+ (55,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Thank you for your generous pledge.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\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\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$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{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\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\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Thank you for your generous pledge.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,838,'pledge_acknowledge',1,0,0,NULL),
+ (56,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}Thank you for your generous pledge.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\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\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$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{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\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\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts}Thank you for your generous pledge.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,838,'pledge_acknowledge',0,1,0,NULL),
+ (57,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\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}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\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\n{ts}Thank you for your generous support.{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank you for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,839,'pledge_reminder',1,0,0,NULL),
+ (58,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\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}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\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\n{ts}Thank you for your generous support.{/ts}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank you for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,839,'pledge_reminder',0,1,0,NULL),
+ (59,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,840,'uf_notify',1,0,0,NULL),
+ (60,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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  <table id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n\n</body>\n</html>\n',1,840,'uf_notify',0,1,0,NULL),
+ (61,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,841,'petition_sign',1,0,0,NULL),
+ (62,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,841,'petition_sign',0,1,0,NULL),
+ (63,'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\nThank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl}\">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,842,'petition_confirmation_needed',1,0,0,NULL),
+ (64,'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\nThank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}<p>{$greeting},</p>{/if}\n\n<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl}\">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,842,'petition_confirmation_needed',0,1,0,NULL),
  (65,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n<table width=612 cellpadding=0 cellspacing=0 bgcolor=\"#ffffff\">\n  <tr>\n    <td colspan=\"2\" bgcolor=\"#ffffff\" valign=\"middle\" >\n      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" >\n        <tr>\n          <td>\n          <a href=\"https://civicrm.org\"><img src=\"https://civicrm.org/sites/civicrm.org/files/top-logo_2.png\" border=0 alt=\"Replace this logo with the URL to your own\"></a>\n          </td>\n          <td>&nbsp; &nbsp;</td>\n          <td>\n          <a href=\"https://civicrm.org\" style=\"text-decoration: none;\"><font size=5 face=\"Arial, Verdana, sans-serif\" color=\"#8bc539\">Your Newsletter Title</font></a>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td valign=\"top\" width=\"70%\">\n      <!-- left column -->\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td style=\"font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        Greetings {contact.display_name},\n        <br /><br />\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        <br /><br />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        <br /><br />The logo you use must be uploaded to your server.  Copy and paste the URL path to the logo into the &lt;img src= tag in the HTML at the top.  Click \"Source\" or the Image button if you are using the text editor.\n        <br /><br />\n        Edit the color of the links and headers using the color button or by editing the HTML.\n        <br /><br />\n        Your newsletter message and donation appeal can go here.  Click the link button to <a href=\"#\">create links</a> - remember to use a fully qualified URL starting with http:// in all your links!\n        <br /><br />\n        To use CiviMail:\n        <ul>\n          <li><a href=\"http://book.civicrm.org/user/advanced-configuration/email-system-configuration/\">Configure your Email System</a>.</li>\n          <li>Make sure your web hosting provider allows outgoing bulk mail, and see if they have a restriction on quantity.  If they don\'t allow bulk mail, consider <a href=\"https://civicrm.org/providers/hosting\">finding a new host</a>.</li>\n        </ul>\n        Sincerely,\n        <br /><br />\n        Your Team\n        <br /><br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n\n    <td valign=\"top\" width=\"30%\" bgcolor=\"#ffffff\" style=\"border: 1px solid #056085;\">\n      <!-- right column -->\n      <table cellpadding=10 cellspacing=0 border=0>\n      <tr>\n        <td bgcolor=\"#056085\"><font face=\"Arial, Verdana, sans-serif\" size=\"4\" color=\"#ffffff\">News and Events</font></td>\n      </tr>\n      <tr>\n        <td style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#056085\"><strong>Featured Events</strong> </font><br />\n        Fundraising Dinner<br />\n        Training Meeting<br />\n        Board of Directors Annual Meeting<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Community Events</strong></font><br />\n        Bake Sale<br />\n        Charity Auction<br />\n        Art Exhibit<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Important Dates</strong></font><br />\n        Tuesday August 27<br />\n        Wednesday September 8<br />\n        Thursday September 29<br />\n        Saturday October 1<br />\n        Sunday October 20<br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n\n  <tr>\n    <td colspan=\"2\">\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td>\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#7dc857\"><strong>Helpful Tips</strong></font>\n        <br /><br />\n        <font color=\"#3b5187\">Tokens</font><br />\n        Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n        <br /><br />\n        <font color=\"#3b5187\">Plain Text Version</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Play by the Rules</font><br />\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. <em>{action.optOutUrl}</em> creates a link for recipients to click if they want to opt out of receiving  emails from your organization. <em>{action.unsubscribeUrl}</em> 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        <br /><br />\n        <font color=\"#3b5187\">Composing Offline</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Images</font><br />\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        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td colspan=\"2\" style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 10px;\">\n      <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n      <hr />\n      <a href=\"{action.unsubscribeUrl}\" title=\"click to unsubscribe\">Click here</a> to unsubscribe from this mailing list.<br /><br />\n      Our mailing address is:<br />\n      {domain.address}\n    </td>\n  </tr>\n  </table>\n\n</body>\n</html>\n',1,NULL,NULL,1,0,0,NULL),
  (66,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\n  <meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\n  <title></title>\n\n  <style type=\"text/css\">\n    {literal}\n    /* Client-specific Styles */\n    #outlook a {padding:0;} /* Force Outlook to provide a \"view in browser\" menu link. */\n    body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}\n\n    /* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */\n    .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */\n    .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;} /* Force Hotmail to display normal line spacing. */\n    #backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;}\n    img {outline:none; text-decoration:none;border:none; -ms-interpolation-mode: bicubic;}\n    a img {border:none;}\n    .image_fix {display:block;}\n    p {margin: 0px 0px !important;}\n    table td {border-collapse: collapse;}\n    table { border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; }\n    a {text-decoration: none;text-decoration:none;}\n\n    /*STYLES*/\n    table[class=full] { width: 100%; clear: both; }\n\n    /*IPAD STYLES*/\n    @media only screen and (max-width: 640px) {\n    a[href^=\"tel\"], a[href^=\"sms\"] {text-decoration: none;color:#136388;pointer-events: none;cursor: default;}\n    .mobile_link a[href^=\"tel\"], .mobile_link a[href^=\"sms\"] {text-decoration: default;color:#136388;pointer-events: auto;cursor: default;}\n    table[class=devicewidth] {width: 440px!important;text-align:center!important;}\n    table[class=devicewidthmob] {width: 416px!important;text-align:center!important;}\n    table[class=devicewidthinner] {width: 416px!important;text-align:center!important;}\n    img[class=banner] {width: 440px!important;auto!important;}\n    img[class=col2img] {width: 440px!important;height:auto!important;}\n    table[class=\"cols3inner\"] {width: 100px!important;}\n    table[class=\"col3img\"] {width: 131px!important;}\n    img[class=\"col3img\"] {width: 131px!important;height: auto!important;}\n    table[class=\"removeMobile\"]{width:10px!important;}\n    img[class=\"blog\"] {width: 440px!important;height: auto!important;}\n    }\n\n    /*IPHONE STYLES*/\n    @media only screen and (max-width: 480px) {\n    a[href^=\"tel\"], a[href^=\"sms\"] {text-decoration: none;color: #136388;pointer-events: none;cursor: default;}\n    .mobile_link a[href^=\"tel\"], .mobile_link a[href^=\"sms\"] {text-decoration: none;color:#136388;pointer-events: auto;cursor: default;}\n\n    table[class=devicewidth] {width: 280px!important;text-align:center!important;}\n    table[class=devicewidthmob] {width: 260px!important;text-align:center!important;}\n    table[class=devicewidthinner] {width: 260px!important;text-align:center!important;}\n    img[class=banner] {width: 280px!important;height:100px!important;}\n    img[class=col2img] {width: 280px!important;height:auto!important;}\n    table[class=\"cols3inner\"] {width: 260px!important;}\n    img[class=\"col3img\"] {width: 280px!important;height: auto!important;}\n    table[class=\"col3img\"] {width: 280px!important;}\n    img[class=\"blog\"] {width: 280px!important;auto!important;}\n    td[class=\"padding-top-right15\"]{padding:15px 15px 0 0 !important;}\n    td[class=\"padding-right15\"]{padding-right:15px !important;}\n    }\n\n    @media only screen and (max-device-width: 800px)\n    {td[class=\"padding-top-right15\"]{padding:15px 15px 0 0 !important;}\n    td[class=\"padding-right15\"]{padding-right:15px !important;}}\n    @media only screen and (max-device-width: 769px) {\n    .devicewidthmob {font-size:16px;}\n    }\n\n    @media only screen and (max-width: 640px) {\n    .desktop-spacer {display:none !important;}\n }\n  {/literal}\n  </style>\n\n<body>\n  <!-- Start of preheader --><!-- Start of preheader -->\n  <table bgcolor=\"#89c66b\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td height=\"20\" width=\"100%\">&nbsp;</td>\n  								</tr>\n  								<!-- Spacing -->\n  								<tr>\n  									<td>\n  									<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"310\">\n  										<tbody>\n  											<tr>\n  												<td align=\"left\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; line-height:120%; color: #f8f8f8;padding-left:15px; padding-bottom:5px;\" valign=\"middle\">Organization or Program Name Here</td>\n  											</tr>\n  										</tbody>\n  									</table>\n\n  									<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"emhide\" width=\"310\">\n  										<tbody>\n  											<tr>\n                          <td align=\"right\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px;color: #f8f8f8;padding-right:15px; text-align:right;\" valign=\"middle\">Month and Year</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  								<!-- Spacing -->\n  								<tr>\n  									<td height=\"20\" width=\"100%\">&nbsp;</td>\n  								</tr>\n  								<!-- Spacing -->\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n  <!-- End of main-banner-->\n\n  <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td height=\"20\" width=\"100%\">\n  									<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=\"93%\">\n  										<tbody>\n  											<tr>\n                          <td rowspan=\"2\" style=\"padding-top:10px; padding-bottom:10px;\" width=\"38%\"><img src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/civicrm-logo-transparent.png\" alt=\"Replace with your own logo\" width=\"220\" border=\"0\" /></td>\n  												<td align=\"right\" width=\"62%\">\n  												<h6 class=\"collapse\">&nbsp;</h6>\n  												</td>\n  											</tr>\n  											<tr>\n  												<td align=\"right\">\n  												<h5 style=\"font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, sans-serif; color:#136388;\">&nbsp;</h5>\n  												</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  								<tr>\n  									<td>\n  									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  										<tbody>\n  											<tr>\n  												<td width=\"100%\">\n  												<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  													<tbody><!-- /Spacing -->\n  														<tr>\n  															<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 23px; color:#f8f8f8; text-align:left; line-height: 32px; padding:5px 15px; background-color:#136388;\">Headline Here</td>\n  														</tr>\n  														<!-- Spacing -->\n  														<tr>\n  															<td>\n  															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"650\">\n  																<tbody><!-- hero story -->\n  																	<tr>\n  																		<td align=\"center\" class=\"devicewidthinner\" width=\"100%\">\n  																		<div class=\"imgpop\"><a href=\"#\"><img alt=\"\" border=\"0\" class=\"blog\" height=\"auto\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/650x396.png\" style=\"display:block; border:none; outline:none; text-decoration:none; padding:0; line-height:0;\" width=\"650\" /></a></div>\n  																		</td>\n  																	</tr>\n  																	<!-- /hero image --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing -->\n  																	<tr>\n  																		<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px;  text-align:left; line-height: 26px; padding:0 15px; color:#89c66b;\"><a href=\"#\" style=\"color:#89c66b;\">Your Heading Here</a></td>\n  																	</tr>\n  																	<!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing --><!-- content -->\n  																	<tr>\n  																		<td style=\"padding:0 15px;\">\n  																		<p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color: #7a6e67; text-align:left; line-height: 26px; padding-bottom:10px;\">{contact.email_greeting_display},																		</p>\n  																		<p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color: #7a6e67; text-align:left; line-height: 26px; padding-bottom:10px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!</span></p>\n  																		</td>\n  																	</tr>\n  																	<tr>\n  																		<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px; padding-left:15px;\"><a href=\"#\" style=\"color:#136388;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"read more\">Read More</a></td>\n  																	</tr>\n  																	<!-- /button --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n  																	</tr>\n  																	<!-- Spacing --><!-- end of content -->\n  																</tbody>\n  															</table>\n  															</td>\n  														</tr>\n  													</tbody>\n  												</table>\n  												</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n  <!-- end of hero image and story --><!-- story 1 -->\n\n  <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td>\n  									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  										<tbody>\n  											<tr>\n  												<td width=\"100%\">\n  												<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  													<tbody>\n  														<tr>\n  															<td>\n  															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"650\">\n  																<tbody><!-- image -->\n  																	<tr>\n  																		<td align=\"center\" class=\"devicewidthinner\" width=\"100%\">\n  																		<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" class=\"blog\" height=\"250\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/banner-image-650-250.png\" style=\"display:block; border:none; outline:none; text-decoration:none; padding:0; line-height:0;\" width=\"650\" /></a></div>\n  																		</td>\n  																	</tr>\n  																	<!-- /image --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing -->\n  																	<tr>\n  																		<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px;  text-align:left; line-height: 26px; padding:0 15px;\"><a href=\"#\" style=\"color:#89c66b;\">Your Heading  Here</a></td>\n  																	</tr>\n  																	<!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing --><!-- content -->\n  																	<tr>\n  																		<td style=\"padding:0 15px;\">\n  																		<p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color: #7a6e67; text-align:left; line-height: 26px; padding-bottom:10px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna </p>\n  																		</td>\n  																	</tr>\n  																	<tr>\n  																		<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px; padding-left:15px;\"><a href=\"#\" style=\"color:#136388;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"read more\">Read More</a></td>\n  																	</tr>\n  																	<!-- /button --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n  																	</tr>\n  																	<!-- Spacing --><!-- end of content -->\n  																</tbody>\n  															</table>\n  															</td>\n  														</tr>\n  													</tbody>\n  												</table>\n  												</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n  <!-- /story 2--><!-- banner1 -->\n\n  <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td>\n  									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  										<tbody>\n  											<tr>\n  												<td width=\"100%\">\n  												<table align=\"center\" bgcolor=\"#89c66b\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  													<tbody>\n  														<tr>\n  															<td>\n  															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"650\">\n  																<tbody><!-- image -->\n  																	<tr>\n  																		<td align=\"center\" class=\"devicewidthinner\" width=\"100%\">\n  																		<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" class=\"blog\" height=\"auto\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/banner-image-650-250.png\" style=\"display:block; border:none; outline:none; text-decoration:none; padding:0; line-height:0;\" width=\"650\" /></a></div>\n  																		</td>\n  																	</tr>\n  																	<!-- /image --><!-- content --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing -->\n  																	<tr>\n  																		<td style=\"padding:15px;\">\n  																		<p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color: #f0f0f0; text-align:left; line-height: 26px; padding-bottom:10px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna </p>\n  																		</td>\n  																	</tr>\n  																	<!-- /button --><!-- white button -->\n  																	<!-- /button --><!-- Spacing --><!-- end of content -->\n  																</tbody>\n  															</table>\n  															</td>\n  														</tr>\n  													</tbody>\n  												</table>\n  												</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n  <!-- /banner 1--><!-- banner 2 -->\n\n  <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td>\n  									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  										<tbody>\n  											<tr>\n  												<td width=\"100%\">\n  												<table align=\"center\" bgcolor=\"#136388\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  													<tbody>\n  														<tr>\n  															<td>\n  															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"650\">\n  																<tbody><!-- image -->\n  																	<tr>\n  																		<td align=\"center\" class=\"devicewidthinner\" width=\"100%\">\n  																		<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" class=\"blog\" height=\"auto\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/banner-image-650-250.png\" style=\"display:block; border:none; outline:none; text-decoration:none; padding:0; line-height:0;\" width=\"650\" /></a></div>\n  																		</td>\n  																	</tr>\n  																	<!-- /image --><!-- content --><!-- Spacing -->\n  																	<tr>\n  																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n  																	</tr>\n  																	<!-- /Spacing -->\n  																	<tr>\n  																		<td style=\"padding: 15px;\">\n  																		<p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color: #f0f0f0; text-align:left; line-height: 26px; padding-bottom:10px;\">Remember to link the facebook and twitter links below to your pages!</p>\n  																		</td>\n  																	</tr>\n  																	<!-- /button --><!-- white button -->\n  																	<tr>\n  																		<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px; padding-bottom:10px; padding-left:15px;\"><a href=\"#\" style=\"color:#ffffff;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"read more\">Read More</a></td>\n  																	</tr>\n  																	<!-- /button --><!-- Spacing --><!-- end of content -->\n  																</tbody>\n  															</table>\n  															</td>\n  														</tr>\n  													</tbody>\n  												</table>\n  												</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									</td>\n  								</tr>\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n  <!-- /banner2 --><!-- footer -->\n\n  <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"footer\" width=\"100%\">\n  	<tbody>\n  		<tr>\n  			<td>\n  			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  				<tbody>\n  					<tr>\n  						<td width=\"100%\">\n  						<table align=\"center\" bgcolor=\"#89c66b\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"650\">\n  							<tbody><!-- Spacing -->\n  								<tr>\n  									<td height=\"10\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n  								</tr>\n  								<!-- Spacing -->\n  								<tr>\n  									<td><!-- logo -->\n  									<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"250\">\n  										<tbody>\n  											<tr>\n  												<td width=\"20\">&nbsp;</td>\n  												<td align=\"left\" height=\"40\" width=\"250\"><span style=\"font-family: Helvetica, arial, sans-serif; font-size: 13px; text-align:left; line-height: 26px; padding-bottom:10px;\"><a href=\"{action.unsubscribeUrl}\" style=\"color: #f0f0f0; \">Unsubscribe | </a><a href=\"{action.subscribeUrl}\"  style=\"color: #f0f0f0;\">Subscribe |</a> <a href=\"{action.optOutUrl}\" style=\"color: #f0f0f0;\">Opt out</a></span></td>\n  											</tr>\n  											<tr>\n  												<td width=\"20\">&nbsp;</td>\n  												<td align=\"left\" height=\"40\" width=\"250\"><span style=\"font-family: Helvetica, arial, sans-serif; font-size: 13px; text-align:left; line-height: 26px; padding-bottom:10px; color: #f0f0f0;\">{domain.address}</span></td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									<!-- end of logo --><!-- start of social icons -->\n\n  									<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"40\" vaalign=\"middle\" width=\"60\">\n  										<tbody>\n  											<tr>\n  												<td align=\"left\" height=\"22\" width=\"22\">\n  												<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" height=\"22\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/facebook.png\" style=\"display:block; border:none; outline:none; text-decoration:none;\" width=\"22\" /> </a></div>\n  												</td>\n  												<td align=\"left\" style=\"font-size:1px; line-height:1px;\" width=\"10\">&nbsp;</td>\n  												<td align=\"right\" height=\"22\" width=\"22\">\n  												<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" height=\"22\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/twitter.png\" style=\"display:block; border:none; outline:none; text-decoration:none;\" width=\"22\" /> </a></div>\n  												</td>\n  												<td align=\"left\" style=\"font-size:1px; line-height:1px;\" width=\"20\">&nbsp;</td>\n  											</tr>\n  										</tbody>\n  									</table>\n  									<!-- end of social icons --></td>\n  								</tr>\n  								<!-- Spacing -->\n  								<tr>\n  									<td height=\"10\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n  								</tr>\n  								<!-- Spacing -->\n  							</tbody>\n  						</table>\n  						</td>\n  					</tr>\n  				</tbody>\n  			</table>\n  			</td>\n  		</tr>\n  	</tbody>\n  </table>\n\n</body>\n</html>\n',1,NULL,NULL,1,0,0,NULL),
  (67,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\n  <meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\n  <title></title>\n  <style type=\"text/css\">\n     {literal}\n     img {height: auto !important;}\n     /* Client-specific Styles */\n     #outlook a {padding:0;} /* Force Outlook to provide a \"view in browser\" menu link. */\n     body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}\n\n     /* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */\n     .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */\n     .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;} /* Force Hotmail to display normal line spacing. */\n     #backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;}\n     img {outline:none; text-decoration:none;border:none; -ms-interpolation-mode: bicubic;}\n     a img {border:none;}\n     .image_fix {display:block;}\n     p {margin: 0px 0px !important;}\n     table td {border-collapse: collapse;}\n     table { border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; }\n     a {/*color: #33b9ff;*/text-decoration: none;text-decoration:none!important;}\n\n\n     /*STYLES*/\n     table[class=full] { width: 100%; clear: both; }\n\n     /*IPAD STYLES*/\n     @media only screen and (max-width: 640px) {\n     a[href^=\"tel\"], a[href^=\"sms\"] {text-decoration: none;color: #0a8cce;pointer-events: none;cursor: default;}\n     .mobile_link a[href^=\"tel\"], .mobile_link a[href^=\"sms\"] {text-decoration: default;color: #0a8cce !important;pointer-events: auto;cursor: default;}\n     table[class=devicewidth] {width: 440px!important;text-align:center!important;}\n     table[class=devicewidthmob] {width: 414px!important;text-align:center!important;}\n     table[class=devicewidthinner] {width: 414px!important;text-align:center!important;}\n     img[class=banner] {width: 440px!important;auto!important;}\n     img[class=col2img] {width: 440px!important;height:auto!important;}\n     table[class=\"cols3inner\"] {width: 100px!important;}\n     table[class=\"col3img\"] {width: 131px!important;}\n     img[class=\"col3img\"] {width: 131px!important;height: auto!important;}\n     table[class=\"removeMobile\"]{width:10px!important;}\n     img[class=\"blog\"] {width: 440px!important;height: auto!important;}\n     }\n\n     /*IPHONE STYLES*/\n     @media only screen and (max-width: 480px) {\n     a[href^=\"tel\"], a[href^=\"sms\"] {text-decoration: none;color: #0a8cce;pointer-events: none;cursor: default;}\n     .mobile_link a[href^=\"tel\"], .mobile_link a[href^=\"sms\"] {text-decoration: default;color: #0a8cce !important; pointer-events: auto;cursor: default;}\n     table[class=devicewidth] {width: 280px!important;text-align:center!important;}\n     table[class=devicewidthmob] {width: 260px!important;text-align:center!important;}\n     table[class=devicewidthinner] {width: 260px!important;text-align:center!important;}\n     img[class=banner] {width: 280px!important;height:100px!important;}\n     img[class=col2img] {width: 280px!important;height:auto!important;}\n     table[class=\"cols3inner\"] {width: 260px!important;}\n     img[class=\"col3img\"] {width: 280px!important;height: auto!important;}\n     table[class=\"col3img\"] {width: 280px!important;}\n     img[class=\"blog\"] {width: 280px!important;auto!important;}\n     td[class=\"padding-top-right15\"]{padding:15px 15px 0 0 !important;}\n     td[class=\"padding-right15\"]{padding-right:15px !important;}\n     }\n\n     @media only screen and (max-device-width: 800px)\n     {td[class=\"padding-top-right15\"]{padding:15px 15px 0 0 !important;}\n     td[class=\"padding-right15\"]{padding-right:15px !important;}}\n     @media only screen and (max-device-width: 769px) {.devicewidthmob {font-size:14px;}}\n\n     @media only screen and (max-width: 640px) {.desktop-spacer {display:none !important;}\n	   }\n     {/literal}\n  </style>\n  <body>\n    <!-- Start of preheader --><!-- Start of preheader -->\n    <table bgcolor=\"#0B4151\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody><!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" width=\"100%\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td>\n    									<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"360\">\n    										<tbody>\n    											<tr>\n    												<td align=\"left\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; line-height:120%; color: #f8f8f8;padding-left:15px;\" valign=\"middle\">Organization or Program Name Here</td>\n    											</tr>\n    										</tbody>\n    									</table>\n\n    									<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"emhide\" width=\"320\">\n    										<tbody>\n    											<tr>\n    												<td align=\"right\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px;color: #f8f8f8;padding-right:15px;\" valign=\"middle\">Month Year</td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" width=\"100%\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- End of preheader --><!-- start of logo -->\n\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthmob\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody><!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" width=\"100%\">\n    									<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=\"93%\">\n    										<tbody>\n    											<tr>\n                             <td rowspan=\"2\" width=\"330\"><a href=\"#\"> <div class=\"imgpop\"><img src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/civicrm-logo-transparent.png\" alt=\"Replace with your own logo\" width=\"220\" border=\"0\" style=\"display:block;\"/></div></a></td>\n                            <td align=\"right\" >\n    												<h6 class=\"collapse\">&nbsp;</h6>\n    												</td>\n    											</tr>\n    											<tr>\n    												<td align=\"right\">\n\n    												</td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- end of logo --> <!-- hero story 1 -->\n\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"101%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#f8f8f8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody>\n    								<tr>\n    									<td>\n    									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    										<tbody>\n    											<tr>\n    												<td width=\"100%\">\n    												<table align=\"center\" bgcolor=\"#f8f8f8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    													<tbody><!-- /Spacing -->\n    														<tr>\n    															<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 24px; color:#f8f8f8; text-align:left; line-height: 26px; padding:5px 15px; background-color: #80C457\">Hero Story Heading</td>\n    														</tr>\n    														<!-- Spacing -->\n    														<tr>\n    															<td>\n    															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthinner\" width=\"700\">\n    																<tbody><!-- image -->\n    																	<tr>\n    																		<td align=\"center\" class=\"devicewidthinner\" width=\"100%\">\n    																		<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" class=\"blog\" height=\"396\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/700x396.png\" style=\"display:block; border:none; outline:none; text-decoration:none; padding:0; line-height:0;\" width=\"700\" /></a></div>\n    																		</td>\n    																	</tr>\n    																	<!-- /image --><!-- Spacing -->\n    																	<tr>\n    																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    																	</tr>\n    																	<!-- /Spacing --><!-- hero story -->\n    																	<tr>\n    																		<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px;  text-align:left; line-height: 26px; padding:0 15px;\"><a href=\"#\" style=\"color:#076187; text-decoration:none; \" target=\"_blank\">Subheading Here</a></td>\n    																	</tr>\n    																	<!-- Spacing -->\n    																	<tr>\n    																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    																	</tr><!-- /Spacing -->\n    																	<tr>\n    																		<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 26px; padding:0 15px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!</span></td>\n    																	</tr>\n\n    <!-- Spacing -->\n    																	<tr>\n    																		<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    																	</tr><!-- /Spacing -->\n\n              <!-- /Spacing --><!-- /hero story -->\n\n    																	<!-- Spacing -->                                                            <!-- Spacing -->\n\n\n\n    																	<!-- Spacing --><!-- end of content -->\n    																</tbody>\n    															</table>\n    															</td>\n    														</tr>\n    													</tbody>\n    												</table>\n    												</td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Section Heading -->\n    								<tr>\n    									<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 24px; color:#f8f8f8; text-align:left; line-height: 26px; padding:5px 15px; background-color: #80C457\">Section Heading Here</td>\n    								</tr>\n    								<!-- /Section Heading -->\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- /hero story 1 --><!-- story one -->\n\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody><!-- Spacing -->\n    								<tr>\n    									<td class=\"desktop-spacer\" height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td>\n    									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"660\">\n    										<tbody>\n    											<tr>\n    												<td><!-- Start of left column -->\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"330\">\n    													<tbody><!-- image -->\n    														<tr>\n    															<td align=\"center\" class=\"devicewidth\" height=\"150\" valign=\"top\" width=\"330\"><a href=\"#\"><img alt=\"\" border=\"0\" class=\"col2img\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/330x150.png\" style=\"display:block; border:none; outline:none; text-decoration:none; display:block;\" width=\"330\" /></a></td>\n    														</tr>\n    														<!-- /image -->\n    													</tbody>\n    												</table>\n    												<!-- end of left column --><!-- spacing for mobile devices-->\n\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobilespacing\">\n    													<tbody>\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    													</tbody>\n    												</table>\n    												<!-- end of for mobile devices--><!-- start of right column -->\n\n    												<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthmob\" width=\"310\">\n    													<tbody>\n    														<tr>\n    															<td class=\"padding-top-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px; text-align:left; line-height: 24px;\"><a href=\"#\" style=\"color:#076187; text-decoration:none; \" target=\"_blank\">Heading Here</a><a href=\"#\" style=\"color:#076187; text-decoration:none;\" target=\"_blank\" title=\"CiviCRM helps keep the “City Beautiful” Movement”going strong\"></a></td>\n    														</tr>\n    														<!-- end of title --><!-- Spacing -->\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    														<!-- /Spacing --><!-- content -->\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n                                                                tempor incididunt ut labore et dolore magna </span></td>\n    														</tr>\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px;\"><a href=\"#\" style=\"color:#80C457;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"CiviCRM helps keep the “City Beautiful” Movement”going strong\">Read More</a></td>\n    														</tr>\n    														<!-- /button --><!-- end of content -->\n    													</tbody>\n    												</table>\n    												<!-- end of right column --></td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- /story one -->\n    <!-- story two -->\n\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody><!-- Spacing -->\n    								<tr>\n    									<td bgcolor=\"#076187\" height=\"0\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing --><!-- Spacing -->\n    								<tr>\n    									<td class=\"desktop-spacer\" height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td>\n    									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"660\">\n    										<tbody>\n    											<tr>\n    												<td><!-- Start of left column -->\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"330\">\n    													<tbody><!-- image -->\n    														<tr>\n    															<td align=\"center\" class=\"devicewidth\" height=\"150\" valign=\"top\" width=\"330\"><a href=\"#\"><img alt=\"\" border=\"0\" class=\"col2img\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/330x150.png\" style=\"display:block; border:none; outline:none; text-decoration:none; display:block;\" width=\"330\" /></a></td>\n    														</tr>\n    														<!-- /image -->\n    													</tbody>\n    												</table>\n    												<!-- end of left column --><!-- spacing for mobile devices-->\n\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobilespacing\">\n    													<tbody>\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    													</tbody>\n    												</table>\n    												<!-- end of for mobile devices--><!-- start of right column -->\n\n    												<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthmob\" width=\"310\">\n    													<tbody>\n    														<tr>\n    															<td class=\"padding-top-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px; text-align:left; line-height: 24px;\"><a href=\"#\" style=\"color:#076187; text-decoration:none; \" target=\"_blank\">Heading Here</a><a href=\"#\" style=\"color:#076187; text-decoration:none;\" target=\"_blank\" title=\"How CiviCRM will take Tribodar Eco Learning Center to another level\"></a></td>\n    														</tr>\n    														<!-- end of title --><!-- Spacing -->\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    														<!-- /Spacing --><!-- content -->\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n                                                                tempor incididunt ut labore et dolore magna </span></td>\n    														</tr>\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px;\"><a href=\"#\" style=\"color:#80C457;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"How CiviCRM will take Tribodar Eco Learning Center to another level\">Read More</a></td>\n    														</tr>\n    														<!-- /button --><!-- end of content -->\n    													</tbody>\n    												</table>\n    												<!-- end of right column --></td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- /story two --><!-- story three -->\n\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody><!-- Spacing -->\n    								<tr>\n    									<td bgcolor=\"#076187\" height=\"0\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing --><!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" class=\"desktop-spacer\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td>\n    									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"660\">\n    										<tbody>\n    											<tr>\n    												<td><!-- Start of left column -->\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"330\">\n    													<tbody><!-- image -->\n    														<tr>\n    															<td align=\"center\" class=\"devicewidth\" height=\"150\" valign=\"top\" width=\"330\"><a href=\"#\"><img alt=\"\" border=\"0\" class=\"col2img\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/330x150.png\" style=\"display:block; border:none; outline:none; text-decoration:none; display:block;\" width=\"330\" /></a></td>\n    														</tr>\n    														<!-- /image -->\n    													</tbody>\n    												</table>\n    												<!-- end of left column --><!-- spacing for mobile devices-->\n\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobilespacing\">\n    													<tbody>\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    													</tbody>\n    												</table>\n    												<!-- end of for mobile devices--><!-- start of right column -->\n\n    												<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthmob\" width=\"310\">\n    													<tbody>\n    														<tr>\n    															<td class=\"padding-top-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px;  text-align:left; line-height: 24px;\"><a href=\"#\" style=\"color:#076187; text-decoration:none; \" target=\"_blank\">Heading Here</a><a href=\"#\" style=\"color:#076187; text-decoration:none;\" target=\"_blank\" title=\"CiviCRM provides a soup-to-nuts open-source solution for Friends of the San Pedro River\"></a></td>\n    														</tr>\n    														<!-- end of title --><!-- Spacing -->\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    														<!-- /Spacing --><!-- content -->\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n                                                                tempor incididunt ut labore et dolore magna </span></td>\n    														</tr>\n    														<tr>\n    															<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px;\"><a href=\"#\" style=\"color:#80C457;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"CiviCRM provides a soup-to-nuts open-source solution for Friends of the San Pedro River\">Read More</a></td>\n    														</tr>\n    														<!-- /button --><!-- end of content -->\n    													</tbody>\n    												</table>\n    												<!-- end of right column --></td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- /story three -->\n\n\n\n\n\n    <!-- story four -->\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"left-image\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				<tbody>\n    					<tr>\n    						<td width=\"100%\">\n    						<table align=\"center\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    							<tbody>\n                                <!-- Spacing -->\n    								<tr>\n    									<td bgcolor=\"#076187\" height=\"0\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n                                <!-- Spacing -->\n    								<tr>\n    									<td class=\"desktop-spacer\" height=\"20\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td>\n    									<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"660\">\n    										<tbody>\n    											<tr>\n    												<td><!-- Start of left column -->\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"330\">\n    													<tbody><!-- image -->\n    														<tr>\n    															<td align=\"center\" class=\"devicewidth\" height=\"150\" valign=\"top\" width=\"330\"><a href=\"#\"><img alt=\"\" border=\"0\" class=\"col2img\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/330x150.png\" style=\"display:block; border:none; outline:none; text-decoration:none; display:block;\" width=\"330\" /></a></td>\n    														</tr>\n    														<!-- /image -->\n    													</tbody>\n    												</table>\n    												<!-- end of left column --><!-- spacing for mobile devices-->\n\n    												<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mobilespacing\">\n    													<tbody>\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    													</tbody>\n    												</table>\n    												<!-- end of for mobile devices--><!-- start of right column -->\n\n    												<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidthmob\" width=\"310\">\n    													<tbody>\n    														<tr>\n    															<td class=\"padding-top-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 18px;text-align:left; line-height: 24px;\"><a href=\"#\" style=\"color:#076187; text-decoration:none; \" target=\"_blank\">Heading Here</a><a href=\"#\" style=\"color:#076187; text-decoration:none;\" target=\"_blank\" title=\"Google Summer of Code\"></a></td>\n    														</tr>\n    														<!-- end of title --><!-- Spacing -->\n    														<tr>\n    															<td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n    														</tr>\n    														<!-- /Spacing --><!-- content -->\n    														<tr>\n    															<td class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\"><span class=\"padding-right15\" style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; color: #7a6e67; text-align:left; line-height: 24px;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n                                                                tempor incididunt ut labore et dolore magna </span></td>\n    														</tr>\n    														<tr>\n    															<td style=\"font-family: Helvetica, arial, sans-serif; font-size: 14px; font-weight:bold; color: #333333; text-align:left;line-height: 24px; padding-top:10px;\"><a href=\"#\" style=\"color:#80C457;text-decoration:none;font-weight:bold;\" target=\"_blank\" title=\"Google Summer of Code\">Read More</a></td>\n    														</tr>\n    														<!-- /button --><!-- end of content -->\n    													</tbody>\n    												</table>\n    												<!-- end of right column --></td>\n    											</tr>\n    										</tbody>\n    									</table>\n    									</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n                       <td height=\"15\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\" width=\"100%\">&nbsp;</td>\n                    </tr>\n                    <!-- /Spacing -->\n                    <tr>\n                      <td style=\"padding: 15px;\">\n                      <p style=\"font-family: Helvetica, arial, sans-serif; font-size: 16px; color:#076187; text-align:left; line-height: 26px; padding-bottom:10px;\">Remember to link the facebook and twitter links below to your pages!</p>\n                      </td>\n    								</tr>\n    								<!-- Spacing -->\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- /story four -->\n\n    <!-- footer -->\n\n    <!-- End of footer --><!-- Start of postfooter -->\n    <table bgcolor=\"#d8d8d8\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"backgroundTable\" st-sortable=\"footer\" width=\"100%\">\n    	<tbody>\n    		<tr>\n    			<td>\n    			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n            <tbody>\n              <tr>\n                <td width=\"100%\">\n                  <table align=\"center\" bgcolor=\"#89c66b\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"devicewidth\" width=\"700\">\n    				        <tbody><!-- Spacing -->\n    					        <tr>\n                        <td height=\"10\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    					        </tr>\n    					        <!-- Spacing -->\n    					        <tr>\n                        <td><!-- logo -->\n                        <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"250\">\n            							<tbody>\n            								<tr>\n                               <td width=\"20\">&nbsp;</td>\n                              <td align=\"left\" height=\"40\" width=\"250\"><span style=\"font-family: Helvetica, arial, sans-serif; font-size: 13px; text-align:left; line-height: 26px; padding-bottom:10px;\"><a href=\"{action.unsubscribeUrl}\" style=\"color: #f0f0f0;\">Unsubscribe | </a><a href=\"{action.subscribeUrl}\" style=\"color: #f0f0f0;\">Subscribe |</a> <a href=\"{action.optOutUrl}\" style=\"color: #f0f0f0;\">Opt out</a></span></td>\n                            </tr>\n      											<tr>\n      												<td width=\"20\">&nbsp;</td>\n      												<td align=\"left\" height=\"40\" width=\"250\"><span style=\"font-family: Helvetica, arial, sans-serif; font-size: 13px; text-align:left; line-height: 26px; padding-bottom:10px; color: #f0f0f0;\">{domain.address}</span></td>\n      											</tr>\n                          </tbody>\n                        </table>\n                        <!-- end of logo --><!-- start of social icons -->\n      									<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"40\" vaalign=\"middle\" width=\"60\">\n      										<tbody>\n      											<tr>\n      												<td align=\"left\" height=\"22\" width=\"22\">\n                                <div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" height=\"22\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/facebook.png\" style=\"display:block; border:none; outline:none; text-decoration:none;\" width=\"22\" /> </a></div>      											  </td>\n      												<td align=\"left\" style=\"font-size:1px; line-height:1px;\" width=\"10\">&nbsp;</td>\n      												<td align=\"right\" height=\"22\" width=\"22\">\n      												<div class=\"imgpop\"><a href=\"#\" target=\"_blank\"><img alt=\"\" border=\"0\" height=\"22\" src=\"https://civicrm.org/sites/default/files/civicrm/custom/images/twitter.png\" style=\"display:block; border:none; outline:none; text-decoration:none;\" width=\"22\" /> </a></div>\n      												</td>\n      												<td align=\"left\" style=\"font-size:1px; line-height:1px;\" width=\"20\">&nbsp;</td>\n      											</tr>\n      										</tbody>\n      									</table>\n    									<!-- end of social icons --></td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td height=\"10\" style=\"font-size:1px; line-height:1px; mso-line-height-rule: exactly;\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    								<tr>\n    									<td bgcolor=\"#80C457\" height=\"10\" width=\"100%\">&nbsp;</td>\n    								</tr>\n    								<!-- Spacing -->\n    							</tbody>\n    						</table>\n    						</td>\n    					</tr>\n    				</tbody>\n    			</table>\n    			</td>\n    		</tr>\n    	</tbody>\n    </table>\n    <!-- End of footer -->\n  </body>\n</html>\n',1,NULL,NULL,1,0,0,NULL);
@@ -5797,26 +5716,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',16,'Get the registration done for NGO status',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-08-09 19:56:36',NULL,'0'),
- (2,'civicrm_contact',163,'Chart out route map for next 10k run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-06-02 22:51:49',NULL,'0'),
- (3,'civicrm_contact',139,'Send newsletter for April 2005',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-05-27 15:32:44',NULL,'0'),
- (4,'civicrm_contact',129,'Get the registration done for NGO status',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-09-23 14:41:48',NULL,'0'),
- (5,'civicrm_contact',11,'Chart out route map for next 10k run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-03-23 12:20:33',NULL,'0'),
- (6,'civicrm_contact',13,'Chart out route map for next 10k run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-08-11 11:57:26',NULL,'0'),
- (7,'civicrm_contact',196,'Send newsletter for April 2005',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-02-28 14:13:31',NULL,'0'),
- (8,'civicrm_contact',194,'Send newsletter for April 2005',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-02-24 10:32:28',NULL,'0'),
- (9,'civicrm_contact',68,'Organize the Terry Fox run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-09-24 15:40:39',NULL,'0'),
- (10,'civicrm_contact',40,'Send reminder for annual dinner',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-08-09 05:17:21',NULL,'0'),
- (11,'civicrm_contact',169,'Send newsletter for April 2005',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2021-12-02 15:38:30',NULL,'0'),
- (12,'civicrm_contact',121,'Connect for presentation',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-01-13 01:03:06',NULL,'0'),
- (13,'civicrm_contact',29,'Chart out route map for next 10k run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-09-17 06:49:08',NULL,'0'),
- (14,'civicrm_contact',135,'Contact the Commissioner of Charities',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2021-12-04 00:03:34',NULL,'0'),
- (15,'civicrm_contact',110,'Connect for presentation',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-04-23 07:25:50',NULL,'0'),
- (16,'civicrm_contact',28,'Organize the Terry Fox run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-04-08 08:39:23',NULL,'0'),
- (17,'civicrm_contact',82,'Arrange collection of funds from members',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-07-26 16:53:02',NULL,'0'),
- (18,'civicrm_contact',157,'Chart out route map for next 10k run',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-10-05 09:03:03',NULL,'0'),
- (19,'civicrm_contact',122,'Arrange collection of funds from members',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2022-01-01 11:13:47',NULL,'0'),
- (20,'civicrm_contact',27,'Reminder screening of \"Black\" on next Friday',1,'2022-10-10 07:32:47','2022-10-10 07:32:47','2021-12-09 04:04:14',NULL,'0');
+ (1,'civicrm_contact',11,'Organize the Terry Fox run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-08-18 19:23:04',NULL,'0'),
+ (2,'civicrm_contact',68,'Chart out route map for next 10k run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-02-09 06:27:12',NULL,'0'),
+ (3,'civicrm_contact',65,'Connect for presentation',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-01-18 21:12:26',NULL,'0'),
+ (4,'civicrm_contact',183,'Contact the Commissioner of Charities',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-12-26 04:32:05',NULL,'0'),
+ (5,'civicrm_contact',149,'Send newsletter for April 2005',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-05-14 04:07:42',NULL,'0'),
+ (6,'civicrm_contact',101,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-12-18 21:33:07',NULL,'0'),
+ (7,'civicrm_contact',46,'Organize the Terry Fox run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-12-14 17:56:54',NULL,'0'),
+ (8,'civicrm_contact',79,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-07-04 13:07:25',NULL,'0'),
+ (9,'civicrm_contact',139,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-04-09 10:40:06',NULL,'0'),
+ (10,'civicrm_contact',10,'Chart out route map for next 10k run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-08-19 18:59:30',NULL,'0'),
+ (11,'civicrm_contact',16,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-08-15 03:43:34',NULL,'0'),
+ (12,'civicrm_contact',152,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-06-14 18:26:08',NULL,'0'),
+ (13,'civicrm_contact',163,'Chart out route map for next 10k run',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-05-17 00:02:43',NULL,'0'),
+ (14,'civicrm_contact',158,'Arrange collection of funds from members',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-08-02 15:08:10',NULL,'0'),
+ (15,'civicrm_contact',81,'Send newsletter for April 2005',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-06-04 22:54:03',NULL,'0'),
+ (16,'civicrm_contact',102,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-08-26 17:06:15',NULL,'0'),
+ (17,'civicrm_contact',88,'Contact the Commissioner of Charities',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-12-31 23:44:33',NULL,'0'),
+ (18,'civicrm_contact',93,'Send reminder for annual dinner',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-12-11 19:27:49',NULL,'0'),
+ (19,'civicrm_contact',171,'Arrange collection of funds from members',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2022-09-02 04:57:37',NULL,'0'),
+ (20,'civicrm_contact',63,'Send newsletter for April 2005',1,'2022-10-09 15:29:39','2022-10-09 15:29:39','2021-11-01 00:49:59',NULL,'0');
 /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -6040,777 +5959,775 @@ INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `
  (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,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (100,11,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (101,11,'Refunded','7','Refunded',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (102,11,'Partially paid','8','Partially paid',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (103,11,'Pending refund','9','Pending refund',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (104,11,'Chargeback','10','Chargeback',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (105,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),
- (106,12,'Waiting Review','1','Waiting Review',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (107,12,'Approved','2','Approved',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (108,12,'Not Approved','3','Not Approved',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (109,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (110,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (111,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (112,14,'Attendee','1','Attendee',NULL,1,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (113,14,'Volunteer','2','Volunteer',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (114,14,'Host','3','Host',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (115,14,'Speaker','4','Speaker',NULL,1,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (116,15,'Conference','1','Conference',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (117,15,'Exhibition','2','Exhibition',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (118,15,'Fundraiser','3','Fundraiser',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (119,15,'Meeting','4','Meeting',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (120,15,'Performance','5','Performance',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (121,15,'Workshop','6','Workshop',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (122,16,'Activities','1','activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (123,16,'Relationships','2','rel',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (124,16,'Groups','3','group',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (125,16,'Notes','4','note',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (126,16,'Tags','5','tag',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (127,16,'Change Log','6','log',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (128,16,'Contributions','7','CiviContribute',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (129,16,'Memberships','8','CiviMember',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (130,16,'Events','9','CiviEvent',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (131,16,'Cases','10','CiviCase',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (132,16,'Pledges','13','CiviPledge',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (133,16,'Mailings','14','CiviMail',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (134,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (135,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (136,17,'Hide Smart Groups','3','hide',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (137,18,'Custom Data','1','CustomData',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (138,18,'Address','2','Address',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (139,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (140,18,'Notes','4','Notes',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (141,18,'Demographics','5','Demographics',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (142,18,'Tags and Groups','6','TagsAndGroups',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (143,18,'Email','7','Email',NULL,1,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (144,18,'Phone','8','Phone',NULL,1,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (145,18,'Instant Messenger','9','IM',NULL,1,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (146,18,'Open ID','10','OpenID',NULL,1,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (147,18,'Website','11','Website',NULL,1,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (148,18,'Prefix','12','Prefix',NULL,2,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (149,18,'Formal Title','13','Formal Title',NULL,2,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (150,18,'First Name','14','First Name',NULL,2,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (151,18,'Middle Name','15','Middle Name',NULL,2,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (152,18,'Last Name','16','Last Name',NULL,2,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (153,18,'Suffix','17','Suffix',NULL,2,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (154,19,'Address Fields','1','location',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (155,19,'Custom Fields','2','custom',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (156,19,'Activities','3','activity',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (157,19,'Relationships','4','relationship',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (158,19,'Notes','5','notes',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (159,19,'Change Log','6','changeLog',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (160,19,'Contributions','7','CiviContribute',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (161,19,'Memberships','8','CiviMember',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (162,19,'Events','9','CiviEvent',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (163,19,'Cases','10','CiviCase',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (164,19,'Demographics','13','demographics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (165,19,'Pledges','15','CiviPledge',NULL,0,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (166,19,'Contact Type','16','contactType',NULL,0,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (167,19,'Groups','17','groups',NULL,0,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (168,19,'Tags','18','tags',NULL,0,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (169,19,'Mailing','19','CiviMail',NULL,0,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (170,20,'Groups','1','Groups',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (171,20,'Contributions','2','CiviContribute',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (172,20,'Memberships','3','CiviMember',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (173,20,'Events','4','CiviEvent',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (174,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (175,20,'Pledges','7','CiviPledge',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (176,20,'Personal Campaign Pages','8','PCP',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (177,20,'Assigned Activities','9','Assigned Activities',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (178,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (179,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (180,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (181,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (182,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (183,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (184,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (185,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (186,44,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (187,44,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (188,44,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (189,44,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (190,44,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (191,44,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (192,44,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (193,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (194,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (195,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (196,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (197,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (198,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (199,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (200,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (201,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (202,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (203,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (204,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (205,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (206,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (207,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (208,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (209,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),
- (210,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),
- (211,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),
- (212,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),
- (213,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),
- (214,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),
- (215,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),
- (216,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),
- (217,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),
- (218,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),
- (219,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),
- (220,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),
- (221,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),
- (222,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),
- (223,39,'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),
- (224,39,'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),
- (225,39,'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),
- (226,39,'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),
- (227,39,'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),
- (228,39,'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),
- (229,39,'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),
- (230,39,'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),
- (231,39,'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),
- (232,39,'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),
- (233,39,'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),
- (234,39,'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),
- (235,39,'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),
- (236,39,'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),
- (237,39,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL,NULL,NULL),
- (238,39,'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 (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL),
- (239,39,'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),
- (240,39,'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),
- (241,39,'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),
- (242,39,'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),
- (243,39,'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),
- (244,39,'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),
- (245,39,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL),
- (246,39,'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),
- (247,39,'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),
- (248,39,'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),
- (249,39,'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),
- (250,39,'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),
- (251,39,'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),
- (252,39,'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),
- (253,39,'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),
- (254,39,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL),
- (255,39,'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),
- (256,39,'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),
- (257,39,'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),
- (258,39,'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),
- (259,39,'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),
- (260,39,'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),
- (261,39,'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),
- (262,39,'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),
- (263,39,'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),
- (264,39,'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),
- (265,39,'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),
- (266,39,'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),
- (267,39,'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),
- (268,39,'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),
- (269,39,'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),
- (270,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (271,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (272,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (273,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (274,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (275,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (276,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (277,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (278,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (279,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (280,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (281,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (282,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),
- (283,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),
- (284,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (285,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (286,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (287,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (288,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (289,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (290,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (291,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (292,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (293,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (294,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (295,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (296,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (297,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (298,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (299,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (300,31,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (301,31,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (302,30,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (303,30,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (304,30,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (305,30,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (306,30,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (307,30,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (308,30,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (309,30,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (310,30,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (311,30,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (312,30,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (313,30,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (314,30,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (315,32,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (316,32,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (317,32,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (318,32,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (319,33,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (320,33,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (321,33,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (322,33,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (323,33,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (324,34,'Participants (Role)','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (325,34,'Participants (Event Name)','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (326,34,'Participants (Event Type)','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (327,35,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (328,35,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (329,36,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (330,36,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (331,36,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (332,36,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (333,37,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (334,37,'Normal','2','Normal',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (335,37,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (336,38,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (337,38,'/(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),
- (338,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (339,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),
- (340,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),
- (341,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (342,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (343,41,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (344,41,'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),
- (345,41,'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),
- (346,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (347,41,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (348,42,'{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),
- (349,42,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (350,42,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (351,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (352,45,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (353,45,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (354,45,'Facebook','3','Facebook',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (355,45,'Instagram','5','Instagram',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (356,45,'LinkedIn','6','LinkedIn',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (357,45,'MySpace','7','MySpace',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (358,45,'Pinterest','8','Pinterest',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (359,45,'SnapChat','9','SnapChat',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (360,45,'Tumblr','10','Tumblr',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (361,45,'Twitter','11','Twitter',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (362,45,'Vine','12','Vine ',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (363,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (364,46,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (365,46,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (366,46,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (367,47,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (368,47,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (369,47,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (370,47,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (371,48,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (372,48,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (373,48,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (374,48,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (375,48,'JPY (Â¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (376,49,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (377,49,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (378,49,'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),
- (379,49,'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),
- (380,50,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (381,50,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (382,51,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (383,51,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (384,51,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (385,52,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (386,52,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (387,52,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (388,52,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (389,55,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (390,55,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (391,55,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (392,55,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (393,55,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (394,57,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (395,57,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (396,57,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (397,57,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (398,57,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (399,57,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (400,57,'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),
- (401,57,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (402,57,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (403,57,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (404,57,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (405,57,'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),
- (406,57,'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),
- (407,57,'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),
- (408,57,'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),
- (409,57,'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),
- (410,57,'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),
- (411,57,'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),
- (412,57,'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),
- (413,57,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (414,57,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (415,57,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (416,57,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (417,57,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (418,57,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (419,57,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (420,57,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (421,57,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (422,57,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (423,57,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (424,57,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (425,57,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (426,57,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (427,57,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (428,57,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (429,57,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (430,57,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (431,57,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (432,57,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (433,57,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (434,57,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (435,57,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (436,57,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (437,57,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (438,57,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (439,57,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (440,57,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (441,57,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (442,57,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (443,57,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (444,57,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (445,57,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (446,57,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (447,57,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (448,57,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (449,57,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (450,57,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (451,57,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (452,57,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (453,57,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (454,57,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (455,57,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (456,60,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (457,60,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (458,60,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (459,58,'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),
- (460,70,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL),
- (461,70,'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),
- (462,70,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL),
- (463,70,'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),
- (464,70,'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),
- (465,61,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL),
- (466,61,'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),
- (467,61,'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),
- (468,61,'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),
- (469,61,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL),
- (470,61,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL),
- (471,61,'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),
- (472,61,'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),
- (473,61,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL),
- (474,61,'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),
- (475,61,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL),
- (476,61,'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),
- (477,62,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (478,63,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (479,63,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (480,64,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (481,64,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (482,64,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (483,66,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (484,66,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (485,66,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (486,66,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (487,66,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (488,65,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL),
- (489,65,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL),
- (490,71,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL),
- (491,71,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL),
- (492,71,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL),
- (493,67,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (494,67,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (495,67,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (496,69,'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),
- (497,69,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (498,69,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (499,72,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (500,73,'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),
- (501,73,'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),
- (502,73,'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),
- (503,73,'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),
- (504,59,'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),
- (505,59,'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),
- (506,59,'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),
- (507,59,'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),
- (508,59,'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),
- (509,59,'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),
- (510,59,'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),
- (511,59,'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),
- (512,59,'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),
- (513,59,'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),
- (514,59,'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),
- (515,74,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (516,74,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (517,75,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (518,75,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (519,75,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (520,76,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (521,76,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (522,77,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (523,77,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL),
- (524,77,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL),
- (525,81,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (526,81,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (527,81,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (528,78,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (529,78,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (530,78,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (531,78,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (532,78,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (533,78,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (534,78,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (535,78,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (536,78,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (537,78,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (538,78,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (539,78,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (540,78,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (541,78,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (542,78,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (543,78,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (544,78,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (545,78,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (546,78,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (547,78,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (548,78,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (549,78,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (550,78,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (551,78,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (552,78,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (553,78,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (554,78,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (555,78,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (556,78,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (557,78,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (558,78,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (559,78,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (560,78,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (561,78,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (562,78,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (563,78,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (564,78,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (565,78,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (566,78,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (567,78,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (568,78,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (569,78,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (570,78,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (571,78,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (572,78,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (573,78,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (574,78,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (575,78,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (576,78,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (577,78,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (578,78,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (579,78,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (580,78,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (581,78,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (582,78,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (583,78,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (584,78,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (585,78,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (586,78,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (587,78,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (588,78,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (589,78,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,62,NULL,0,0,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,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (594,79,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (595,80,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (596,80,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (597,80,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (598,80,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (599,80,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (600,80,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (601,80,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (602,80,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (603,82,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (604,82,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (605,82,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (606,82,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (607,83,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL),
- (608,29,'\"FIXME\" <info@EXAMPLE.ORG>','1','\"FIXME\" <info@EXAMPLE.ORG>',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL,NULL,NULL),
- (609,54,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL),
- (610,54,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL),
- (611,54,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL),
- (612,56,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (613,56,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (614,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (615,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (616,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (617,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (618,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (619,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (620,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (621,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (622,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (623,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (624,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (625,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (626,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (627,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (628,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (629,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (630,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (631,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (632,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (633,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (634,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (635,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (636,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (637,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (638,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (639,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (640,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (641,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (642,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (643,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (644,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (645,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (646,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (647,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (648,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (649,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (650,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (651,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (652,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (653,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (654,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (655,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (656,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (657,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (658,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (659,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (660,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (661,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (662,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (663,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (664,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (665,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (666,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (667,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (668,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (669,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (670,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (671,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (672,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (673,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (674,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (675,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (676,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (677,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (678,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (679,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (680,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (681,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (682,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (683,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (684,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (685,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (686,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (687,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (688,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (689,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (690,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (691,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (692,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (693,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (694,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (695,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (696,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (697,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (698,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (699,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (700,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (701,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (702,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (703,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (704,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (705,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (706,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (707,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (708,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (709,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (710,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (711,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (712,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (713,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (714,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (715,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (716,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (717,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (718,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (719,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (720,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (721,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (722,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (723,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (724,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (725,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (726,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (727,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (728,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (729,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (730,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (731,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (732,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (733,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (734,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (735,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (736,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (737,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (738,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (739,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (740,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),
- (741,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (742,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (743,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (744,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (745,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (746,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (747,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (748,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (749,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (750,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (751,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (752,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (753,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (754,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (755,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (756,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (757,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (758,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (759,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (760,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (761,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (762,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (763,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (764,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (765,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (766,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (767,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (768,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (769,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (770,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (771,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (772,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (773,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (774,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (775,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (776,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (777,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (778,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (779,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (780,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (781,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (782,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (783,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (784,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (785,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (786,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (787,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (788,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (789,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (790,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (791,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (792,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (793,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (794,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (795,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (796,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (797,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (798,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (799,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (800,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (801,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (802,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (803,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (804,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (805,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (806,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (807,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
- (808,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (809,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (810,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (811,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (812,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (813,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (814,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (815,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (816,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (817,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (818,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (819,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (820,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (821,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (822,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (823,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),
- (824,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (825,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (826,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),
- (827,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),
- (828,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),
- (829,88,'Events - Receipt only','3','event_registration_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (830,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (831,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (832,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (833,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (834,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (835,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),
- (836,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (837,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (838,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (839,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (840,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (841,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (842,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (843,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (844,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (845,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (846,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (847,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (848,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (849,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (850,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (851,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (852,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (853,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
- (854,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (855,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
- (856,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (857,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (858,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (859,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (860,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (861,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (862,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (863,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (864,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (865,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (866,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (867,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
- (868,2,'Interview','55','Interview',NULL,0,NULL,55,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL),
- (869,8,'Advisory Board','3','Advisory Board',NULL,0,0,3,NULL,0,0,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,43,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (178,43,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (179,43,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (180,43,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (181,43,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (182,43,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (183,43,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (184,44,'Email Address','2','email',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (185,44,'Phone','3','phone',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (186,44,'Street Address','4','street_address',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (187,44,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (188,44,'State/Province','6','state_province',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (189,44,'Country','7','country',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (190,44,'Postal Code','8','postal_code',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (191,21,'Street Address','1','street_address',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (192,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (193,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (194,21,'Supplemental Address 3','4','supplemental_address_3',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (195,21,'City','5','city',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (196,21,'Postal Code','6','postal_code',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (197,21,'Postal Code Suffix','7','postal_code_suffix',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (198,21,'County','8','county',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (199,21,'State/Province','9','state_province',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (200,21,'Country','10','country',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (201,21,'Latitude','11','geo_code_1',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (202,21,'Longitude','12','geo_code_2',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (203,21,'Address Name','13','address_name',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (204,21,'Street Address Parsing','14','street_address_parsing',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (205,22,'Access Control','1','Access Control',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (206,22,'Mailing List','2','Mailing List',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (207,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),
+ (208,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),
+ (209,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),
+ (210,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),
+ (211,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),
+ (212,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),
+ (213,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),
+ (214,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),
+ (215,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),
+ (216,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),
+ (217,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),
+ (218,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),
+ (219,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),
+ (220,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),
+ (221,39,'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),
+ (222,39,'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),
+ (223,39,'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),
+ (224,39,'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),
+ (225,39,'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),
+ (226,39,'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),
+ (227,39,'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),
+ (228,39,'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),
+ (229,39,'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),
+ (230,39,'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),
+ (231,39,'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),
+ (232,39,'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),
+ (233,39,'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),
+ (234,39,'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),
+ (235,39,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,0,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL,NULL,NULL),
+ (236,39,'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 (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL,NULL,NULL),
+ (237,39,'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),
+ (238,39,'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),
+ (239,39,'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),
+ (240,39,'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),
+ (241,39,'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),
+ (242,39,'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),
+ (243,39,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,0,23,'Relationship Report',0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (244,39,'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),
+ (245,39,'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),
+ (246,39,'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),
+ (247,39,'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),
+ (248,39,'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),
+ (249,39,'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),
+ (250,39,'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),
+ (251,39,'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),
+ (252,39,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL,NULL,NULL),
+ (253,39,'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),
+ (254,39,'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),
+ (255,39,'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),
+ (256,39,'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),
+ (257,39,'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),
+ (258,39,'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),
+ (259,39,'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),
+ (260,39,'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),
+ (261,39,'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),
+ (262,39,'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),
+ (263,39,'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),
+ (264,39,'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),
+ (265,39,'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),
+ (266,39,'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),
+ (267,39,'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),
+ (268,24,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (269,24,'Completed','2','Completed',NULL,1,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (270,24,'Cancelled','3','Cancelled',NULL,2,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (271,24,'Left Message','4','Left Message',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (272,24,'Unreachable','5','Unreachable',NULL,2,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (273,24,'Not Required','6','Not Required',NULL,2,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (274,24,'Available','7','Available',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (275,24,'No-show','8','No_show',NULL,2,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (276,26,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (277,26,'Resolved','2','Closed','Closed',0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (278,26,'Urgent','3','Urgent','Opened',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (279,27,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (280,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),
+ (281,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),
+ (282,28,'jpg','1','jpg',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (283,28,'jpeg','2','jpeg',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (284,28,'png','3','png',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (285,28,'gif','4','gif',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (286,28,'txt','5','txt',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (287,28,'pdf','6','pdf',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (288,28,'doc','7','doc',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (289,28,'xls','8','xls',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (290,28,'rtf','9','rtf',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (291,28,'csv','10','csv',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (292,28,'ppt','11','ppt',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (293,28,'docx','12','docx',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (294,28,'xlsx','13','xlsx',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (295,28,'odt','14','odt',NULL,0,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (296,28,'ics','15','ics',NULL,0,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (297,28,'pptx','16','pptx',NULL,0,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (298,31,'Textarea','1','Textarea',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (299,31,'CKEditor 4','2','CKEditor',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (300,30,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (301,30,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (302,30,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (303,30,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (304,30,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (305,30,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (306,30,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (307,30,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (308,30,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (309,30,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (310,30,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (311,30,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (312,30,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (313,32,'day','day','day',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (314,32,'week','week','week',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (315,32,'month','month','month',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (316,32,'year','year','year',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (317,33,'Phone','1','Phone',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (318,33,'Mobile','2','Mobile',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (319,33,'Fax','3','Fax',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (320,33,'Pager','4','Pager',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (321,33,'Voicemail','5','Voicemail',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (322,34,'Participants (Role)','1','ParticipantRole','role_id',0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (323,34,'Participants (Event Name)','2','ParticipantEventName','event_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (324,34,'Participants (Event Type)','3','ParticipantEventType','event_id.event_type_id',0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (325,35,'Public','1','public',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (326,35,'Admin','2','admin',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (327,36,'IMAP','1','IMAP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (328,36,'Maildir','2','Maildir',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (329,36,'POP3','3','POP3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (330,36,'Localdir','4','Localdir',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (331,37,'Urgent','1','Urgent',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (332,37,'Normal','2','Normal',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (333,37,'Low','3','Low',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (334,38,'Vancouver','city_','city_',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (335,38,'/(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),
+ (336,40,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (337,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),
+ (338,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),
+ (339,40,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (340,40,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (341,41,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (342,41,'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),
+ (343,41,'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),
+ (344,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (345,41,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (346,42,'{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),
+ (347,42,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (348,42,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (349,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (350,45,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (351,45,'Main','2','Main',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (352,45,'Facebook','3','Facebook',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (353,45,'Instagram','5','Instagram',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (354,45,'LinkedIn','6','LinkedIn',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (355,45,'MySpace','7','MySpace',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (356,45,'Pinterest','8','Pinterest',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (357,45,'SnapChat','9','SnapChat',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (358,45,'Tumblr','10','Tumblr',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (359,45,'Twitter','11','Twitter',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (360,45,'Vine','12','Vine ',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (361,46,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (362,46,'Activities','civicrm_activity','Activity',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (363,46,'Cases','civicrm_case','Case',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (364,46,'Attachments','civicrm_file','File',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (365,47,'Contacts','civicrm_contact','Contact',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (366,47,'Relationships','civicrm_relationship','Relationship',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (367,47,'Participants','civicrm_participant','Participant',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (368,47,'Contributions','civicrm_contribution','Contribution',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (369,48,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (370,48,'CAD ($)','CAD','CAD',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (371,48,'EUR (€)','EUR','EUR',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (372,48,'GBP (£)','GBP','GBP',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (373,48,'JPY (Â¥)','JPY','JPY',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (374,49,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (375,49,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (376,49,'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),
+ (377,49,'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),
+ (378,50,'None','0','None',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (379,50,'Author Only','1','Author Only',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (380,51,'Direct Mail','1','Direct Mail',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (381,51,'Referral Program','2','Referral Program',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (382,51,'Constituent Engagement','3','Constituent Engagement',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (383,52,'Planned','1','Planned',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (384,52,'In Progress','2','In Progress',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (385,52,'Completed','3','Completed',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (386,52,'Cancelled','4','Cancelled',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (387,55,'1','1','1',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (388,55,'2','2','2',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (389,55,'3','3','3',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (390,55,'4','4','4',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (391,55,'5','5','5',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (392,57,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (393,57,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (394,57,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (395,57,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (396,57,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (397,57,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (398,57,'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),
+ (399,57,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (400,57,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (401,57,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (402,57,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (403,57,'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),
+ (404,57,'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),
+ (405,57,'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),
+ (406,57,'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),
+ (407,57,'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),
+ (408,57,'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),
+ (409,57,'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),
+ (410,57,'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),
+ (411,57,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (412,57,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (413,57,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (414,57,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (415,57,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (416,57,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (417,57,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (418,57,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (419,57,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (420,57,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (421,57,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (422,57,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (423,57,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (424,57,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (425,57,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (426,57,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (427,57,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (428,57,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (429,57,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (430,57,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (431,57,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (432,57,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (433,57,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (434,57,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (435,57,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (436,57,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (437,57,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (438,57,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (439,57,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (440,57,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (441,57,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (442,57,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (443,57,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (444,57,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (445,57,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (446,57,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (447,57,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (448,57,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (449,57,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (450,57,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (451,57,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (452,57,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (453,57,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (454,60,'Activity Assignees','1','Activity Assignees',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (455,60,'Activity Source','2','Activity Source',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (456,60,'Activity Targets','3','Activity Targets',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (457,58,'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),
+ (458,70,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL,NULL,NULL),
+ (459,70,'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),
+ (460,70,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL,NULL,NULL),
+ (461,70,'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),
+ (462,70,'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),
+ (463,61,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL,NULL,NULL),
+ (464,61,'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),
+ (465,61,'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),
+ (466,61,'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),
+ (467,61,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL,NULL,NULL),
+ (468,61,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL,NULL,NULL),
+ (469,61,'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),
+ (470,61,'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),
+ (471,61,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL,NULL,NULL),
+ (472,61,'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),
+ (473,61,'Chargeback Account is','11','Chargeback Account is',NULL,0,0,11,'Chargeback Account is',0,1,1,2,NULL,NULL,NULL,NULL),
+ (474,61,'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),
+ (475,62,'Participant Role','1','participant_role',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (476,63,'Morning Sessions','1','Morning Sessions',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (477,63,'Evening Sessions','2','Evening Sessions',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (478,64,'Contribution','1','Contribution',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (479,64,'Membership','2','Membership',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (480,64,'Pledge Payment','3','Pledge Payment',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (481,66,'Open','1','Open',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (482,66,'Closed','2','Closed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (483,66,'Data Entry','3','Data Entry',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (484,66,'Reopened','4','Reopened',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (485,66,'Exported','5','Exported',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (486,65,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL,NULL,NULL),
+ (487,65,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL,NULL,NULL),
+ (488,71,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL,NULL,NULL),
+ (489,71,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL,NULL,NULL),
+ (490,71,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL,NULL,NULL),
+ (491,67,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (492,67,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (493,67,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (494,69,'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),
+ (495,69,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (496,69,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (497,72,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (498,73,'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),
+ (499,73,'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),
+ (500,73,'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),
+ (501,73,'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),
+ (502,59,'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),
+ (503,59,'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),
+ (504,59,'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),
+ (505,59,'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),
+ (506,59,'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),
+ (507,59,'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),
+ (508,59,'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),
+ (509,59,'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),
+ (510,59,'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),
+ (511,59,'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),
+ (512,59,'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),
+ (513,74,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (514,74,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (515,75,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (516,75,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (517,75,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (518,76,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (519,76,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (520,77,'Default','1','default',NULL,NULL,1,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (521,77,'CiviMail','2','civimail',NULL,NULL,0,2,NULL,0,1,1,4,NULL,NULL,NULL,NULL),
+ (522,77,'CiviEvent','3','civievent',NULL,NULL,0,3,NULL,0,1,1,1,NULL,NULL,NULL,NULL),
+ (523,81,'Production','Production','Production',NULL,NULL,1,1,'Production Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (524,81,'Staging','Staging','Staging',NULL,NULL,0,2,'Staging Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (525,81,'Development','Development','Development',NULL,NULL,0,3,'Development Environment',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (526,78,'Today','this.day','this.day',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (527,78,'This week','this.week','this.week',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (528,78,'This calendar month','this.month','this.month',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (529,78,'This quarter','this.quarter','this.quarter',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (530,78,'This fiscal year','this.fiscal_year','this.fiscal_year',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (531,78,'This calendar year','this.year','this.year',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (532,78,'Yesterday','previous.day','previous.day',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (533,78,'Previous week','previous.week','previous.week',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (534,78,'Previous calendar month','previous.month','previous.month',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (535,78,'Previous quarter','previous.quarter','previous.quarter',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (536,78,'Previous fiscal year','previous.fiscal_year','previous.fiscal_year',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (537,78,'Previous calendar year','previous.year','previous.year',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (538,78,'Last 7 days including today','ending.week','ending.week',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (539,78,'Last 30 days including today','ending_30.day','ending.month',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (540,78,'Last 60 days including today','ending_60.day','ending_2.month',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (541,78,'Last 90 days including today','ending_90.day','ending.quarter',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (542,78,'Last 12 months including today','ending.year','ending.year',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (543,78,'Last 2 years including today','ending_2.year','ending_2.year',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (544,78,'Last 3 years including today','ending_3.year','ending_3.year',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (545,78,'Tomorrow','starting.day','starting.day',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (546,78,'Next week','next.week','next.week',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (547,78,'Next calendar month','next.month','next.month',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (548,78,'Next quarter','next.quarter','next.quarter',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (549,78,'Next fiscal year','next.fiscal_year','next.fiscal_year',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (550,78,'Next calendar year','next.year','next.year',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (551,78,'Next 7 days including today','starting.week','starting.week',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (552,78,'Next 30 days including today','starting.month','starting.month',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (553,78,'Next 60 days including today','starting_2.month','starting_2.month',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (554,78,'Next 90 days including today','starting.quarter','starting.quarter',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (555,78,'Next 12 months including today','starting.year','starting.year',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (556,78,'Current week to-date','current.week','current.week',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (557,78,'Current calendar month to-date','current.month','current.month',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (558,78,'Current quarter to-date','current.quarter','current.quarter',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (559,78,'Current calendar year to-date','current.year','current.year',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (560,78,'To end of yesterday','earlier.day','earlier.day',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (561,78,'To end of previous week','earlier.week','earlier.week',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (562,78,'To end of previous calendar month','earlier.month','earlier.month',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (563,78,'To end of previous quarter','earlier.quarter','earlier.quarter',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (564,78,'To end of previous calendar year','earlier.year','earlier.year',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (565,78,'From start of current day','greater.day','greater.day',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (566,78,'From start of current week','greater.week','greater.week',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (567,78,'From start of current calendar month','greater.month','greater.month',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (568,78,'From start of current quarter','greater.quarter','greater.quarter',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (569,78,'From start of current calendar year','greater.year','greater.year',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (570,78,'To end of current week','less.week','less.week',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (571,78,'To end of current calendar month','less.month','less.month',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (572,78,'To end of current quarter','less.quarter','less.quarter',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (573,78,'To end of current calendar year','less.year','less.year',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (574,78,'Previous 2 days','previous_2.day','previous_2.day',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (575,78,'Previous 2 weeks','previous_2.week','previous_2.week',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (576,78,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (577,78,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (578,78,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (579,78,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (580,78,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (581,78,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (582,78,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (583,78,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (584,78,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (585,78,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (586,78,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (587,78,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (588,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (589,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (590,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (591,79,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (592,79,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (593,80,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (594,80,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (595,80,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (596,80,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (597,80,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (598,80,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (599,80,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (600,80,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (601,82,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (602,82,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (603,82,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (604,82,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (605,83,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL),
+ (606,29,'\"FIXME\" <info@EXAMPLE.ORG>','1','\"FIXME\" <info@EXAMPLE.ORG>',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL,NULL,NULL),
+ (607,54,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL),
+ (608,54,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL),
+ (609,54,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL),
+ (610,56,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (611,56,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (612,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (613,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (614,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (615,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (616,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (617,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (618,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (619,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (620,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (621,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (622,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (623,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (624,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (625,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (626,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (627,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (628,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (629,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (630,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (631,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (632,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (633,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (634,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (635,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (636,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (637,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (638,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (639,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (640,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (641,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (642,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (643,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (644,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (645,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (646,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (647,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (648,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (649,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (650,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (651,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (652,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (653,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (654,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (655,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (656,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (657,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (658,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (659,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (660,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (661,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (662,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (663,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (664,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (665,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (666,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (667,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (668,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (669,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (670,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (671,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (672,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (673,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (674,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (675,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (676,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (677,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (678,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (679,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (680,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (681,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (682,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (683,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (684,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (685,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (686,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (687,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (688,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (689,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (690,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (691,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (692,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (693,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (694,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (695,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (696,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (697,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (698,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (699,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (700,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (701,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (702,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (703,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (704,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (705,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (706,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (707,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (708,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (709,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (710,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (711,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (712,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (713,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (714,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (715,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (716,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (717,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (718,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (719,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (720,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (721,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (722,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (723,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (724,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (725,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (726,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (727,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (728,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (729,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (730,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (731,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (732,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (733,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (734,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (735,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (736,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (737,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (738,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),
+ (739,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (740,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (741,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (742,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (743,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (744,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (745,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (746,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (747,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (748,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (749,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (750,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (751,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (752,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (753,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (754,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (755,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (756,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (757,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (758,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (759,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (760,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (761,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (762,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (763,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (764,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (765,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (766,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (767,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (768,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (769,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (770,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (771,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (772,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (773,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (774,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (775,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (776,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (777,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (778,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (779,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (780,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (781,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (782,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (783,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (784,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (785,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (786,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (787,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (788,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (789,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (790,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (791,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (792,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (793,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (794,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (795,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (796,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (797,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (798,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (799,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (800,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (801,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (802,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (803,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (804,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (805,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL),
+ (806,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (807,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (808,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (809,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (810,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (811,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (812,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (813,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (814,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (815,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (816,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (817,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (818,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (819,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (820,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (821,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),
+ (822,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (823,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (824,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),
+ (825,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),
+ (826,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),
+ (827,88,'Events - Receipt only','3','event_registration_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (828,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (829,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (830,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (831,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (832,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (833,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),
+ (834,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (835,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (836,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (837,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (838,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (839,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (840,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (841,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (842,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (843,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (844,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (845,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (846,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (847,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (848,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (849,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (850,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (851,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),
+ (852,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (853,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (854,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (855,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (856,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (857,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (858,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (859,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (860,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (861,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (862,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (863,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (864,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (865,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL),
+ (866,2,'Interview','55','Interview',NULL,0,NULL,55,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL),
+ (867,8,'Advisory Board','3','Advisory Board',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -6821,56 +6738,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`, `cart_id`, `must_wait`, `transferred_to_contact_id`, `created_id`) VALUES
- (1,78,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (2,160,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (3,84,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,NULL),
- (4,74,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (5,119,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (6,136,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,NULL),
- (7,112,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (8,154,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (9,57,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,NULL),
- (10,61,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (11,200,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (12,186,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,NULL),
- (13,152,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (14,19,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (15,58,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,NULL),
- (16,34,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (17,39,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (18,146,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,NULL),
- (19,180,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (20,2,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (21,132,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,NULL),
- (22,50,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (23,72,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (24,101,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,NULL),
- (25,175,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,NULL),
- (26,37,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (27,151,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (28,176,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,NULL),
- (29,42,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (30,128,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (31,105,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,NULL),
- (32,48,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (33,166,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (34,194,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,NULL),
- (35,35,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (36,134,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (37,174,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,NULL),
- (38,97,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (39,202,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (40,81,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,NULL),
- (41,187,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (42,191,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (43,163,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,NULL),
- (44,129,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (45,141,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (46,30,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,NULL),
- (47,10,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (48,16,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
- (49,90,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,NULL),
- (50,109,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,NULL);
+ (1,61,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (2,48,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (3,39,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,NULL),
+ (4,111,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (5,46,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (6,201,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,NULL),
+ (7,172,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (8,54,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (9,30,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,NULL),
+ (10,20,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (11,112,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (12,146,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,NULL),
+ (13,114,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (14,183,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (15,41,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,NULL),
+ (16,194,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (17,17,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (18,133,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,NULL),
+ (19,153,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (20,78,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (21,196,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,NULL),
+ (22,2,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (23,60,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (24,25,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,NULL),
+ (25,27,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,NULL),
+ (26,58,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (27,165,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,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,NULL),
+ (29,56,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (30,108,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (31,33,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,NULL),
+ (32,125,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (33,122,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (34,32,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,NULL),
+ (35,99,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (36,198,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (37,186,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,NULL),
+ (38,6,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (39,151,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (40,88,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,NULL),
+ (41,145,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (42,154,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (43,93,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,NULL),
+ (44,160,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (45,91,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (46,191,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,NULL),
+ (47,21,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (48,137,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL),
+ (49,115,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,NULL),
+ (50,95,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,NULL);
 /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -6881,56 +6798,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,20,63),
- (2,47,64),
- (3,48,65),
- (4,14,66),
- (5,46,67),
- (6,16,68),
- (7,35,69),
- (8,26,70),
- (9,17,71),
- (10,29,72),
- (11,32,73),
- (12,22,74),
- (13,9,75),
- (14,15,76),
- (15,10,77),
- (16,23,78),
- (17,4,79),
- (18,1,80),
- (19,40,81),
- (20,3,82),
- (21,49,83),
- (22,38,84),
- (23,24,85),
- (24,31,86),
- (25,50,87),
- (26,7,88),
- (27,5,89),
- (28,30,90),
- (29,44,91),
- (30,21,92),
- (31,36,93),
- (32,6,94),
- (33,45,95),
- (34,18,96),
- (35,27,97),
- (36,13,98),
- (37,8,99),
- (38,2,100),
- (39,43,101),
- (40,33,102),
- (41,37,103),
- (42,25,104),
- (43,28,105),
- (44,19,106),
- (45,12,107),
- (46,41,108),
- (47,42,109),
- (48,34,110),
- (49,11,111),
- (50,39,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;
 
@@ -7003,7 +6920,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,182,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.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"https://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1);
+ (1,35,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.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"https://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1);
 /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -7025,176 +6942,174 @@ 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,165,1,1,0,NULL,'846-9347',NULL,'8469347',1),
- (2,165,1,0,0,NULL,'(580) 645-4059',NULL,'5806454059',1),
- (3,26,1,1,0,NULL,'674-1419',NULL,'6741419',2),
- (4,26,1,0,0,NULL,'(833) 233-6434',NULL,'8332336434',1),
- (5,5,1,1,0,NULL,'(753) 469-3211',NULL,'7534693211',2),
- (6,5,1,0,0,NULL,'224-5626',NULL,'2245626',1),
- (7,154,1,1,0,NULL,'(851) 884-1889',NULL,'8518841889',1),
- (8,154,1,0,0,NULL,'268-8756',NULL,'2688756',2),
- (9,75,1,1,0,NULL,'(808) 633-4582',NULL,'8086334582',2),
- (10,153,1,1,0,NULL,'(718) 232-1293',NULL,'7182321293',2),
- (11,153,1,0,0,NULL,'858-7512',NULL,'8587512',2),
- (12,106,1,1,0,NULL,'(316) 212-8631',NULL,'3162128631',2),
- (13,133,1,1,0,NULL,'365-7499',NULL,'3657499',1),
- (14,188,1,1,0,NULL,'(877) 471-7952',NULL,'8774717952',1),
- (15,188,1,0,0,NULL,'751-8328',NULL,'7518328',2),
- (16,65,1,1,0,NULL,'(594) 308-6277',NULL,'5943086277',2),
- (17,65,1,0,0,NULL,'719-8724',NULL,'7198724',2),
- (18,24,1,1,0,NULL,'511-6596',NULL,'5116596',2),
- (19,24,1,0,0,NULL,'(724) 294-7190',NULL,'7242947190',1),
- (20,7,1,1,0,NULL,'382-5967',NULL,'3825967',1),
- (21,7,1,0,0,NULL,'591-9810',NULL,'5919810',1),
- (22,189,1,1,0,NULL,'(855) 462-7711',NULL,'8554627711',2),
- (23,189,1,0,0,NULL,'505-8769',NULL,'5058769',2),
- (24,90,1,1,0,NULL,'(650) 440-4183',NULL,'6504404183',1),
- (25,90,1,0,0,NULL,'642-9846',NULL,'6429846',1),
- (26,186,1,1,0,NULL,'454-7202',NULL,'4547202',1),
- (27,149,1,1,0,NULL,'(529) 711-3960',NULL,'5297113960',2),
- (28,175,1,1,0,NULL,'312-5231',NULL,'3125231',2),
- (29,175,1,0,0,NULL,'(589) 354-5098',NULL,'5893545098',2),
- (30,22,1,1,0,NULL,'588-4498',NULL,'5884498',1),
- (31,114,1,1,0,NULL,'446-6601',NULL,'4466601',2),
- (32,114,1,0,0,NULL,'(665) 706-6278',NULL,'6657066278',2),
- (33,71,1,1,0,NULL,'340-5997',NULL,'3405997',2),
- (34,71,1,0,0,NULL,'(273) 376-7293',NULL,'2733767293',1),
- (35,196,1,1,0,NULL,'657-9157',NULL,'6579157',1),
- (36,196,1,0,0,NULL,'(450) 210-4919',NULL,'4502104919',2),
- (37,201,1,1,0,NULL,'312-8411',NULL,'3128411',1),
- (38,8,1,1,0,NULL,'840-7591',NULL,'8407591',2),
- (39,112,1,1,0,NULL,'(606) 578-7172',NULL,'6065787172',2),
- (40,112,1,0,0,NULL,'372-3376',NULL,'3723376',1),
- (41,33,1,1,0,NULL,'(673) 267-8056',NULL,'6732678056',2),
- (42,197,1,1,0,NULL,'(585) 756-5262',NULL,'5857565262',2),
- (43,197,1,0,0,NULL,'392-6238',NULL,'3926238',2),
- (44,10,1,1,0,NULL,'(887) 588-6244',NULL,'8875886244',2),
- (45,177,1,1,0,NULL,'266-4618',NULL,'2664618',2),
- (46,177,1,0,0,NULL,'(847) 689-9014',NULL,'8476899014',1),
- (47,105,1,1,0,NULL,'673-6801',NULL,'6736801',2),
- (48,105,1,0,0,NULL,'659-3962',NULL,'6593962',2),
- (49,52,1,1,0,NULL,'(209) 580-4143',NULL,'2095804143',1),
- (50,148,1,1,0,NULL,'(382) 668-6505',NULL,'3826686505',2),
- (51,148,1,0,0,NULL,'806-6943',NULL,'8066943',2),
- (52,60,1,1,0,NULL,'(733) 669-7527',NULL,'7336697527',2),
- (53,60,1,0,0,NULL,'(743) 265-6469',NULL,'7432656469',2),
- (54,87,1,1,0,NULL,'(635) 350-3672',NULL,'6353503672',2),
- (55,102,1,1,0,NULL,'380-8550',NULL,'3808550',1),
- (56,25,1,1,0,NULL,'595-7404',NULL,'5957404',2),
- (57,25,1,0,0,NULL,'(391) 408-7678',NULL,'3914087678',2),
- (58,101,1,1,0,NULL,'878-6911',NULL,'8786911',2),
- (59,135,1,1,0,NULL,'(227) 614-3833',NULL,'2276143833',2),
- (60,42,1,1,0,NULL,'386-2101',NULL,'3862101',1),
- (61,42,1,0,0,NULL,'215-1730',NULL,'2151730',1),
- (62,136,1,1,0,NULL,'(293) 309-5631',NULL,'2933095631',2),
- (63,136,1,0,0,NULL,'(593) 522-3403',NULL,'5935223403',2),
- (64,83,1,1,0,NULL,'697-5222',NULL,'6975222',2),
- (65,151,1,1,0,NULL,'302-7413',NULL,'3027413',2),
- (66,4,1,1,0,NULL,'412-3356',NULL,'4123356',2),
- (67,4,1,0,0,NULL,'538-3253',NULL,'5383253',1),
- (68,53,1,1,0,NULL,'(870) 286-7579',NULL,'8702867579',2),
- (69,53,1,0,0,NULL,'(320) 514-2153',NULL,'3205142153',2),
- (70,160,1,1,0,NULL,'(800) 582-9229',NULL,'8005829229',2),
- (71,160,1,0,0,NULL,'778-7077',NULL,'7787077',2),
- (72,130,1,1,0,NULL,'822-1366',NULL,'8221366',2),
- (73,130,1,0,0,NULL,'339-7719',NULL,'3397719',2),
- (74,142,1,1,0,NULL,'693-4954',NULL,'6934954',1),
- (75,142,1,0,0,NULL,'519-6592',NULL,'5196592',2),
- (76,94,1,1,0,NULL,'(846) 850-3045',NULL,'8468503045',1),
- (77,94,1,0,0,NULL,'(572) 737-2390',NULL,'5727372390',1),
- (78,55,1,1,0,NULL,'397-1616',NULL,'3971616',1),
- (79,174,1,1,0,NULL,'698-4292',NULL,'6984292',2),
- (80,159,1,1,0,NULL,'(560) 527-9957',NULL,'5605279957',1),
- (81,139,1,1,0,NULL,'(245) 371-5355',NULL,'2453715355',1),
- (82,139,1,0,0,NULL,'719-6634',NULL,'7196634',1),
- (83,29,1,1,0,NULL,'(776) 561-3334',NULL,'7765613334',2),
- (84,29,1,0,0,NULL,'(580) 254-6460',NULL,'5802546460',1),
- (85,167,1,1,0,NULL,'(831) 664-1032',NULL,'8316641032',2),
- (86,167,1,0,0,NULL,'207-1013',NULL,'2071013',1),
- (87,69,1,1,0,NULL,'324-4740',NULL,'3244740',2),
- (88,69,1,0,0,NULL,'745-5656',NULL,'7455656',2),
- (89,150,1,1,0,NULL,'(607) 352-9812',NULL,'6073529812',1),
- (90,68,1,1,0,NULL,'(802) 839-7866',NULL,'8028397866',1),
- (91,68,1,0,0,NULL,'(215) 855-3837',NULL,'2158553837',1),
- (92,74,1,1,0,NULL,'(884) 320-4890',NULL,'8843204890',2),
- (93,74,1,0,0,NULL,'(543) 801-2421',NULL,'5438012421',2),
- (94,176,1,1,0,NULL,'269-4887',NULL,'2694887',2),
- (95,176,1,0,0,NULL,'366-6394',NULL,'3666394',1),
- (96,84,1,1,0,NULL,'216-8283',NULL,'2168283',1),
- (97,84,1,0,0,NULL,'599-5592',NULL,'5995592',1),
- (98,191,1,1,0,NULL,'534-6663',NULL,'5346663',1),
- (99,15,1,1,0,NULL,'285-9951',NULL,'2859951',1),
- (100,15,1,0,0,NULL,'(683) 433-9548',NULL,'6834339548',1),
- (101,144,1,1,0,NULL,'(836) 544-3940',NULL,'8365443940',2),
- (102,144,1,0,0,NULL,'463-5382',NULL,'4635382',1),
- (103,125,1,1,0,NULL,'(223) 878-4336',NULL,'2238784336',2),
- (104,125,1,0,0,NULL,'(716) 703-2645',NULL,'7167032645',2),
- (105,120,1,1,0,NULL,'487-8602',NULL,'4878602',1),
- (106,120,1,0,0,NULL,'(212) 724-7316',NULL,'2127247316',2),
- (107,190,1,1,0,NULL,'(241) 216-1604',NULL,'2412161604',2),
- (108,86,1,1,0,NULL,'241-1589',NULL,'2411589',1),
- (109,110,1,1,0,NULL,'(273) 851-7106',NULL,'2738517106',2),
- (110,110,1,0,0,NULL,'(562) 533-4378',NULL,'5625334378',2),
- (111,137,1,1,0,NULL,'(613) 421-2553',NULL,'6134212553',2),
- (112,95,1,1,0,NULL,'(802) 437-3526',NULL,'8024373526',1),
- (113,95,1,0,0,NULL,'(233) 571-8766',NULL,'2335718766',2),
- (114,40,1,1,0,NULL,'(732) 226-3607',NULL,'7322263607',1),
- (115,131,1,1,0,NULL,'838-5997',NULL,'8385997',2),
- (116,131,1,0,0,NULL,'(331) 566-6124',NULL,'3315666124',1),
- (117,103,1,1,0,NULL,'572-2389',NULL,'5722389',2),
- (118,162,1,1,0,NULL,'764-2796',NULL,'7642796',1),
- (119,195,1,1,0,NULL,'778-1242',NULL,'7781242',2),
- (120,195,1,0,0,NULL,'(803) 897-8800',NULL,'8038978800',2),
- (121,157,1,1,0,NULL,'(411) 420-4320',NULL,'4114204320',1),
- (122,43,1,1,0,NULL,'(349) 316-6915',NULL,'3493166915',2),
- (123,43,1,0,0,NULL,'(825) 422-6567',NULL,'8254226567',1),
- (124,171,1,1,0,NULL,'872-3077',NULL,'8723077',2),
- (125,171,1,0,0,NULL,'(833) 238-2277',NULL,'8332382277',1),
- (126,20,1,1,0,NULL,'(659) 561-4232',NULL,'6595614232',1),
- (127,20,1,0,0,NULL,'600-6004',NULL,'6006004',2),
- (128,88,1,1,0,NULL,'301-7528',NULL,'3017528',2),
- (129,88,1,0,0,NULL,'262-8403',NULL,'2628403',2),
- (130,127,1,1,0,NULL,'266-7814',NULL,'2667814',1),
- (131,183,1,1,0,NULL,'469-3952',NULL,'4693952',2),
- (132,183,1,0,0,NULL,'(286) 586-1433',NULL,'2865861433',2),
- (133,21,1,1,0,NULL,'(812) 475-3321',NULL,'8124753321',1),
- (134,63,1,1,0,NULL,'812-3534',NULL,'8123534',1),
- (135,63,1,0,0,NULL,'(201) 202-2743',NULL,'2012022743',1),
- (136,122,1,1,0,NULL,'(865) 415-2308',NULL,'8654152308',1),
- (137,122,1,0,0,NULL,'533-3407',NULL,'5333407',1),
- (138,97,1,1,0,NULL,'(732) 673-9815',NULL,'7326739815',2),
- (139,199,1,1,0,NULL,'836-2802',NULL,'8362802',1),
- (140,199,1,0,0,NULL,'808-9796',NULL,'8089796',1),
- (141,123,1,1,0,NULL,'852-8773',NULL,'8528773',2),
- (142,123,1,0,0,NULL,'(363) 709-5524',NULL,'3637095524',2),
- (143,64,1,1,0,NULL,'676-7066',NULL,'6767066',1),
- (144,138,1,1,0,NULL,'(380) 334-3104',NULL,'3803343104',1),
- (145,99,1,1,0,NULL,'453-1603',NULL,'4531603',2),
- (146,99,1,0,0,NULL,'(316) 647-1060',NULL,'3166471060',2),
- (147,141,1,1,0,NULL,'617-5285',NULL,'6175285',2),
- (148,57,1,1,0,NULL,'(653) 886-6537',NULL,'6538866537',2),
- (149,23,1,1,0,NULL,'(607) 579-8788',NULL,'6075798788',1),
- (150,23,1,0,0,NULL,'288-9788',NULL,'2889788',1),
- (151,34,1,1,0,NULL,'(578) 718-4192',NULL,'5787184192',2),
- (152,34,1,0,0,NULL,'(683) 626-3949',NULL,'6836263949',2),
- (153,173,1,1,0,NULL,'(717) 309-5714',NULL,'7173095714',2),
- (154,35,1,1,0,NULL,'(475) 550-7704',NULL,'4755507704',1),
- (155,35,1,0,0,NULL,'(385) 720-1291',NULL,'3857201291',2),
- (156,117,1,1,0,NULL,'221-7685',NULL,'2217685',2),
- (157,58,1,1,0,NULL,'(504) 458-3070',NULL,'5044583070',2),
- (158,58,1,0,0,NULL,'(759) 487-3313',NULL,'7594873313',1),
- (159,179,1,1,0,NULL,'431-5133',NULL,'4315133',1),
- (160,124,1,1,0,NULL,'(567) 236-7593',NULL,'5672367593',2),
- (161,37,1,1,0,NULL,'573-3248',NULL,'5733248',1),
- (162,37,1,0,0,NULL,'271-3631',NULL,'2713631',1),
- (163,50,1,1,0,NULL,'896-2393',NULL,'8962393',1),
- (164,172,1,1,0,NULL,'(832) 357-5659',NULL,'8323575659',1),
- (165,172,1,0,0,NULL,'(392) 599-5945',NULL,'3925995945',2),
- (166,66,1,1,0,NULL,'(349) 701-5479',NULL,'3497015479',1),
- (167,66,1,0,0,NULL,'524-9136',NULL,'5249136',1),
- (168,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),
- (169,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),
- (170,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
+ (1,177,1,1,0,NULL,'(800) 251-4521',NULL,'8002514521',1),
+ (2,171,1,1,0,NULL,'699-3776',NULL,'6993776',1),
+ (3,171,1,0,0,NULL,'564-1373',NULL,'5641373',2),
+ (4,87,1,1,0,NULL,'248-3706',NULL,'2483706',2),
+ (5,87,1,0,0,NULL,'695-9248',NULL,'6959248',1),
+ (6,154,1,1,0,NULL,'(585) 585-3674',NULL,'5855853674',1),
+ (7,154,1,0,0,NULL,'724-5953',NULL,'7245953',2),
+ (8,74,1,1,0,NULL,'869-8882',NULL,'8698882',1),
+ (9,74,1,0,0,NULL,'319-9230',NULL,'3199230',2),
+ (10,92,1,1,0,NULL,'539-2772',NULL,'5392772',2),
+ (11,96,1,1,0,NULL,'849-6363',NULL,'8496363',1),
+ (12,96,1,0,0,NULL,'(453) 784-2883',NULL,'4537842883',2),
+ (13,12,1,1,0,NULL,'(576) 630-5676',NULL,'5766305676',1),
+ (14,12,1,0,0,NULL,'(384) 223-1879',NULL,'3842231879',1),
+ (15,32,1,1,0,NULL,'(402) 455-2930',NULL,'4024552930',2),
+ (16,32,1,0,0,NULL,'(757) 880-4486',NULL,'7578804486',2),
+ (17,85,1,1,0,NULL,'(882) 593-5600',NULL,'8825935600',2),
+ (18,132,1,1,0,NULL,'495-4684',NULL,'4954684',2),
+ (19,114,1,1,0,NULL,'318-6576',NULL,'3186576',1),
+ (20,114,1,0,0,NULL,'212-3079',NULL,'2123079',2),
+ (21,156,1,1,0,NULL,'817-1591',NULL,'8171591',2),
+ (22,156,1,0,0,NULL,'(278) 807-5131',NULL,'2788075131',2),
+ (23,155,1,1,0,NULL,'739-2493',NULL,'7392493',1),
+ (24,5,1,1,0,NULL,'224-6558',NULL,'2246558',1),
+ (25,5,1,0,0,NULL,'521-3136',NULL,'5213136',2),
+ (26,42,1,1,0,NULL,'(538) 708-1544',NULL,'5387081544',2),
+ (27,42,1,0,0,NULL,'(588) 414-9465',NULL,'5884149465',2),
+ (28,164,1,1,0,NULL,'222-1289',NULL,'2221289',1),
+ (29,71,1,1,0,NULL,'(665) 509-8702',NULL,'6655098702',1),
+ (30,71,1,0,0,NULL,'(296) 510-1509',NULL,'2965101509',2),
+ (31,16,1,1,0,NULL,'643-2107',NULL,'6432107',1),
+ (32,128,1,1,0,NULL,'(601) 488-5295',NULL,'6014885295',1),
+ (33,128,1,0,0,NULL,'(797) 763-6131',NULL,'7977636131',2),
+ (34,66,1,1,0,NULL,'(819) 414-5662',NULL,'8194145662',1),
+ (35,108,1,1,0,NULL,'(679) 531-5181',NULL,'6795315181',1),
+ (36,15,1,1,0,NULL,'380-4212',NULL,'3804212',2),
+ (37,13,1,1,0,NULL,'804-3595',NULL,'8043595',1),
+ (38,13,1,0,0,NULL,'(827) 890-1595',NULL,'8278901595',2),
+ (39,17,1,1,0,NULL,'342-2370',NULL,'3422370',2),
+ (40,191,1,1,0,NULL,'215-5708',NULL,'2155708',1),
+ (41,191,1,0,0,NULL,'(249) 408-3255',NULL,'2494083255',2),
+ (42,162,1,1,0,NULL,'(763) 305-2076',NULL,'7633052076',1),
+ (43,162,1,0,0,NULL,'578-1947',NULL,'5781947',1),
+ (44,196,1,1,0,NULL,'(820) 292-7530',NULL,'8202927530',2),
+ (45,196,1,0,0,NULL,'745-6270',NULL,'7456270',1),
+ (46,81,1,1,0,NULL,'339-1978',NULL,'3391978',1),
+ (47,72,1,1,0,NULL,'(647) 726-4487',NULL,'6477264487',1),
+ (48,63,1,1,0,NULL,'399-3898',NULL,'3993898',2),
+ (49,63,1,0,0,NULL,'565-4737',NULL,'5654737',1),
+ (50,169,1,1,0,NULL,'694-4413',NULL,'6944413',1),
+ (51,169,1,0,0,NULL,'(760) 260-3772',NULL,'7602603772',1),
+ (52,131,1,1,0,NULL,'(303) 228-4407',NULL,'3032284407',2),
+ (53,147,1,1,0,NULL,'844-5810',NULL,'8445810',2),
+ (54,147,1,0,0,NULL,'819-9833',NULL,'8199833',2),
+ (55,140,1,1,0,NULL,'(279) 639-3897',NULL,'2796393897',2),
+ (56,44,1,1,0,NULL,'(487) 237-6536',NULL,'4872376536',2),
+ (57,103,1,1,0,NULL,'(308) 820-1281',NULL,'3088201281',2),
+ (58,163,1,1,0,NULL,'(339) 877-4844',NULL,'3398774844',1),
+ (59,138,1,1,0,NULL,'800-3239',NULL,'8003239',2),
+ (60,138,1,0,0,NULL,'(400) 567-3791',NULL,'4005673791',1),
+ (61,47,1,1,0,NULL,'(412) 419-4454',NULL,'4124194454',1),
+ (62,47,1,0,0,NULL,'(354) 453-5820',NULL,'3544535820',1),
+ (63,137,1,1,0,NULL,'449-2766',NULL,'4492766',2),
+ (64,137,1,0,0,NULL,'630-9429',NULL,'6309429',1),
+ (65,98,1,1,0,NULL,'(841) 245-7470',NULL,'8412457470',1),
+ (66,98,1,0,0,NULL,'(388) 882-4829',NULL,'3888824829',1),
+ (67,7,1,1,0,NULL,'763-2017',NULL,'7632017',1),
+ (68,104,1,1,0,NULL,'891-5070',NULL,'8915070',1),
+ (69,104,1,0,0,NULL,'370-8548',NULL,'3708548',1),
+ (70,194,1,1,0,NULL,'(753) 688-9989',NULL,'7536889989',1),
+ (71,194,1,0,0,NULL,'(453) 712-5898',NULL,'4537125898',1),
+ (72,14,1,1,0,NULL,'(736) 268-6063',NULL,'7362686063',1),
+ (73,14,1,0,0,NULL,'(626) 218-3807',NULL,'6262183807',1),
+ (74,46,1,1,0,NULL,'600-8438',NULL,'6008438',2),
+ (75,165,1,1,0,NULL,'(449) 721-8630',NULL,'4497218630',2),
+ (76,59,1,1,0,NULL,'(369) 714-3235',NULL,'3697143235',2),
+ (77,59,1,0,0,NULL,'274-7504',NULL,'2747504',1),
+ (78,136,1,1,0,NULL,'(548) 585-4960',NULL,'5485854960',1),
+ (79,55,1,1,0,NULL,'509-8968',NULL,'5098968',2),
+ (80,55,1,0,0,NULL,'(782) 281-4468',NULL,'7822814468',2),
+ (81,39,1,1,0,NULL,'(524) 347-8734',NULL,'5243478734',1),
+ (82,39,1,0,0,NULL,'335-9305',NULL,'3359305',2),
+ (83,126,1,1,0,NULL,'562-6225',NULL,'5626225',2),
+ (84,41,1,1,0,NULL,'(618) 451-6155',NULL,'6184516155',2),
+ (85,76,1,1,0,NULL,'(396) 527-1534',NULL,'3965271534',2),
+ (86,76,1,0,0,NULL,'(783) 873-2154',NULL,'7838732154',1),
+ (87,125,1,1,0,NULL,'368-8081',NULL,'3688081',1),
+ (88,95,1,1,0,NULL,'459-8816',NULL,'4598816',2),
+ (89,95,1,0,0,NULL,'(222) 816-1172',NULL,'2228161172',2),
+ (90,69,1,1,0,NULL,'(644) 809-3639',NULL,'6448093639',1),
+ (91,69,1,0,0,NULL,'(758) 265-7817',NULL,'7582657817',2),
+ (92,91,1,1,0,NULL,'(467) 388-8662',NULL,'4673888662',2),
+ (93,33,1,1,0,NULL,'(324) 530-7588',NULL,'3245307588',1),
+ (94,153,1,1,0,NULL,'716-2855',NULL,'7162855',2),
+ (95,153,1,0,0,NULL,'(360) 567-4243',NULL,'3605674243',2),
+ (96,94,1,1,0,NULL,'706-1970',NULL,'7061970',2),
+ (97,94,1,0,0,NULL,'211-7278',NULL,'2117278',1),
+ (98,78,1,1,0,NULL,'445-1103',NULL,'4451103',1),
+ (99,78,1,0,0,NULL,'(217) 414-8037',NULL,'2174148037',2),
+ (100,3,1,1,0,NULL,'(387) 445-2249',NULL,'3874452249',2),
+ (101,200,1,1,0,NULL,'781-7807',NULL,'7817807',1),
+ (102,200,1,0,0,NULL,'(803) 576-6154',NULL,'8035766154',2),
+ (103,187,1,1,0,NULL,'(430) 428-5477',NULL,'4304285477',1),
+ (104,117,1,1,0,NULL,'392-2840',NULL,'3922840',2),
+ (105,60,1,1,0,NULL,'472-4844',NULL,'4724844',1),
+ (106,60,1,0,0,NULL,'579-2940',NULL,'5792940',2),
+ (107,88,1,1,0,NULL,'(365) 364-6940',NULL,'3653646940',2),
+ (108,88,1,0,0,NULL,'632-8923',NULL,'6328923',1),
+ (109,83,1,1,0,NULL,'799-1780',NULL,'7991780',1),
+ (110,120,1,1,0,NULL,'883-1966',NULL,'8831966',1),
+ (111,120,1,0,0,NULL,'(296) 470-7654',NULL,'2964707654',2),
+ (112,52,1,1,0,NULL,'(726) 630-9477',NULL,'7266309477',2),
+ (113,28,1,1,0,NULL,'770-2424',NULL,'7702424',1),
+ (114,28,1,0,0,NULL,'(317) 328-1849',NULL,'3173281849',1),
+ (115,185,1,1,0,NULL,'779-4429',NULL,'7794429',1),
+ (116,185,1,0,0,NULL,'380-6448',NULL,'3806448',1),
+ (117,61,1,1,0,NULL,'563-2173',NULL,'5632173',1),
+ (118,179,1,1,0,NULL,'338-2018',NULL,'3382018',1),
+ (119,107,1,1,0,NULL,'860-2294',NULL,'8602294',2),
+ (120,107,1,0,0,NULL,'806-2068',NULL,'8062068',1),
+ (121,26,1,1,0,NULL,'437-8181',NULL,'4378181',2),
+ (122,26,1,0,0,NULL,'441-8024',NULL,'4418024',1),
+ (123,148,1,1,0,NULL,'710-5901',NULL,'7105901',2),
+ (124,25,1,1,0,NULL,'557-1004',NULL,'5571004',1),
+ (125,25,1,0,0,NULL,'(389) 320-9950',NULL,'3893209950',1),
+ (126,62,1,1,0,NULL,'369-7623',NULL,'3697623',1),
+ (127,62,1,0,0,NULL,'(544) 292-9672',NULL,'5442929672',2),
+ (128,9,1,1,0,NULL,'(874) 422-2583',NULL,'8744222583',2),
+ (129,166,1,1,0,NULL,'410-2871',NULL,'4102871',2),
+ (130,18,1,1,0,NULL,'700-5593',NULL,'7005593',1),
+ (131,176,1,1,0,NULL,'(756) 208-1634',NULL,'7562081634',1),
+ (132,127,1,1,0,NULL,'(828) 595-5349',NULL,'8285955349',2),
+ (133,174,1,1,0,NULL,'322-6683',NULL,'3226683',2),
+ (134,8,1,1,0,NULL,'(317) 759-2397',NULL,'3177592397',1),
+ (135,145,1,1,0,NULL,'589-4035',NULL,'5894035',2),
+ (136,145,1,0,0,NULL,'(404) 254-9932',NULL,'4042549932',2),
+ (137,130,1,1,0,NULL,'(476) 239-3700',NULL,'4762393700',1),
+ (138,161,1,1,0,NULL,'412-5432',NULL,'4125432',1),
+ (139,161,1,0,0,NULL,'(447) 679-5613',NULL,'4476795613',2),
+ (140,45,1,1,0,NULL,'(704) 731-3869',NULL,'7047313869',2),
+ (141,45,1,0,0,NULL,'(382) 520-5799',NULL,'3825205799',2),
+ (142,134,1,1,0,NULL,'(628) 465-8528',NULL,'6284658528',1),
+ (143,198,1,1,0,NULL,'873-3484',NULL,'8733484',2),
+ (144,198,1,0,0,NULL,'787-8787',NULL,'7878787',2),
+ (145,116,1,1,0,NULL,'308-7532',NULL,'3087532',1),
+ (146,80,1,1,0,NULL,'264-1611',NULL,'2641611',1),
+ (147,67,1,1,0,NULL,'(471) 303-3078',NULL,'4713033078',2),
+ (148,180,1,1,0,NULL,'(507) 248-9047',NULL,'5072489047',2),
+ (149,64,1,1,0,NULL,'477-8524',NULL,'4778524',1),
+ (150,119,1,1,0,NULL,'487-9635',NULL,'4879635',2),
+ (151,70,1,1,0,NULL,'315-5768',NULL,'3155768',1),
+ (152,143,1,1,0,NULL,'872-3454',NULL,'8723454',2),
+ (153,135,1,1,0,NULL,'(438) 702-3048',NULL,'4387023048',1),
+ (154,106,1,1,0,NULL,'632-7798',NULL,'6327798',2),
+ (155,100,1,1,0,NULL,'654-5954',NULL,'6545954',2),
+ (156,100,1,0,0,NULL,'681-7211',NULL,'6817211',1),
+ (157,51,1,1,0,NULL,'(494) 781-3036',NULL,'4947813036',1),
+ (158,51,1,0,0,NULL,'560-5557',NULL,'5605557',1),
+ (159,149,1,1,0,NULL,'(898) 701-8145',NULL,'8987018145',2),
+ (160,149,1,0,0,NULL,'(301) 230-1099',NULL,'3012301099',1),
+ (161,122,1,1,0,NULL,'(776) 239-4547',NULL,'7762394547',2),
+ (162,122,1,0,0,NULL,'302-7171',NULL,'3027171',2),
+ (163,30,1,1,0,NULL,'842-8836',NULL,'8428836',2),
+ (164,29,1,1,0,NULL,'(337) 437-5055',NULL,'3374375055',2),
+ (165,29,1,0,0,NULL,'(755) 655-1772',NULL,'7556551772',1),
+ (166,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),
+ (167,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),
+ (168,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
 /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -7429,221 +7344,224 @@ 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,150,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:42','2022-10-10 07:32:42'),
- (2,28,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (3,150,46,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (4,28,46,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (5,28,150,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (6,46,2,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (7,150,2,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (8,28,2,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (9,14,2,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (10,46,14,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (11,168,68,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (12,176,68,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (13,168,74,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (14,176,74,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (15,176,168,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (16,74,180,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (17,168,180,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (18,176,180,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (19,68,180,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (20,74,68,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (21,84,61,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (22,191,61,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (23,84,9,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (24,191,9,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (25,191,84,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (26,9,98,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (27,84,98,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (28,191,98,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (29,61,98,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (30,9,61,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (31,144,15,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (32,125,15,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (33,144,158,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (34,125,158,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (35,125,144,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (36,158,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (37,144,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (38,125,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (39,15,32,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (40,158,15,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (41,86,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (42,110,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (43,86,190,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (44,110,190,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (45,110,86,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (46,190,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (47,86,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (48,110,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (49,120,119,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (50,190,120,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (51,95,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (52,40,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (53,95,178,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (54,40,178,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (55,40,95,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (56,178,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (57,95,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (58,40,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (59,137,54,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (60,178,137,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (61,143,31,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (62,103,31,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (63,143,131,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (64,103,131,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (65,103,143,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (66,131,187,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (67,143,187,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (68,103,187,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (69,31,187,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (70,131,31,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (71,157,162,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (72,43,162,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (73,157,195,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (74,43,195,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (75,43,157,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (76,195,44,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (77,157,44,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (78,43,44,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (79,162,44,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (80,195,162,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (81,104,171,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (82,194,171,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (83,104,20,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (84,194,20,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (85,194,104,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (86,20,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (87,104,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (88,194,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (89,171,51,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (90,20,171,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (91,183,88,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (92,21,88,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (93,183,127,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (94,21,127,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (95,21,183,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (96,127,155,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (97,183,155,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (98,21,155,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (99,88,155,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (100,127,88,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (101,122,63,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (102,97,63,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (103,122,93,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (104,97,93,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (105,97,122,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (106,93,82,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (107,122,82,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:43','2022-10-10 07:32:43'),
- (108,97,82,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (109,63,82,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (110,93,63,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (111,123,92,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (112,67,92,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (113,123,199,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (114,67,199,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (115,67,123,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (116,199,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (117,123,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (118,67,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (119,92,184,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (120,199,92,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (121,47,113,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (122,109,113,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (123,47,49,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (124,109,49,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (125,109,47,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (126,49,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (127,47,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (128,109,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (129,113,163,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (130,49,113,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (131,138,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (132,99,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (133,138,169,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (134,99,169,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (135,99,138,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (136,169,146,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (137,138,146,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (138,99,146,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (139,64,146,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (140,169,64,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (141,57,116,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (142,152,116,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (143,57,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (144,152,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (145,152,57,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (146,141,121,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (147,57,121,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (148,152,121,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (149,116,121,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (150,141,116,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (151,48,23,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (152,173,23,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (153,48,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (154,173,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (155,173,48,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (156,34,39,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (157,48,39,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (158,173,39,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (159,23,39,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (160,34,23,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (161,89,35,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (162,58,35,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (163,89,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (164,58,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (165,58,89,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (166,117,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (167,89,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (168,58,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (169,35,96,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (170,117,35,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (171,124,91,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (172,198,91,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (173,124,179,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (174,198,179,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (175,198,124,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (176,179,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (177,124,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (178,198,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (179,91,128,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (180,179,91,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (181,166,37,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (182,50,37,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (183,166,145,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (184,50,145,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (185,50,166,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (186,145,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (187,166,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (188,50,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (189,37,200,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (190,145,37,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (191,132,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (192,66,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (193,132,172,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (194,66,172,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (195,66,132,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (196,172,193,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (197,132,193,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (198,66,193,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (199,77,193,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (200,172,77,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (201,21,6,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (202,31,19,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (203,36,41,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (204,188,70,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (205,33,72,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (206,75,73,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (207,120,76,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (208,74,78,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (209,79,80,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (210,9,81,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (211,148,100,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (212,10,107,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (213,67,134,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (214,197,147,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44'),
- (215,106,164,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-10 07:32:44','2022-10-10 07:32:44');
+ (1,94,33,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (2,78,33,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (3,94,153,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (4,78,153,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (5,78,94,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (6,153,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (7,94,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (8,78,79,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (9,33,79,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (10,153,33,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (11,158,3,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (12,187,3,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (13,158,200,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (14,187,200,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (15,187,158,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (16,200,102,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (17,158,102,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (18,187,102,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (19,3,102,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (20,200,3,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (21,88,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (22,160,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (23,88,60,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (24,160,60,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (25,160,88,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (26,60,190,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (27,88,190,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (28,160,190,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (29,117,190,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (30,60,117,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (31,52,83,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (32,28,83,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (33,52,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (34,28,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (35,28,52,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (36,120,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (37,52,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (38,28,77,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (39,83,77,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (40,120,83,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (41,68,84,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (42,19,84,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (43,68,185,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (44,19,185,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (45,19,68,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (46,185,118,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (47,68,118,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (48,19,118,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (49,84,118,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (50,185,84,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (51,179,61,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (52,99,61,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (53,179,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (54,99,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (55,99,179,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (56,141,11,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (57,179,11,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (58,99,11,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (59,61,11,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (60,141,61,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (61,26,40,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (62,2,40,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (63,26,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (64,2,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (65,2,26,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (66,107,186,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (67,26,186,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (68,2,186,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (69,40,186,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (70,107,40,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (71,62,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (72,150,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (73,62,25,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (74,150,25,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (75,150,62,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (76,25,53,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (77,62,53,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (78,150,53,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (79,148,53,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (80,25,148,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (81,146,9,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (82,166,9,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (83,146,183,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (84,166,183,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (85,166,146,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (86,183,152,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (87,146,152,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (88,166,152,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (89,9,152,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (90,183,9,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (91,127,18,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (92,38,18,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (93,127,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (94,38,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (95,38,127,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (96,176,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (97,127,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (98,38,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (99,18,57,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (100,176,18,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (101,145,174,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (102,130,174,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (103,145,8,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (104,130,8,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (105,130,145,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (106,8,48,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (107,145,48,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:38','2022-10-09 15:29:38'),
+ (108,130,48,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (109,174,48,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (110,8,174,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (111,4,188,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (112,45,188,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (113,4,161,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (114,45,161,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (115,45,4,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (116,161,58,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (117,4,58,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (118,45,58,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (119,188,58,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (120,161,188,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (121,182,110,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (122,134,110,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (123,182,65,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (124,134,65,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (125,134,182,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (126,65,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (127,182,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (128,134,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (129,110,22,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (130,65,110,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (131,56,198,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (132,116,198,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (133,56,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (134,116,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (135,116,56,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (136,193,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (137,56,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (138,116,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (139,198,43,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (140,193,198,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (141,80,50,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (142,67,50,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (143,80,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (144,67,34,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (145,67,80,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (146,34,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (147,80,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (148,67,54,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (149,50,54,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (150,34,50,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (151,119,180,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (152,189,180,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (153,119,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (154,189,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (155,189,119,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (156,64,21,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (157,119,21,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (158,189,21,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (159,180,21,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (160,64,180,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (161,135,70,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (162,90,70,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (163,135,143,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (164,90,143,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (165,90,135,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (166,143,36,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (167,135,36,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (168,90,36,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (169,70,36,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (170,143,70,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (171,100,181,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (172,86,181,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (173,100,106,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (174,86,106,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (175,86,100,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (176,106,49,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (177,100,49,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (178,86,49,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (179,181,49,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (180,106,181,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (181,93,51,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (182,122,51,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (183,93,149,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (184,122,149,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (185,122,93,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (186,149,170,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (187,93,170,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (188,122,170,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (189,51,170,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (190,149,51,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (191,142,30,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (192,29,30,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (193,142,144,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (194,29,144,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (195,29,142,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (196,144,101,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (197,142,101,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (198,29,101,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (199,30,101,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (200,144,30,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (201,33,24,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (202,136,37,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (203,26,75,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (204,189,89,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (205,150,97,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (206,70,105,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (207,88,123,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (208,178,124,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (209,146,133,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (210,147,139,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (211,134,157,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (212,9,159,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (213,71,168,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (214,109,172,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (215,84,173,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (216,45,175,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (217,196,192,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39'),
+ (218,25,201,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-09 15:29:39','2022-10-09 15:29:39');
 /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -7654,436 +7572,442 @@ 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',150,'Child of',14,'Parent of',1,NULL,NULL,NULL),
- (2,1,1,'b_a',14,'Parent of',150,'Child of',1,NULL,NULL,NULL),
- (3,2,1,'a_b',28,'Child of',14,'Parent of',1,NULL,NULL,NULL),
- (4,2,1,'b_a',14,'Parent of',28,'Child of',1,NULL,NULL,NULL),
- (5,3,1,'a_b',150,'Child of',46,'Parent of',1,NULL,NULL,NULL),
- (6,3,1,'b_a',46,'Parent of',150,'Child of',1,NULL,NULL,NULL),
- (7,4,1,'a_b',28,'Child of',46,'Parent of',1,NULL,NULL,NULL),
- (8,4,1,'b_a',46,'Parent of',28,'Child of',1,NULL,NULL,NULL),
- (9,5,4,'a_b',28,'Sibling of',150,'Sibling of',1,NULL,NULL,NULL),
- (10,5,4,'b_a',150,'Sibling of',28,'Sibling of',1,NULL,NULL,NULL),
- (11,6,8,'a_b',46,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL),
- (12,6,8,'b_a',2,'Household Member is',46,'Household Member of',1,NULL,NULL,NULL),
- (13,7,8,'a_b',150,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL),
- (14,7,8,'b_a',2,'Household Member is',150,'Household Member of',1,NULL,NULL,NULL),
- (15,8,8,'a_b',28,'Household Member of',2,'Household Member is',1,NULL,NULL,NULL),
- (16,8,8,'b_a',2,'Household Member is',28,'Household Member of',1,NULL,NULL,NULL),
- (17,9,7,'a_b',14,'Head of Household for',2,'Head of Household is',1,NULL,NULL,NULL),
- (18,9,7,'b_a',2,'Head of Household is',14,'Head of Household for',1,NULL,NULL,NULL),
- (19,10,2,'a_b',46,'Spouse of',14,'Spouse of',1,NULL,NULL,NULL),
- (20,10,2,'b_a',14,'Spouse of',46,'Spouse of',1,NULL,NULL,NULL),
- (21,11,1,'a_b',168,'Child of',68,'Parent of',1,NULL,NULL,NULL),
- (22,11,1,'b_a',68,'Parent of',168,'Child of',1,NULL,NULL,NULL),
- (23,12,1,'a_b',176,'Child of',68,'Parent of',1,NULL,NULL,NULL),
- (24,12,1,'b_a',68,'Parent of',176,'Child of',1,NULL,NULL,NULL),
- (25,13,1,'a_b',168,'Child of',74,'Parent of',1,NULL,NULL,NULL),
- (26,13,1,'b_a',74,'Parent of',168,'Child of',1,NULL,NULL,NULL),
- (27,14,1,'a_b',176,'Child of',74,'Parent of',1,NULL,NULL,NULL),
- (28,14,1,'b_a',74,'Parent of',176,'Child of',1,NULL,NULL,NULL),
- (29,15,4,'a_b',176,'Sibling of',168,'Sibling of',1,NULL,NULL,NULL),
- (30,15,4,'b_a',168,'Sibling of',176,'Sibling of',1,NULL,NULL,NULL),
- (31,16,8,'a_b',74,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL),
- (32,16,8,'b_a',180,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL),
- (33,17,8,'a_b',168,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL),
- (34,17,8,'b_a',180,'Household Member is',168,'Household Member of',1,NULL,NULL,NULL),
- (35,18,8,'a_b',176,'Household Member of',180,'Household Member is',1,NULL,NULL,NULL),
- (36,18,8,'b_a',180,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL),
- (37,19,7,'a_b',68,'Head of Household for',180,'Head of Household is',1,NULL,NULL,NULL),
- (38,19,7,'b_a',180,'Head of Household is',68,'Head of Household for',1,NULL,NULL,NULL),
- (39,20,2,'a_b',74,'Spouse of',68,'Spouse of',1,NULL,NULL,NULL),
- (40,20,2,'b_a',68,'Spouse of',74,'Spouse of',1,NULL,NULL,NULL),
- (41,21,1,'a_b',84,'Child of',61,'Parent of',1,NULL,NULL,NULL),
- (42,21,1,'b_a',61,'Parent of',84,'Child of',1,NULL,NULL,NULL),
- (43,22,1,'a_b',191,'Child of',61,'Parent of',1,NULL,NULL,NULL),
- (44,22,1,'b_a',61,'Parent of',191,'Child of',1,NULL,NULL,NULL),
- (45,23,1,'a_b',84,'Child of',9,'Parent of',1,NULL,NULL,NULL),
- (46,23,1,'b_a',9,'Parent of',84,'Child of',1,NULL,NULL,NULL),
- (47,24,1,'a_b',191,'Child of',9,'Parent of',1,NULL,NULL,NULL),
- (48,24,1,'b_a',9,'Parent of',191,'Child of',1,NULL,NULL,NULL),
- (49,25,4,'a_b',191,'Sibling of',84,'Sibling of',1,NULL,NULL,NULL),
- (50,25,4,'b_a',84,'Sibling of',191,'Sibling of',1,NULL,NULL,NULL),
- (51,26,8,'a_b',9,'Household Member of',98,'Household Member is',1,NULL,NULL,NULL),
- (52,26,8,'b_a',98,'Household Member is',9,'Household Member of',1,NULL,NULL,NULL),
- (53,27,8,'a_b',84,'Household Member of',98,'Household Member is',1,NULL,NULL,NULL),
- (54,27,8,'b_a',98,'Household Member is',84,'Household Member of',1,NULL,NULL,NULL),
- (55,28,8,'a_b',191,'Household Member of',98,'Household Member is',1,NULL,NULL,NULL),
- (56,28,8,'b_a',98,'Household Member is',191,'Household Member of',1,NULL,NULL,NULL),
- (57,29,7,'a_b',61,'Head of Household for',98,'Head of Household is',1,NULL,NULL,NULL),
- (58,29,7,'b_a',98,'Head of Household is',61,'Head of Household for',1,NULL,NULL,NULL),
- (59,30,2,'a_b',9,'Spouse of',61,'Spouse of',1,NULL,NULL,NULL),
- (60,30,2,'b_a',61,'Spouse of',9,'Spouse of',1,NULL,NULL,NULL),
- (61,31,1,'a_b',144,'Child of',15,'Parent of',1,NULL,NULL,NULL),
- (62,31,1,'b_a',15,'Parent of',144,'Child of',1,NULL,NULL,NULL),
- (63,32,1,'a_b',125,'Child of',15,'Parent of',1,NULL,NULL,NULL),
- (64,32,1,'b_a',15,'Parent of',125,'Child of',1,NULL,NULL,NULL),
- (65,33,1,'a_b',144,'Child of',158,'Parent of',1,NULL,NULL,NULL),
- (66,33,1,'b_a',158,'Parent of',144,'Child of',1,NULL,NULL,NULL),
- (67,34,1,'a_b',125,'Child of',158,'Parent of',1,NULL,NULL,NULL),
- (68,34,1,'b_a',158,'Parent of',125,'Child of',1,NULL,NULL,NULL),
- (69,35,4,'a_b',125,'Sibling of',144,'Sibling of',1,NULL,NULL,NULL),
- (70,35,4,'b_a',144,'Sibling of',125,'Sibling of',1,NULL,NULL,NULL),
- (71,36,8,'a_b',158,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL),
- (72,36,8,'b_a',32,'Household Member is',158,'Household Member of',1,NULL,NULL,NULL),
- (73,37,8,'a_b',144,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL),
- (74,37,8,'b_a',32,'Household Member is',144,'Household Member of',1,NULL,NULL,NULL),
- (75,38,8,'a_b',125,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL),
- (76,38,8,'b_a',32,'Household Member is',125,'Household Member of',1,NULL,NULL,NULL),
- (77,39,7,'a_b',15,'Head of Household for',32,'Head of Household is',0,NULL,NULL,NULL),
- (78,39,7,'b_a',32,'Head of Household is',15,'Head of Household for',0,NULL,NULL,NULL),
- (79,40,2,'a_b',158,'Spouse of',15,'Spouse of',0,NULL,NULL,NULL),
- (80,40,2,'b_a',15,'Spouse of',158,'Spouse of',0,NULL,NULL,NULL),
- (81,41,1,'a_b',86,'Child of',120,'Parent of',1,NULL,NULL,NULL),
- (82,41,1,'b_a',120,'Parent of',86,'Child of',1,NULL,NULL,NULL),
- (83,42,1,'a_b',110,'Child of',120,'Parent of',1,NULL,NULL,NULL),
- (84,42,1,'b_a',120,'Parent of',110,'Child of',1,NULL,NULL,NULL),
- (85,43,1,'a_b',86,'Child of',190,'Parent of',1,NULL,NULL,NULL),
- (86,43,1,'b_a',190,'Parent of',86,'Child of',1,NULL,NULL,NULL),
- (87,44,1,'a_b',110,'Child of',190,'Parent of',1,NULL,NULL,NULL),
- (88,44,1,'b_a',190,'Parent of',110,'Child of',1,NULL,NULL,NULL),
- (89,45,4,'a_b',110,'Sibling of',86,'Sibling of',1,NULL,NULL,NULL),
- (90,45,4,'b_a',86,'Sibling of',110,'Sibling of',1,NULL,NULL,NULL),
- (91,46,8,'a_b',190,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL),
- (92,46,8,'b_a',119,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL),
- (93,47,8,'a_b',86,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL),
- (94,47,8,'b_a',119,'Household Member is',86,'Household Member of',1,NULL,NULL,NULL),
- (95,48,8,'a_b',110,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL),
- (96,48,8,'b_a',119,'Household Member is',110,'Household Member of',1,NULL,NULL,NULL),
- (97,49,7,'a_b',120,'Head of Household for',119,'Head of Household is',1,NULL,NULL,NULL),
- (98,49,7,'b_a',119,'Head of Household is',120,'Head of Household for',1,NULL,NULL,NULL),
- (99,50,2,'a_b',190,'Spouse of',120,'Spouse of',1,NULL,NULL,NULL),
- (100,50,2,'b_a',120,'Spouse of',190,'Spouse of',1,NULL,NULL,NULL),
- (101,51,1,'a_b',95,'Child of',137,'Parent of',1,NULL,NULL,NULL),
- (102,51,1,'b_a',137,'Parent of',95,'Child of',1,NULL,NULL,NULL),
- (103,52,1,'a_b',40,'Child of',137,'Parent of',1,NULL,NULL,NULL),
- (104,52,1,'b_a',137,'Parent of',40,'Child of',1,NULL,NULL,NULL),
- (105,53,1,'a_b',95,'Child of',178,'Parent of',1,NULL,NULL,NULL),
- (106,53,1,'b_a',178,'Parent of',95,'Child of',1,NULL,NULL,NULL),
- (107,54,1,'a_b',40,'Child of',178,'Parent of',1,NULL,NULL,NULL),
- (108,54,1,'b_a',178,'Parent of',40,'Child of',1,NULL,NULL,NULL),
- (109,55,4,'a_b',40,'Sibling of',95,'Sibling of',1,NULL,NULL,NULL),
- (110,55,4,'b_a',95,'Sibling of',40,'Sibling of',1,NULL,NULL,NULL),
- (111,56,8,'a_b',178,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
- (112,56,8,'b_a',54,'Household Member is',178,'Household Member of',1,NULL,NULL,NULL),
- (113,57,8,'a_b',95,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
- (114,57,8,'b_a',54,'Household Member is',95,'Household Member of',1,NULL,NULL,NULL),
- (115,58,8,'a_b',40,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
- (116,58,8,'b_a',54,'Household Member is',40,'Household Member of',1,NULL,NULL,NULL),
- (117,59,7,'a_b',137,'Head of Household for',54,'Head of Household is',0,NULL,NULL,NULL),
- (118,59,7,'b_a',54,'Head of Household is',137,'Head of Household for',0,NULL,NULL,NULL),
- (119,60,2,'a_b',178,'Spouse of',137,'Spouse of',0,NULL,NULL,NULL),
- (120,60,2,'b_a',137,'Spouse of',178,'Spouse of',0,NULL,NULL,NULL),
- (121,61,1,'a_b',143,'Child of',31,'Parent of',1,NULL,NULL,NULL),
- (122,61,1,'b_a',31,'Parent of',143,'Child of',1,NULL,NULL,NULL),
- (123,62,1,'a_b',103,'Child of',31,'Parent of',1,NULL,NULL,NULL),
- (124,62,1,'b_a',31,'Parent of',103,'Child of',1,NULL,NULL,NULL),
- (125,63,1,'a_b',143,'Child of',131,'Parent of',1,NULL,NULL,NULL),
- (126,63,1,'b_a',131,'Parent of',143,'Child of',1,NULL,NULL,NULL),
- (127,64,1,'a_b',103,'Child of',131,'Parent of',1,NULL,NULL,NULL),
- (128,64,1,'b_a',131,'Parent of',103,'Child of',1,NULL,NULL,NULL),
- (129,65,4,'a_b',103,'Sibling of',143,'Sibling of',1,NULL,NULL,NULL),
- (130,65,4,'b_a',143,'Sibling of',103,'Sibling of',1,NULL,NULL,NULL),
- (131,66,8,'a_b',131,'Household Member of',187,'Household Member is',1,NULL,NULL,NULL),
- (132,66,8,'b_a',187,'Household Member is',131,'Household Member of',1,NULL,NULL,NULL),
- (133,67,8,'a_b',143,'Household Member of',187,'Household Member is',1,NULL,NULL,NULL),
- (134,67,8,'b_a',187,'Household Member is',143,'Household Member of',1,NULL,NULL,NULL),
- (135,68,8,'a_b',103,'Household Member of',187,'Household Member is',1,NULL,NULL,NULL),
- (136,68,8,'b_a',187,'Household Member is',103,'Household Member of',1,NULL,NULL,NULL),
- (137,69,7,'a_b',31,'Head of Household for',187,'Head of Household is',1,NULL,NULL,NULL),
- (138,69,7,'b_a',187,'Head of Household is',31,'Head of Household for',1,NULL,NULL,NULL),
- (139,70,2,'a_b',131,'Spouse of',31,'Spouse of',1,NULL,NULL,NULL),
- (140,70,2,'b_a',31,'Spouse of',131,'Spouse of',1,NULL,NULL,NULL),
- (141,71,1,'a_b',157,'Child of',162,'Parent of',1,NULL,NULL,NULL),
- (142,71,1,'b_a',162,'Parent of',157,'Child of',1,NULL,NULL,NULL),
- (143,72,1,'a_b',43,'Child of',162,'Parent of',1,NULL,NULL,NULL),
- (144,72,1,'b_a',162,'Parent of',43,'Child of',1,NULL,NULL,NULL),
- (145,73,1,'a_b',157,'Child of',195,'Parent of',1,NULL,NULL,NULL),
- (146,73,1,'b_a',195,'Parent of',157,'Child of',1,NULL,NULL,NULL),
- (147,74,1,'a_b',43,'Child of',195,'Parent of',1,NULL,NULL,NULL),
- (148,74,1,'b_a',195,'Parent of',43,'Child of',1,NULL,NULL,NULL),
- (149,75,4,'a_b',43,'Sibling of',157,'Sibling of',1,NULL,NULL,NULL),
- (150,75,4,'b_a',157,'Sibling of',43,'Sibling of',1,NULL,NULL,NULL),
- (151,76,8,'a_b',195,'Household Member of',44,'Household Member is',1,NULL,NULL,NULL),
- (152,76,8,'b_a',44,'Household Member is',195,'Household Member of',1,NULL,NULL,NULL),
- (153,77,8,'a_b',157,'Household Member of',44,'Household Member is',1,NULL,NULL,NULL),
- (154,77,8,'b_a',44,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL),
- (155,78,8,'a_b',43,'Household Member of',44,'Household Member is',1,NULL,NULL,NULL),
- (156,78,8,'b_a',44,'Household Member is',43,'Household Member of',1,NULL,NULL,NULL),
- (157,79,7,'a_b',162,'Head of Household for',44,'Head of Household is',1,NULL,NULL,NULL),
- (158,79,7,'b_a',44,'Head of Household is',162,'Head of Household for',1,NULL,NULL,NULL),
- (159,80,2,'a_b',195,'Spouse of',162,'Spouse of',1,NULL,NULL,NULL),
- (160,80,2,'b_a',162,'Spouse of',195,'Spouse of',1,NULL,NULL,NULL),
- (161,81,1,'a_b',104,'Child of',171,'Parent of',1,NULL,NULL,NULL),
- (162,81,1,'b_a',171,'Parent of',104,'Child of',1,NULL,NULL,NULL),
- (163,82,1,'a_b',194,'Child of',171,'Parent of',1,NULL,NULL,NULL),
- (164,82,1,'b_a',171,'Parent of',194,'Child of',1,NULL,NULL,NULL),
- (165,83,1,'a_b',104,'Child of',20,'Parent of',1,NULL,NULL,NULL),
- (166,83,1,'b_a',20,'Parent of',104,'Child of',1,NULL,NULL,NULL),
- (167,84,1,'a_b',194,'Child of',20,'Parent of',1,NULL,NULL,NULL),
- (168,84,1,'b_a',20,'Parent of',194,'Child of',1,NULL,NULL,NULL),
- (169,85,4,'a_b',194,'Sibling of',104,'Sibling of',1,NULL,NULL,NULL),
- (170,85,4,'b_a',104,'Sibling of',194,'Sibling of',1,NULL,NULL,NULL),
- (171,86,8,'a_b',20,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL),
- (172,86,8,'b_a',51,'Household Member is',20,'Household Member of',1,NULL,NULL,NULL),
- (173,87,8,'a_b',104,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL),
- (174,87,8,'b_a',51,'Household Member is',104,'Household Member of',1,NULL,NULL,NULL),
- (175,88,8,'a_b',194,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL),
- (176,88,8,'b_a',51,'Household Member is',194,'Household Member of',1,NULL,NULL,NULL),
- (177,89,7,'a_b',171,'Head of Household for',51,'Head of Household is',1,NULL,NULL,NULL),
- (178,89,7,'b_a',51,'Head of Household is',171,'Head of Household for',1,NULL,NULL,NULL),
- (179,90,2,'a_b',20,'Spouse of',171,'Spouse of',1,NULL,NULL,NULL),
- (180,90,2,'b_a',171,'Spouse of',20,'Spouse of',1,NULL,NULL,NULL),
- (181,91,1,'a_b',183,'Child of',88,'Parent of',1,NULL,NULL,NULL),
- (182,91,1,'b_a',88,'Parent of',183,'Child of',1,NULL,NULL,NULL),
- (183,92,1,'a_b',21,'Child of',88,'Parent of',1,NULL,NULL,NULL),
- (184,92,1,'b_a',88,'Parent of',21,'Child of',1,NULL,NULL,NULL),
- (185,93,1,'a_b',183,'Child of',127,'Parent of',1,NULL,NULL,NULL),
- (186,93,1,'b_a',127,'Parent of',183,'Child of',1,NULL,NULL,NULL),
- (187,94,1,'a_b',21,'Child of',127,'Parent of',1,NULL,NULL,NULL),
- (188,94,1,'b_a',127,'Parent of',21,'Child of',1,NULL,NULL,NULL),
- (189,95,4,'a_b',21,'Sibling of',183,'Sibling of',1,NULL,NULL,NULL),
- (190,95,4,'b_a',183,'Sibling of',21,'Sibling of',1,NULL,NULL,NULL),
- (191,96,8,'a_b',127,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL),
- (192,96,8,'b_a',155,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL),
- (193,97,8,'a_b',183,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL),
- (194,97,8,'b_a',155,'Household Member is',183,'Household Member of',1,NULL,NULL,NULL),
- (195,98,8,'a_b',21,'Household Member of',155,'Household Member is',1,NULL,NULL,NULL),
- (196,98,8,'b_a',155,'Household Member is',21,'Household Member of',1,NULL,NULL,NULL),
- (197,99,7,'a_b',88,'Head of Household for',155,'Head of Household is',1,NULL,NULL,NULL),
- (198,99,7,'b_a',155,'Head of Household is',88,'Head of Household for',1,NULL,NULL,NULL),
- (199,100,2,'a_b',127,'Spouse of',88,'Spouse of',1,NULL,NULL,NULL),
- (200,100,2,'b_a',88,'Spouse of',127,'Spouse of',1,NULL,NULL,NULL),
- (201,101,1,'a_b',122,'Child of',63,'Parent of',1,NULL,NULL,NULL),
- (202,101,1,'b_a',63,'Parent of',122,'Child of',1,NULL,NULL,NULL),
- (203,102,1,'a_b',97,'Child of',63,'Parent of',1,NULL,NULL,NULL),
- (204,102,1,'b_a',63,'Parent of',97,'Child of',1,NULL,NULL,NULL),
- (205,103,1,'a_b',122,'Child of',93,'Parent of',1,NULL,NULL,NULL),
- (206,103,1,'b_a',93,'Parent of',122,'Child of',1,NULL,NULL,NULL),
- (207,104,1,'a_b',97,'Child of',93,'Parent of',1,NULL,NULL,NULL),
- (208,104,1,'b_a',93,'Parent of',97,'Child of',1,NULL,NULL,NULL),
- (209,105,4,'a_b',97,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL),
- (210,105,4,'b_a',122,'Sibling of',97,'Sibling of',1,NULL,NULL,NULL),
- (211,106,8,'a_b',93,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL),
- (212,106,8,'b_a',82,'Household Member is',93,'Household Member of',1,NULL,NULL,NULL),
- (213,107,8,'a_b',122,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL),
- (214,107,8,'b_a',82,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL),
- (215,108,8,'a_b',97,'Household Member of',82,'Household Member is',1,NULL,NULL,NULL),
- (216,108,8,'b_a',82,'Household Member is',97,'Household Member of',1,NULL,NULL,NULL),
- (217,109,7,'a_b',63,'Head of Household for',82,'Head of Household is',0,NULL,NULL,NULL),
- (218,109,7,'b_a',82,'Head of Household is',63,'Head of Household for',0,NULL,NULL,NULL),
- (219,110,2,'a_b',93,'Spouse of',63,'Spouse of',0,NULL,NULL,NULL),
- (220,110,2,'b_a',63,'Spouse of',93,'Spouse of',0,NULL,NULL,NULL),
- (221,111,1,'a_b',123,'Child of',92,'Parent of',1,NULL,NULL,NULL),
- (222,111,1,'b_a',92,'Parent of',123,'Child of',1,NULL,NULL,NULL),
- (223,112,1,'a_b',67,'Child of',92,'Parent of',1,NULL,NULL,NULL),
- (224,112,1,'b_a',92,'Parent of',67,'Child of',1,NULL,NULL,NULL),
- (225,113,1,'a_b',123,'Child of',199,'Parent of',1,NULL,NULL,NULL),
- (226,113,1,'b_a',199,'Parent of',123,'Child of',1,NULL,NULL,NULL),
- (227,114,1,'a_b',67,'Child of',199,'Parent of',1,NULL,NULL,NULL),
- (228,114,1,'b_a',199,'Parent of',67,'Child of',1,NULL,NULL,NULL),
- (229,115,4,'a_b',67,'Sibling of',123,'Sibling of',1,NULL,NULL,NULL),
- (230,115,4,'b_a',123,'Sibling of',67,'Sibling of',1,NULL,NULL,NULL),
- (231,116,8,'a_b',199,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL),
- (232,116,8,'b_a',184,'Household Member is',199,'Household Member of',1,NULL,NULL,NULL),
- (233,117,8,'a_b',123,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL),
- (234,117,8,'b_a',184,'Household Member is',123,'Household Member of',1,NULL,NULL,NULL),
- (235,118,8,'a_b',67,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL),
- (236,118,8,'b_a',184,'Household Member is',67,'Household Member of',1,NULL,NULL,NULL),
- (237,119,7,'a_b',92,'Head of Household for',184,'Head of Household is',1,NULL,NULL,NULL),
- (238,119,7,'b_a',184,'Head of Household is',92,'Head of Household for',1,NULL,NULL,NULL),
- (239,120,2,'a_b',199,'Spouse of',92,'Spouse of',1,NULL,NULL,NULL),
- (240,120,2,'b_a',92,'Spouse of',199,'Spouse of',1,NULL,NULL,NULL),
- (241,121,1,'a_b',47,'Child of',113,'Parent of',1,NULL,NULL,NULL),
- (242,121,1,'b_a',113,'Parent of',47,'Child of',1,NULL,NULL,NULL),
- (243,122,1,'a_b',109,'Child of',113,'Parent of',1,NULL,NULL,NULL),
- (244,122,1,'b_a',113,'Parent of',109,'Child of',1,NULL,NULL,NULL),
- (245,123,1,'a_b',47,'Child of',49,'Parent of',1,NULL,NULL,NULL),
- (246,123,1,'b_a',49,'Parent of',47,'Child of',1,NULL,NULL,NULL),
- (247,124,1,'a_b',109,'Child of',49,'Parent of',1,NULL,NULL,NULL),
- (248,124,1,'b_a',49,'Parent of',109,'Child of',1,NULL,NULL,NULL),
- (249,125,4,'a_b',109,'Sibling of',47,'Sibling of',1,NULL,NULL,NULL),
- (250,125,4,'b_a',47,'Sibling of',109,'Sibling of',1,NULL,NULL,NULL),
- (251,126,8,'a_b',49,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL),
- (252,126,8,'b_a',163,'Household Member is',49,'Household Member of',1,NULL,NULL,NULL),
- (253,127,8,'a_b',47,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL),
- (254,127,8,'b_a',163,'Household Member is',47,'Household Member of',1,NULL,NULL,NULL),
- (255,128,8,'a_b',109,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL),
- (256,128,8,'b_a',163,'Household Member is',109,'Household Member of',1,NULL,NULL,NULL),
- (257,129,7,'a_b',113,'Head of Household for',163,'Head of Household is',0,NULL,NULL,NULL),
- (258,129,7,'b_a',163,'Head of Household is',113,'Head of Household for',0,NULL,NULL,NULL),
- (259,130,2,'a_b',49,'Spouse of',113,'Spouse of',0,NULL,NULL,NULL),
- (260,130,2,'b_a',113,'Spouse of',49,'Spouse of',0,NULL,NULL,NULL),
- (261,131,1,'a_b',138,'Child of',64,'Parent of',1,NULL,NULL,NULL),
- (262,131,1,'b_a',64,'Parent of',138,'Child of',1,NULL,NULL,NULL),
- (263,132,1,'a_b',99,'Child of',64,'Parent of',1,NULL,NULL,NULL),
- (264,132,1,'b_a',64,'Parent of',99,'Child of',1,NULL,NULL,NULL),
- (265,133,1,'a_b',138,'Child of',169,'Parent of',1,NULL,NULL,NULL),
- (266,133,1,'b_a',169,'Parent of',138,'Child of',1,NULL,NULL,NULL),
- (267,134,1,'a_b',99,'Child of',169,'Parent of',1,NULL,NULL,NULL),
- (268,134,1,'b_a',169,'Parent of',99,'Child of',1,NULL,NULL,NULL),
- (269,135,4,'a_b',99,'Sibling of',138,'Sibling of',1,NULL,NULL,NULL),
- (270,135,4,'b_a',138,'Sibling of',99,'Sibling of',1,NULL,NULL,NULL),
- (271,136,8,'a_b',169,'Household Member of',146,'Household Member is',1,NULL,NULL,NULL),
- (272,136,8,'b_a',146,'Household Member is',169,'Household Member of',1,NULL,NULL,NULL),
- (273,137,8,'a_b',138,'Household Member of',146,'Household Member is',1,NULL,NULL,NULL),
- (274,137,8,'b_a',146,'Household Member is',138,'Household Member of',1,NULL,NULL,NULL),
- (275,138,8,'a_b',99,'Household Member of',146,'Household Member is',1,NULL,NULL,NULL),
- (276,138,8,'b_a',146,'Household Member is',99,'Household Member of',1,NULL,NULL,NULL),
- (277,139,7,'a_b',64,'Head of Household for',146,'Head of Household is',1,NULL,NULL,NULL),
- (278,139,7,'b_a',146,'Head of Household is',64,'Head of Household for',1,NULL,NULL,NULL),
- (279,140,2,'a_b',169,'Spouse of',64,'Spouse of',1,NULL,NULL,NULL),
- (280,140,2,'b_a',64,'Spouse of',169,'Spouse of',1,NULL,NULL,NULL),
- (281,141,1,'a_b',57,'Child of',116,'Parent of',1,NULL,NULL,NULL),
- (282,141,1,'b_a',116,'Parent of',57,'Child of',1,NULL,NULL,NULL),
- (283,142,1,'a_b',152,'Child of',116,'Parent of',1,NULL,NULL,NULL),
- (284,142,1,'b_a',116,'Parent of',152,'Child of',1,NULL,NULL,NULL),
- (285,143,1,'a_b',57,'Child of',141,'Parent of',1,NULL,NULL,NULL),
- (286,143,1,'b_a',141,'Parent of',57,'Child of',1,NULL,NULL,NULL),
- (287,144,1,'a_b',152,'Child of',141,'Parent of',1,NULL,NULL,NULL),
- (288,144,1,'b_a',141,'Parent of',152,'Child of',1,NULL,NULL,NULL),
- (289,145,4,'a_b',152,'Sibling of',57,'Sibling of',1,NULL,NULL,NULL),
- (290,145,4,'b_a',57,'Sibling of',152,'Sibling of',1,NULL,NULL,NULL),
- (291,146,8,'a_b',141,'Household Member of',121,'Household Member is',1,NULL,NULL,NULL),
- (292,146,8,'b_a',121,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL),
- (293,147,8,'a_b',57,'Household Member of',121,'Household Member is',1,NULL,NULL,NULL),
- (294,147,8,'b_a',121,'Household Member is',57,'Household Member of',1,NULL,NULL,NULL),
- (295,148,8,'a_b',152,'Household Member of',121,'Household Member is',1,NULL,NULL,NULL),
- (296,148,8,'b_a',121,'Household Member is',152,'Household Member of',1,NULL,NULL,NULL),
- (297,149,7,'a_b',116,'Head of Household for',121,'Head of Household is',1,NULL,NULL,NULL),
- (298,149,7,'b_a',121,'Head of Household is',116,'Head of Household for',1,NULL,NULL,NULL),
- (299,150,2,'a_b',141,'Spouse of',116,'Spouse of',1,NULL,NULL,NULL),
- (300,150,2,'b_a',116,'Spouse of',141,'Spouse of',1,NULL,NULL,NULL),
- (301,151,1,'a_b',48,'Child of',23,'Parent of',1,NULL,NULL,NULL),
- (302,151,1,'b_a',23,'Parent of',48,'Child of',1,NULL,NULL,NULL),
- (303,152,1,'a_b',173,'Child of',23,'Parent of',1,NULL,NULL,NULL),
- (304,152,1,'b_a',23,'Parent of',173,'Child of',1,NULL,NULL,NULL),
- (305,153,1,'a_b',48,'Child of',34,'Parent of',1,NULL,NULL,NULL),
- (306,153,1,'b_a',34,'Parent of',48,'Child of',1,NULL,NULL,NULL),
- (307,154,1,'a_b',173,'Child of',34,'Parent of',1,NULL,NULL,NULL),
- (308,154,1,'b_a',34,'Parent of',173,'Child of',1,NULL,NULL,NULL),
- (309,155,4,'a_b',173,'Sibling of',48,'Sibling of',1,NULL,NULL,NULL),
- (310,155,4,'b_a',48,'Sibling of',173,'Sibling of',1,NULL,NULL,NULL),
- (311,156,8,'a_b',34,'Household Member of',39,'Household Member is',1,NULL,NULL,NULL),
- (312,156,8,'b_a',39,'Household Member is',34,'Household Member of',1,NULL,NULL,NULL),
- (313,157,8,'a_b',48,'Household Member of',39,'Household Member is',1,NULL,NULL,NULL),
- (314,157,8,'b_a',39,'Household Member is',48,'Household Member of',1,NULL,NULL,NULL),
- (315,158,8,'a_b',173,'Household Member of',39,'Household Member is',1,NULL,NULL,NULL),
- (316,158,8,'b_a',39,'Household Member is',173,'Household Member of',1,NULL,NULL,NULL),
- (317,159,7,'a_b',23,'Head of Household for',39,'Head of Household is',1,NULL,NULL,NULL),
- (318,159,7,'b_a',39,'Head of Household is',23,'Head of Household for',1,NULL,NULL,NULL),
- (319,160,2,'a_b',34,'Spouse of',23,'Spouse of',1,NULL,NULL,NULL),
- (320,160,2,'b_a',23,'Spouse of',34,'Spouse of',1,NULL,NULL,NULL),
- (321,161,1,'a_b',89,'Child of',35,'Parent of',1,NULL,NULL,NULL),
- (322,161,1,'b_a',35,'Parent of',89,'Child of',1,NULL,NULL,NULL),
- (323,162,1,'a_b',58,'Child of',35,'Parent of',1,NULL,NULL,NULL),
- (324,162,1,'b_a',35,'Parent of',58,'Child of',1,NULL,NULL,NULL),
- (325,163,1,'a_b',89,'Child of',117,'Parent of',1,NULL,NULL,NULL),
- (326,163,1,'b_a',117,'Parent of',89,'Child of',1,NULL,NULL,NULL),
- (327,164,1,'a_b',58,'Child of',117,'Parent of',1,NULL,NULL,NULL),
- (328,164,1,'b_a',117,'Parent of',58,'Child of',1,NULL,NULL,NULL),
- (329,165,4,'a_b',58,'Sibling of',89,'Sibling of',1,NULL,NULL,NULL),
- (330,165,4,'b_a',89,'Sibling of',58,'Sibling of',1,NULL,NULL,NULL),
- (331,166,8,'a_b',117,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL),
- (332,166,8,'b_a',96,'Household Member is',117,'Household Member of',1,NULL,NULL,NULL),
- (333,167,8,'a_b',89,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL),
- (334,167,8,'b_a',96,'Household Member is',89,'Household Member of',1,NULL,NULL,NULL),
- (335,168,8,'a_b',58,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL),
- (336,168,8,'b_a',96,'Household Member is',58,'Household Member of',1,NULL,NULL,NULL),
- (337,169,7,'a_b',35,'Head of Household for',96,'Head of Household is',1,NULL,NULL,NULL),
- (338,169,7,'b_a',96,'Head of Household is',35,'Head of Household for',1,NULL,NULL,NULL),
- (339,170,2,'a_b',117,'Spouse of',35,'Spouse of',1,NULL,NULL,NULL),
- (340,170,2,'b_a',35,'Spouse of',117,'Spouse of',1,NULL,NULL,NULL),
- (341,171,1,'a_b',124,'Child of',91,'Parent of',1,NULL,NULL,NULL),
- (342,171,1,'b_a',91,'Parent of',124,'Child of',1,NULL,NULL,NULL),
- (343,172,1,'a_b',198,'Child of',91,'Parent of',1,NULL,NULL,NULL),
- (344,172,1,'b_a',91,'Parent of',198,'Child of',1,NULL,NULL,NULL),
- (345,173,1,'a_b',124,'Child of',179,'Parent of',1,NULL,NULL,NULL),
- (346,173,1,'b_a',179,'Parent of',124,'Child of',1,NULL,NULL,NULL),
- (347,174,1,'a_b',198,'Child of',179,'Parent of',1,NULL,NULL,NULL),
- (348,174,1,'b_a',179,'Parent of',198,'Child of',1,NULL,NULL,NULL),
- (349,175,4,'a_b',198,'Sibling of',124,'Sibling of',1,NULL,NULL,NULL),
- (350,175,4,'b_a',124,'Sibling of',198,'Sibling of',1,NULL,NULL,NULL),
- (351,176,8,'a_b',179,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL),
- (352,176,8,'b_a',128,'Household Member is',179,'Household Member of',1,NULL,NULL,NULL),
- (353,177,8,'a_b',124,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL),
- (354,177,8,'b_a',128,'Household Member is',124,'Household Member of',1,NULL,NULL,NULL),
- (355,178,8,'a_b',198,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL),
- (356,178,8,'b_a',128,'Household Member is',198,'Household Member of',1,NULL,NULL,NULL),
- (357,179,7,'a_b',91,'Head of Household for',128,'Head of Household is',0,NULL,NULL,NULL),
- (358,179,7,'b_a',128,'Head of Household is',91,'Head of Household for',0,NULL,NULL,NULL),
- (359,180,2,'a_b',179,'Spouse of',91,'Spouse of',0,NULL,NULL,NULL),
- (360,180,2,'b_a',91,'Spouse of',179,'Spouse of',0,NULL,NULL,NULL),
- (361,181,1,'a_b',166,'Child of',37,'Parent of',1,NULL,NULL,NULL),
- (362,181,1,'b_a',37,'Parent of',166,'Child of',1,NULL,NULL,NULL),
- (363,182,1,'a_b',50,'Child of',37,'Parent of',1,NULL,NULL,NULL),
- (364,182,1,'b_a',37,'Parent of',50,'Child of',1,NULL,NULL,NULL),
- (365,183,1,'a_b',166,'Child of',145,'Parent of',1,NULL,NULL,NULL),
- (366,183,1,'b_a',145,'Parent of',166,'Child of',1,NULL,NULL,NULL),
- (367,184,1,'a_b',50,'Child of',145,'Parent of',1,NULL,NULL,NULL),
- (368,184,1,'b_a',145,'Parent of',50,'Child of',1,NULL,NULL,NULL),
- (369,185,4,'a_b',50,'Sibling of',166,'Sibling of',1,NULL,NULL,NULL),
- (370,185,4,'b_a',166,'Sibling of',50,'Sibling of',1,NULL,NULL,NULL),
- (371,186,8,'a_b',145,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL),
- (372,186,8,'b_a',200,'Household Member is',145,'Household Member of',1,NULL,NULL,NULL),
- (373,187,8,'a_b',166,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL),
- (374,187,8,'b_a',200,'Household Member is',166,'Household Member of',1,NULL,NULL,NULL),
- (375,188,8,'a_b',50,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL),
- (376,188,8,'b_a',200,'Household Member is',50,'Household Member of',1,NULL,NULL,NULL),
- (377,189,7,'a_b',37,'Head of Household for',200,'Head of Household is',1,NULL,NULL,NULL),
- (378,189,7,'b_a',200,'Head of Household is',37,'Head of Household for',1,NULL,NULL,NULL),
- (379,190,2,'a_b',145,'Spouse of',37,'Spouse of',1,NULL,NULL,NULL),
- (380,190,2,'b_a',37,'Spouse of',145,'Spouse of',1,NULL,NULL,NULL),
- (381,191,1,'a_b',132,'Child of',77,'Parent of',1,NULL,NULL,NULL),
- (382,191,1,'b_a',77,'Parent of',132,'Child of',1,NULL,NULL,NULL),
- (383,192,1,'a_b',66,'Child of',77,'Parent of',1,NULL,NULL,NULL),
- (384,192,1,'b_a',77,'Parent of',66,'Child of',1,NULL,NULL,NULL),
- (385,193,1,'a_b',132,'Child of',172,'Parent of',1,NULL,NULL,NULL),
- (386,193,1,'b_a',172,'Parent of',132,'Child of',1,NULL,NULL,NULL),
- (387,194,1,'a_b',66,'Child of',172,'Parent of',1,NULL,NULL,NULL),
- (388,194,1,'b_a',172,'Parent of',66,'Child of',1,NULL,NULL,NULL),
- (389,195,4,'a_b',66,'Sibling of',132,'Sibling of',1,NULL,NULL,NULL),
- (390,195,4,'b_a',132,'Sibling of',66,'Sibling of',1,NULL,NULL,NULL),
- (391,196,8,'a_b',172,'Household Member of',193,'Household Member is',1,NULL,NULL,NULL),
- (392,196,8,'b_a',193,'Household Member is',172,'Household Member of',1,NULL,NULL,NULL),
- (393,197,8,'a_b',132,'Household Member of',193,'Household Member is',1,NULL,NULL,NULL),
- (394,197,8,'b_a',193,'Household Member is',132,'Household Member of',1,NULL,NULL,NULL),
- (395,198,8,'a_b',66,'Household Member of',193,'Household Member is',1,NULL,NULL,NULL),
- (396,198,8,'b_a',193,'Household Member is',66,'Household Member of',1,NULL,NULL,NULL),
- (397,199,7,'a_b',77,'Head of Household for',193,'Head of Household is',1,NULL,NULL,NULL),
- (398,199,7,'b_a',193,'Head of Household is',77,'Head of Household for',1,NULL,NULL,NULL),
- (399,200,2,'a_b',172,'Spouse of',77,'Spouse of',1,NULL,NULL,NULL),
- (400,200,2,'b_a',77,'Spouse of',172,'Spouse of',1,NULL,NULL,NULL),
- (401,201,5,'a_b',21,'Employee of',6,'Employer of',1,NULL,NULL,NULL),
- (402,201,5,'b_a',6,'Employer of',21,'Employee of',1,NULL,NULL,NULL),
- (403,202,5,'a_b',31,'Employee of',19,'Employer of',1,NULL,NULL,NULL),
- (404,202,5,'b_a',19,'Employer of',31,'Employee of',1,NULL,NULL,NULL),
- (405,203,5,'a_b',36,'Employee of',41,'Employer of',1,NULL,NULL,NULL),
- (406,203,5,'b_a',41,'Employer of',36,'Employee of',1,NULL,NULL,NULL),
- (407,204,5,'a_b',188,'Employee of',70,'Employer of',1,NULL,NULL,NULL),
- (408,204,5,'b_a',70,'Employer of',188,'Employee of',1,NULL,NULL,NULL),
- (409,205,5,'a_b',33,'Employee of',72,'Employer of',1,NULL,NULL,NULL),
- (410,205,5,'b_a',72,'Employer of',33,'Employee of',1,NULL,NULL,NULL),
- (411,206,5,'a_b',75,'Employee of',73,'Employer of',1,NULL,NULL,NULL),
- (412,206,5,'b_a',73,'Employer of',75,'Employee of',1,NULL,NULL,NULL),
- (413,207,5,'a_b',120,'Employee of',76,'Employer of',1,NULL,NULL,NULL),
- (414,207,5,'b_a',76,'Employer of',120,'Employee of',1,NULL,NULL,NULL),
- (415,208,5,'a_b',74,'Employee of',78,'Employer of',1,NULL,NULL,NULL),
- (416,208,5,'b_a',78,'Employer of',74,'Employee of',1,NULL,NULL,NULL),
- (417,209,5,'a_b',79,'Employee of',80,'Employer of',1,NULL,NULL,NULL),
- (418,209,5,'b_a',80,'Employer of',79,'Employee of',1,NULL,NULL,NULL),
- (419,210,5,'a_b',9,'Employee of',81,'Employer of',1,NULL,NULL,NULL),
- (420,210,5,'b_a',81,'Employer of',9,'Employee of',1,NULL,NULL,NULL),
- (421,211,5,'a_b',148,'Employee of',100,'Employer of',1,NULL,NULL,NULL),
- (422,211,5,'b_a',100,'Employer of',148,'Employee of',1,NULL,NULL,NULL),
- (423,212,5,'a_b',10,'Employee of',107,'Employer of',1,NULL,NULL,NULL),
- (424,212,5,'b_a',107,'Employer of',10,'Employee of',1,NULL,NULL,NULL),
- (425,213,5,'a_b',67,'Employee of',134,'Employer of',1,NULL,NULL,NULL),
- (426,213,5,'b_a',134,'Employer of',67,'Employee of',1,NULL,NULL,NULL),
- (427,214,5,'a_b',197,'Employee of',147,'Employer of',1,NULL,NULL,NULL),
- (428,214,5,'b_a',147,'Employer of',197,'Employee of',1,NULL,NULL,NULL),
- (429,215,5,'a_b',106,'Employee of',164,'Employer of',1,NULL,NULL,NULL),
- (430,215,5,'b_a',164,'Employer of',106,'Employee of',1,NULL,NULL,NULL);
+ (1,1,1,'a_b',94,'Child of',33,'Parent of',1,NULL,NULL,NULL),
+ (2,1,1,'b_a',33,'Parent of',94,'Child of',1,NULL,NULL,NULL),
+ (3,2,1,'a_b',78,'Child of',33,'Parent of',1,NULL,NULL,NULL),
+ (4,2,1,'b_a',33,'Parent of',78,'Child of',1,NULL,NULL,NULL),
+ (5,3,1,'a_b',94,'Child of',153,'Parent of',1,NULL,NULL,NULL),
+ (6,3,1,'b_a',153,'Parent of',94,'Child of',1,NULL,NULL,NULL),
+ (7,4,1,'a_b',78,'Child of',153,'Parent of',1,NULL,NULL,NULL),
+ (8,4,1,'b_a',153,'Parent of',78,'Child of',1,NULL,NULL,NULL),
+ (9,5,4,'a_b',78,'Sibling of',94,'Sibling of',1,NULL,NULL,NULL),
+ (10,5,4,'b_a',94,'Sibling of',78,'Sibling of',1,NULL,NULL,NULL),
+ (11,6,8,'a_b',153,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL),
+ (12,6,8,'b_a',79,'Household Member is',153,'Household Member of',1,NULL,NULL,NULL),
+ (13,7,8,'a_b',94,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL),
+ (14,7,8,'b_a',79,'Household Member is',94,'Household Member of',1,NULL,NULL,NULL),
+ (15,8,8,'a_b',78,'Household Member of',79,'Household Member is',1,NULL,NULL,NULL),
+ (16,8,8,'b_a',79,'Household Member is',78,'Household Member of',1,NULL,NULL,NULL),
+ (17,9,7,'a_b',33,'Head of Household for',79,'Head of Household is',1,NULL,NULL,NULL),
+ (18,9,7,'b_a',79,'Head of Household is',33,'Head of Household for',1,NULL,NULL,NULL),
+ (19,10,2,'a_b',153,'Spouse of',33,'Spouse of',1,NULL,NULL,NULL),
+ (20,10,2,'b_a',33,'Spouse of',153,'Spouse of',1,NULL,NULL,NULL),
+ (21,11,1,'a_b',158,'Child of',3,'Parent of',1,NULL,NULL,NULL),
+ (22,11,1,'b_a',3,'Parent of',158,'Child of',1,NULL,NULL,NULL),
+ (23,12,1,'a_b',187,'Child of',3,'Parent of',1,NULL,NULL,NULL),
+ (24,12,1,'b_a',3,'Parent of',187,'Child of',1,NULL,NULL,NULL),
+ (25,13,1,'a_b',158,'Child of',200,'Parent of',1,NULL,NULL,NULL),
+ (26,13,1,'b_a',200,'Parent of',158,'Child of',1,NULL,NULL,NULL),
+ (27,14,1,'a_b',187,'Child of',200,'Parent of',1,NULL,NULL,NULL),
+ (28,14,1,'b_a',200,'Parent of',187,'Child of',1,NULL,NULL,NULL),
+ (29,15,4,'a_b',187,'Sibling of',158,'Sibling of',1,NULL,NULL,NULL),
+ (30,15,4,'b_a',158,'Sibling of',187,'Sibling of',1,NULL,NULL,NULL),
+ (31,16,8,'a_b',200,'Household Member of',102,'Household Member is',1,NULL,NULL,NULL),
+ (32,16,8,'b_a',102,'Household Member is',200,'Household Member of',1,NULL,NULL,NULL),
+ (33,17,8,'a_b',158,'Household Member of',102,'Household Member is',1,NULL,NULL,NULL),
+ (34,17,8,'b_a',102,'Household Member is',158,'Household Member of',1,NULL,NULL,NULL),
+ (35,18,8,'a_b',187,'Household Member of',102,'Household Member is',1,NULL,NULL,NULL),
+ (36,18,8,'b_a',102,'Household Member is',187,'Household Member of',1,NULL,NULL,NULL),
+ (37,19,7,'a_b',3,'Head of Household for',102,'Head of Household is',0,NULL,NULL,NULL),
+ (38,19,7,'b_a',102,'Head of Household is',3,'Head of Household for',0,NULL,NULL,NULL),
+ (39,20,2,'a_b',200,'Spouse of',3,'Spouse of',0,NULL,NULL,NULL),
+ (40,20,2,'b_a',3,'Spouse of',200,'Spouse of',0,NULL,NULL,NULL),
+ (41,21,1,'a_b',88,'Child of',117,'Parent of',1,NULL,NULL,NULL),
+ (42,21,1,'b_a',117,'Parent of',88,'Child of',1,NULL,NULL,NULL),
+ (43,22,1,'a_b',160,'Child of',117,'Parent of',1,NULL,NULL,NULL),
+ (44,22,1,'b_a',117,'Parent of',160,'Child of',1,NULL,NULL,NULL),
+ (45,23,1,'a_b',88,'Child of',60,'Parent of',1,NULL,NULL,NULL),
+ (46,23,1,'b_a',60,'Parent of',88,'Child of',1,NULL,NULL,NULL),
+ (47,24,1,'a_b',160,'Child of',60,'Parent of',1,NULL,NULL,NULL),
+ (48,24,1,'b_a',60,'Parent of',160,'Child of',1,NULL,NULL,NULL),
+ (49,25,4,'a_b',160,'Sibling of',88,'Sibling of',1,NULL,NULL,NULL),
+ (50,25,4,'b_a',88,'Sibling of',160,'Sibling of',1,NULL,NULL,NULL),
+ (51,26,8,'a_b',60,'Household Member of',190,'Household Member is',1,NULL,NULL,NULL),
+ (52,26,8,'b_a',190,'Household Member is',60,'Household Member of',1,NULL,NULL,NULL),
+ (53,27,8,'a_b',88,'Household Member of',190,'Household Member is',1,NULL,NULL,NULL),
+ (54,27,8,'b_a',190,'Household Member is',88,'Household Member of',1,NULL,NULL,NULL),
+ (55,28,8,'a_b',160,'Household Member of',190,'Household Member is',1,NULL,NULL,NULL),
+ (56,28,8,'b_a',190,'Household Member is',160,'Household Member of',1,NULL,NULL,NULL),
+ (57,29,7,'a_b',117,'Head of Household for',190,'Head of Household is',1,NULL,NULL,NULL),
+ (58,29,7,'b_a',190,'Head of Household is',117,'Head of Household for',1,NULL,NULL,NULL),
+ (59,30,2,'a_b',60,'Spouse of',117,'Spouse of',1,NULL,NULL,NULL),
+ (60,30,2,'b_a',117,'Spouse of',60,'Spouse of',1,NULL,NULL,NULL),
+ (61,31,1,'a_b',52,'Child of',83,'Parent of',1,NULL,NULL,NULL),
+ (62,31,1,'b_a',83,'Parent of',52,'Child of',1,NULL,NULL,NULL),
+ (63,32,1,'a_b',28,'Child of',83,'Parent of',1,NULL,NULL,NULL),
+ (64,32,1,'b_a',83,'Parent of',28,'Child of',1,NULL,NULL,NULL),
+ (65,33,1,'a_b',52,'Child of',120,'Parent of',1,NULL,NULL,NULL),
+ (66,33,1,'b_a',120,'Parent of',52,'Child of',1,NULL,NULL,NULL),
+ (67,34,1,'a_b',28,'Child of',120,'Parent of',1,NULL,NULL,NULL),
+ (68,34,1,'b_a',120,'Parent of',28,'Child of',1,NULL,NULL,NULL),
+ (69,35,4,'a_b',28,'Sibling of',52,'Sibling of',1,NULL,NULL,NULL),
+ (70,35,4,'b_a',52,'Sibling of',28,'Sibling of',1,NULL,NULL,NULL),
+ (71,36,8,'a_b',120,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL),
+ (72,36,8,'b_a',77,'Household Member is',120,'Household Member of',1,NULL,NULL,NULL),
+ (73,37,8,'a_b',52,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL),
+ (74,37,8,'b_a',77,'Household Member is',52,'Household Member of',1,NULL,NULL,NULL),
+ (75,38,8,'a_b',28,'Household Member of',77,'Household Member is',1,NULL,NULL,NULL),
+ (76,38,8,'b_a',77,'Household Member is',28,'Household Member of',1,NULL,NULL,NULL),
+ (77,39,7,'a_b',83,'Head of Household for',77,'Head of Household is',1,NULL,NULL,NULL),
+ (78,39,7,'b_a',77,'Head of Household is',83,'Head of Household for',1,NULL,NULL,NULL),
+ (79,40,2,'a_b',120,'Spouse of',83,'Spouse of',1,NULL,NULL,NULL),
+ (80,40,2,'b_a',83,'Spouse of',120,'Spouse of',1,NULL,NULL,NULL),
+ (81,41,1,'a_b',68,'Child of',84,'Parent of',1,NULL,NULL,NULL),
+ (82,41,1,'b_a',84,'Parent of',68,'Child of',1,NULL,NULL,NULL),
+ (83,42,1,'a_b',19,'Child of',84,'Parent of',1,NULL,NULL,NULL),
+ (84,42,1,'b_a',84,'Parent of',19,'Child of',1,NULL,NULL,NULL),
+ (85,43,1,'a_b',68,'Child of',185,'Parent of',1,NULL,NULL,NULL),
+ (86,43,1,'b_a',185,'Parent of',68,'Child of',1,NULL,NULL,NULL),
+ (87,44,1,'a_b',19,'Child of',185,'Parent of',1,NULL,NULL,NULL),
+ (88,44,1,'b_a',185,'Parent of',19,'Child of',1,NULL,NULL,NULL),
+ (89,45,4,'a_b',19,'Sibling of',68,'Sibling of',1,NULL,NULL,NULL),
+ (90,45,4,'b_a',68,'Sibling of',19,'Sibling of',1,NULL,NULL,NULL),
+ (91,46,8,'a_b',185,'Household Member of',118,'Household Member is',1,NULL,NULL,NULL),
+ (92,46,8,'b_a',118,'Household Member is',185,'Household Member of',1,NULL,NULL,NULL),
+ (93,47,8,'a_b',68,'Household Member of',118,'Household Member is',1,NULL,NULL,NULL),
+ (94,47,8,'b_a',118,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL),
+ (95,48,8,'a_b',19,'Household Member of',118,'Household Member is',1,NULL,NULL,NULL),
+ (96,48,8,'b_a',118,'Household Member is',19,'Household Member of',1,NULL,NULL,NULL),
+ (97,49,7,'a_b',84,'Head of Household for',118,'Head of Household is',1,NULL,NULL,NULL),
+ (98,49,7,'b_a',118,'Head of Household is',84,'Head of Household for',1,NULL,NULL,NULL),
+ (99,50,2,'a_b',185,'Spouse of',84,'Spouse of',1,NULL,NULL,NULL),
+ (100,50,2,'b_a',84,'Spouse of',185,'Spouse of',1,NULL,NULL,NULL),
+ (101,51,1,'a_b',179,'Child of',61,'Parent of',1,NULL,NULL,NULL),
+ (102,51,1,'b_a',61,'Parent of',179,'Child of',1,NULL,NULL,NULL),
+ (103,52,1,'a_b',99,'Child of',61,'Parent of',1,NULL,NULL,NULL),
+ (104,52,1,'b_a',61,'Parent of',99,'Child of',1,NULL,NULL,NULL),
+ (105,53,1,'a_b',179,'Child of',141,'Parent of',1,NULL,NULL,NULL),
+ (106,53,1,'b_a',141,'Parent of',179,'Child of',1,NULL,NULL,NULL),
+ (107,54,1,'a_b',99,'Child of',141,'Parent of',1,NULL,NULL,NULL),
+ (108,54,1,'b_a',141,'Parent of',99,'Child of',1,NULL,NULL,NULL),
+ (109,55,4,'a_b',99,'Sibling of',179,'Sibling of',1,NULL,NULL,NULL),
+ (110,55,4,'b_a',179,'Sibling of',99,'Sibling of',1,NULL,NULL,NULL),
+ (111,56,8,'a_b',141,'Household Member of',11,'Household Member is',1,NULL,NULL,NULL),
+ (112,56,8,'b_a',11,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL),
+ (113,57,8,'a_b',179,'Household Member of',11,'Household Member is',1,NULL,NULL,NULL),
+ (114,57,8,'b_a',11,'Household Member is',179,'Household Member of',1,NULL,NULL,NULL),
+ (115,58,8,'a_b',99,'Household Member of',11,'Household Member is',1,NULL,NULL,NULL),
+ (116,58,8,'b_a',11,'Household Member is',99,'Household Member of',1,NULL,NULL,NULL),
+ (117,59,7,'a_b',61,'Head of Household for',11,'Head of Household is',0,NULL,NULL,NULL),
+ (118,59,7,'b_a',11,'Head of Household is',61,'Head of Household for',0,NULL,NULL,NULL),
+ (119,60,2,'a_b',141,'Spouse of',61,'Spouse of',0,NULL,NULL,NULL),
+ (120,60,2,'b_a',61,'Spouse of',141,'Spouse of',0,NULL,NULL,NULL),
+ (121,61,1,'a_b',26,'Child of',40,'Parent of',1,NULL,NULL,NULL),
+ (122,61,1,'b_a',40,'Parent of',26,'Child of',1,NULL,NULL,NULL),
+ (123,62,1,'a_b',2,'Child of',40,'Parent of',1,NULL,NULL,NULL),
+ (124,62,1,'b_a',40,'Parent of',2,'Child of',1,NULL,NULL,NULL),
+ (125,63,1,'a_b',26,'Child of',107,'Parent of',1,NULL,NULL,NULL),
+ (126,63,1,'b_a',107,'Parent of',26,'Child of',1,NULL,NULL,NULL),
+ (127,64,1,'a_b',2,'Child of',107,'Parent of',1,NULL,NULL,NULL),
+ (128,64,1,'b_a',107,'Parent of',2,'Child of',1,NULL,NULL,NULL),
+ (129,65,4,'a_b',2,'Sibling of',26,'Sibling of',1,NULL,NULL,NULL),
+ (130,65,4,'b_a',26,'Sibling of',2,'Sibling of',1,NULL,NULL,NULL),
+ (131,66,8,'a_b',107,'Household Member of',186,'Household Member is',1,NULL,NULL,NULL),
+ (132,66,8,'b_a',186,'Household Member is',107,'Household Member of',1,NULL,NULL,NULL),
+ (133,67,8,'a_b',26,'Household Member of',186,'Household Member is',1,NULL,NULL,NULL),
+ (134,67,8,'b_a',186,'Household Member is',26,'Household Member of',1,NULL,NULL,NULL),
+ (135,68,8,'a_b',2,'Household Member of',186,'Household Member is',1,NULL,NULL,NULL),
+ (136,68,8,'b_a',186,'Household Member is',2,'Household Member of',1,NULL,NULL,NULL),
+ (137,69,7,'a_b',40,'Head of Household for',186,'Head of Household is',1,NULL,NULL,NULL),
+ (138,69,7,'b_a',186,'Head of Household is',40,'Head of Household for',1,NULL,NULL,NULL),
+ (139,70,2,'a_b',107,'Spouse of',40,'Spouse of',1,NULL,NULL,NULL),
+ (140,70,2,'b_a',40,'Spouse of',107,'Spouse of',1,NULL,NULL,NULL),
+ (141,71,1,'a_b',62,'Child of',148,'Parent of',1,NULL,NULL,NULL),
+ (142,71,1,'b_a',148,'Parent of',62,'Child of',1,NULL,NULL,NULL),
+ (143,72,1,'a_b',150,'Child of',148,'Parent of',1,NULL,NULL,NULL),
+ (144,72,1,'b_a',148,'Parent of',150,'Child of',1,NULL,NULL,NULL),
+ (145,73,1,'a_b',62,'Child of',25,'Parent of',1,NULL,NULL,NULL),
+ (146,73,1,'b_a',25,'Parent of',62,'Child of',1,NULL,NULL,NULL),
+ (147,74,1,'a_b',150,'Child of',25,'Parent of',1,NULL,NULL,NULL),
+ (148,74,1,'b_a',25,'Parent of',150,'Child of',1,NULL,NULL,NULL),
+ (149,75,4,'a_b',150,'Sibling of',62,'Sibling of',1,NULL,NULL,NULL),
+ (150,75,4,'b_a',62,'Sibling of',150,'Sibling of',1,NULL,NULL,NULL),
+ (151,76,8,'a_b',25,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL),
+ (152,76,8,'b_a',53,'Household Member is',25,'Household Member of',1,NULL,NULL,NULL),
+ (153,77,8,'a_b',62,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL),
+ (154,77,8,'b_a',53,'Household Member is',62,'Household Member of',1,NULL,NULL,NULL),
+ (155,78,8,'a_b',150,'Household Member of',53,'Household Member is',1,NULL,NULL,NULL),
+ (156,78,8,'b_a',53,'Household Member is',150,'Household Member of',1,NULL,NULL,NULL),
+ (157,79,7,'a_b',148,'Head of Household for',53,'Head of Household is',1,NULL,NULL,NULL),
+ (158,79,7,'b_a',53,'Head of Household is',148,'Head of Household for',1,NULL,NULL,NULL),
+ (159,80,2,'a_b',25,'Spouse of',148,'Spouse of',1,NULL,NULL,NULL),
+ (160,80,2,'b_a',148,'Spouse of',25,'Spouse of',1,NULL,NULL,NULL),
+ (161,81,1,'a_b',146,'Child of',9,'Parent of',1,NULL,NULL,NULL),
+ (162,81,1,'b_a',9,'Parent of',146,'Child of',1,NULL,NULL,NULL),
+ (163,82,1,'a_b',166,'Child of',9,'Parent of',1,NULL,NULL,NULL),
+ (164,82,1,'b_a',9,'Parent of',166,'Child of',1,NULL,NULL,NULL),
+ (165,83,1,'a_b',146,'Child of',183,'Parent of',1,NULL,NULL,NULL),
+ (166,83,1,'b_a',183,'Parent of',146,'Child of',1,NULL,NULL,NULL),
+ (167,84,1,'a_b',166,'Child of',183,'Parent of',1,NULL,NULL,NULL),
+ (168,84,1,'b_a',183,'Parent of',166,'Child of',1,NULL,NULL,NULL),
+ (169,85,4,'a_b',166,'Sibling of',146,'Sibling of',1,NULL,NULL,NULL),
+ (170,85,4,'b_a',146,'Sibling of',166,'Sibling of',1,NULL,NULL,NULL),
+ (171,86,8,'a_b',183,'Household Member of',152,'Household Member is',1,NULL,NULL,NULL),
+ (172,86,8,'b_a',152,'Household Member is',183,'Household Member of',1,NULL,NULL,NULL),
+ (173,87,8,'a_b',146,'Household Member of',152,'Household Member is',1,NULL,NULL,NULL),
+ (174,87,8,'b_a',152,'Household Member is',146,'Household Member of',1,NULL,NULL,NULL),
+ (175,88,8,'a_b',166,'Household Member of',152,'Household Member is',1,NULL,NULL,NULL),
+ (176,88,8,'b_a',152,'Household Member is',166,'Household Member of',1,NULL,NULL,NULL),
+ (177,89,7,'a_b',9,'Head of Household for',152,'Head of Household is',1,NULL,NULL,NULL),
+ (178,89,7,'b_a',152,'Head of Household is',9,'Head of Household for',1,NULL,NULL,NULL),
+ (179,90,2,'a_b',183,'Spouse of',9,'Spouse of',1,NULL,NULL,NULL),
+ (180,90,2,'b_a',9,'Spouse of',183,'Spouse of',1,NULL,NULL,NULL),
+ (181,91,1,'a_b',127,'Child of',18,'Parent of',1,NULL,NULL,NULL),
+ (182,91,1,'b_a',18,'Parent of',127,'Child of',1,NULL,NULL,NULL),
+ (183,92,1,'a_b',38,'Child of',18,'Parent of',1,NULL,NULL,NULL),
+ (184,92,1,'b_a',18,'Parent of',38,'Child of',1,NULL,NULL,NULL),
+ (185,93,1,'a_b',127,'Child of',176,'Parent of',1,NULL,NULL,NULL),
+ (186,93,1,'b_a',176,'Parent of',127,'Child of',1,NULL,NULL,NULL),
+ (187,94,1,'a_b',38,'Child of',176,'Parent of',1,NULL,NULL,NULL),
+ (188,94,1,'b_a',176,'Parent of',38,'Child of',1,NULL,NULL,NULL),
+ (189,95,4,'a_b',38,'Sibling of',127,'Sibling of',1,NULL,NULL,NULL),
+ (190,95,4,'b_a',127,'Sibling of',38,'Sibling of',1,NULL,NULL,NULL),
+ (191,96,8,'a_b',176,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL),
+ (192,96,8,'b_a',57,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL),
+ (193,97,8,'a_b',127,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL),
+ (194,97,8,'b_a',57,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL),
+ (195,98,8,'a_b',38,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL),
+ (196,98,8,'b_a',57,'Household Member is',38,'Household Member of',1,NULL,NULL,NULL),
+ (197,99,7,'a_b',18,'Head of Household for',57,'Head of Household is',0,NULL,NULL,NULL),
+ (198,99,7,'b_a',57,'Head of Household is',18,'Head of Household for',0,NULL,NULL,NULL),
+ (199,100,2,'a_b',176,'Spouse of',18,'Spouse of',0,NULL,NULL,NULL),
+ (200,100,2,'b_a',18,'Spouse of',176,'Spouse of',0,NULL,NULL,NULL),
+ (201,101,1,'a_b',145,'Child of',174,'Parent of',1,NULL,NULL,NULL),
+ (202,101,1,'b_a',174,'Parent of',145,'Child of',1,NULL,NULL,NULL),
+ (203,102,1,'a_b',130,'Child of',174,'Parent of',1,NULL,NULL,NULL),
+ (204,102,1,'b_a',174,'Parent of',130,'Child of',1,NULL,NULL,NULL),
+ (205,103,1,'a_b',145,'Child of',8,'Parent of',1,NULL,NULL,NULL),
+ (206,103,1,'b_a',8,'Parent of',145,'Child of',1,NULL,NULL,NULL),
+ (207,104,1,'a_b',130,'Child of',8,'Parent of',1,NULL,NULL,NULL),
+ (208,104,1,'b_a',8,'Parent of',130,'Child of',1,NULL,NULL,NULL),
+ (209,105,4,'a_b',130,'Sibling of',145,'Sibling of',1,NULL,NULL,NULL),
+ (210,105,4,'b_a',145,'Sibling of',130,'Sibling of',1,NULL,NULL,NULL),
+ (211,106,8,'a_b',8,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL),
+ (212,106,8,'b_a',48,'Household Member is',8,'Household Member of',1,NULL,NULL,NULL),
+ (213,107,8,'a_b',145,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL),
+ (214,107,8,'b_a',48,'Household Member is',145,'Household Member of',1,NULL,NULL,NULL),
+ (215,108,8,'a_b',130,'Household Member of',48,'Household Member is',1,NULL,NULL,NULL),
+ (216,108,8,'b_a',48,'Household Member is',130,'Household Member of',1,NULL,NULL,NULL),
+ (217,109,7,'a_b',174,'Head of Household for',48,'Head of Household is',1,NULL,NULL,NULL),
+ (218,109,7,'b_a',48,'Head of Household is',174,'Head of Household for',1,NULL,NULL,NULL),
+ (219,110,2,'a_b',8,'Spouse of',174,'Spouse of',1,NULL,NULL,NULL),
+ (220,110,2,'b_a',174,'Spouse of',8,'Spouse of',1,NULL,NULL,NULL),
+ (221,111,1,'a_b',4,'Child of',188,'Parent of',1,NULL,NULL,NULL),
+ (222,111,1,'b_a',188,'Parent of',4,'Child of',1,NULL,NULL,NULL),
+ (223,112,1,'a_b',45,'Child of',188,'Parent of',1,NULL,NULL,NULL),
+ (224,112,1,'b_a',188,'Parent of',45,'Child of',1,NULL,NULL,NULL),
+ (225,113,1,'a_b',4,'Child of',161,'Parent of',1,NULL,NULL,NULL),
+ (226,113,1,'b_a',161,'Parent of',4,'Child of',1,NULL,NULL,NULL),
+ (227,114,1,'a_b',45,'Child of',161,'Parent of',1,NULL,NULL,NULL),
+ (228,114,1,'b_a',161,'Parent of',45,'Child of',1,NULL,NULL,NULL),
+ (229,115,4,'a_b',45,'Sibling of',4,'Sibling of',1,NULL,NULL,NULL),
+ (230,115,4,'b_a',4,'Sibling of',45,'Sibling of',1,NULL,NULL,NULL),
+ (231,116,8,'a_b',161,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL),
+ (232,116,8,'b_a',58,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL),
+ (233,117,8,'a_b',4,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL),
+ (234,117,8,'b_a',58,'Household Member is',4,'Household Member of',1,NULL,NULL,NULL),
+ (235,118,8,'a_b',45,'Household Member of',58,'Household Member is',1,NULL,NULL,NULL),
+ (236,118,8,'b_a',58,'Household Member is',45,'Household Member of',1,NULL,NULL,NULL),
+ (237,119,7,'a_b',188,'Head of Household for',58,'Head of Household is',0,NULL,NULL,NULL),
+ (238,119,7,'b_a',58,'Head of Household is',188,'Head of Household for',0,NULL,NULL,NULL),
+ (239,120,2,'a_b',161,'Spouse of',188,'Spouse of',0,NULL,NULL,NULL),
+ (240,120,2,'b_a',188,'Spouse of',161,'Spouse of',0,NULL,NULL,NULL),
+ (241,121,1,'a_b',182,'Child of',110,'Parent of',1,NULL,NULL,NULL),
+ (242,121,1,'b_a',110,'Parent of',182,'Child of',1,NULL,NULL,NULL),
+ (243,122,1,'a_b',134,'Child of',110,'Parent of',1,NULL,NULL,NULL),
+ (244,122,1,'b_a',110,'Parent of',134,'Child of',1,NULL,NULL,NULL),
+ (245,123,1,'a_b',182,'Child of',65,'Parent of',1,NULL,NULL,NULL),
+ (246,123,1,'b_a',65,'Parent of',182,'Child of',1,NULL,NULL,NULL),
+ (247,124,1,'a_b',134,'Child of',65,'Parent of',1,NULL,NULL,NULL),
+ (248,124,1,'b_a',65,'Parent of',134,'Child of',1,NULL,NULL,NULL),
+ (249,125,4,'a_b',134,'Sibling of',182,'Sibling of',1,NULL,NULL,NULL),
+ (250,125,4,'b_a',182,'Sibling of',134,'Sibling of',1,NULL,NULL,NULL),
+ (251,126,8,'a_b',65,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL),
+ (252,126,8,'b_a',22,'Household Member is',65,'Household Member of',1,NULL,NULL,NULL),
+ (253,127,8,'a_b',182,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL),
+ (254,127,8,'b_a',22,'Household Member is',182,'Household Member of',1,NULL,NULL,NULL),
+ (255,128,8,'a_b',134,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL),
+ (256,128,8,'b_a',22,'Household Member is',134,'Household Member of',1,NULL,NULL,NULL),
+ (257,129,7,'a_b',110,'Head of Household for',22,'Head of Household is',1,NULL,NULL,NULL),
+ (258,129,7,'b_a',22,'Head of Household is',110,'Head of Household for',1,NULL,NULL,NULL),
+ (259,130,2,'a_b',65,'Spouse of',110,'Spouse of',1,NULL,NULL,NULL),
+ (260,130,2,'b_a',110,'Spouse of',65,'Spouse of',1,NULL,NULL,NULL),
+ (261,131,1,'a_b',56,'Child of',198,'Parent of',1,NULL,NULL,NULL),
+ (262,131,1,'b_a',198,'Parent of',56,'Child of',1,NULL,NULL,NULL),
+ (263,132,1,'a_b',116,'Child of',198,'Parent of',1,NULL,NULL,NULL),
+ (264,132,1,'b_a',198,'Parent of',116,'Child of',1,NULL,NULL,NULL),
+ (265,133,1,'a_b',56,'Child of',193,'Parent of',1,NULL,NULL,NULL),
+ (266,133,1,'b_a',193,'Parent of',56,'Child of',1,NULL,NULL,NULL),
+ (267,134,1,'a_b',116,'Child of',193,'Parent of',1,NULL,NULL,NULL),
+ (268,134,1,'b_a',193,'Parent of',116,'Child of',1,NULL,NULL,NULL),
+ (269,135,4,'a_b',116,'Sibling of',56,'Sibling of',1,NULL,NULL,NULL),
+ (270,135,4,'b_a',56,'Sibling of',116,'Sibling of',1,NULL,NULL,NULL),
+ (271,136,8,'a_b',193,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL),
+ (272,136,8,'b_a',43,'Household Member is',193,'Household Member of',1,NULL,NULL,NULL),
+ (273,137,8,'a_b',56,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL),
+ (274,137,8,'b_a',43,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL),
+ (275,138,8,'a_b',116,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL),
+ (276,138,8,'b_a',43,'Household Member is',116,'Household Member of',1,NULL,NULL,NULL),
+ (277,139,7,'a_b',198,'Head of Household for',43,'Head of Household is',1,NULL,NULL,NULL),
+ (278,139,7,'b_a',43,'Head of Household is',198,'Head of Household for',1,NULL,NULL,NULL),
+ (279,140,2,'a_b',193,'Spouse of',198,'Spouse of',1,NULL,NULL,NULL),
+ (280,140,2,'b_a',198,'Spouse of',193,'Spouse of',1,NULL,NULL,NULL),
+ (281,141,1,'a_b',80,'Child of',50,'Parent of',1,NULL,NULL,NULL),
+ (282,141,1,'b_a',50,'Parent of',80,'Child of',1,NULL,NULL,NULL),
+ (283,142,1,'a_b',67,'Child of',50,'Parent of',1,NULL,NULL,NULL),
+ (284,142,1,'b_a',50,'Parent of',67,'Child of',1,NULL,NULL,NULL),
+ (285,143,1,'a_b',80,'Child of',34,'Parent of',1,NULL,NULL,NULL),
+ (286,143,1,'b_a',34,'Parent of',80,'Child of',1,NULL,NULL,NULL),
+ (287,144,1,'a_b',67,'Child of',34,'Parent of',1,NULL,NULL,NULL),
+ (288,144,1,'b_a',34,'Parent of',67,'Child of',1,NULL,NULL,NULL),
+ (289,145,4,'a_b',67,'Sibling of',80,'Sibling of',1,NULL,NULL,NULL),
+ (290,145,4,'b_a',80,'Sibling of',67,'Sibling of',1,NULL,NULL,NULL),
+ (291,146,8,'a_b',34,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
+ (292,146,8,'b_a',54,'Household Member is',34,'Household Member of',1,NULL,NULL,NULL),
+ (293,147,8,'a_b',80,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
+ (294,147,8,'b_a',54,'Household Member is',80,'Household Member of',1,NULL,NULL,NULL),
+ (295,148,8,'a_b',67,'Household Member of',54,'Household Member is',1,NULL,NULL,NULL),
+ (296,148,8,'b_a',54,'Household Member is',67,'Household Member of',1,NULL,NULL,NULL),
+ (297,149,7,'a_b',50,'Head of Household for',54,'Head of Household is',1,NULL,NULL,NULL),
+ (298,149,7,'b_a',54,'Head of Household is',50,'Head of Household for',1,NULL,NULL,NULL),
+ (299,150,2,'a_b',34,'Spouse of',50,'Spouse of',1,NULL,NULL,NULL),
+ (300,150,2,'b_a',50,'Spouse of',34,'Spouse of',1,NULL,NULL,NULL),
+ (301,151,1,'a_b',119,'Child of',180,'Parent of',1,NULL,NULL,NULL),
+ (302,151,1,'b_a',180,'Parent of',119,'Child of',1,NULL,NULL,NULL),
+ (303,152,1,'a_b',189,'Child of',180,'Parent of',1,NULL,NULL,NULL),
+ (304,152,1,'b_a',180,'Parent of',189,'Child of',1,NULL,NULL,NULL),
+ (305,153,1,'a_b',119,'Child of',64,'Parent of',1,NULL,NULL,NULL),
+ (306,153,1,'b_a',64,'Parent of',119,'Child of',1,NULL,NULL,NULL),
+ (307,154,1,'a_b',189,'Child of',64,'Parent of',1,NULL,NULL,NULL),
+ (308,154,1,'b_a',64,'Parent of',189,'Child of',1,NULL,NULL,NULL),
+ (309,155,4,'a_b',189,'Sibling of',119,'Sibling of',1,NULL,NULL,NULL),
+ (310,155,4,'b_a',119,'Sibling of',189,'Sibling of',1,NULL,NULL,NULL),
+ (311,156,8,'a_b',64,'Household Member of',21,'Household Member is',1,NULL,NULL,NULL),
+ (312,156,8,'b_a',21,'Household Member is',64,'Household Member of',1,NULL,NULL,NULL),
+ (313,157,8,'a_b',119,'Household Member of',21,'Household Member is',1,NULL,NULL,NULL),
+ (314,157,8,'b_a',21,'Household Member is',119,'Household Member of',1,NULL,NULL,NULL),
+ (315,158,8,'a_b',189,'Household Member of',21,'Household Member is',1,NULL,NULL,NULL),
+ (316,158,8,'b_a',21,'Household Member is',189,'Household Member of',1,NULL,NULL,NULL),
+ (317,159,7,'a_b',180,'Head of Household for',21,'Head of Household is',1,NULL,NULL,NULL),
+ (318,159,7,'b_a',21,'Head of Household is',180,'Head of Household for',1,NULL,NULL,NULL),
+ (319,160,2,'a_b',64,'Spouse of',180,'Spouse of',1,NULL,NULL,NULL),
+ (320,160,2,'b_a',180,'Spouse of',64,'Spouse of',1,NULL,NULL,NULL),
+ (321,161,1,'a_b',135,'Child of',70,'Parent of',1,NULL,NULL,NULL),
+ (322,161,1,'b_a',70,'Parent of',135,'Child of',1,NULL,NULL,NULL),
+ (323,162,1,'a_b',90,'Child of',70,'Parent of',1,NULL,NULL,NULL),
+ (324,162,1,'b_a',70,'Parent of',90,'Child of',1,NULL,NULL,NULL),
+ (325,163,1,'a_b',135,'Child of',143,'Parent of',1,NULL,NULL,NULL),
+ (326,163,1,'b_a',143,'Parent of',135,'Child of',1,NULL,NULL,NULL),
+ (327,164,1,'a_b',90,'Child of',143,'Parent of',1,NULL,NULL,NULL),
+ (328,164,1,'b_a',143,'Parent of',90,'Child of',1,NULL,NULL,NULL),
+ (329,165,4,'a_b',90,'Sibling of',135,'Sibling of',1,NULL,NULL,NULL),
+ (330,165,4,'b_a',135,'Sibling of',90,'Sibling of',1,NULL,NULL,NULL),
+ (331,166,8,'a_b',143,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL),
+ (332,166,8,'b_a',36,'Household Member is',143,'Household Member of',1,NULL,NULL,NULL),
+ (333,167,8,'a_b',135,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL),
+ (334,167,8,'b_a',36,'Household Member is',135,'Household Member of',1,NULL,NULL,NULL),
+ (335,168,8,'a_b',90,'Household Member of',36,'Household Member is',1,NULL,NULL,NULL),
+ (336,168,8,'b_a',36,'Household Member is',90,'Household Member of',1,NULL,NULL,NULL),
+ (337,169,7,'a_b',70,'Head of Household for',36,'Head of Household is',0,NULL,NULL,NULL),
+ (338,169,7,'b_a',36,'Head of Household is',70,'Head of Household for',0,NULL,NULL,NULL),
+ (339,170,2,'a_b',143,'Spouse of',70,'Spouse of',0,NULL,NULL,NULL),
+ (340,170,2,'b_a',70,'Spouse of',143,'Spouse of',0,NULL,NULL,NULL),
+ (341,171,1,'a_b',100,'Child of',181,'Parent of',1,NULL,NULL,NULL),
+ (342,171,1,'b_a',181,'Parent of',100,'Child of',1,NULL,NULL,NULL),
+ (343,172,1,'a_b',86,'Child of',181,'Parent of',1,NULL,NULL,NULL),
+ (344,172,1,'b_a',181,'Parent of',86,'Child of',1,NULL,NULL,NULL),
+ (345,173,1,'a_b',100,'Child of',106,'Parent of',1,NULL,NULL,NULL),
+ (346,173,1,'b_a',106,'Parent of',100,'Child of',1,NULL,NULL,NULL),
+ (347,174,1,'a_b',86,'Child of',106,'Parent of',1,NULL,NULL,NULL),
+ (348,174,1,'b_a',106,'Parent of',86,'Child of',1,NULL,NULL,NULL),
+ (349,175,4,'a_b',86,'Sibling of',100,'Sibling of',1,NULL,NULL,NULL),
+ (350,175,4,'b_a',100,'Sibling of',86,'Sibling of',1,NULL,NULL,NULL),
+ (351,176,8,'a_b',106,'Household Member of',49,'Household Member is',1,NULL,NULL,NULL),
+ (352,176,8,'b_a',49,'Household Member is',106,'Household Member of',1,NULL,NULL,NULL),
+ (353,177,8,'a_b',100,'Household Member of',49,'Household Member is',1,NULL,NULL,NULL),
+ (354,177,8,'b_a',49,'Household Member is',100,'Household Member of',1,NULL,NULL,NULL),
+ (355,178,8,'a_b',86,'Household Member of',49,'Household Member is',1,NULL,NULL,NULL),
+ (356,178,8,'b_a',49,'Household Member is',86,'Household Member of',1,NULL,NULL,NULL),
+ (357,179,7,'a_b',181,'Head of Household for',49,'Head of Household is',1,NULL,NULL,NULL),
+ (358,179,7,'b_a',49,'Head of Household is',181,'Head of Household for',1,NULL,NULL,NULL),
+ (359,180,2,'a_b',106,'Spouse of',181,'Spouse of',1,NULL,NULL,NULL),
+ (360,180,2,'b_a',181,'Spouse of',106,'Spouse of',1,NULL,NULL,NULL),
+ (361,181,1,'a_b',93,'Child of',51,'Parent of',1,NULL,NULL,NULL),
+ (362,181,1,'b_a',51,'Parent of',93,'Child of',1,NULL,NULL,NULL),
+ (363,182,1,'a_b',122,'Child of',51,'Parent of',1,NULL,NULL,NULL),
+ (364,182,1,'b_a',51,'Parent of',122,'Child of',1,NULL,NULL,NULL),
+ (365,183,1,'a_b',93,'Child of',149,'Parent of',1,NULL,NULL,NULL),
+ (366,183,1,'b_a',149,'Parent of',93,'Child of',1,NULL,NULL,NULL),
+ (367,184,1,'a_b',122,'Child of',149,'Parent of',1,NULL,NULL,NULL),
+ (368,184,1,'b_a',149,'Parent of',122,'Child of',1,NULL,NULL,NULL),
+ (369,185,4,'a_b',122,'Sibling of',93,'Sibling of',1,NULL,NULL,NULL),
+ (370,185,4,'b_a',93,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL),
+ (371,186,8,'a_b',149,'Household Member of',170,'Household Member is',1,NULL,NULL,NULL),
+ (372,186,8,'b_a',170,'Household Member is',149,'Household Member of',1,NULL,NULL,NULL),
+ (373,187,8,'a_b',93,'Household Member of',170,'Household Member is',1,NULL,NULL,NULL),
+ (374,187,8,'b_a',170,'Household Member is',93,'Household Member of',1,NULL,NULL,NULL),
+ (375,188,8,'a_b',122,'Household Member of',170,'Household Member is',1,NULL,NULL,NULL),
+ (376,188,8,'b_a',170,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL),
+ (377,189,7,'a_b',51,'Head of Household for',170,'Head of Household is',0,NULL,NULL,NULL),
+ (378,189,7,'b_a',170,'Head of Household is',51,'Head of Household for',0,NULL,NULL,NULL),
+ (379,190,2,'a_b',149,'Spouse of',51,'Spouse of',0,NULL,NULL,NULL),
+ (380,190,2,'b_a',51,'Spouse of',149,'Spouse of',0,NULL,NULL,NULL),
+ (381,191,1,'a_b',142,'Child of',30,'Parent of',1,NULL,NULL,NULL),
+ (382,191,1,'b_a',30,'Parent of',142,'Child of',1,NULL,NULL,NULL),
+ (383,192,1,'a_b',29,'Child of',30,'Parent of',1,NULL,NULL,NULL),
+ (384,192,1,'b_a',30,'Parent of',29,'Child of',1,NULL,NULL,NULL),
+ (385,193,1,'a_b',142,'Child of',144,'Parent of',1,NULL,NULL,NULL),
+ (386,193,1,'b_a',144,'Parent of',142,'Child of',1,NULL,NULL,NULL),
+ (387,194,1,'a_b',29,'Child of',144,'Parent of',1,NULL,NULL,NULL),
+ (388,194,1,'b_a',144,'Parent of',29,'Child of',1,NULL,NULL,NULL),
+ (389,195,4,'a_b',29,'Sibling of',142,'Sibling of',1,NULL,NULL,NULL),
+ (390,195,4,'b_a',142,'Sibling of',29,'Sibling of',1,NULL,NULL,NULL),
+ (391,196,8,'a_b',144,'Household Member of',101,'Household Member is',1,NULL,NULL,NULL),
+ (392,196,8,'b_a',101,'Household Member is',144,'Household Member of',1,NULL,NULL,NULL),
+ (393,197,8,'a_b',142,'Household Member of',101,'Household Member is',1,NULL,NULL,NULL),
+ (394,197,8,'b_a',101,'Household Member is',142,'Household Member of',1,NULL,NULL,NULL),
+ (395,198,8,'a_b',29,'Household Member of',101,'Household Member is',1,NULL,NULL,NULL),
+ (396,198,8,'b_a',101,'Household Member is',29,'Household Member of',1,NULL,NULL,NULL),
+ (397,199,7,'a_b',30,'Head of Household for',101,'Head of Household is',1,NULL,NULL,NULL),
+ (398,199,7,'b_a',101,'Head of Household is',30,'Head of Household for',1,NULL,NULL,NULL),
+ (399,200,2,'a_b',144,'Spouse of',30,'Spouse of',1,NULL,NULL,NULL),
+ (400,200,2,'b_a',30,'Spouse of',144,'Spouse of',1,NULL,NULL,NULL),
+ (401,201,5,'a_b',33,'Employee of',24,'Employer of',1,NULL,NULL,NULL),
+ (402,201,5,'b_a',24,'Employer of',33,'Employee of',1,NULL,NULL,NULL),
+ (403,202,5,'a_b',136,'Employee of',37,'Employer of',1,NULL,NULL,NULL),
+ (404,202,5,'b_a',37,'Employer of',136,'Employee of',1,NULL,NULL,NULL),
+ (405,203,5,'a_b',26,'Employee of',75,'Employer of',1,NULL,NULL,NULL),
+ (406,203,5,'b_a',75,'Employer of',26,'Employee of',1,NULL,NULL,NULL),
+ (407,204,5,'a_b',189,'Employee of',89,'Employer of',1,NULL,NULL,NULL),
+ (408,204,5,'b_a',89,'Employer of',189,'Employee of',1,NULL,NULL,NULL),
+ (409,205,5,'a_b',150,'Employee of',97,'Employer of',1,NULL,NULL,NULL),
+ (410,205,5,'b_a',97,'Employer of',150,'Employee of',1,NULL,NULL,NULL),
+ (411,206,5,'a_b',70,'Employee of',105,'Employer of',1,NULL,NULL,NULL),
+ (412,206,5,'b_a',105,'Employer of',70,'Employee of',1,NULL,NULL,NULL),
+ (413,207,5,'a_b',88,'Employee of',123,'Employer of',1,NULL,NULL,NULL),
+ (414,207,5,'b_a',123,'Employer of',88,'Employee of',1,NULL,NULL,NULL),
+ (415,208,5,'a_b',178,'Employee of',124,'Employer of',1,NULL,NULL,NULL),
+ (416,208,5,'b_a',124,'Employer of',178,'Employee of',1,NULL,NULL,NULL),
+ (417,209,5,'a_b',146,'Employee of',133,'Employer of',1,NULL,NULL,NULL),
+ (418,209,5,'b_a',133,'Employer of',146,'Employee of',1,NULL,NULL,NULL),
+ (419,210,5,'a_b',147,'Employee of',139,'Employer of',1,NULL,NULL,NULL),
+ (420,210,5,'b_a',139,'Employer of',147,'Employee of',1,NULL,NULL,NULL),
+ (421,211,5,'a_b',134,'Employee of',157,'Employer of',1,NULL,NULL,NULL),
+ (422,211,5,'b_a',157,'Employer of',134,'Employee of',1,NULL,NULL,NULL),
+ (423,212,5,'a_b',9,'Employee of',159,'Employer of',1,NULL,NULL,NULL),
+ (424,212,5,'b_a',159,'Employer of',9,'Employee of',1,NULL,NULL,NULL),
+ (425,213,5,'a_b',71,'Employee of',168,'Employer of',1,NULL,NULL,NULL),
+ (426,213,5,'b_a',168,'Employer of',71,'Employee of',1,NULL,NULL,NULL),
+ (427,214,5,'a_b',109,'Employee of',172,'Employer of',1,NULL,NULL,NULL),
+ (428,214,5,'b_a',172,'Employer of',109,'Employee of',1,NULL,NULL,NULL),
+ (429,215,5,'a_b',84,'Employee of',173,'Employer of',1,NULL,NULL,NULL),
+ (430,215,5,'b_a',173,'Employer of',84,'Employee of',1,NULL,NULL,NULL),
+ (431,216,5,'a_b',45,'Employee of',175,'Employer of',1,NULL,NULL,NULL),
+ (432,216,5,'b_a',175,'Employer of',45,'Employee of',1,NULL,NULL,NULL),
+ (433,217,5,'a_b',196,'Employee of',192,'Employer of',1,NULL,NULL,NULL),
+ (434,217,5,'b_a',192,'Employer of',196,'Employee of',1,NULL,NULL,NULL),
+ (435,218,5,'a_b',25,'Employee of',201,'Employer of',1,NULL,NULL,NULL),
+ (436,218,5,'b_a',201,'Employer of',25,'Employee of',1,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_relationship_cache` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -12251,90 +12175,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,165,2,'2022-06-09 15:38:11','Admin','Added',NULL),
- (2,26,2,'2021-10-23 07:06:49','Email','Added',NULL),
- (3,5,2,'2022-03-23 08:38:36','Email','Added',NULL),
- (4,182,2,'2022-09-05 00:41:14','Admin','Added',NULL),
- (5,154,2,'2022-08-01 10:07:57','Admin','Added',NULL),
- (6,170,2,'2022-08-12 13:18:01','Admin','Added',NULL),
- (7,75,2,'2021-10-20 09:19:05','Email','Added',NULL),
- (8,153,2,'2021-10-15 21:58:07','Admin','Added',NULL),
- (9,185,2,'2022-03-23 22:13:27','Email','Added',NULL),
- (10,27,2,'2022-05-05 08:08:03','Admin','Added',NULL),
- (11,106,2,'2021-11-26 03:56:45','Email','Added',NULL),
- (12,161,2,'2022-04-12 05:27:45','Email','Added',NULL),
- (13,133,2,'2022-01-14 15:21:09','Email','Added',NULL),
- (14,3,2,'2022-02-15 00:42:27','Admin','Added',NULL),
- (15,129,2,'2022-03-29 03:15:27','Email','Added',NULL),
- (16,115,2,'2021-11-05 23:03:37','Admin','Added',NULL),
- (17,188,2,'2022-01-24 09:21:19','Email','Added',NULL),
- (18,65,2,'2022-05-26 05:49:26','Admin','Added',NULL),
- (19,36,2,'2022-02-21 08:36:25','Admin','Added',NULL),
- (20,108,2,'2022-08-02 09:21:42','Admin','Added',NULL),
- (21,24,2,'2022-07-28 21:10:18','Admin','Added',NULL),
- (22,59,2,'2022-02-15 23:51:19','Admin','Added',NULL),
- (23,7,2,'2022-02-17 14:55:12','Email','Added',NULL),
- (24,189,2,'2021-11-10 14:27:05','Email','Added',NULL),
- (25,90,2,'2022-06-08 05:11:23','Admin','Added',NULL),
- (26,186,2,'2022-09-10 13:30:29','Email','Added',NULL),
- (27,149,2,'2022-09-29 19:39:30','Email','Added',NULL),
- (28,175,2,'2022-09-04 08:16:01','Email','Added',NULL),
- (29,22,2,'2022-03-12 09:07:38','Admin','Added',NULL),
- (30,16,2,'2022-05-29 15:10:11','Admin','Added',NULL),
- (31,181,2,'2022-07-12 14:20:54','Email','Added',NULL),
- (32,114,2,'2021-11-18 21:09:11','Email','Added',NULL),
- (33,11,2,'2021-12-28 03:51:26','Email','Added',NULL),
- (34,56,2,'2022-05-22 10:55:10','Admin','Added',NULL),
- (35,71,2,'2022-07-18 06:59:24','Email','Added',NULL),
- (36,196,2,'2021-11-30 07:36:38','Admin','Added',NULL),
- (37,201,2,'2021-11-11 19:57:18','Admin','Added',NULL),
- (38,8,2,'2022-03-13 20:58:19','Admin','Added',NULL),
- (39,112,2,'2021-10-28 18:45:10','Admin','Added',NULL),
- (40,33,2,'2022-06-16 00:28:27','Admin','Added',NULL),
- (41,197,2,'2022-04-12 11:02:29','Email','Added',NULL),
- (42,10,2,'2022-02-17 10:27:20','Admin','Added',NULL),
- (43,177,2,'2022-09-09 03:03:05','Email','Added',NULL),
- (44,105,2,'2021-10-11 00:16:21','Admin','Added',NULL),
- (45,13,2,'2022-05-14 02:53:41','Admin','Added',NULL),
- (46,52,2,'2022-03-23 17:20:38','Admin','Added',NULL),
- (47,148,2,'2022-04-09 13:10:45','Email','Added',NULL),
- (48,192,2,'2022-04-03 16:13:07','Email','Added',NULL),
- (49,60,2,'2021-12-13 17:12:38','Email','Added',NULL),
- (50,87,2,'2022-05-13 12:53:35','Admin','Added',NULL),
- (51,118,2,'2021-12-05 07:50:27','Admin','Added',NULL),
- (52,38,2,'2022-01-07 21:15:40','Admin','Added',NULL),
- (53,45,2,'2022-08-17 03:48:28','Email','Added',NULL),
- (54,156,2,'2022-06-25 02:39:22','Email','Added',NULL),
- (55,102,2,'2022-04-08 04:09:14','Email','Added',NULL),
- (56,25,2,'2022-08-31 23:36:23','Email','Added',NULL),
- (57,101,2,'2022-06-02 01:14:22','Email','Added',NULL),
- (58,135,2,'2022-06-17 05:29:31','Email','Added',NULL),
- (59,42,2,'2022-04-01 04:36:58','Email','Added',NULL),
- (60,12,2,'2022-07-29 18:05:32','Email','Added',NULL),
- (61,85,3,'2022-02-02 20:10:31','Email','Added',NULL),
- (62,136,3,'2022-03-20 06:52:16','Admin','Added',NULL),
- (63,83,3,'2021-11-28 08:27:50','Email','Added',NULL),
- (64,79,3,'2021-10-17 13:04:24','Admin','Added',NULL),
- (65,151,3,'2022-07-15 22:06:20','Admin','Added',NULL),
- (66,140,3,'2022-07-22 00:32:05','Email','Added',NULL),
- (67,4,3,'2022-05-03 12:28:05','Admin','Added',NULL),
- (68,53,3,'2022-06-07 10:51:17','Email','Added',NULL),
- (69,160,3,'2022-05-28 06:47:06','Admin','Added',NULL),
- (70,130,3,'2022-10-09 01:47:39','Email','Added',NULL),
- (71,142,3,'2022-05-18 10:21:44','Email','Added',NULL),
- (72,94,3,'2022-07-26 00:02:59','Admin','Added',NULL),
- (73,62,3,'2021-12-07 08:10:49','Admin','Added',NULL),
- (74,55,3,'2022-08-26 15:32:40','Email','Added',NULL),
- (75,174,3,'2022-01-26 03:49:54','Admin','Added',NULL),
- (76,165,4,'2022-08-05 13:27:37','Email','Added',NULL),
- (77,153,4,'2022-02-14 05:29:06','Email','Added',NULL),
- (78,129,4,'2021-12-12 17:34:07','Email','Added',NULL),
- (79,59,4,'2022-02-02 19:45:42','Admin','Added',NULL),
- (80,22,4,'2022-03-16 17:12:37','Admin','Added',NULL),
- (81,196,4,'2022-09-04 07:55:28','Email','Added',NULL),
- (82,177,4,'2022-07-07 04:18:18','Email','Added',NULL),
- (83,87,4,'2022-01-29 21:30:07','Email','Added',NULL),
- (84,202,4,'2022-02-12 10:23:06','Email','Added',NULL);
+ (1,31,2,'2022-01-22 19:08:30','Admin','Added',NULL),
+ (2,177,2,'2022-04-21 02:04:32','Email','Added',NULL),
+ (3,109,2,'2021-10-30 09:51:28','Admin','Added',NULL),
+ (4,35,2,'2022-08-12 01:23:00','Admin','Added',NULL),
+ (5,171,2,'2022-08-03 16:29:13','Email','Added',NULL),
+ (6,87,2,'2022-04-25 07:50:22','Admin','Added',NULL),
+ (7,154,2,'2022-03-17 22:14:29','Email','Added',NULL),
+ (8,151,2,'2022-03-25 21:48:03','Admin','Added',NULL),
+ (9,74,2,'2022-01-01 14:07:45','Admin','Added',NULL),
+ (10,92,2,'2021-12-17 16:16:16','Admin','Added',NULL),
+ (11,96,2,'2022-03-03 08:13:34','Admin','Added',NULL),
+ (12,12,2,'2022-04-18 22:44:01','Email','Added',NULL),
+ (13,113,2,'2022-04-26 18:16:24','Admin','Added',NULL),
+ (14,32,2,'2022-02-06 00:41:10','Email','Added',NULL),
+ (15,85,2,'2021-10-28 17:24:07','Admin','Added',NULL),
+ (16,132,2,'2022-03-15 04:34:06','Admin','Added',NULL),
+ (17,195,2,'2022-10-01 22:34:57','Email','Added',NULL),
+ (18,115,2,'2022-05-10 21:35:28','Email','Added',NULL),
+ (19,112,2,'2022-05-30 20:21:05','Email','Added',NULL),
+ (20,82,2,'2021-12-16 13:44:28','Email','Added',NULL),
+ (21,114,2,'2022-02-09 19:54:26','Admin','Added',NULL),
+ (22,20,2,'2022-04-28 14:45:32','Admin','Added',NULL),
+ (23,156,2,'2022-09-07 01:41:14','Admin','Added',NULL),
+ (24,155,2,'2022-05-28 15:34:00','Email','Added',NULL),
+ (25,5,2,'2022-05-27 18:32:02','Email','Added',NULL),
+ (26,42,2,'2021-11-10 01:33:10','Email','Added',NULL),
+ (27,164,2,'2022-01-12 21:42:10','Email','Added',NULL),
+ (28,71,2,'2022-07-12 08:19:23','Email','Added',NULL),
+ (29,16,2,'2022-02-22 23:55:36','Admin','Added',NULL),
+ (30,128,2,'2022-01-06 18:45:45','Email','Added',NULL),
+ (31,66,2,'2022-02-11 08:12:43','Admin','Added',NULL),
+ (32,108,2,'2022-08-16 22:22:20','Admin','Added',NULL),
+ (33,15,2,'2022-02-13 08:24:20','Email','Added',NULL),
+ (34,167,2,'2022-04-19 17:23:23','Admin','Added',NULL),
+ (35,129,2,'2022-08-31 20:21:27','Admin','Added',NULL),
+ (36,23,2,'2022-04-13 13:09:29','Admin','Added',NULL),
+ (37,6,2,'2022-09-11 19:23:59','Email','Added',NULL),
+ (38,13,2,'2021-12-24 12:37:13','Email','Added',NULL),
+ (39,121,2,'2022-03-25 14:13:54','Admin','Added',NULL),
+ (40,17,2,'2021-11-30 22:35:37','Admin','Added',NULL),
+ (41,191,2,'2022-02-21 04:59:25','Email','Added',NULL),
+ (42,162,2,'2021-11-05 19:07:21','Admin','Added',NULL),
+ (43,196,2,'2022-04-01 00:58:55','Email','Added',NULL),
+ (44,81,2,'2022-07-01 16:21:56','Email','Added',NULL),
+ (45,72,2,'2022-05-20 07:18:17','Admin','Added',NULL),
+ (46,63,2,'2022-05-09 23:25:53','Admin','Added',NULL),
+ (47,169,2,'2021-12-06 16:34:53','Admin','Added',NULL),
+ (48,131,2,'2022-09-09 08:48:59','Admin','Added',NULL),
+ (49,178,2,'2022-08-29 00:51:33','Email','Added',NULL),
+ (50,147,2,'2021-10-29 12:51:11','Email','Added',NULL),
+ (51,140,2,'2022-05-09 03:57:46','Email','Added',NULL),
+ (52,27,2,'2022-02-02 21:02:03','Email','Added',NULL),
+ (53,44,2,'2021-12-02 10:17:14','Admin','Added',NULL),
+ (54,73,2,'2022-09-02 03:51:44','Email','Added',NULL),
+ (55,103,2,'2022-07-27 06:32:44','Admin','Added',NULL),
+ (56,163,2,'2022-06-23 15:18:02','Email','Added',NULL),
+ (57,138,2,'2022-03-08 07:00:49','Admin','Added',NULL),
+ (58,47,2,'2021-12-14 22:04:54','Admin','Added',NULL),
+ (59,184,2,'2022-08-25 00:21:38','Admin','Added',NULL),
+ (60,137,2,'2021-12-30 17:42:37','Email','Added',NULL),
+ (61,98,3,'2022-03-20 23:26:55','Email','Added',NULL),
+ (62,111,3,'2022-01-24 19:14:41','Admin','Added',NULL),
+ (63,7,3,'2022-02-21 18:20:54','Admin','Added',NULL),
+ (64,104,3,'2022-01-23 18:20:10','Email','Added',NULL),
+ (65,194,3,'2022-04-23 21:10:25','Email','Added',NULL),
+ (66,14,3,'2021-11-20 04:33:16','Admin','Added',NULL),
+ (67,46,3,'2022-01-11 03:29:19','Admin','Added',NULL),
+ (68,165,3,'2022-08-12 11:54:23','Admin','Added',NULL),
+ (69,59,3,'2022-08-21 17:58:16','Admin','Added',NULL),
+ (70,136,3,'2021-11-02 09:37:13','Email','Added',NULL),
+ (71,55,3,'2022-08-09 21:31:27','Admin','Added',NULL),
+ (72,39,3,'2021-12-12 05:28:25','Admin','Added',NULL),
+ (73,126,3,'2021-10-24 12:11:19','Email','Added',NULL),
+ (74,41,3,'2021-12-21 07:56:43','Admin','Added',NULL),
+ (75,76,3,'2021-11-09 17:05:27','Email','Added',NULL),
+ (76,31,4,'2022-10-09 13:50:46','Email','Added',NULL),
+ (77,151,4,'2022-01-31 18:59:48','Email','Added',NULL),
+ (78,85,4,'2022-09-05 21:17:11','Email','Added',NULL),
+ (79,20,4,'2022-02-22 22:01:22','Admin','Added',NULL),
+ (80,16,4,'2022-07-02 10:55:00','Admin','Added',NULL),
+ (81,23,4,'2022-03-09 16:25:45','Email','Added',NULL),
+ (82,196,4,'2022-01-09 09:56:26','Admin','Added',NULL),
+ (83,147,4,'2022-05-23 03:05:47','Email','Added',NULL),
+ (84,202,4,'2022-08-03 20:46:11','Email','Added',NULL);
 /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -12560,22 +12484,20 @@ 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,6,'http://vnliteracyfund.org',1),
- (2,78,'http://whitesburghealth.org',1),
- (3,30,'http://badgerpoetryacademy.org',1),
- (4,19,'http://progressivefamily.org',1),
- (5,81,'http://coloradofood.org',1),
- (6,70,'http://pennsylvaniafellowship.org',1),
- (7,111,'http://globalliteracypartnership.org',1),
- (8,126,'http://cpdevelopmentschool.org',1),
- (9,41,'http://lincolncollective.org',1),
- (10,72,'http://sierraculture.org',1),
- (11,147,'http://mlkingwellness.org',1),
- (12,73,'http://nyagriculturecollective.org',1),
- (13,107,'http://urbanartscollective.org',1),
- (14,18,'http://creativepartners.org',1),
- (15,80,'http://jacksonsystems.org',1),
- (16,134,'http://communityartsfund.org',1);
+ (1,89,'http://globalliteracyacademy.org',1),
+ (2,123,'http://bayadvocacyalliance.org',1),
+ (3,172,'http://texassystems.org',1),
+ (4,173,'http://ruralfund.org',1),
+ (5,10,'http://nysportsfund.org',1),
+ (6,133,'http://utahactionalliance.org',1),
+ (7,105,'http://northpointfamily.org',1),
+ (8,197,'http://globaleducation.org',1),
+ (9,97,'http://beechlegalpartners.org',1),
+ (10,201,'http://pgsoftwaresystems.org',1),
+ (11,159,'http://unitedhealth.org',1),
+ (12,139,'http://vnactionpartners.org',1),
+ (13,168,'http://genevaagriculture.org',1),
+ (14,75,'http://blakelyfood.org',1);
 /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -12607,12 +12529,13 @@ UNLOCK TABLES;
 
 /*!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 2022-10-10  7:32:58
+-- Dump completed on 2022-10-09 15:29:42
 -- +--------------------------------------------------------------------+
 -- | Copyright CiviCRM LLC. All rights reserved.                        |
 -- |                                                                    |
diff --git a/civicrm/templates/CRM/Activity/Form/ActivityView.tpl b/civicrm/templates/CRM/Activity/Form/ActivityView.tpl
index b0a02df612d4372aee2c5e4bcbdd0ef27eab0bf8..35c0297cfe5cdee118ef4417bedc6860f7fa997e 100644
--- a/civicrm/templates/CRM/Activity/Form/ActivityView.tpl
+++ b/civicrm/templates/CRM/Activity/Form/ActivityView.tpl
@@ -36,7 +36,7 @@
         {/if}
 
   {if $values.engagement_level AND
-      call_user_func( array( 'CRM_Campaign_BAO_Campaign', 'isCampaignEnable' ) )}
+      call_user_func( array( 'CRM_Campaign_BAO_Campaign', 'isComponentEnabled' ) )}
       <td class="label">{ts}Engagement Level{/ts}</td><td class="view-value">{$values.engagement_level}</td>
   {/if}
 
diff --git a/civicrm/templates/CRM/Admin/Form/CMSUser.tpl b/civicrm/templates/CRM/Admin/Form/CMSUser.tpl
index e4b1a5dac2cd1a501acadf4b6a5ea5988ee736df..093b1a2021477fcbb544521ca2265fb0cf085b7f 100644
--- a/civicrm/templates/CRM/Admin/Form/CMSUser.tpl
+++ b/civicrm/templates/CRM/Admin/Form/CMSUser.tpl
@@ -10,7 +10,7 @@
 {* this template is for synchronizing CMS user*}
 <div class="crm-block crm-form-block crm-cms-user-form-block">
 <div class="help">
-    <p>{ts 1=$config->userFramework}Synchronize %1 Users{/ts}</p>
+    <p>{ts}Synchronize Users{/ts}</p>
 </div>
 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
 <div class="messages status no-popup">
diff --git a/civicrm/templates/CRM/Admin/Form/Setting/Localization.tpl b/civicrm/templates/CRM/Admin/Form/Setting/Localization.tpl
index b27ca04611f64df5fad2ae5530beec4b17f09adb..29fb16f2cc33c8e68c1afae5afd79fa9965c0707 100644
--- a/civicrm/templates/CRM/Admin/Form/Setting/Localization.tpl
+++ b/civicrm/templates/CRM/Admin/Form/Setting/Localization.tpl
@@ -19,7 +19,7 @@
                 <td class="label">{$form.lcMessages.label}</td>
                 <td>{$form.lcMessages.html}</td>
             </tr>
-           {if !empty($form.languageLimit)}
+           {if array_key_exists('languageLimit', $form)}
              <tr class="crm-localization-form-block-languageLimit">
                  <td class="label">{$form.languageLimit.label}</td>
                  <td>{$form.languageLimit.html}<br />
@@ -37,7 +37,8 @@
                 <span class="description">{$settings_fields.inheritLocale.description}</span>
               </td>
             </tr>
-          {if empty($form.languageLimit)}
+          {* This isn't a typo. languageLimit is a similar field but is for multilingual, and only gets assigned when multilingual is enabled, so the if-block is for display logic so that only one of them appears. *}
+          {if !array_key_exists('languageLimit', $form)}
             <tr class="crm-localization-form-block-uiLanguages">
                 <td class="label">{$form.uiLanguages.label}</td>
                 <td>{$form.uiLanguages.html}</td>
@@ -115,7 +116,7 @@
         </table>
     <h3>{ts}Multiple Languages Support{/ts}</h3>
       <table class="form-layout-compressed">
-        {if !empty($form.makeSinglelingual)}
+        {if array_key_exists('makeSinglelingual', $form)}
           <tr class="crm-localization-form-block-makeSinglelingual_description">
               <td></td>
               <td><span class="description">{ts 1="http://documentation.civicrm.org"}This is a multilingual installation. It contains certain schema differences compared to regular installations of CiviCRM. Please <a href="%1">refer to the documentation</a> for details.{/ts}</span></td>
diff --git a/civicrm/templates/CRM/Admin/Page/JobLog.tpl b/civicrm/templates/CRM/Admin/Page/JobLog.tpl
index 41bf07769ddb6c1511653e4c6f48ef1a101346b0..442823f9ac54b9ceafdfb8f21a221176d9a48156 100644
--- a/civicrm/templates/CRM/Admin/Page/JobLog.tpl
+++ b/civicrm/templates/CRM/Admin/Page/JobLog.tpl
@@ -13,13 +13,13 @@
 
 <div class="crm-content-block crm-block">
 
-{if !empty($jobId)}
+{if $jobId}
     <h3>{ts}List of log entries for:{/ts} {$jobName}</h3>
 {/if}
 
   <div class="action-link">
     <a href="{crmURL p='civicrm/admin/job' q="reset=1"}" id="jobsList-top" class="button"><span><i class="crm-i fa-chevron-left" aria-hidden="true"></i> {ts}Back to Scheduled Jobs Listing{/ts}</span></a>
-    {if !empty($jobRunUrl)}
+    {if $jobRunUrl}
       <a href="{$jobRunUrl}" id="jobsList-run-top" class="button"><span><i class="crm-i fa-play" aria-hidden="true"></i> {ts}Execute Now{/ts}</span></a>
     {/if}
   </div>
@@ -63,7 +63,7 @@
 
   <div class="action-link">
     <a href="{crmURL p='civicrm/admin/job' q="reset=1"}" id="jobsList-bottom" class="button"><span><i class="crm-i fa-chevron-left" aria-hidden="true"></i> {ts}Back to Scheduled Jobs Listing{/ts}</span></a>
-    {if !empty($jobRunUrl)}
+    {if $jobRunUrl}
       <a href="{$jobRunUrl}" id="jobsList-run-bottom" class="button"><span><i class="crm-i fa-play" aria-hidden="true"></i> {ts}Execute Now{/ts}</span></a>
     {/if}
   </div>
diff --git a/civicrm/templates/CRM/Case/Page/CustomDataView.tpl b/civicrm/templates/CRM/Case/Page/CustomDataView.tpl
index d8a4e2ba978dbeb4d74199bcf0483797aa83a29e..9112396e4d7972bc5d7f5c464e28218816c5faf9 100644
--- a/civicrm/templates/CRM/Case/Page/CustomDataView.tpl
+++ b/civicrm/templates/CRM/Case/Page/CustomDataView.tpl
@@ -36,6 +36,8 @@
                 <td class="html-adjust">
                   {if $element.field_data_type EQ 'ContactReference' && $element.contact_ref_links}
                     {', '|implode:$element.contact_ref_links}
+                  {elseif $element.field_data_type == 'Money'}
+                    {$element.field_value|crmMoney}
                   {else}
                     {$element.field_value}
                   {/if}
diff --git a/civicrm/templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl b/civicrm/templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl
index 1742f5c8f6b4178dcc7b274cf85a352a2497b8b0..55a9b5b985dea2049d837078668f0dc9ea2fad4e 100644
--- a/civicrm/templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl
+++ b/civicrm/templates/CRM/Contact/Form/Edit/Address/city_postal_code.tpl
@@ -21,7 +21,7 @@
           {$form.address.$blockId.postal_code.label}<br />
           {$form.address.$blockId.postal_code.html}
        </td>
-      {if !empty($form.address.$blockId.postal_code_suffix)}
+      {if array_key_exists('postal_code_suffix', $form.address.$blockId)}
           <td>
             {$form.address.$blockId.postal_code_suffix.label} {help id="id-postal-code-suffix" file="CRM/Contact/Form/Contact.hlp"}<br/>
             {$form.address.$blockId.postal_code_suffix.html}
diff --git a/civicrm/templates/CRM/Contact/Form/Edit/Address/geo_code.tpl b/civicrm/templates/CRM/Contact/Form/Edit/Address/geo_code.tpl
index 962030e03a8019eff7ffa4e2d524c59533e870e7..7db93a3d5bbc1dacfcc4a5b9eaf5b66ea5218581 100644
--- a/civicrm/templates/CRM/Contact/Form/Edit/Address/geo_code.tpl
+++ b/civicrm/templates/CRM/Contact/Form/Edit/Address/geo_code.tpl
@@ -7,20 +7,19 @@
  | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
 *}
-{if !empty($form.address.$blockId.geo_code_1) && !empty($form.address.$blockId.geo_code_2)}
-   <tr>
+{if array_key_exists('geo_code_1', $form.address.$blockId) && array_key_exists('geo_code_2', $form.address.$blockId)}
+  <tr>
+    <td colspan="2">
+      {$form.address.$blockId.geo_code_1.label},&nbsp;{$form.address.$blockId.geo_code_2.label} {help id="id-geo-code" file="CRM/Contact/Form/Contact.hlp"}<br />
+      {$form.address.$blockId.geo_code_1.html},&nbsp;{$form.address.$blockId.geo_code_2.html}<br />
+    </td>
+  </tr>
+  {if array_key_exists('manual_geo_code', $form.address.$blockId)}
+    <tr>
       <td colspan="2">
-          {$form.address.$blockId.geo_code_1.label},&nbsp;{$form.address.$blockId.geo_code_2.label} {help id="id-geo-code" file="CRM/Contact/Form/Contact.hlp"}<br />
-          {$form.address.$blockId.geo_code_1.html},&nbsp;{$form.address.$blockId.geo_code_2.html}<br />
+        {$form.address.$blockId.manual_geo_code.html}
+        {$form.address.$blockId.manual_geo_code.label} {help id="id-geo-code-override" file="CRM/Contact/Form/Contact.hlp"}
       </td>
     </tr>
-    {if !empty($form.address.$blockId.manual_geo_code)}
-     <tr>
-        <td colspan="2">
-          {$form.address.$blockId.manual_geo_code.html}
-          {$form.address.$blockId.manual_geo_code.label} {help id="id-geo-code-override" file="CRM/Contact/Form/Contact.hlp"}
-        </td>
-      </tr>
-    {/if}
-   </tr>
+  {/if}
 {/if}
diff --git a/civicrm/templates/CRM/Contact/Form/Task/AddToParentClass.tpl b/civicrm/templates/CRM/Contact/Form/Task/AddToParentClass.tpl
index b52f80f1736157f9512da37ab0dbd3f794f0ac86..a97a33642013541d75d96cb9ee9589a6080daacb 100644
--- a/civicrm/templates/CRM/Contact/Form/Task/AddToParentClass.tpl
+++ b/civicrm/templates/CRM/Contact/Form/Task/AddToParentClass.tpl
@@ -86,9 +86,6 @@
                     </div>
                <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl"}</div>
             </div>
-  <div class="form-item">
-  {$form.status.label} {$form.status.html}
-  </div>
 
 
             </div></fieldset>
diff --git a/civicrm/templates/CRM/Contact/Page/View/Note.tpl b/civicrm/templates/CRM/Contact/Page/View/Note.tpl
index 64bb783794d125690180c7d37e2124ef91f47df6..2ea05f614e01eaae8cdb93ade7064bee58db07f3 100644
--- a/civicrm/templates/CRM/Contact/Page/View/Note.tpl
+++ b/civicrm/templates/CRM/Contact/Page/View/Note.tpl
@@ -31,7 +31,7 @@
         <legend>{ts}Comments{/ts}</legend>
             <table class="display">
                 <thead>
-                    <tr><th>{ts}Comment{/ts}</th><th>{ts}Created By{/ts}</th><th>{ts}Date{/ts}</th></tr>
+                    <tr><th>{ts}Comment{/ts}</th><th>{ts}Created By{/ts}</th><th>{ts}Date{/ts}</th><th>{ts}Modified Date{/ts}</th></tr>
                 </thead>
                 {foreach from=$comments item=comment}
                   <tr class="{cycle values='odd-row,even-row'}"><td>{$comment.note}</td><td>{$comment.createdBy}</td><td>{$comment.note_date}</td><td>{$comment.modified_date}</td></tr>
diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution.tpl
index af2ec9f53f49f585ecf2c3533331edcb24ad9646..87157abdfb42dd992f8ffa56d6bf0db39daf2212 100644
--- a/civicrm/templates/CRM/Contribute/Form/Contribution.tpl
+++ b/civicrm/templates/CRM/Contribute/Form/Contribution.tpl
@@ -413,6 +413,14 @@
         {/foreach}
       </div>
     {/if}
+    {if $billing_address}
+      <fieldset>
+        <legend>{ts}Billing Address{/ts}</legend>
+        <div class="form-item">
+          {$billing_address|nl2br}
+        </div>
+      </fieldset>
+    {/if}
     <br />
     <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
   </div>
diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl
index 1beb28c2fe7c731b28288e3de5763ecfc7db37a9..e9058c95bfe34736f7239d48953ece6f56b0e571 100644
--- a/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl
+++ b/civicrm/templates/CRM/Contribute/Form/Contribution/Confirm.tpl
@@ -225,7 +225,7 @@
         </div>
       {/if}
     {/if}
-    {if $email}
+    {if !$emailExists}
       <div class="crm-group contributor_email-group">
         <div class="header-dark">
           {ts}Your Email{/ts}
diff --git a/civicrm/templates/CRM/Contribute/Form/Contribution/ThankYou.tpl b/civicrm/templates/CRM/Contribute/Form/Contribution/ThankYou.tpl
index c9ac6090e09ae4b0141204478d51b6c03863d7b5..07ebf72e49a07bd51e4016a391f7f08b8b8194e3 100644
--- a/civicrm/templates/CRM/Contribute/Form/Contribution/ThankYou.tpl
+++ b/civicrm/templates/CRM/Contribute/Form/Contribution/ThankYou.tpl
@@ -255,7 +255,7 @@
         </div>
       {/if}
     {/if}
-    {if $email}
+    {if !$emailExists}
       <div class="crm-group contributor_email-group">
         <div class="header-dark">
           {ts}Your Email{/ts}
diff --git a/civicrm/templates/CRM/Contribute/Page/ContributionPage.tpl b/civicrm/templates/CRM/Contribute/Page/ContributionPage.tpl
index 2321d2524b2be7630fcec8979cb4d826db39e134..330b87da8fab38004e3ff77487e119758a90cee9 100644
--- a/civicrm/templates/CRM/Contribute/Page/ContributionPage.tpl
+++ b/civicrm/templates/CRM/Contribute/Page/ContributionPage.tpl
@@ -37,7 +37,7 @@
                  <th>{ts}Title{/ts}</th>
                <th>{ts}ID{/ts}</th>
                <th>{ts}Enabled?{/ts}</th>
-             {if call_user_func(array('CRM_Campaign_BAO_Campaign','isCampaignEnable'))}
+             {if call_user_func(array('CRM_Campaign_BAO_Campaign','isComponentEnabled'))}
              <th>{ts}Campaign{/ts}</th>
             {/if}
             <th></th>
@@ -48,7 +48,7 @@
                      <td><strong>{$row.title}</strong></td>
                      <td>{$row.id}</td>
                      <td id="row_{$row.id}_status">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
-          {if call_user_func(array('CRM_Campaign_BAO_Campaign','isCampaignEnable'))}
+          {if call_user_func(array('CRM_Campaign_BAO_Campaign','isComponentEnabled'))}
           <td>{$row.campaign}</td>
           {/if}
           <td class="crm-contribution-page-actions right nowrap">
diff --git a/civicrm/templates/CRM/Event/Page/ManageEvent.tpl b/civicrm/templates/CRM/Event/Page/ManageEvent.tpl
index b634902a124cbba9933bc46809150bfa606e854f..c69aa9943f32f60e298c0f7283a77034b82d85bc 100644
--- a/civicrm/templates/CRM/Event/Page/ManageEvent.tpl
+++ b/civicrm/templates/CRM/Event/Page/ManageEvent.tpl
@@ -41,7 +41,7 @@
         <th>{ts}Public?{/ts}</th>
         <th>{ts}Starts{/ts}</th>
         <th>{ts}Ends{/ts}</th>
-        {if call_user_func(array('CRM_Campaign_BAO_Campaign','isCampaignEnable'))}
+        {if call_user_func(array('CRM_Campaign_BAO_Campaign','isComponentEnabled'))}
           <th>{ts}Campaign{/ts}</th>
         {/if}
         <th>{ts}Active?{/ts}</th>
@@ -64,7 +64,7 @@
           <td class="crm-event-is_public">{if $row.is_public eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
           <td class="crm-event-start_date" data-order="{$row.start_date|crmDate:'%Y-%m-%d'}">{$row.start_date|crmDate:"%b %d, %Y %l:%M %P"}</td>
           <td class="crm-event-end_date" data-order="{$row.end_date|crmDate:'%Y-%m-%d'}">{$row.end_date|crmDate:"%b %d, %Y %l:%M %P"}</td>
-          {if call_user_func(array('CRM_Campaign_BAO_Campaign','isCampaignEnable'))}
+          {if call_user_func(array('CRM_Campaign_BAO_Campaign','isComponentEnabled'))}
             <td class="crm-event-campaign">{$row.campaign}</td>
           {/if}
           <td class="crm-event_status" id="row_{$row.id}_status">
diff --git a/civicrm/templates/CRM/Export/Form/Map.tpl b/civicrm/templates/CRM/Export/Form/Map.tpl
index 3c7d31f751eeebe0776c161952963d9061cf92ca..c6d4e903c758c6f5ebfb3a63c5a4be57409a2d2f 100644
--- a/civicrm/templates/CRM/Export/Form/Map.tpl
+++ b/civicrm/templates/CRM/Export/Form/Map.tpl
@@ -23,7 +23,7 @@
   <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
 
   <crm-angular-js modules="exportui">
-    <div class="crm-export-field-selector-outer" ng-controller="ExportUiCtrl" ng-include="'~/exportui/export.html'"></div>
+    <crm-export-ui class="crm-export-field-selector-outer"></crm-export-ui>
   </crm-angular-js>
 
   <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
diff --git a/civicrm/templates/CRM/Group/Form/Edit.tpl b/civicrm/templates/CRM/Group/Form/Edit.tpl
index 912a9f88f449b37c3ade4db8b81e517ec874f10d..dc493bf44339155a98b142389259c80066c03c7e 100644
--- a/civicrm/templates/CRM/Group/Form/Edit.tpl
+++ b/civicrm/templates/CRM/Group/Form/Edit.tpl
@@ -69,7 +69,7 @@
       <td>{$form.is_active.html}</td>
     </tr>
 
-   {if !empty($group.created_by)}
+   {if $group.created_by}
       <tr class="crm-group-form-block-created">
         <td class="label">{ts}Created By{/ts}</td>
         <td>{$group.created_by}</td>
@@ -105,10 +105,10 @@
 
   {literal}
   <script type="text/javascript">
-    {/literal}{if !empty($freezeMailingList)}{literal}
+    {/literal}{if $freezeMailingList}{literal}
     cj('input[type=checkbox][name="group_type[{/literal}{$freezeMailingList}{literal}]"]').prop('disabled',true);
     {/literal}{/if}{literal}
-    {/literal}{if !empty($hideMailingList)}{literal}
+    {/literal}{if $hideMailingList}{literal}
     cj('input[type=checkbox][name="group_type[{/literal}{$hideMailingList}{literal}]"]').hide();
     cj('label[for="group_type[{/literal}{$hideMailingList}{literal}]"]').hide();
     {/literal}{/if}{literal}
diff --git a/civicrm/templates/CRM/Group/Form/GroupsCommon.tpl b/civicrm/templates/CRM/Group/Form/GroupsCommon.tpl
index 0a78e42db5e5587ce9bbe48f4605d93766c94807..3b5e5f0080e8292145105d6c7fc34a4b1b117e60 100644
--- a/civicrm/templates/CRM/Group/Form/GroupsCommon.tpl
+++ b/civicrm/templates/CRM/Group/Form/GroupsCommon.tpl
@@ -31,7 +31,7 @@
     </tr>
   </table>
 {/if}
-{if !empty($form.organization_id)}
+{if array_key_exists('organization_id', $form)}
   <h3>{ts}Associated Organization{/ts} {help id="id-group-organization" file="CRM/Group/Page/Group.hlp"}</h3>
   <table class="form-layout-compressed">
     <tr class="crm-group-form-block-organization">
diff --git a/civicrm/templates/CRM/Mailing/Page/Browse.tpl b/civicrm/templates/CRM/Mailing/Page/Browse.tpl
index c0fdd64d5a360d55eba9555e07d64e077c325ec8..01482f230bda363014058971b9743a088725e13c 100644
--- a/civicrm/templates/CRM/Mailing/Page/Browse.tpl
+++ b/civicrm/templates/CRM/Mailing/Page/Browse.tpl
@@ -67,7 +67,7 @@
         <td class="crm-mailing-scheduled">{$row.scheduled}</td>
         <td class="crm-mailing-start">{$row.start}</td>
         <td class="crm-mailing-end">{$row.end}</td>
-       {if call_user_func(array('CRM_Campaign_BAO_Campaign','isCampaignEnable'))}
+       {if call_user_func(array('CRM_Campaign_BAO_Campaign','isComponentEnabled'))}
           <td class="crm-mailing-campaign">{$row.campaign}</td>
       {/if}
         <td>{$row.action|smarty:nodefaults|replace:'xx':$row.id}</td>
diff --git a/civicrm/templates/CRM/Price/Form/Field.tpl b/civicrm/templates/CRM/Price/Form/Field.tpl
index 192dc1a0245dbb3f52dae25b3979e701f50318c1..a449865a09d6218223db9f65b7e8e8ffd898b98d 100644
--- a/civicrm/templates/CRM/Price/Form/Field.tpl
+++ b/civicrm/templates/CRM/Price/Form/Field.tpl
@@ -156,7 +156,7 @@
       <td class="label">{$form.is_display_amounts.label}</td>
       <td>{$form.is_display_amounts.html}
       {if $action neq 4}
-        <div class="description">{ts}Display amount next to each option? If no, then the amount should be in the option description.{/ts}</div>
+        <div class="description">{ts}Display amount next to each option?{/ts}</div>
       {/if}
       </td>
     </tr>
diff --git a/civicrm/templates/CRM/Price/Form/Option.tpl b/civicrm/templates/CRM/Price/Form/Option.tpl
index ea6eb23c3b726485741610564ded48ba0af076fa..6924efaad0fbaf981b8bee9db7aec29dd6d30e55 100644
--- a/civicrm/templates/CRM/Price/Form/Option.tpl
+++ b/civicrm/templates/CRM/Price/Form/Option.tpl
@@ -40,7 +40,7 @@
         <td>{$form.non_deductible_amount.html}</td>
       </tr>
       <tr class="crm-price-option-form-block-description">
-        <td class="label">{$form.description.label}</td>
+        <td class="label">{$form.description.label}<br />{help id="description" file="CRM/Price/Page/Field.hlp"}</td>
         <td>{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_price_field_value' field='description' id=$optionId}{/if}{$form.description.html}</td>
       </tr>
       <tr class="crm-price-option-form-block-help-pre">
diff --git a/civicrm/templates/CRM/Price/Form/PriceSet.tpl b/civicrm/templates/CRM/Price/Form/PriceSet.tpl
index 117243e3ee02d2f5c95ecb30f9e59b68ddfcdfce..9eabeaf89ae114f9b538bf51871d1d6468d0c1d6 100644
--- a/civicrm/templates/CRM/Price/Form/PriceSet.tpl
+++ b/civicrm/templates/CRM/Price/Form/PriceSet.tpl
@@ -73,10 +73,10 @@
                           {$amount|crmMoney:$currency}
                         {elseif $displayOpt == 'Inclusive'}
                           {$amount|crmMoney:$currency}
-                          <span class='crm-price-amount-label'> {ts 1=$taxTerm 2=$option.tax_amount|crmMoney:$currency}(includes %1 of %2){/ts}</span>
+                          <span class='crm-price-amount-tax'> {ts 1=$taxTerm 2=$option.tax_amount|crmMoney:$currency}(includes %1 of %2){/ts}</span>
                         {else}
                           {$option.amount|crmMoney:$currency}
-                          <span class='crm-price-amount-label'> + {$option.tax_amount|crmMoney:$currency} {$taxTerm}</span>
+                          <span class='crm-price-amount-tax'> + {$option.tax_amount|crmMoney:$currency} {$taxTerm}</span>
                         {/if}
                       {else}
                         {$option.amount|crmMoney:$currency} {$fieldHandle} {$form.$fieldHandle.frozen}
diff --git a/civicrm/templates/CRM/Price/Page/Field.hlp b/civicrm/templates/CRM/Price/Page/Field.hlp
index e8573e1281dbe0015038d91ce2620452bfab739c..e2cd6f1ee8543d65a80cfbac22ba0844750b23ba 100644
--- a/civicrm/templates/CRM/Price/Page/Field.hlp
+++ b/civicrm/templates/CRM/Price/Page/Field.hlp
@@ -89,5 +89,12 @@
   {ts}Membership Type{/ts}
 {/htxt}
 {htxt id="id-membership-type"}
-    {ts}If you select a membership type, a membership will be created or renewed when users select this option. Leave this column blank for non-membership options (e.g. magazine subscription).{/ts} 
+    {ts}If you select a membership type, a membership will be created or renewed when users select this option. Leave this column blank for non-membership options (e.g. magazine subscription).{/ts}
+{/htxt}
+
+{htxt id="description-title"}
+  {ts}Description{/ts}
+{/htxt}
+{htxt id="description"}
+    {ts}Description is not shown publicly.{/ts}
 {/htxt}
diff --git a/civicrm/templates/CRM/Report/Form/Activity.tpl b/civicrm/templates/CRM/Report/Form/Activity.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Activity.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/ActivitySummary.tpl b/civicrm/templates/CRM/Report/Form/ActivitySummary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/ActivitySummary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Campaign/SurveyDetails.tpl b/civicrm/templates/CRM/Report/Form/Campaign/SurveyDetails.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Campaign/SurveyDetails.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Case/Demographics.tpl b/civicrm/templates/CRM/Report/Form/Case/Demographics.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Case/Demographics.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Case/Detail.tpl b/civicrm/templates/CRM/Report/Form/Case/Detail.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Case/Detail.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Case/Summary.tpl b/civicrm/templates/CRM/Report/Form/Case/Summary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Case/Summary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Case/TimeSpent.tpl b/civicrm/templates/CRM/Report/Form/Case/TimeSpent.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Case/TimeSpent.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contact/CurrentEmployer.tpl b/civicrm/templates/CRM/Report/Form/Contact/CurrentEmployer.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contact/CurrentEmployer.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contact/Log.tpl b/civicrm/templates/CRM/Report/Form/Contact/Log.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contact/Log.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Bookkeeping.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Bookkeeping.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Bookkeeping.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Detail.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Detail.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Detail.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/History.tpl b/civicrm/templates/CRM/Report/Form/Contribute/History.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/History.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/HouseholdSummary.tpl b/civicrm/templates/CRM/Report/Form/Contribute/HouseholdSummary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/HouseholdSummary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Lybunt.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Lybunt.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Lybunt.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/OrganizationSummary.tpl b/civicrm/templates/CRM/Report/Form/Contribute/OrganizationSummary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/OrganizationSummary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/PCP.tpl b/civicrm/templates/CRM/Report/Form/Contribute/PCP.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/PCP.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Repeat.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Repeat.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Repeat.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/SoftCredit.tpl b/civicrm/templates/CRM/Report/Form/Contribute/SoftCredit.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/SoftCredit.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Summary.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Summary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Summary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/Sybunt.tpl b/civicrm/templates/CRM/Report/Form/Contribute/Sybunt.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/Sybunt.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Contribute/TopDonor.tpl b/civicrm/templates/CRM/Report/Form/Contribute/TopDonor.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Contribute/TopDonor.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Event/ParticipantListCount.tpl b/civicrm/templates/CRM/Report/Form/Event/ParticipantListCount.tpl
deleted file mode 100644
index 2dae3f79fd5be81a63615f22a22a46bb01ce5bd1..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Event/ParticipantListCount.tpl
+++ /dev/null
@@ -1,11 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
-
diff --git a/civicrm/templates/CRM/Report/Form/Event/Summary.tpl b/civicrm/templates/CRM/Report/Form/Event/Summary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Event/Summary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Pledge/Detail.tpl b/civicrm/templates/CRM/Report/Form/Pledge/Detail.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Pledge/Detail.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Pledge/Pbnp.tpl b/civicrm/templates/CRM/Report/Form/Pledge/Pbnp.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Pledge/Pbnp.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Pledge/Summary.tpl b/civicrm/templates/CRM/Report/Form/Pledge/Summary.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Pledge/Summary.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/templates/CRM/Report/Form/Tabs/GroupBy.tpl b/civicrm/templates/CRM/Report/Form/Tabs/GroupBy.tpl
index c53b7f579ff1df8decbf758430383103d0d2a898..4e5a7e2d1ef197c0ea6d9a70a4d755eaa475a8f2 100644
--- a/civicrm/templates/CRM/Report/Form/Tabs/GroupBy.tpl
+++ b/civicrm/templates/CRM/Report/Form/Tabs/GroupBy.tpl
@@ -15,7 +15,7 @@
         {assign var="count" value=`$count+1`}
         <td width="25%">
           {$form.group_bys[$gbElem].html}
-          {if $form.group_bys_freq[$gbElem].html}:<br>
+          {if $form.group_bys_freq && array_key_exists($gbElem, $form.group_bys_freq)}:<br>
             &nbsp;&nbsp;{$form.group_bys_freq[$gbElem].label}&nbsp;{$form.group_bys_freq[$gbElem].html}
           {/if}
         </td>
diff --git a/civicrm/templates/CRM/Report/Form/Walklist/Walklist.tpl b/civicrm/templates/CRM/Report/Form/Walklist/Walklist.tpl
deleted file mode 100644
index 5f5a9d4f66cf04b3dc2f1aacfe0321521df82d0f..0000000000000000000000000000000000000000
--- a/civicrm/templates/CRM/Report/Form/Walklist/Walklist.tpl
+++ /dev/null
@@ -1,10 +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       |
- +--------------------------------------------------------------------+
-*}
-{include file="CRM/Report/Form.tpl"}
diff --git a/civicrm/vendor/autoload.php b/civicrm/vendor/autoload.php
index f77ce90320d9c6ebf4881fc0e7848f27c98651e8..32c233f3258baec252999edebe0fb3c2c0f1eb72 100644
--- a/civicrm/vendor/autoload.php
+++ b/civicrm/vendor/autoload.php
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
 
 require_once __DIR__ . '/composer/autoload_real.php';
 
-return ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b::getLoader();
+return ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c::getLoader();
diff --git a/civicrm/vendor/composer/autoload_namespaces.php b/civicrm/vendor/composer/autoload_namespaces.php
index 9883eccf19ebd54898c96cc1efa5af87401014bb..c2f335dc3125928ad9355da517d8e9bcb730464c 100644
--- a/civicrm/vendor/composer/autoload_namespaces.php
+++ b/civicrm/vendor/composer/autoload_namespaces.php
@@ -10,7 +10,7 @@ return array(
     'TOGoS_GitIgnore_' => array($vendorDir . '/togos/gitignore/src/main/php'),
     'PHPUnit_' => array($baseDir . '/packages'),
     'Net' => array($vendorDir . '/pear/net_socket', $vendorDir . '/pear/net_smtp'),
-    'Mail' => array($vendorDir . '/pear/mail_mime', $vendorDir . '/pear/mail'),
+    'Mail' => array($vendorDir . '/pear/mail', $vendorDir . '/pear/mail_mime'),
     'Lurker' => array($vendorDir . '/totten/lurkerlite/src'),
     'Log' => array($vendorDir . '/pear/log'),
     'HTMLPurifier' => array($vendorDir . '/ezyang/htmlpurifier/library'),
diff --git a/civicrm/vendor/composer/autoload_real.php b/civicrm/vendor/composer/autoload_real.php
index aec3274d8202a1216c1990cae48f7c5ee0776e42..1c4d095f9c1689149b15bdb69c2fa4d59b50e198 100644
--- a/civicrm/vendor/composer/autoload_real.php
+++ b/civicrm/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
 
 // autoload_real.php @generated by Composer
 
-class ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b
+class ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c
 {
     private static $loader;
 
@@ -24,22 +24,22 @@ class ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b
 
         require __DIR__ . '/platform_check.php';
 
-        spl_autoload_register(array('ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b', 'loadClassLoader'), true, true);
+        spl_autoload_register(array('ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c', 'loadClassLoader'), true, true);
         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
-        spl_autoload_unregister(array('ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b', 'loadClassLoader'));
+        spl_autoload_unregister(array('ComposerAutoloaderInitcfd7e33cc9332dfed87d0b9a6112a22c', 'loadClassLoader'));
 
         $includePaths = require __DIR__ . '/include_paths.php';
         $includePaths[] = get_include_path();
         set_include_path(implode(PATH_SEPARATOR, $includePaths));
 
         require __DIR__ . '/autoload_static.php';
-        call_user_func(\Composer\Autoload\ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::getInitializer($loader));
+        call_user_func(\Composer\Autoload\ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::getInitializer($loader));
 
         $loader->register(true);
 
-        $includeFiles = \Composer\Autoload\ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$files;
+        $includeFiles = \Composer\Autoload\ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$files;
         foreach ($includeFiles as $fileIdentifier => $file) {
-            composerRequire4bc0ee9f39916e970c783052c5cc6f7b($fileIdentifier, $file);
+            composerRequirecfd7e33cc9332dfed87d0b9a6112a22c($fileIdentifier, $file);
         }
 
         return $loader;
@@ -51,7 +51,7 @@ class ComposerAutoloaderInit4bc0ee9f39916e970c783052c5cc6f7b
  * @param string $file
  * @return void
  */
-function composerRequire4bc0ee9f39916e970c783052c5cc6f7b($fileIdentifier, $file)
+function composerRequirecfd7e33cc9332dfed87d0b9a6112a22c($fileIdentifier, $file)
 {
     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
diff --git a/civicrm/vendor/composer/autoload_static.php b/civicrm/vendor/composer/autoload_static.php
index c36f1e9af29e819bd75680d74a99741c44224cdf..5805bdfbc7815c5870688b83637ba9c80320d996 100644
--- a/civicrm/vendor/composer/autoload_static.php
+++ b/civicrm/vendor/composer/autoload_static.php
@@ -4,7 +4,7 @@
 
 namespace Composer\Autoload;
 
-class ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b
+class ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c
 {
     public static $files = array (
         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
@@ -515,8 +515,8 @@ class ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b
         array (
             'Mail' => 
             array (
-                0 => __DIR__ . '/..' . '/pear/mail_mime',
-                1 => __DIR__ . '/..' . '/pear/mail',
+                0 => __DIR__ . '/..' . '/pear/mail',
+                1 => __DIR__ . '/..' . '/pear/mail_mime',
             ),
         ),
         'L' => 
@@ -738,11 +738,11 @@ class ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b
     public static function getInitializer(ClassLoader $loader)
     {
         return \Closure::bind(function () use ($loader) {
-            $loader->prefixLengthsPsr4 = ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$prefixLengthsPsr4;
-            $loader->prefixDirsPsr4 = ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$prefixDirsPsr4;
-            $loader->prefixesPsr0 = ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$prefixesPsr0;
-            $loader->fallbackDirsPsr0 = ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$fallbackDirsPsr0;
-            $loader->classMap = ComposerStaticInit4bc0ee9f39916e970c783052c5cc6f7b::$classMap;
+            $loader->prefixLengthsPsr4 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixLengthsPsr4;
+            $loader->prefixDirsPsr4 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixDirsPsr4;
+            $loader->prefixesPsr0 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$prefixesPsr0;
+            $loader->fallbackDirsPsr0 = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$fallbackDirsPsr0;
+            $loader->classMap = ComposerStaticInitcfd7e33cc9332dfed87d0b9a6112a22c::$classMap;
 
         }, null, ClassLoader::class);
     }
diff --git a/civicrm/vendor/composer/include_paths.php b/civicrm/vendor/composer/include_paths.php
index 3647cc2d24b5c94556070e01ea1f8d86ad39dc6c..5386e5c83092fb28fb0ad8c81e99f6ce4e93ead5 100644
--- a/civicrm/vendor/composer/include_paths.php
+++ b/civicrm/vendor/composer/include_paths.php
@@ -12,9 +12,9 @@ return array(
     $vendorDir . '/pear/console_getopt',
     $vendorDir . '/pear/pear-core-minimal/src',
     $vendorDir . '/pear/db',
-    $vendorDir . '/pear/mail_mime',
     $vendorDir . '/pear/log',
     $vendorDir . '/pear/mail',
+    $vendorDir . '/pear/mail_mime',
     $vendorDir . '/pear/net_socket',
     $vendorDir . '/pear/net_smtp',
     $vendorDir . '/pear/validate_finance_creditcard',
diff --git a/civicrm/vendor/composer/installed.json b/civicrm/vendor/composer/installed.json
index 03efd7f1312d20447438c21e55f513d232586b0a..d8d88ddaa152aa6333aa716e323b05e2cd13686a 100644
--- a/civicrm/vendor/composer/installed.json
+++ b/civicrm/vendor/composer/installed.json
@@ -5637,18 +5637,26 @@
         },
         {
             "name": "tplaner/when",
-            "version": "3.0.0+php53",
-            "version_normalized": "3.0.0.0",
+            "version": "v3.1.5",
+            "version_normalized": "3.1.5.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tplaner/When.git",
+                "reference": "8865acc235df8f57c2b229517c57c613b11ce4aa"
+            },
             "dist": {
                 "type": "zip",
-                "url": "https://github.com/tplaner/When/archive/c1ec099f421bff354cc5c929f83b94031423fc80.zip"
+                "url": "https://api.github.com/repos/tplaner/When/zipball/8865acc235df8f57c2b229517c57c613b11ce4aa",
+                "reference": "8865acc235df8f57c2b229517c57c613b11ce4aa",
+                "shasum": ""
             },
             "require": {
-                "php": ">=5.3.0"
+                "php": ">=7.1.3"
             },
             "require-dev": {
-                "phpunit/phpunit": "~4.0"
+                "phpunit/phpunit": "^7.0"
             },
+            "time": "2021-09-24T14:09:59+00:00",
             "type": "library",
             "installation-source": "dist",
             "autoload": {
@@ -5656,6 +5664,7 @@
                     "When\\": "src/"
                 }
             },
+            "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
@@ -5668,11 +5677,16 @@
             "description": "Date/Calendar recursion library.",
             "homepage": "https://github.com/tplaner/When",
             "keywords": [
-                "DateTime",
                 "date",
+                "datetime",
                 "recurrence",
+                "repeat",
                 "time"
             ],
+            "support": {
+                "issues": "https://github.com/tplaner/When/issues",
+                "source": "https://github.com/tplaner/When/tree/v3.1.5"
+            },
             "install-path": "../tplaner/when"
         },
         {
diff --git a/civicrm/vendor/composer/installed.php b/civicrm/vendor/composer/installed.php
index 624a032c7053dd05367c76e4f7e8c368b30634df..b1ebe90103403f98d7cf8036ea76d6ecbe9bdb1d 100644
--- a/civicrm/vendor/composer/installed.php
+++ b/civicrm/vendor/composer/installed.php
@@ -1,9 +1,9 @@
 <?php return array(
     'root' => array(
         'name' => 'civicrm/civicrm-core',
-        'pretty_version' => '5.54.x-dev',
-        'version' => '5.54.9999999.9999999-dev',
-        'reference' => 'fe7de90d3fc2fe8631adca2439eaa44a27db41c4',
+        'pretty_version' => '5.55.x-dev',
+        'version' => '5.55.9999999.9999999-dev',
+        'reference' => '50ba554869bfcfedc5729c7764eeb242f8e87188',
         'type' => 'library',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
@@ -56,9 +56,9 @@
             'dev_requirement' => false,
         ),
         'civicrm/civicrm-core' => array(
-            'pretty_version' => '5.54.x-dev',
-            'version' => '5.54.9999999.9999999-dev',
-            'reference' => 'fe7de90d3fc2fe8631adca2439eaa44a27db41c4',
+            'pretty_version' => '5.55.x-dev',
+            'version' => '5.55.9999999.9999999-dev',
+            'reference' => '50ba554869bfcfedc5729c7764eeb242f8e87188',
             'type' => 'library',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
@@ -800,9 +800,9 @@
             'dev_requirement' => false,
         ),
         'tplaner/when' => array(
-            'pretty_version' => '3.0.0+php53',
-            'version' => '3.0.0.0',
-            'reference' => NULL,
+            'pretty_version' => 'v3.1.5',
+            'version' => '3.1.5.0',
+            'reference' => '8865acc235df8f57c2b229517c57c613b11ce4aa',
             'type' => 'library',
             'install_path' => __DIR__ . '/../tplaner/when',
             'aliases' => array(),
diff --git a/civicrm/vendor/tplaner/when/.github/workflows/tests.yml b/civicrm/vendor/tplaner/when/.github/workflows/tests.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d424c358882dcd2714b6db4c4f09e0ee6236cc69
--- /dev/null
+++ b/civicrm/vendor/tplaner/when/.github/workflows/tests.yml
@@ -0,0 +1,39 @@
+name: tests
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+    
+    strategy:
+      fail-fast: true
+      matrix:
+        php: ['7.1', '7.2', '7.3', '7.4']
+        stability: [prefer-lowest, prefer-stable]
+
+    steps:
+    - name: Checkout
+      uses: actions/checkout@v1
+      
+    - name: Validate composer.json and composer.lock
+      run: composer validate --strict
+
+    - name: Setup PHP
+      uses: shivammathur/setup-php@v2
+      with:
+        php-version: ${{ matrix.php }}
+
+    - name: Check PHP Version
+      run: php -v
+
+    - name: Composer install
+      run: composer install --prefer-dist --no-progress
+      
+    - name: phpunit tests
+      run: ./vendor/bin/phpunit
diff --git a/civicrm/vendor/tplaner/when/.travis.yml b/civicrm/vendor/tplaner/when/.travis.yml
index e4a2db0a63505f713d40284b91f0511c0ada0671..db6cc5cfde9a540b8a4d7a573b95973fcdfbd60d 100644
--- a/civicrm/vendor/tplaner/when/.travis.yml
+++ b/civicrm/vendor/tplaner/when/.travis.yml
@@ -1,12 +1,13 @@
 language: php
 
 php:
-  - 5.3
-  - 5.4
-  - 5.5
+  - 7.1
+  - 7.2
+  - 7.3
 
 before_script:
-  - composer selfupdate
-  - composer install
+  - travis_retry composer self-update
+  - travis_retry composer update --no-interaction --prefer-source
 
-script: phpunit
+script:
+  - vendor/bin/phpunit
diff --git a/civicrm/vendor/tplaner/when/README.md b/civicrm/vendor/tplaner/when/README.md
index 7bb00674b798a824956ed12882c79a2a7d0c8f65..13929e4b32eaa933e6876035e16c8b059474f975 100644
--- a/civicrm/vendor/tplaner/when/README.md
+++ b/civicrm/vendor/tplaner/when/README.md
@@ -1,25 +1,20 @@
 # When
-Date/Calendar recursion library for PHP 5.3+
+Date/Calendar recursion library for PHP 7.1+
 
-[![Build Status](https://travis-ci.org/tplaner/When.png?branch=develop)](https://travis-ci.org/tplaner/When)
+[![Build Status](https://github.com/tplaner/When/actions/workflows/tests.yml/badge.svg)](https://github.com/tplaner/When/actions)
+[![Total Downloads](https://img.shields.io/packagist/dt/tplaner/When)](https://packagist.org/packages/tplaner/When)
+[![Latest Stable Version](https://img.shields.io/packagist/v/tplaner/When)](https://packagist.org/packages/tplaner/When)
+[![License](https://img.shields.io/packagist/l/tplaner/When)](https://packagist.org/packages/tplaner/When)
 
-Author: Tom Planer
+Author: [Tom Planer](https://twitter.com/tplaner)
 
 ## Installation
 ```
-$ composer require tplaner/when
-```
-
-```
-{
-    "require": {
-        "tplaner/when": "2.*"
-    }
-}
+composer require tplaner/When
 ```
 
 ## Current Features
-Currently this version does everything version 1 was capable of, it also supports `byhour`, `byminute`, and `bysecond`. Please check the [unit tests](https://github.com/tplaner/When/tree/develop/tests) for information about how to use it.
+When offers full support for [RFC5455 Recurrence Rule](https://datatracker.ietf.org/doc/html/rfc5545#section-3.8.5) features (and some bonus features). Please check the [unit tests](https://github.com/tplaner/When/tree/master/tests) for information and examples about how to use it.
 
 Here are some basic examples.
 
@@ -40,7 +35,7 @@ print_r($r->occurrences);
 // friday the 13th for the next 5 occurrences rrule
 $r = new When();
 $r->startDate(new DateTime("19980213T090000"))
-  ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13")
+  ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13;COUNT=5")
   ->generateOccurrences();
 
 print_r($r->occurrences);
@@ -66,11 +61,138 @@ $r = new When();
 $r->startDate(new DateTime("19980213T090000"))
   ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13");
 
-
 $occurrences = $r->getOccurrencesBetween(new DateTime('2018-01-01 09:00:00'),
                                          new DateTime('2019-01-01 09:00:00'));
 print_r($occurrences);
 ```
 
-## License
-When is licensed under the MIT License, see `LICENSE` for specific details.
+## InvalidStartDate Exception: The start date must be the first occurrence
+
+According to [the specification](https://datatracker.ietf.org/doc/html/rfc5545) the starting date should be the first recurring date. This can often be troublesome, especially if you're generating the recurring dates from user input as it will throw an exception. You can disable this functionality easily:
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+// get the last Friday of the month for the next 5 occurrences
+$r->startDate(new DateTime())
+  ->rrule("FREQ=MONTHLY;BYDAY=-1FR;COUNT=5")
+  ->generateOccurrences();
+
+print_r($r->occurrences);
+```
+
+## Additional examples:
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+// second to last day of the month
+$r->startDate(new DateTime())
+  ->rrule("FREQ=MONTHLY;BYMONTHDAY=-2;COUNT=5")
+  ->generateOccurrences();
+
+print_r($r->occurrences);
+```
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+// every other week
+$r->startDate(new DateTime())
+    ->rrule("FREQ=WEEKLY;INTERVAL=2;COUNT=10")
+    ->generateOccurrences();
+
+print_r($r->occurrences);
+```
+
+```php
+$r1 = new When();
+$r2 = new When();
+$r1->RFC5545_COMPLIANT = When::IGNORE;
+$r2->RFC5545_COMPLIANT = When::IGNORE;
+
+// complex example of a payment schedule
+// borrowed from: https://www.mikeyroy.com/2019/10/25/google-calendar-recurring-event-for-twice-monthly-payroll-only-on-weekdays/
+//
+// you're paid on the 15th, (or closest to it, but only on a weekday)
+$r1->startDate(new DateTime())
+   ->rrule("FREQ=MONTHLY;INTERVAL=1;BYSETPOS=-1;BYDAY=MO,TU,WE,TH,FR;BYMONTHDAY=13,14,15;COUNT=12")
+   ->generateOccurrences();
+
+// you're also paid on the last weekday of the month
+$r2->startDate(new DateTime())
+    ->rrule("FREQ=MONTHLY;INTERVAL=1;BYSETPOS=-1;BYDAY=MO,TU,WE,TH,FR;BYMONTHDAY=26,27,28,29,30,31;COUNT=12")
+    ->generateOccurrences();
+
+$totalPaydays = count($r1->occurrences);
+for ($i = 0; $i < $totalPaydays; $i++)
+{
+    echo "You'll be paid on: " . $r1->occurrences[$i]->format('F d, Y') . "\n";
+    echo "You'll be paid on: " . $r2->occurrences[$i]->format('F d, Y') . "\n";
+}
+```
+
+## Performance
+
+When is pretty fast, and shouldn't be able to loop infinitely. This is because the gregorian calendar actually repeats fully every 400 years. Therefore, this is an imposed upper limit to When, it will not generate occurrences more than 400 years into the future, and if it can't find a match in the next 400 years the pattern just doesn't exist.
+
+By default, we do not generate more than 200 occurrences, though this can be configured simply by specifying a higher `COUNT` or by modifying the `$rangeLimit` prior to calling `generateOccurrences()`:
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+$r->startDate(new DateTime())
+  ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13")
+  ->generateOccurrences();
+
+// will generate an array of 200
+print_r($r->occurrences);
+```
+
+The following is a pretty intensive benchmark the final occurrence is in the year 2254. On my machine this generates the results in about `0.28s`.
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+$r->startDate(new DateTime(20210101))
+  ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13;COUNT=400")
+  ->generateOccurrences();
+
+// will generate an array of 400
+print_r($r->occurrences);
+```
+
+`COUNT` with an `UNTIL`, only 5 Friday the 13ths from 2021 to 2025.
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+$r->startDate(new DateTime(20210101))
+  ->rrule("FREQ=MONTHLY;BYDAY=FR;BYMONTHDAY=13;COUNT=400;UNTIL=20250101")
+  ->generateOccurrences();
+
+// will generate until 2023-01-01 or 400
+print_r($r->occurrences);
+```
+
+Limiting by `$rangeLimit`:
+
+```php
+$r = new When();
+$r->RFC5545_COMPLIANT = When::IGNORE;
+
+$r->rangeLimit = 400;
+
+$r->startDate(new DateTime())
+  ->rrule("FREQ=MONTHLY;BYDAY=-1FR")
+  ->generateOccurrences();
+
+// 400 occurrences, limited by the rangeLimit
+print_r($r->occurrences);
+```
diff --git a/civicrm/vendor/tplaner/when/composer.json b/civicrm/vendor/tplaner/when/composer.json
index f0028ebd71dfb4f622a3af4d8423b6dc274192fa..241b65faed2bf73842cc61c81be2da3dfebb4f34 100755
--- a/civicrm/vendor/tplaner/when/composer.json
+++ b/civicrm/vendor/tplaner/when/composer.json
@@ -2,7 +2,7 @@
     "name": "tplaner/when",
     "type": "library",
     "description": "Date/Calendar recursion library.",
-    "keywords": ["recurrence", "date", "time", "DateTime"],
+    "keywords": ["recurrence", "date", "time", "DateTime", "repeat"],
     "homepage": "https://github.com/tplaner/When",
     "license": "MIT",
     "authors": [
@@ -12,15 +12,18 @@
         }
     ],
     "require": {
-        "php": ">=5.3.0"
+        "php": ">=7.1.3"
     },
     "require-dev": {
-        "phpunit/phpunit": "~4.0"
+        "phpunit/phpunit": "^7.0"
     },
     "autoload": {
         "psr-4": {
             "When\\": "src/"
         }
     },
+    "scripts": {
+        "test": "vendor/bin/phpunit"
+    },
     "minimum-stability": "dev"
-}
\ No newline at end of file
+}
diff --git a/civicrm/vendor/tplaner/when/phpunit.xml b/civicrm/vendor/tplaner/when/phpunit.xml
index ee89e40f67cfd9dab1a796645e70c4a5050fd188..688653258d79ee1dcc166616492f7c186d6ef451 100644
--- a/civicrm/vendor/tplaner/when/phpunit.xml
+++ b/civicrm/vendor/tplaner/when/phpunit.xml
@@ -7,16 +7,10 @@
          convertNoticesToExceptions="true"
          convertWarningsToExceptions="true"
          processIsolation="false"
-         stopOnFailure="true"
-         syntaxCheck="false">
+         stopOnFailure="true">
     <testsuites>
         <testsuite name="When tests">
             <directory>./tests/</directory>
         </testsuite>
     </testsuites>
-
-    <logging>
-        <log type="coverage-html" target="./report" charset="UTF-8"
-            highlight="false" lowUpperBound="35" highLowerBound="70"/>
-    </logging>
-</phpunit>
\ No newline at end of file
+</phpunit>
diff --git a/civicrm/vendor/tplaner/when/src/Valid.php b/civicrm/vendor/tplaner/when/src/Valid.php
index 476a63264f9d6a1820e26d6c63195577a40baf64..8be96ae9915d99c9f97d25075f8a3640e716698a 100644
--- a/civicrm/vendor/tplaner/when/src/Valid.php
+++ b/civicrm/vendor/tplaner/when/src/Valid.php
@@ -23,6 +23,8 @@ class Valid
         {
             // if it isn't negative, it's positive
             $day = ltrim($day, "+");
+            // zero is allowed, but we don't need to validate it
+            $day = ltrim($day, "0");
             $day = trim($day);
 
             $ordwk = 1;
@@ -209,9 +211,9 @@ class Valid
      */
     public static function dateTimeObject($dateTime)
     {
-        return (is_object($dateTime) && $dateTime instanceof \DateTime);
+        return (is_object($dateTime) && ($dateTime instanceof \DateTimeInterface));
     }
-    
+
     /**
      * Test for a list of valid DateTime objects
      *
diff --git a/civicrm/vendor/tplaner/when/src/When.php b/civicrm/vendor/tplaner/when/src/When.php
index f5d0e925581ab7baa4d9bad30934d9ab80f49a63..e8b88dbba01711626c33ebfde762f2b92b8c39da 100644
--- a/civicrm/vendor/tplaner/when/src/When.php
+++ b/civicrm/vendor/tplaner/when/src/When.php
@@ -2,10 +2,15 @@
 
 namespace When;
 
-class When extends \DateTime
+use DateTime;
+use Exception;
+use DateInterval;
+use DateTimezone;
+use InvalidArgumentException;
+
+class When extends DateTime
 {
     const EXCEPTION = 0;
-    const NOTICE = 1;
     const IGNORE = 2;
 
     public $RFC5545_COMPLIANT = self::EXCEPTION;
@@ -14,7 +19,7 @@ class When extends \DateTime
     public $until;
     public $count;
     public $interval;
-    public $exclusions = array();
+    public $exclusions = [];
 
     public $byseconds;
     public $byminutes;
@@ -26,14 +31,15 @@ class When extends \DateTime
     public $bymonths;
     public $bysetpos;
     public $wkst;
+    public $shouldadjustmonthend = false;
 
-    public $occurrences = array();
-    public $rangeLimit  = 200;
+    public $occurrences = [];
+    public $rangeLimit = 200;
 
     public function __construct($time = "now", $timezone = NULL)
     {
         parent::__construct($time, $timezone);
-        $this->startDate = new \DateTime($time, $timezone);
+        $this->startDate = new DateTime($time, $timezone);
     }
 
     public function startDate($startDate)
@@ -45,7 +51,7 @@ class When extends \DateTime
             return $this;
         }
 
-	    throw new \InvalidArgumentException("startDate: Accepts valid DateTime objects");
+        throw new InvalidArgumentException("startDate: Accepts valid DateTime objects");
     }
 
     public function freq($frequency)
@@ -57,7 +63,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("freq: Accepts " . rtrim(implode(Valid::$frequencies, ", "), ","));
+        throw new InvalidArgumentException("freq: Accepts " . rtrim(implode(", ", Valid::$frequencies), ","));
     }
 
     public function until($endDate)
@@ -68,7 +74,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("until: Accepts valid DateTime objects");
+        throw new InvalidArgumentException("until: Accepts valid DateTime objects");
     }
 
     public function count($count)
@@ -80,7 +86,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("count: Accepts numeric values");
+        throw new InvalidArgumentException("count: Accepts numeric values");
     }
 
     public function interval($interval)
@@ -92,7 +98,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("interval: Accepts numeric values");
+        throw new InvalidArgumentException("interval: Accepts numeric values");
     }
 
     public function bysecond($seconds, $delimiter = ",")
@@ -102,7 +108,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("bysecond: Accepts numeric values between 0 and 60");
+        throw new InvalidArgumentException("bysecond: Accepts numeric values between 0 and 60");
     }
 
     public function byminute($minutes, $delimiter = ",")
@@ -112,7 +118,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("byminute: Accepts numeric values between 0 and 59");
+        throw new InvalidArgumentException("byminute: Accepts numeric values between 0 and 59");
     }
 
     public function byhour($hours, $delimiter = ",")
@@ -122,7 +128,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("byhour: Accepts numeric values between 0 and 23");
+        throw new InvalidArgumentException("byhour: Accepts numeric values between 0 and 23");
     }
 
     public function byday($bywdaylist, $delimiter = ",")
@@ -133,8 +139,7 @@ class When extends \DateTime
             $bywdaylist = trim($bywdaylist, $delimiter);
 
             $bywdaylist = explode($delimiter, $bywdaylist);
-        }
-        else if(is_string($bywdaylist))
+        } else if (is_string($bywdaylist))
         {
             // remove any accidental delimiters
             $bywdaylist = trim($bywdaylist, $delimiter);
@@ -149,75 +154,76 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("bydays: Accepts (optional) positive and negative values between 1 and 53 followed by a valid week day");
+        throw new InvalidArgumentException("bydays: Accepts (optional) positive and negative values between -53 and 53 followed by a valid week day");
     }
-    
-    public function exclusions ($exclusionList, $delimiter = ",") {
-        
-        if (is_string($exclusionList)) {
+
+    public function exclusions($exclusionList, $delimiter = ",")
+    {
+        if (is_string($exclusionList))
+        {
             if (strpos($exclusionList, $delimiter) !== false)
             {
                 // remove any accidental delimiters
                 $exclusionList = trim($exclusionList, $delimiter);
-    
+
                 $exclusionList = explode($delimiter, $exclusionList);
-            }
-            else
+            } else
             {
                 // remove any accidental delimiters
                 $exclusionList = trim($exclusionList, $delimiter);
-    
+
                 $exclusionList = array($exclusionList);
             }
-            
-            $exclusionList = array_map('date_create',$exclusionList);
+
+            $exclusionList = array_map('date_create', $exclusionList);
         }
-        if (is_array($exclusionList)  && Valid::dateTimeList($exclusionList))
+
+        if (is_array($exclusionList) && Valid::dateTimeList($exclusionList))
         {
-            $this->exclusions = array_filter($exclusionList,['When\Valid','dateTimeObject']);
+            $this->exclusions = array_filter($exclusionList, ['When\Valid', 'dateTimeObject']);
             return $this;
         }
-        throw new \InvalidArgumentException("exclusions: Accepts (optional) a array of date time objects or a string seperated by a specified delimiter.");
+        throw new InvalidArgumentException("exclusions: Accepts (optional) a array of date time objects or a string seperated by a specified delimiter.");
     }
 
     public function bymonthday($bymodaylist, $delimiter = ",")
     {
-        if($this->bymonthdays = self::prepareItemsList($bymodaylist, $delimiter, 'monthDayNum'))
+        if ($this->bymonthdays = self::prepareItemsList($bymodaylist, $delimiter, 'monthDayNum'))
         {
             return $this;
         }
 
-        throw new \InvalidArgumentException("bymonthday: Accepts positive and negative values between 1 and 31");
+        throw new InvalidArgumentException("bymonthday: Accepts positive and negative values between 1 and 31");
     }
 
     public function byyearday($byyrdaylist, $delimiter = ",")
     {
-        if($this->byyeardays = self::prepareItemsList($byyrdaylist, $delimiter, 'yearDayNum'))
+        if ($this->byyeardays = self::prepareItemsList($byyrdaylist, $delimiter, 'yearDayNum'))
         {
             return $this;
         }
 
-        throw new \InvalidArgumentException("byyearday: Accepts positive and negative values between 1 and 366");
+        throw new InvalidArgumentException("byyearday: Accepts positive and negative values between 1 and 366");
     }
 
     public function byweekno($bywknolist, $delimiter = ",")
     {
-        if($this->byweeknos = self::prepareItemsList($bywknolist, $delimiter, 'weekNum'))
+        if ($this->byweeknos = self::prepareItemsList($bywknolist, $delimiter, 'weekNum'))
         {
             return $this;
         }
 
-        throw new \InvalidArgumentException("byweekno: Accepts positive and negative values between 1 and 53");
+        throw new InvalidArgumentException("byweekno: Accepts positive and negative values between 1 and 53");
     }
 
     public function bymonth($bymolist, $delimiter = ",")
     {
-        if($this->bymonths = self::prepareItemsList($bymolist, $delimiter, 'monthNum'))
+        if ($this->bymonths = self::prepareItemsList($bymolist, $delimiter, 'monthNum'))
         {
             return $this;
         }
 
-        throw new \InvalidArgumentException("bymonth: Accepts values between 1 and 12");
+        throw new InvalidArgumentException("bymonth: Accepts values between 1 and 12");
     }
 
     public function bysetpos($bysplist, $delimiter = ",")
@@ -227,7 +233,7 @@ class When extends \DateTime
             return $this;
         }
 
-        throw new \InvalidArgumentException("bysetpos: Accepts positive and negative values between 1 and 366");
+        throw new InvalidArgumentException("bysetpos: Accepts positive and negative values between 1 and 366");
     }
 
     public function wkst($weekDay)
@@ -239,7 +245,12 @@ class When extends \DateTime
             return $this;
         }
 
-	    throw new \InvalidArgumentException("wkst: Accepts " . rtrim(implode(Valid::$weekDays, ", "), ","));
+        throw new InvalidArgumentException("wkst: Accepts " . rtrim(implode(", ", Valid::$weekDays), ","));
+    }
+
+    public function adjustmonthend($adjust)
+    {
+        $this->shouldadjustmonthend = !!$adjust;
     }
 
     public function rrule($rrule)
@@ -247,27 +258,33 @@ class When extends \DateTime
         // strip off a trailing semi-colon
         $rrule = trim($rrule, ";");
 
+        $removeRruleString = "rrule:";
+        if (strpos(strtolower($rrule), $removeRruleString) === 0) {
+            $rrule = substr($rrule, strlen($removeRruleString));
+        }
+
         $parts = explode(";", $rrule);
 
-        foreach($parts as $part)
+        foreach ($parts as $part)
         {
             list($rule, $param) = explode("=", $part);
 
             $rule = strtoupper($rule);
             $param = strtoupper($param);
 
-            switch($rule)
+            switch ($rule)
             {
                 case "DTSTART":
-                    $this->startDate(new \DateTime($param));
+                    $this->startDate(new DateTime($param));
                     break;
                 case "UNTIL":
-                    $this->until(new \DateTime($param));
+                    $this->until(new DateTime($param));
                     break;
                 case "FREQ":
                 case "COUNT":
                 case "INTERVAL":
                 case "WKST":
+                case "ADJUSTMONTHEND":
                     $this->{$rule}($param);
                     break;
                 case "BYDAY":
@@ -288,11 +305,11 @@ class When extends \DateTime
         return $this;
     }
 
-    public function occursOn($date)
+    public function occursOn(\DateTimeInterface $date)
     {
         if (!Valid::dateTimeObject($date))
         {
-            throw new \InvalidArgumentException("occursOn: Accepts valid DateTime objects");
+            throw new InvalidArgumentException("occursOn: Accepts valid DateTime objects");
         }
 
         // breakdown the date
@@ -364,11 +381,30 @@ class When extends \DateTime
 
         if (isset($this->bymonthdays))
         {
+            $realMonthDays = false;
+            if ($this->shouldadjustmonthend) {
+                $monthLen = $date->format("t");
+                $realMonthDays = $this->bymonthdays;
+                foreach ($this->bymonthdays as &$dayOffset) {
+                    if ($dayOffset > $monthLen) {
+                        $dayOffset = $monthLen;
+                    }
+                }
+            }
+
             if (!in_array($day, $this->bymonthdays) &&
                 !in_array($dayFromEndOfMonth, $this->bymonthdays))
             {
-                return false;
+                $ok = false;
+            } else {
+                $ok = true;
             }
+
+            if ($realMonthDays) {
+                $this->bymonthdays = $realMonthDays;
+            }
+
+            return $ok;
         }
 
         if (isset($this->byyeardays))
@@ -381,65 +417,69 @@ class When extends \DateTime
         }
 
         // If there is an interval != 1, check whether this is an nth period.
-        if ($this->interval > 1) {
-            switch ($this->freq) {
-            case 'yearly':
-                $start = new \DateTime($this->startDate->format("Y-1-1\TH:i:sP"));
-                $sinceStart = $date->diff($start);
-                $numPeriods = $sinceStart->y;
-                break;
-            case 'monthly':
-                // Normalize to the first of the month, so patterns that land on nth weekday
-                // aren't affected by the shift of the nth weekday back and forth by day of month.
-                // Use UTC so timezone offset shifts don't cause fencepost errors.
-                $utc = new \DateTimezone("UTC");
-                $start = new \DateTime($this->startDate->format("Y-m-1\TH:i:s"), $utc);
-                $dateMonthStart = new \DateTime($date->format("Y-m-1\TH:i:s"), $utc);
-                $sinceStart = $dateMonthStart->diff($start);
-                $numYears = $sinceStart->y;
-                $numMonths = $sinceStart->m;
-                $numPeriods = ($numYears * 12) + $numMonths;
-                break;
-            case 'weekly':
-                if (isset($this->bydays)) {
-                    $weekStartDate = self::getFirstWeekStartDate($this->startDate, $this->wkst);
-                }
-                else {
-                    $weekStartDate = $this->startDate;
-                }
-                $sinceStart = $date->diff($weekStartDate);
-                $numPeriods = floor($sinceStart->days / 7);
-                break;
-            case 'daily':
-                $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
-                $numPeriods = $sinceStart->days;
-                break;
-            case 'hourly':
-                $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
-                $numDays = $sinceStart->days;
-                $numHours = $sinceStart->h;
-                $numPeriods = (24 * $numDays) + $numHours;
-                break;
-            case 'minutely':
-                $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
-                $numDays = $sinceStart->days;
-                $numHours = $sinceStart->h;
-                $numMinutes = $sinceStart->i;
-                $numPeriods = (60 * ((24 * $numDays) + $numHours)) + $numMinutes;
-                break;
-            case 'secondly':
-                $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
-                $numDays = $sinceStart->days;
-                $numHours = $sinceStart->h;
-                $numMinutes = $sinceStart->i;
-                $numSeconds = $sinceStart->s;
-                $numPeriods = (60 * (60 * ((24 * $numDays) + $numHours)) + $numMinutes) + $numSeconds;
-                break;
+        if ($this->interval > 1)
+        {
+            switch ($this->freq)
+            {
+                case 'yearly':
+                    $start = new DateTime($this->startDate->format("Y-1-1\TH:i:sP"));
+                    $sinceStart = $date->diff($start);
+                    $numPeriods = $sinceStart->y;
+                    break;
+                case 'monthly':
+                    // Normalize to the first of the month, so patterns that land on nth weekday
+                    // aren't affected by the shift of the nth weekday back and forth by day of month.
+                    // Use UTC so timezone offset shifts don't cause fencepost errors.
+                    $utc = new DateTimezone("UTC");
+                    $start = new DateTime($this->startDate->format("Y-m-1\TH:i:s"), $utc);
+                    $dateMonthStart = new DateTime($date->format("Y-m-1\TH:i:s"), $utc);
+                    $sinceStart = $dateMonthStart->diff($start);
+                    $numYears = $sinceStart->y;
+                    $numMonths = $sinceStart->m;
+                    $numPeriods = ($numYears * 12) + $numMonths;
+                    break;
+                case 'weekly':
+                    if (isset($this->bydays))
+                    {
+                        $weekStartDate = self::getFirstWeekStartDate($this->startDate, $this->wkst);
+                    } else
+                    {
+                        $weekStartDate = $this->startDate;
+                    }
+                    $sinceStart = $date->diff($weekStartDate);
+                    $numPeriods = floor($sinceStart->days / 7);
+                    break;
+                case 'daily':
+                    $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
+                    $numPeriods = $sinceStart->days;
+                    break;
+                case 'hourly':
+                    $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
+                    $numDays = $sinceStart->days;
+                    $numHours = $sinceStart->h;
+                    $numPeriods = (24 * $numDays) + $numHours;
+                    break;
+                case 'minutely':
+                    $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
+                    $numDays = $sinceStart->days;
+                    $numHours = $sinceStart->h;
+                    $numMinutes = $sinceStart->i;
+                    $numPeriods = (60 * ((24 * $numDays) + $numHours)) + $numMinutes;
+                    break;
+                case 'secondly':
+                    $sinceStart = $date->diff($this->startDate); // Note we "expanded" startDate already.
+                    $numDays = $sinceStart->days;
+                    $numHours = $sinceStart->h;
+                    $numMinutes = $sinceStart->i;
+                    $numSeconds = $sinceStart->s;
+                    $numPeriods = (60 * (60 * ((24 * $numDays) + $numHours)) + $numMinutes) + $numSeconds;
+                    break;
             }
-            if (($numPeriods % $this->interval) == 0) {
+            if (($numPeriods % $this->interval) == 0)
+            {
                 return true;
-            }
-            else {
+            } else
+            {
                 return false;
             }
         }
@@ -481,28 +521,32 @@ class When extends \DateTime
     }
 
     // Get occurrences between two DateTimes, exclusive. Does not modify $this.
-    public function getOccurrencesBetween($startDate, $endDate, $limit=NULL) {
+    public function getOccurrencesBetween($startDate, $endDate, $limit = NULL)
+    {
 
-    	$thisClone = clone $this;
+        $thisClone = clone $this;
 
         // Enforce consistent time zones. Date comparisons don't require them, but +P1D loop does.
-        if ($tz = $thisClone->getTimeZone()) {
+        if ($tz = $thisClone->getTimeZone())
+        {
             $startDate->setTimeZone($tz);
             $endDate->setTimeZone($tz);
         }
 
-        $occurrences = array();
+        $occurrences = [];
 
-        if ($endDate <= $startDate) {
+        if ($endDate <= $startDate)
+        {
             return $occurrences;
         }
 
         // if existing UNTIL < startDate - we have nothing
-        if (isset($thisClone->until) && $thisClone->until < $startDate) {
+        if (isset($thisClone->until) && $thisClone->until < $startDate)
+        {
             return $occurrences;
-        }
-        // prevent unnecessary leg-work - our endDate is our new UNTIL
-        elseif (!isset($thisClone->until)) {
+        } // prevent unnecessary leg-work - our endDate is our new UNTIL
+        elseif (!isset($thisClone->until))
+        {
             $thisClone->until = $endDate;
         }
 
@@ -510,7 +554,8 @@ class When extends \DateTime
         $all_occurrences = $thisClone->occurrences;
 
         // nothing found in $thisClone->generateOccurrences();
-        if (empty($all_occurrences)) {
+        if (empty($all_occurrences))
+        {
             return $occurrences;
         }
 
@@ -518,27 +563,25 @@ class When extends \DateTime
 
         // if we've hit the rangeLimit, restart looking but start at this last_occurrence
         if ($thisClone->rangeLimit == count($all_occurrences)
-        	&& $thisClone->startDate != $last_occurrence)
+            && $thisClone->startDate != $last_occurrence)
         {
             $thisClone->startDate = clone $last_occurrence;
 
-            if (isset($thisClone->limit)) {
-                $thisClone->limit = $thisClone->limit - 200;
-            }
-
             // clear all occurrences before our start date
-            foreach ($thisClone->occurrences as $key => $occurrence) {
-            	if ( $occurrence < $startDate )
-            	{
-            		unset($thisClone->occurrences[$key]);
-            	}
+            foreach ($thisClone->occurrences as $key => $occurrence)
+            {
+                if ($occurrence < $startDate)
+                {
+                    unset($thisClone->occurrences[$key]);
+                }
             }
 
             return $thisClone->getOccurrencesBetween($startDate, $endDate, $limit);
         }
 
         // if our last occurrence is is before our startDate, we have nothing
-        if ($last_occurrence < $startDate) {
+        if ($last_occurrence < $startDate)
+        {
             return $occurrences;
         }
 
@@ -547,17 +590,21 @@ class When extends \DateTime
 
         $count = 0;
 
-        foreach($all_occurrences as $occurrence) {
+        foreach ($all_occurrences as $occurrence)
+        {
             // fastforward our pointer to where it's >= startDate
-            if ($occurrence < $startDate) {
+            if ($occurrence < $startDate)
+            {
                 continue;
             }
             // if current occurence is past our endDate - we're done
-            if ($occurrence > $endDate) {
+            if ($occurrence > $endDate)
+            {
                 break;
             }
             // if we reach getOccurrencesBetween()'s limit - we're done
-            if (NULL != $limit && ++$count > $limit) {
+            if (NULL != $limit && ++$count > $limit)
+            {
                 break;
             }
 
@@ -567,30 +614,67 @@ class When extends \DateTime
         return $occurrences;
     }
 
-    private function findDateRangeOverlap($startDate, $endDate) {
+    public function toRrule($glue = ';')
+    {
+        $rrule = [];
+
+        if (isset($this->startDate)) $rrule['DTSTART'] = $this->startDate->format('Ymd\THis\Z');
+        if (isset($this->freq)) $rrule['FREQ'] = $this->freq;
+        if (isset($this->until)) $rrule['UNTIL'] = $this->until->format('Ymd\THis\Z');
+        if (isset($this->count)) $rrule['COUNT'] = $this->count;
+        if (isset($this->interval)) $rrule['INTERVAL'] = $this->interval;
+        if (isset($this->bydays)) $rrule['BYDAY'] = implode(',', $this->bydays);
+        if (isset($this->byhours)) $rrule['BYHOUR'] = implode(',', $this->byhours);
+        if (isset($this->byminutes)) $rrule['BYMINUTE'] = implode(',', $this->byminutes);
+        if (isset($this->byseconds)) $rrule['BYSECOND'] = implode(',', $this->byseconds);
+        if (isset($this->bymonthdays)) $rrule['BYMONTHDAY'] = implode(',', $this->bymonthdays);
+        if (isset($this->byyeardays)) $rrule['BYYEARDAY'] = implode(',', $this->byyeardays);
+        if (isset($this->byweeknos)) $rrule['BYWEEKNO'] = implode(',', $this->byweeknos);
+        if (isset($this->bymonths)) $rrule['BYMONTH'] = implode(',', $this->bymonths);
+        if (isset($this->bysetpos)) $rrule['BYSETPOS'] = implode(',', $this->bysetpos);
+        if (isset($this->wkst)) $rrule['WKST'] = $this->wkst;
+
+        $data = [];
+        foreach ($rrule as $key => $val)
+        {
+            $data[] = $key . "=" . (string)$val;
+        }
+
+        $data = implode($glue, $data);
+
+        return $data;
+    }
+
+    private function findDateRangeOverlap($startDate, $endDate)
+    {
         // Trim to the defined range of this When:
-        if ($this->startDate > $startDate) {
+        if ($this->startDate > $startDate)
+        {
             $startDate = clone $this->startDate;
         }
-        if ($this->until && ($this->until < $endDate)) {
+        if ($this->until && ($this->until < $endDate))
+        {
             $endDate = clone $this->until;
         }
         return array($startDate, $endDate);
     }
 
-    private function countOccurrencesBefore($date) {
+    private function countOccurrencesBefore($date)
+    {
         return count($this->getOccurrencesBetween($this->startDate, $date));
     }
 
-    private static function abbrevToDayName($abbrev) {
-        $daynames = array('su' => 'Sunday',
-                          'mo' => 'Monday',
-                          'tu' => 'Tuesday',
-                          'we' => 'Wednesday',
-                          'th' => 'Thursday',
-                          'fr' => 'Friday',
-                          'sa' => 'Saturyday',
-        );
+    private static function abbrevToDayName($abbrev)
+    {
+        $daynames = [
+            'su' => 'Sunday',
+            'mo' => 'Monday',
+            'tu' => 'Tuesday',
+            'we' => 'Wednesday',
+            'th' => 'Thursday',
+            'fr' => 'Friday',
+            'sa' => 'Saturday',
+        ];
         return $daynames[strtolower($abbrev)];
     }
 
@@ -600,7 +684,8 @@ class When extends \DateTime
      * and a BYDAY rule part is specified." -- RFC 5545
      * See http://stackoverflow.com/questions/5750586/determining-occurrences-from-icalendar-rrule-that-expands
      */
-    public static function getFirstWeekStartDate($startDate, $wkst) {
+    public static function getFirstWeekStartDate($startDate, $wkst)
+    {
         $wkst = self::abbrevToDayName($wkst);
         $startWeekDay = clone $startDate;
 
@@ -611,12 +696,14 @@ class When extends \DateTime
         return $startWeekDay;
     }
 
-    public function getNextOccurrence($occurDate, $strictly_after=true) {
-
+    public function getNextOccurrence($occurDate, $strictly_after = true)
+    {
         self::prepareDateElements(false);
 
-        if (! $strictly_after) {
-            if ($this->occursOn($occurDate) && $this->occursAt($occurDate)) {
+        if (!$strictly_after)
+        {
+            if ($this->occursOn($occurDate) && $this->occursAt($occurDate))
+            {
                 return $occurDate;
             }
         }
@@ -624,28 +711,31 @@ class When extends \DateTime
         // Set an arbitrary end date, taking the 400Y advice from elsewhere in this module.
         // TODO: do this in smaller chunks so we don't get a bunch of unneeded occurrences
         $endDate = clone $occurDate;
-        $endDate->add(new \DateInterval('P400Y'));
+        $endDate->add(new DateInterval('P400Y'));
         $candidates = $this->getOccurrencesBetween($occurDate, $endDate, 2);
-        foreach ($candidates as $candidate) {
-            if (! $strictly_after) {
+        foreach ($candidates as $candidate)
+        {
+            if (!$strictly_after)
+            {
                 return $candidate;
-            }
-            elseif ($candidate > $occurDate) {
+            } elseif ($candidate > $occurDate)
+            {
                 return $candidate;
             }
         }
         return false;
     }
 
-    public function getPrevOccurrence($occurDate) {
-
+    public function getPrevOccurrence($occurDate)
+    {
         self::prepareDateElements(false);
 
         $startDate = $this->startDate;
         $candidates = $this->getOccurrencesBetween($startDate, $occurDate);
-        if (count($candidates)) {
+        if (count($candidates))
+        {
             $lastDate = array_pop($candidates);
-            if ( $lastDate == $occurDate )
+            if ($lastDate == $occurDate)
             {
                 $lastDate = array_pop($candidates);
             }
@@ -666,13 +756,10 @@ class When extends \DateTime
         if ($this->occursOn($dateLooper))
         {
             $this->addOccurrence($this->generateTimeOccurrences($dateLooper));
-        }
-        else
+        } else
         {
-            switch ($this->RFC5545_COMPLIANT) {
-                case self::NOTICE:
-                    trigger_error('InvalidStartDate: startDate is outside the bounds of the occurrence parameters.');
-                    break;
+            switch ($this->RFC5545_COMPLIANT)
+            {
                 case self::IGNORE:
                     break;
                 case self::EXCEPTION:
@@ -684,7 +771,7 @@ class When extends \DateTime
 
         while ($dateLooper < $this->until && count($this->occurrences) < $this->count)
         {
-            $occurrences = array();
+            $occurrences = [];
 
             if ($this->freq === "yearly")
             {
@@ -707,11 +794,10 @@ class When extends \DateTime
                                     $occurrences = array_merge($occurrences, $this->generateTimeOccurrences($dateLooper));
                                 }
 
-                                $dateLooper->add(new \DateInterval('P1D'));
+                                $dateLooper->add(new DateInterval('P1D'));
                                 $today++;
                             }
-                        }
-                        else
+                        } else
                         {
                             $dateLooper->setDate($dateLooper->format("Y"), $month, $dateLooper->format("j"));
 
@@ -721,8 +807,7 @@ class When extends \DateTime
                             }
                         }
                     }
-                }
-                else
+                } else
                 {
                     $dateLooper->setDate($dateLooper->format("Y"), 1, 1);
 
@@ -730,8 +815,7 @@ class When extends \DateTime
                     if ($leapYear)
                     {
                         $days = 366;
-                    }
-                    else
+                    } else
                     {
                         $days = 365;
                     }
@@ -743,7 +827,7 @@ class When extends \DateTime
                         {
                             $occurrences = array_merge($occurrences, $this->generateTimeOccurrences($dateLooper));
                         }
-                        $dateLooper->add(new \DateInterval('P1D'));
+                        $dateLooper->add(new DateInterval('P1D'));
                         $day++;
                     }
                 }
@@ -752,9 +836,17 @@ class When extends \DateTime
                 $this->addOccurrence($occurrences);
 
                 $dateLooper = clone $this->startDate;
-                $dateLooper->add(new \DateInterval('P' . ($this->interval * ++$count) . 'Y'));
-            }
-            else if ($this->freq === "monthly")
+                // if we are on feb 29th and we must jump a year, we end up on march 1st, so if the rule is to
+                // always go to the end of february we enforce that
+                $correctForLeap = ($dateLooper->format('m-d') === '02-29'
+                    && in_array('2', $this->bymonths, true)
+                    && in_array('-1', $this->bymonthdays, true));
+                $dateLooper->add(new DateInterval('P' . ($this->interval * ++$count) . 'Y'));
+                if ($correctForLeap)
+                {
+                    $dateLooper->modify('last day of february');
+                }
+            } else if ($this->freq === "monthly")
             {
                 $days = (int)$dateLooper->format("t");
 
@@ -767,7 +859,7 @@ class When extends \DateTime
                         $occurrences = array_merge($occurrences, $this->generateTimeOccurrences($dateLooper));
                     }
 
-                    $dateLooper->add(new \DateInterval('P1D'));
+                    $dateLooper->add(new DateInterval('P1D'));
                     $day++;
                 }
 
@@ -776,9 +868,8 @@ class When extends \DateTime
 
                 $dateLooper = clone $this->startDate;
                 $dateLooper->setDate($dateLooper->format("Y"), $dateLooper->format("n"), 1);
-                $dateLooper->add(new \DateInterval('P' . ($this->interval * ++$count) . 'M'));
-            }
-            else if ($this->freq === "weekly")
+                $dateLooper->add(new DateInterval('P' . ($this->interval * ++$count) . 'M'));
+            } else if ($this->freq === "weekly")
             {
                 $dateLooper->setDate($dateLooper->format("Y"), $dateLooper->format("n"), $dateLooper->format("j"));
 
@@ -793,7 +884,7 @@ class When extends \DateTime
                     $startWeekDay->modify("next " . $wkst);
                     $startWeekDay->setTime($dateLooper->format('H'), $dateLooper->format('i'), $dateLooper->format('s'));
 
-                    $daysLeft = (int) $dateLooper->diff($startWeekDay)->format("%a");
+                    $daysLeft = (int)$dateLooper->diff($startWeekDay)->format("%a");
 
                     $startWeekDay->modify("last " . $wkst);
                 }
@@ -805,7 +896,7 @@ class When extends \DateTime
                         $occurrences = array_merge($occurrences, $this->generateTimeOccurrences($dateLooper));
                     }
 
-                    $dateLooper->add(new \DateInterval('P1D'));
+                    $dateLooper->add(new DateInterval('P1D'));
                     $daysLeft--;
                 }
 
@@ -814,9 +905,8 @@ class When extends \DateTime
 
                 $dateLooper = clone $this->startDate;
                 $dateLooper->setDate($startWeekDay->format("Y"), $startWeekDay->format("n"), $startWeekDay->format('j'));
-                $dateLooper->add(new \DateInterval('P' . ($this->interval * (++$count * 7)) . 'D'));
-            }
-            else if ($this->freq === "daily")
+                $dateLooper->add(new DateInterval('P' . ($this->interval * (++$count * 7)) . 'D'));
+            } else if ($this->freq === "daily")
             {
                 if ($this->occursOn($dateLooper))
                 {
@@ -825,11 +915,10 @@ class When extends \DateTime
 
                 $dateLooper = clone $this->startDate;
                 $dateLooper->setDate($dateLooper->format("Y"), $dateLooper->format("n"), $dateLooper->format('j'));
-                $dateLooper->add(new \DateInterval('P' . ($this->interval * ++$count) . 'D'));
-            }
-            else if ($this->freq === "hourly")
+                $dateLooper->add(new DateInterval('P' . ($this->interval * ++$count) . 'D'));
+            } else if ($this->freq === "hourly")
             {
-                $occurrence = array();
+                $occurrence = [];
                 if ($this->occursOn($dateLooper))
                 {
                     $occurrence[] = $dateLooper;
@@ -837,11 +926,10 @@ class When extends \DateTime
                 }
 
                 $dateLooper = clone $this->startDate;
-                $dateLooper->add(new \DateInterval('PT' . ($this->interval * ++$count) . 'H'));
-            }
-            else if ($this->freq === "minutely")
+                $dateLooper->add(new DateInterval('PT' . ($this->interval * ++$count) . 'H'));
+            } else if ($this->freq === "minutely")
             {
-                $occurrence = array();
+                $occurrence = [];
                 if ($this->occursOn($dateLooper))
                 {
                     $occurrence[] = $dateLooper;
@@ -849,11 +937,10 @@ class When extends \DateTime
                 }
 
                 $dateLooper = clone $this->startDate;
-                $dateLooper->add(new \DateInterval('PT' . ($this->interval * ++$count) . 'M'));
-            }
-            else if ($this->freq === "secondly")
+                $dateLooper->add(new DateInterval('PT' . ($this->interval * ++$count) . 'M'));
+            } else if ($this->freq === "secondly")
             {
-                $occurrence = array();
+                $occurrence = [];
                 if ($this->occursOn($dateLooper))
                 {
                     $occurrence[] = $dateLooper;
@@ -861,12 +948,13 @@ class When extends \DateTime
                 }
 
                 $dateLooper = clone $this->startDate;
-                $dateLooper->add(new \DateInterval('PT' . ($this->interval * ++$count) . 'S'));
+                $dateLooper->add(new DateInterval('PT' . ($this->interval * ++$count) . 'S'));
 
             }
         }
         // generateTimeOccurrences can overshoot $this->count, so trim:
-        if ($this->count && (count($this->occurrences) >= $this->count)) {
+        if ($this->count && (count($this->occurrences) >= $this->count))
+        {
             $this->occurrences = array_slice($this->occurrences, 0, $this->count);
         }
     }
@@ -875,7 +963,7 @@ class When extends \DateTime
     {
         if (isset($this->bysetpos))
         {
-            $filtered_occurrences = array();
+            $filtered_occurrences = [];
 
             if ($count > 0)
             {
@@ -886,8 +974,7 @@ class When extends \DateTime
                     if ($setpos > 0 && isset($occurrences[$setpos - 1]))
                     {
                         $filtered_occurrences[] = $occurrences[$setpos - 1];
-                    }
-                    elseif(isset($occurrences[$occurrenceCount + $setpos]))
+                    } elseif (isset($occurrences[$occurrenceCount + $setpos]))
                     {
                         $filtered_occurrences[] = $occurrences[$occurrenceCount + $setpos];
                     }
@@ -905,7 +992,7 @@ class When extends \DateTime
         foreach ($occurrences as $occurrence)
         {
             // make sure that this occurrence isn't already in the list
-            if (!in_array($occurrence, $this->occurrences) && (!count($this->exclusions) || !in_array($occurrence,$this->exclusions)))
+            if (!in_array($occurrence, $this->occurrences) && (!count($this->exclusions) || !in_array($occurrence, $this->exclusions)))
             {
                 $this->occurrences[] = $occurrence;
             }
@@ -915,7 +1002,7 @@ class When extends \DateTime
     // not happy with this.
     protected function generateTimeOccurrences($dateLooper)
     {
-        $occurrences = array();
+        $occurrences = [];
 
         foreach ($this->byhours as $hour)
         {
@@ -925,7 +1012,10 @@ class When extends \DateTime
                 {
                     $occurrence = clone $dateLooper;
                     $occurrence->setTime($hour, $minute, $second);
-                    $occurrences[] = $occurrence;
+
+                    if ($occurrence <= $this->until) {
+                        $occurrences[] = $occurrence;
+                    }
                 }
             }
         }
@@ -934,7 +1024,7 @@ class When extends \DateTime
     }
 
     // If $limitRange is true, $this->count and $this->until will be set if not already set.
-    protected function prepareDateElements($limitRange=true)
+    protected function prepareDateElements($limitRange = true)
     {
         // if the interval isn't set, set it.
         if (!isset($this->interval))
@@ -961,7 +1051,7 @@ class When extends \DateTime
         // if there is no startDate, make it now
         if (!$this->startDate)
         {
-            $this->startDate = new \DateTime();
+            $this->startDate = new DateTime();
         }
 
         // the calendar repeats itself every 400 years, so if a date
@@ -969,8 +1059,8 @@ class When extends \DateTime
         // occur
         if ($limitRange && !isset($this->until))
         {
-            $this->until = new \DateTime();
-            $this->until->add(new \DateInterval('P400Y'));
+            $this->until = new DateTime();
+            $this->until->add(new DateInterval('P400Y'));
         }
 
         if (!isset($this->byminutes))
@@ -1028,6 +1118,7 @@ class When extends \DateTime
                 !isset($this->bysetpos))
             {
                 $this->bymonth($this->startDate->format('n'));
+                $this->bymonthdays = [$this->startDate->format('j')];
             }
         }
 
@@ -1040,7 +1131,7 @@ class When extends \DateTime
         return array_map('intval', $items);
     }
 
-    protected static function prepareItemsList($items, $delimiter = ",", $validator=null)
+    protected static function prepareItemsList($items, $delimiter = ",", $validator = null)
     {
         $_items = false;
 
@@ -1067,14 +1158,14 @@ class When extends \DateTime
             return $_items;
         }
 
-	    return false;
+        return false;
     }
 
     protected static function createDaysList($days)
     {
-        $_days = array();
+        $_days = [];
 
-        foreach($days as $day)
+        foreach ($days as $day)
         {
             $day = ltrim($day, "+");
             $day = trim($day);
@@ -1085,8 +1176,7 @@ class When extends \DateTime
             if (strlen($day) === 2)
             {
                 $weekday = $day;
-            }
-            else
+            } else
             {
                 list($ordwk, $weekday) = sscanf($day, "%d%s");
             }
@@ -1098,7 +1188,7 @@ class When extends \DateTime
     }
 }
 
-class InvalidCombination extends \Exception
+class InvalidCombination extends Exception
 {
     public function __construct($message = "Invalid combination.", $code = 0, Exception $previous = null)
     {
@@ -1106,7 +1196,7 @@ class InvalidCombination extends \Exception
     }
 }
 
-class FrequencyRequired extends \Exception
+class FrequencyRequired extends Exception
 {
     public function __construct($message = "You are required to set a frequency.", $code = 0, Exception $previous = null)
     {
@@ -1114,7 +1204,7 @@ class FrequencyRequired extends \Exception
     }
 }
 
-class InvalidStartDate extends \Exception
+class InvalidStartDate extends Exception
 {
     public function __construct($message = "The start date must be the first occurrence.", $code = 0, Exception $previous = null)
     {
diff --git a/civicrm/xml/schema/Core/Country.xml b/civicrm/xml/schema/Core/Country.xml
index 639ac54baf09ad79c7e8ae1432a4bef78dc9fc1b..74e221682da4b0844779637ef1a8941f20319090 100644
--- a/civicrm/xml/schema/Core/Country.xml
+++ b/civicrm/xml/schema/Core/Country.xml
@@ -6,6 +6,8 @@
   <name>civicrm_country</name>
   <add>1.1</add>
   <labelField>name</labelField>
+  <icon>fa-globe</icon>
+  <description>Countries of the world</description>
   <field>
     <name>id</name>
     <title>Country ID</title>
diff --git a/civicrm/xml/schema/Event/Participant.xml b/civicrm/xml/schema/Event/Participant.xml
index 504afc47a1cf81d9c02ef21f71845fb0f0fe1ef5..0ac96e86b41daf2dbb8fdffc7458d8a1ef199dab 100644
--- a/civicrm/xml/schema/Event/Participant.xml
+++ b/civicrm/xml/schema/Event/Participant.xml
@@ -38,6 +38,7 @@
     <comment>FK to Contact ID</comment>
     <html>
       <label>Contact</label>
+      <type>EntityRef</type>
     </html>
     <add>1.7</add>
   </field>
@@ -57,6 +58,7 @@
     <comment>FK to Event ID</comment>
     <html>
       <label>Event</label>
+      <type>EntityRef</type>
     </html>
     <add>1.7</add>
   </field>
diff --git a/civicrm/xml/templates/civicrm_data.tpl b/civicrm/xml/templates/civicrm_data.tpl
index 32b1cc69af9e11a5ee9ecc76999a95e86a5d2df4..77ea196de61cef9af0770e80cecdcff17078e87b 100644
--- a/civicrm/xml/templates/civicrm_data.tpl
+++ b/civicrm/xml/templates/civicrm_data.tpl
@@ -431,8 +431,6 @@ VALUES
   (@option_group_id_cs, '{ts escape="sql"}Pending{/ts}'    , 2, 'Pending'    , NULL, 0, 0, 2, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Cancelled{/ts}'  , 3, 'Cancelled'  , NULL, 0, 0, 3, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Failed{/ts}'     , 4, 'Failed'     , NULL, 0, 0, 4, NULL, 0, 1, 1, NULL, NULL, NULL),
-  (@option_group_id_cs, '{ts escape="sql"}In Progress{/ts}', 5, 'In Progress', NULL, 0, 0, 5, NULL, 0, 1, 1, NULL, NULL, NULL),
-  (@option_group_id_cs, '{ts escape="sql"}Overdue{/ts}'    , 6, 'Overdue'    , NULL, 0, 0, 6, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Refunded{/ts}'   , 7, 'Refunded'   , NULL, 0, 0, 7, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Partially paid{/ts}', 8, 'Partially paid', NULL, 0, 0, 8, NULL, 0, 1, 1, NULL, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Pending refund{/ts}', 9, 'Pending refund', NULL, 0, 0, 9, NULL, 0, 1, 1, NULL, NULL, NULL),
@@ -1783,7 +1781,6 @@ INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_act
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'greenwich', 'Theme: Greenwich', 'Theme: Greenwich', 'greenwich', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'eventcart', 'Event cart', 'Event cart', 'eventcart', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'financialacls', 'Financial ACLs', 'Financial ACLs', 'financialacls', 1);
-INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'contributioncancelactions', 'Contribution cancel actions', 'Contribution cancel actions', 'contributioncancelactions', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'recaptcha', 'reCAPTCHA', 'reCAPTCHA', 'recaptcha', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'ckeditor4', 'CKEditor4', 'CKEditor4', 'ckeditor4', 1);
 INSERT IGNORE INTO civicrm_extension (type, full_name, name, label, file, is_active) VALUES ('module', 'legacycustomsearches', 'Custom search framework', 'Custom search framework', 'legacycustomsearches', 1);
diff --git a/civicrm/xml/templates/message_templates/pledge_reminder_html.tpl b/civicrm/xml/templates/message_templates/pledge_reminder_html.tpl
index a9bafe8d8f778109ee36b6f714cce48dab3541d1..de9ebeadfe87681eccd56f89d73ae0f906a09794 100644
--- a/civicrm/xml/templates/message_templates/pledge_reminder_html.tpl
+++ b/civicrm/xml/templates/message_templates/pledge_reminder_html.tpl
@@ -95,7 +95,7 @@
    <td>
     <p>{ts 1='{domain.phone}' 2='{domain.email}'}Please contact us at %1 or send email to %2 if you have questions
 or need to modify your payment schedule.{/ts}</p>
-    <p>{ts}Thank your for your generous support.{/ts}</p>
+    <p>{ts}Thank you for your generous support.{/ts}</p>
    </td>
   </tr>
 
diff --git a/civicrm/xml/templates/message_templates/pledge_reminder_text.tpl b/civicrm/xml/templates/message_templates/pledge_reminder_text.tpl
index 59d1d6c35d5a2ad675d3c70738e3dd27ee0aa343..638c0a94cd5ea5db3d0d53549b3117d107e84969 100644
--- a/civicrm/xml/templates/message_templates/pledge_reminder_text.tpl
+++ b/civicrm/xml/templates/message_templates/pledge_reminder_text.tpl
@@ -30,4 +30,4 @@ Click this link to go to a web page where you can make your payment online:
 or need to modify your payment schedule.{/ts}
 
 
-{ts}Thank your for your generous support.{/ts}
+{ts}Thank you for your generous support.{/ts}
diff --git a/civicrm/xml/version.xml b/civicrm/xml/version.xml
index 14b2a6ca1bbd7bd2aa99224f7cdd303c2e1a301a..a6e9c0eb5fd83f48107fd1ef644128145267b3b9 100644
--- a/civicrm/xml/version.xml
+++ b/civicrm/xml/version.xml
@@ -1,4 +1,4 @@
 <?xml version="1.0" encoding="iso-8859-1" ?>
 <version>
-  <version_no>5.54.1</version_no>
+  <version_no>5.55.0</version_no>
 </version>